.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Rethink Sans;
}
.display-1 {
  font-family: 'Myriad-Variable-Concept';
  font-size: 7.75rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6875rem;
}
.display-2 {
  font-family: 'Myriad-Variable-Concept';
  font-size: 3rem;
  line-height: 1.17;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Myriad-Variable-Concept';
  font-size: 1.125rem;
  line-height: 1.55;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Myriad-Variable-Concept';
  font-size: 2.25rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.8125rem;
}
.display-7 {
  font-family: 'Myriad-Variable-Concept';
  font-size: 1.75rem;
  line-height: 1.286;
}
.display-7 > .mbr-iconfont {
  font-size: 2.1875rem;
}
/* ---- 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: 6.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.425rem;
    font-size: calc( 3.3625rem + (7.75 - 3.3625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.3625rem + (7.75 - 3.3625) * ((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.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6b8a96 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #fff8e1 !important;
}
.bg-danger {
  background-color: #a3c9e7 !important;
}
.btn-primary {
  background: linear-gradient(90deg, #6b8a96, #6b8a96 65%, #a7b9c0) !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6b8a96 !important;
  border-color: #6b8a96 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #89a2ab !important;
  border-color: #89a2ab !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #89a2ab !important;
  border-color: #89a2ab !important;
}
.btn-secondary {
  background: linear-gradient(90deg, #2e7d32, #2e7d32 65%, #52bf57) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2e7d32 !important;
  border-color: #2e7d32 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #3ca241 !important;
  border-color: #3ca241 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3ca241 !important;
  border-color: #3ca241 !important;
}
.btn-info {
  background: linear-gradient(90deg, #000000, #000000 65%, #333333) !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-success {
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff) !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning {
  background: linear-gradient(90deg, #fff8e1, #fff8e1 65%, #ffffff) !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff8e1 !important;
  border-color: #fff8e1 !important;
  color: #e1ac00 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e1ac00 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger {
  background: linear-gradient(90deg, #a3c9e7, #a3c9e7 65%, #f4f8fc) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a3c9e7 !important;
  border-color: #a3c9e7 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #cbe1f2 !important;
  border-color: #cbe1f2 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cbe1f2 !important;
  border-color: #cbe1f2 !important;
}
.btn-white {
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  background: linear-gradient(90deg, #232323, #232323 65%, #565656) !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6b8a96;
  color: #6b8a96;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #475c64 !important;
  background-color: transparent !important;
  border-color: #475c64 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b8a96 !important;
  border-color: #6b8a96 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #2e7d32;
  color: #2e7d32;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #173e19 !important;
  background-color: transparent !important;
  border-color: #173e19 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2e7d32 !important;
  border-color: #2e7d32 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fff8e1;
  color: #fff8e1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe48a !important;
  background-color: transparent !important;
  border-color: #ffe48a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #e1ac00 !important;
  background-color: #fff8e1 !important;
  border-color: #fff8e1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #a3c9e7;
  color: #a3c9e7;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #5ea1d5 !important;
  background-color: transparent !important;
  border-color: #5ea1d5 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a3c9e7 !important;
  border-color: #a3c9e7 !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: #6b8a96 !important;
}
.text-secondary {
  color: #2e7d32 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #fff8e1 !important;
}
.text-danger {
  color: #a3c9e7 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #40535b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #133214 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffe07b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #529ad2 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6b8a96;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #fff8e1;
}
.alert-danger {
  background-color: #a3c9e7;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6b8a96;
  border-color: #6b8a96;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6b8a96;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b6c5cb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: 'Myriad-Variable-Concept';
  font-size: 1.75rem;
  line-height: 1.286;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .mbr-iconfont {
  font-size: 2.1875rem;
}
.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: #6b8a96 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Myriad-Variable-Concept';
  font-size: 1.75rem;
  line-height: 1.286;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.1875rem;
}
blockquote {
  border-color: #6b8a96;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6b8a96;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6b8a96;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6b8a96;
  border-bottom-color: #6b8a96;
}
.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: #6b8a96 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2e7d32 !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='%236b8a96' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 8px 16px;
  border-radius: 50px !important;
  font-weight: 400 !important;
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 85%;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  transform: scale(1.04);
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont,
.mbr-section-btn-main .btn:focus .mbr-iconfont {
  transform: translateX(2px);
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  border: none !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border-width: 1px !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.slide-content,
.item-wrap,
.mbr-figure {
  border-radius: 24px !important;
}
.icon-wrap {
  border-radius: 16px;
}
.item-number img {
  border-radius: 16px !important;
}
.item-number {
  border-radius: 16px;
}
.form-control {
  border-radius: 8px !important;
}
.nav.nav-tabs .nav-item .nav-link {
  border-radius: 8px !important;
}
.nav.nav-tabs .nav-item {
  border-radius: 8px !important;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uADRnzHDs6 {
  background-image: url("../../../assets/images/mbr-1-1920x1920.webp");
}
.cid-uADRnzHDs6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uADRnzHDs6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uADRnzHDs6 .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uADRnzHDs6 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uADRnzHDs6 .container {
    padding: 0 25px;
  }
}
.cid-uADRnzHDs6 .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uADRnzHDs6 .title-wrapper {
    padding: 0;
  }
}
.cid-uADRnzHDs6 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uADRnzHDs6 .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uADRnzHDs6 .mbr-section-title {
  color: #ffffff;
}
.cid-uADRnzHDs6 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uADRnzHDs6 .mbr-section-title,
.cid-uADRnzHDs6 .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uADZGCC0H2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uADZGCC0H2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uADZGCC0H2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uADZGCC0H2 .col-title {
  margin-bottom: 32px;
}
.cid-uADZGCC0H2 .mbr-section-title {
  color: #24262b;
}
.cid-uADZGCC0H2 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uADZGCC0H2 .cards-row {
  row-gap: 32px;
}
.cid-uADZGCC0H2 .card {
  border-radius: 0;
}
.cid-uADZGCC0H2 .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uADZGCC0H2 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uADZGCC0H2 .text-wrap {
  flex-grow: 1;
}
.cid-uADZGCC0H2 .card-title {
  color: #ffffff;
}
.cid-uADZGCC0H2 .card-text {
  color: #767676;
}
.cid-uADU2eAnyD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uADU2eAnyD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uADU2eAnyD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uADU2eAnyD .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uADU2eAnyD .mbr-section-subtitle {
  text-align: center;
}
.cid-uADU2eAnyD .mbr-section-title {
  text-align: center;
  color: #6b8a96;
}
.cid-uAxZAVV0K9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #6b8a96;
}
.cid-uAxZAVV0K9 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uAxZAVV0K9 .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .title-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAxZAVV0K9 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uAxZAVV0K9 .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uAxZAVV0K9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 850px;
  max-width: 850px;
}
@media (max-width: 1200px) {
  .cid-uAxZAVV0K9 .embla__slide {
    min-width: 650px;
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uAxZAVV0K9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAxZAVV0K9 .embla__slide:hover .slide-content .item-wrapper .item-img img,
.cid-uAxZAVV0K9 .embla__slide:focus .slide-content .item-wrapper .item-img img {
  border: 2px solid #078efb;
}
.cid-uAxZAVV0K9 .embla__slide .slide-content {
  width: 100%;
}
.cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 2px;
}
.cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
    width: 100%;
  }
}
.cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
    width: 100%;
  }
}
.cid-uAxZAVV0K9 .embla__button--next,
.cid-uAxZAVV0K9 .embla__button--prev {
  display: flex;
}
.cid-uAxZAVV0K9 .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #252525 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uAxZAVV0K9 .embla__button:hover {
  transform: scale(1.05);
}
.cid-uAxZAVV0K9 .embla__button.embla__button--prev {
  left: 0;
}
.cid-uAxZAVV0K9 .embla__button.embla__button--next {
  right: 0;
}
.cid-uAxZAVV0K9 .embla {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAxZAVV0K9 .embla {
    margin-bottom: 38px;
  }
}
.cid-uAxZAVV0K9 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uAxZAVV0K9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAxZAVV0K9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAxZAVV0K9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAxZAVV0K9 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uAxZAVV0K9 .mbr-section-title {
  color: #ffffff;
}
.cid-uAxZAVV0K9 .mbr-text,
.cid-uAxZAVV0K9 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAxZAVV0K9 .mbr-desc,
.cid-uAxZAVV0K9 .desc-wrapper {
  color: #a3c9e7;
  text-align: center;
}
.cid-uAxZAVV0K9 .item-title,
.cid-uAxZAVV0K9 .title-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uAxZAVV0K9 .item-text,
.cid-uAxZAVV0K9 .text-wrap {
  color: #000000;
  text-align: center;
}
.cid-uAxZAVV0K9 .mbr-section-title,
.cid-uAxZAVV0K9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uAE1tsTkv0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAE1tsTkv0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE1tsTkv0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE1tsTkv0 .col-title {
  margin-bottom: 32px;
}
.cid-uAE1tsTkv0 .mbr-section-title {
  color: #24262b;
}
.cid-uAE1tsTkv0 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uAE1tsTkv0 .cards-row {
  row-gap: 32px;
}
.cid-uAE1tsTkv0 .card {
  border-radius: 0;
}
.cid-uAE1tsTkv0 .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uAE1tsTkv0 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uAE1tsTkv0 .text-wrap {
  flex-grow: 1;
}
.cid-uAE1tsTkv0 .card-title {
  color: #6b8a96;
}
.cid-uAE1tsTkv0 .card-text {
  color: #767676;
}
.cid-uAxZyshFHW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZyshFHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZyshFHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZyshFHW .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZyshFHW .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZyshFHW .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uAxZyshFHW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAxZyshFHW .tabs-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tabs-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 64px;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs {
    display: block;
  }
}
.cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  display: block;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs .nav-item {
    margin-bottom: 8px;
  }
}
.cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #ffffff;
  padding: 14px;
  border: 1px solid #6b8a96;
  margin-bottom: 0;
  background-color: #6b8a96;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  transition: all 0.3s ease-in-out;
}
.cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
  display: inline-block;
  margin-left: 14px;
  color: #a3c9e7;
}
.cid-uAxZyshFHW .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  border: 1px solid #a3c9e7;
}
.cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 50%;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .text-wrapper .item-text {
    margin-bottom: 36px;
  }
}
.cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 50%;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .image-wrapper img {
  display: inline-flex;
  height: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAxZyshFHW .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAxZyshFHW .mbr-section-title {
  color: #ffffff;
}
.cid-uAxZyshFHW .item-text {
  color: #000000;
}
.cid-uAxZyshFHW .mbr-section-title,
.cid-uAxZyshFHW .mbr-section-btn {
  color: #6b8a96;
}
.cid-uAxZGQubX0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6b8a96;
}
.cid-uAxZGQubX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZGQubX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZGQubX0 .content-wrapper {
  position: relative;
  padding: 130px 0;
  display: flex;
  justify-content: center;
  border-radius: 1000px;
  border: 1px solid #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uAxZGQubX0 .content-wrapper {
    padding: 16px;
    border-radius: 24px;
  }
}
.cid-uAxZGQubX0 .content-wrapper .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uAxZGQubX0 .content-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cid-uAxZGQubX0 .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uAxZGQubX0 .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 32px;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 12px !important;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  border: 1px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  color: #6b8a96;
  font-size: 18px;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
  font-size: 18px;
  opacity: .6;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.6em;
  margin-bottom: 16px;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uAxZGQubX0 .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uAxZGQubX0 .mbr-section-title {
  color: #ffffff;
}
.cid-uAxZGQubX0 .mbr-text,
.cid-uAxZGQubX0 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAxZGQubX0 .mbr-section-title,
.cid-uAxZGQubX0 .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uAxZGQubX0 LABEL {
  text-align: left;
}
.cid-uAE1rKwAaK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAE1rKwAaK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE1rKwAaK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE1rKwAaK .col-title {
  margin-bottom: 32px;
}
.cid-uAE1rKwAaK .mbr-section-title {
  color: #24262b;
}
.cid-uAE1rKwAaK .mbr-section-subtitle {
  color: #24262b;
}
.cid-uAE1rKwAaK .cards-row {
  row-gap: 32px;
}
.cid-uAE1rKwAaK .card {
  border-radius: 0;
}
.cid-uAE1rKwAaK .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uAE1rKwAaK .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uAE1rKwAaK .text-wrap {
  flex-grow: 1;
}
.cid-uAE1rKwAaK .card-title {
  color: #6b8a96;
}
.cid-uAE1rKwAaK .card-text {
  color: #767676;
}
.cid-uAxZxHJ8Vs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6b8a96;
}
.cid-uAxZxHJ8Vs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZxHJ8Vs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAxZxHJ8Vs .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uAxZxHJ8Vs .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uAxZxHJ8Vs .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: #6b8a96;
  border: 1px solid #6b8a96;
  border-radius: 0;
  margin-top: 12px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uAxZxHJ8Vs .panel-group .card {
    padding: 16px;
  }
}
.cid-uAxZxHJ8Vs .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uAxZxHJ8Vs .panel-group .card:hover,
.cid-uAxZxHJ8Vs .panel-group .card:focus {
  border: 1px solid #ffffff;
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #a3c9e7;
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uAxZxHJ8Vs .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-uAxZxHJ8Vs .panel-group .card .panel-collapse .panel-body {
  margin-top: 16px;
}
.cid-uAxZxHJ8Vs .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uAxZxHJ8Vs .mbr-section-title {
  color: #ffffff;
}
.cid-uAxZxHJ8Vs .panel-title-edit {
  color: #ffffff;
}
.cid-uAxZxHJ8Vs .panel-text {
  color: #ffffff;
}
.cid-uAxZxHJ8Vs .mbr-section-title,
.cid-uAxZxHJ8Vs .mbr-section-btn {
  color: #ffffff;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uBbz973NGy {
  background-image: url("../../../assets/images/mbr-2-1920x1280.webp");
}
.cid-uBbz973NGy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbz973NGy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbz973NGy .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBbz973NGy .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBbz973NGy .container {
    padding: 0 25px;
  }
}
.cid-uBbz973NGy .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBbz973NGy .title-wrapper {
    padding: 0;
  }
}
.cid-uBbz973NGy .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBbz973NGy .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBbz973NGy .mbr-section-title {
  color: #ffffff;
}
.cid-uBbz973NGy .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uBbz973NGy .mbr-section-title,
.cid-uBbz973NGy .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBbzqwvYY1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6b8a96;
}
.cid-uBbzqwvYY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbzqwvYY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbzqwvYY1 .items-wrapper {
  justify-content: center;
}
.cid-uBbzqwvYY1 .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBbzqwvYY1 .mbr-text,
.cid-uBbzqwvYY1 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBbzsoMcM9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBbzsoMcM9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbzsoMcM9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbzsoMcM9 .items-wrapper {
  justify-content: center;
}
.cid-uBbzsoMcM9 .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #000000, #1a1a1a 65%, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBbzsoMcM9 .mbr-text,
.cid-uBbzsoMcM9 .text-wrapper {
  color: #6b8a96;
  text-align: center;
}
.cid-uBbClCkaXM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3c9e7;
}
.cid-uBbClCkaXM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbClCkaXM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbClCkaXM .items-wrapper {
  justify-content: center;
}
.cid-uBbClCkaXM .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #000000, #1a1a1a 65%, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBbClCkaXM .mbr-text,
.cid-uBbClCkaXM .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBbze8Wp3P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6b8a96;
}
.cid-uBbze8Wp3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbze8Wp3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbze8Wp3P .items-wrapper {
  justify-content: center;
}
.cid-uBbze8Wp3P .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBbze8Wp3P .mbr-text,
.cid-uBbze8Wp3P .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uBbzm9RbHq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBbzm9RbHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbzm9RbHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbzm9RbHq .items-wrapper {
  justify-content: center;
}
.cid-uBbzm9RbHq .text-wrapper .mbr-text {
  margin-bottom: 0;
  background: linear-gradient(90deg, #000000, #1a1a1a 65%, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBbzm9RbHq .mbr-text,
.cid-uBbzm9RbHq .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBnDRVzzL2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBnDRVzzL2 .item-img {
  position: relative;
}
.cid-uBnDRVzzL2 .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uBnDRVzzL2 .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uBnDRVzzL2 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uBnDRVzzL2 .image-wrapper {
  overflow: hidden;
}
.cid-uBnDRVzzL2 .item1 {
  margin-bottom: 2rem !important;
}
.cid-uBnDRVzzL2 .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uBnDRVzzL2 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uBnDRVzzL2 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uBnDRVzzL2 .item1,
.cid-uBnDRVzzL2 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uBnDRVzzL2 .item1 .item:hover,
.cid-uBnDRVzzL2 .item .item:hover {
  cursor: pointer;
}
.cid-uBnDRVzzL2 .item1:hover .link-icon-wrapper span,
.cid-uBnDRVzzL2 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uBnDRVzzL2 .card2 {
    margin-top: 1rem;
  }
}
.cid-uBnDRVzzL2 .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uBnDRVzzL2 .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uBnDRVzzL2 .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uBnDRVzzL2 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uBnDRVzzL2 .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uBnDRVzzL2 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uBnDRVzzL2 .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uBnDRVzzL2 .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uBnDRVzzL2 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uBnDRVzzL2 img,
.cid-uBnDRVzzL2 .item-img {
  width: 100%;
}
.cid-uBnDRVzzL2 .item:focus,
.cid-uBnDRVzzL2 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uBnDRVzzL2 .item {
    margin-bottom: 1rem;
  }
}
.cid-uBnDRVzzL2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBnDRVzzL2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uBnDRVzzL2 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uBnDRVzzL2 .mbr-section-subtitle,
.cid-uBnDRVzzL2 .subtitle-wrap,
.cid-uBnDRVzzL2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBnDRVzzL2 .mbr-text,
.cid-uBnDRVzzL2 .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCCcf591Wz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBbFnHONeh {
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-uBbFnHONeh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbFnHONeh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbFnHONeh .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBbFnHONeh .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBbFnHONeh .container {
    padding: 0 25px;
  }
}
.cid-uBbFnHONeh .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBbFnHONeh .title-wrapper {
    padding: 0;
  }
}
.cid-uBbFnHONeh .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBbFnHONeh .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBbFnHONeh .mbr-section-title {
  color: #ffffff;
}
.cid-uBbFnHONeh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uBbFnHONeh .mbr-section-title,
.cid-uBbFnHONeh .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBbFpL05Bh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBbFpL05Bh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbFpL05Bh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbFpL05Bh .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBbFpL05Bh .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBbFpL05Bh .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uBbFpL05Bh .title-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBbFpL05Bh .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBbFpL05Bh .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBbFpL05Bh .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBbFpL05Bh .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBbFpL05Bh .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uBbFpL05Bh .item {
    margin-bottom: 28px;
  }
}
.cid-uBbFpL05Bh .item .item-wrapper {
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uBbFpL05Bh .item .item-wrapper:hover,
.cid-uBbFpL05Bh .item .item-wrapper:focus {
  border: 2px solid #6b8a96;
  background-color: #6b8a96;
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap {
  padding: 12px;
  border: 1px solid #ffffff;
  background-color: #a3c9e7;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-uBbFpL05Bh .item .item-wrapper .item-wrap {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uBbFpL05Bh .item .item-wrapper .item-wrap {
    padding: 16px;
  }
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .icon-wrap {
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 50%;
}
@media (max-width: 1200px) {
  .cid-uBbFpL05Bh .item .item-wrapper .item-wrap .icon-wrap {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .icon-wrap .mbr-iconfont {
  display: inline-block;
  font-size: 70px;
  color: #ffffff;
  background: linear-gradient(90deg, #6b8a96, #89a2ab 65%, #a7b9c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .item-content {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uBbFpL05Bh .item .item-wrapper .item-wrap .item-content {
    width: 100%;
    display: block;
  }
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .item-content .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 12px;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uBbFpL05Bh .item .item-wrapper .item-wrap .item-content .text-wrap {
    padding: 0;
    margin-bottom: 16px;
  }
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .item-content .text-wrap .item-title {
  margin-bottom: 4px;
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .item-content .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .icon-wrapper {
  min-width: 24px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uBbFpL05Bh .item .item-wrapper .item-wrap .icon-wrapper {
    min-width: auto;
  }
}
.cid-uBbFpL05Bh .item .item-wrapper .item-wrap .icon-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 24px;
  color: #ffffff;
}
.cid-uBbFpL05Bh .mbr-section-title {
  color: #ffffff;
}
.cid-uBbFpL05Bh .mbr-text,
.cid-uBbFpL05Bh .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBbFpL05Bh .mbr-desc,
.cid-uBbFpL05Bh .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uBbFpL05Bh .item-title {
  color: #ffffff;
}
.cid-uBbFpL05Bh .item-text {
  color: #ffffff;
}
.cid-uBbFpL05Bh .mbr-section-title,
.cid-uBbFpL05Bh .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBbFpL05Bh .item-title,
.cid-uBbFpL05Bh .icon-wrapper {
  color: #6b8a96;
}
.cid-uBbH2aD5Aa {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #6b8a96;
}
.cid-uBbH2aD5Aa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbH2aD5Aa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbH2aD5Aa .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBbH2aD5Aa .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uBbH2aD5Aa .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBbH2aD5Aa .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBbH2aD5Aa .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uBbH2aD5Aa .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBbH2aD5Aa .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBbH2aD5Aa .image-wrapper img {
    height: 350px;
  }
}
.cid-uBbH2aD5Aa .mbr-section-title {
  color: #ffffff;
}
.cid-uBbH2aD5Aa .mbr-text,
.cid-uBbH2aD5Aa .text-wrapper {
  color: #ffffff;
}
.cid-uBbHsvd6Vw {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #6b8a96;
}
.cid-uBbHsvd6Vw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbHsvd6Vw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbHsvd6Vw .row {
  justify-content: center;
}
.cid-uBbHsvd6Vw .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uBbHsvd6Vw .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uBbHsvd6Vw .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uBbHsvd6Vw .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBbHsvd6Vw .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uBbHsvd6Vw .item {
    margin-bottom: 35px;
  }
}
.cid-uBbHsvd6Vw .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uBbHsvd6Vw .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uBbHsvd6Vw .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a3c9e7;
  color: #ffffff;
  font-size: 60px;
}
.cid-uBbHsvd6Vw .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uBbHsvd6Vw .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uBbHsvd6Vw .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-uBbHsvd6Vw .mbr-section-title {
  color: #ffffff;
}
.cid-uBbHsvd6Vw .mbr-text {
  color: #000000;
}
.cid-uBbHsvd6Vw .item-title {
  color: #000000;
}
.cid-uBbHsvd6Vw .item-text {
  color: #ffffff;
}
.cid-uBbHsvd6Vw .item-title,
.cid-uBbHsvd6Vw .icon-wrapper {
  color: #a3c9e7;
}
.cid-uBbH9pVccD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBbH9pVccD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbH9pVccD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbH9pVccD .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBbH9pVccD .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uBbH9pVccD .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBbH9pVccD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBbH9pVccD .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uBbH9pVccD .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBbH9pVccD .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBbH9pVccD .image-wrapper img {
    height: 350px;
  }
}
.cid-uBbH9pVccD .mbr-section-title {
  color: #ffffff;
}
.cid-uBbH9pVccD .mbr-text,
.cid-uBbH9pVccD .text-wrapper {
  color: #000000;
}
.cid-uBbH9pVccD .mbr-section-title,
.cid-uBbH9pVccD .mbr-section-btn {
  color: #6b8a96;
}
.cid-uBbKN8n43u {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBbKN8n43u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbKN8n43u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbKN8n43u .row {
  justify-content: center;
}
.cid-uBbKN8n43u .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uBbKN8n43u .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uBbKN8n43u .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uBbKN8n43u .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBbKN8n43u .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uBbKN8n43u .item {
    margin-bottom: 35px;
  }
}
.cid-uBbKN8n43u .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uBbKN8n43u .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uBbKN8n43u .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a3c9e7;
  color: #ffffff;
  font-size: 60px;
}
.cid-uBbKN8n43u .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uBbKN8n43u .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uBbKN8n43u .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-uBbKN8n43u .mbr-section-title {
  color: #6b8a96;
}
.cid-uBbKN8n43u .mbr-text {
  color: #000000;
}
.cid-uBbKN8n43u .item-title {
  color: #000000;
}
.cid-uBbKN8n43u .item-text {
  color: #000000;
}
.cid-uBbKN8n43u .item-title,
.cid-uBbKN8n43u .icon-wrapper {
  color: #6b8a96;
}
.cid-uBbHeNeOlO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBbHeNeOlO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbHeNeOlO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbHeNeOlO .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBbHeNeOlO .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uBbHeNeOlO .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBbHeNeOlO .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBbHeNeOlO .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uBbHeNeOlO .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBbHeNeOlO .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBbHeNeOlO .image-wrapper img {
    height: 350px;
  }
}
.cid-uBbHeNeOlO .mbr-section-title {
  color: #ffffff;
}
.cid-uBbHeNeOlO .mbr-text,
.cid-uBbHeNeOlO .text-wrapper {
  color: #000000;
}
.cid-uBbHeNeOlO .mbr-section-title,
.cid-uBbHeNeOlO .mbr-section-btn {
  color: #6b8a96;
}
.cid-uBbNJawGIy {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBbNJawGIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbNJawGIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbNJawGIy .row {
  justify-content: center;
}
.cid-uBbNJawGIy .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uBbNJawGIy .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uBbNJawGIy .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uBbNJawGIy .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBbNJawGIy .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uBbNJawGIy .item {
    margin-bottom: 35px;
  }
}
.cid-uBbNJawGIy .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uBbNJawGIy .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uBbNJawGIy .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a3c9e7;
  color: #ffffff;
  font-size: 60px;
}
.cid-uBbNJawGIy .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uBbNJawGIy .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uBbNJawGIy .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-uBbNJawGIy .mbr-section-title {
  color: #6b8a96;
}
.cid-uBbNJawGIy .mbr-text {
  color: #000000;
}
.cid-uBbNJawGIy .item-title {
  color: #000000;
}
.cid-uBbNJawGIy .item-text {
  color: #000000;
}
.cid-uBbNJawGIy .item-title,
.cid-uBbNJawGIy .icon-wrapper {
  color: #6b8a96;
}
.cid-uBbQ75XEvW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b8a96;
  background: linear-gradient(90deg, #6b8a96, #a3c9e7);
}
.cid-uBbQ75XEvW .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-uBbQ75XEvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbQ75XEvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBi9T4ePDx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uBi9T4ePDx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBi9T4ePDx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBi9T4ePDx .container {
    padding: 0 30px;
  }
}
.cid-uBi9T4ePDx .row {
  justify-content: center;
}
.cid-uBi9T4ePDx .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uBi9T4ePDx .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uBi9T4ePDx .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-uBi9T4ePDx .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uBi9T4ePDx .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uBi9T4ePDx .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uBi9T4ePDx .mbr-section-title {
  color: #ffffff;
}
.cid-uBi9T4ePDx .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uBi9T4ePDx .mbr-section-title,
.cid-uBi9T4ePDx .mbr-section-btn {
  color: #6b8a96;
  text-align: center;
}
.cid-uDWH6q4ljw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDWH6q4ljw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWH6q4ljw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWH6q4ljw .number-wrap {
  color: #6b8a96;
  text-align: center;
}
.cid-uDWH6q4ljw .number {
  color: #a3c9e7;
  white-space: nowrap;
}
.cid-uDWH6q4ljw .period {
  display: block;
}
.cid-uDWH6q4ljw .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uDWH6q4ljw .period {
    font-size: 0.8rem;
  }
}
.cid-uDWH6q4ljw .btn {
  height: 100%;
  margin: 0;
}
.cid-uDWH6q4ljw .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uBiccQZ4wr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBiccQZ4wr .item-img {
  position: relative;
}
.cid-uBiccQZ4wr .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uBiccQZ4wr .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uBiccQZ4wr .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uBiccQZ4wr .image-wrapper {
  overflow: hidden;
}
.cid-uBiccQZ4wr .item1 {
  margin-bottom: 2rem !important;
}
.cid-uBiccQZ4wr .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uBiccQZ4wr .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uBiccQZ4wr .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uBiccQZ4wr .item1,
.cid-uBiccQZ4wr .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uBiccQZ4wr .item1 .item:hover,
.cid-uBiccQZ4wr .item .item:hover {
  cursor: pointer;
}
.cid-uBiccQZ4wr .item1:hover .link-icon-wrapper span,
.cid-uBiccQZ4wr .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uBiccQZ4wr .card2 {
    margin-top: 1rem;
  }
}
.cid-uBiccQZ4wr .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uBiccQZ4wr .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uBiccQZ4wr .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uBiccQZ4wr .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uBiccQZ4wr .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uBiccQZ4wr .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uBiccQZ4wr .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uBiccQZ4wr .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uBiccQZ4wr .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uBiccQZ4wr img,
.cid-uBiccQZ4wr .item-img {
  width: 100%;
}
.cid-uBiccQZ4wr .item:focus,
.cid-uBiccQZ4wr span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uBiccQZ4wr .item {
    margin-bottom: 1rem;
  }
}
.cid-uBiccQZ4wr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBiccQZ4wr .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uBiccQZ4wr .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uBiccQZ4wr .mbr-section-subtitle,
.cid-uBiccQZ4wr .subtitle-wrap,
.cid-uBiccQZ4wr .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBiccQZ4wr .mbr-text,
.cid-uBiccQZ4wr .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBidDh2P1Y {
  background-image: url("../../../assets/images/mbr-1000x667.webp");
}
.cid-uBidDh2P1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBidDh2P1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBidDh2P1Y .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBidDh2P1Y .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBidDh2P1Y .container {
    padding: 0 25px;
  }
}
.cid-uBidDh2P1Y .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBidDh2P1Y .title-wrapper {
    padding: 0;
  }
}
.cid-uBidDh2P1Y .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBidDh2P1Y .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBidDh2P1Y .mbr-section-title {
  color: #ffffff;
}
.cid-uBidDh2P1Y .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uBidDh2P1Y .mbr-section-title,
.cid-uBidDh2P1Y .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBijMuBgWL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBijMuBgWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBijMuBgWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBijMuBgWL .container {
    padding: 0 15px;
  }
}
.cid-uBijMuBgWL .row {
  justify-content: center;
}
.cid-uBijMuBgWL .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px 60px;
  padding: 0 130px;
}
@media (max-width: 1440px) {
  .cid-uBijMuBgWL .items-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uBijMuBgWL .items-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uBijMuBgWL .items-wrapper {
    grid-template-columns: 1fr;
    gap: 100px 40px;
  }
}
.cid-uBijMuBgWL .items-wrapper .item:nth-child(2n) {
  margin-top: 70px;
}
@media (max-width: 992px) {
  .cid-uBijMuBgWL .items-wrapper .item:nth-child(2n) {
    margin-top: 0;
  }
}
.cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  padding: 50px;
  background-color: #6b8a96;
}
@media (max-width: 992px) {
  .cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box {
    padding: 40px 20px;
  }
}
.cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box .item-number {
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box .item-number {
    top: -4.5rem;
  }
}
.cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 45px;
  color: #a3c9e7;
}
.cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 40px;
}
.cid-uBijMuBgWL .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uBijMuBgWL .item-title {
  color: #30262b;
}
.cid-uBijMuBgWL .item-text {
  color: #000000;
}
.cid-uBijMuBgWL .item-number {
  color: #a3c9e7;
}
.cid-uBijMuBgWL .item-title,
.cid-uBijMuBgWL .icon-wrapper {
  color: #ffffff;
}
.cid-uBiLNqrUrB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #6b8a96;
}
.cid-uBiLNqrUrB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBiLNqrUrB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBiLNqrUrB .container {
    padding: 0 16px;
  }
}
.cid-uBiLNqrUrB .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uBiLNqrUrB .card-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBiLNqrUrB .card-wrapper .card-number .mbr-number {
  display: inline-flex;
  position: relative;
  margin-bottom: 20px;
}
.cid-uBiLNqrUrB .card-wrapper .card-number .mbr-number span {
  position: absolute;
  top: 0;
  right: -2rem;
  font-size: 50%;
  color: #a3c9e7;
}
.cid-uBiLNqrUrB .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBiLNqrUrB .mbr-number {
  color: #ffffff;
}
.cid-uBiLNqrUrB .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uBiLNqrUrB .card-number {
  text-align: center;
}
.cid-uBiS9kYwS7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #6b8a96;
}
.cid-uBiS9kYwS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBiS9kYwS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBiS9kYwS7 .card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .cid-uBiS9kYwS7 .card-box {
    max-width: 510px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0;
  }
}
.cid-uBiS9kYwS7 .label-container {
  padding: 5px 16px;
  border-radius: 100px;
  background: #ff014e;
}
.cid-uBiS9kYwS7 .label-text {
  color: #ffffff;
}
.cid-uBiS9kYwS7 .card-text {
  color: #ffffff;
  margin-left: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uBiS9kYwS7 .card-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-uBiS9kYwS7 .link-text {
  color: #C4CFDE;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .cid-uBiS9kYwS7 .link-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-uBiS9kYwS7 .link-text a {
  display: flex;
  align-items: center;
}
.cid-uBiS9kYwS7 .link-text a .mbr-iconfont {
  font-size: inherit;
  color: inherit;
  margin-left: 6px;
}
.cid-uBiS9kYwS7 .link-text a:hover {
  color: #6b8a96 !important;
}
.cid-uBiJ9tfPJO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uBiJ9tfPJO::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 22%;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(225deg, #a3c9e7 -10%, transparent 80%);
}
.cid-uBiJ9tfPJO::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #6b8a96 -10%, transparent 80%);
}
.cid-uBiJ9tfPJO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBiJ9tfPJO .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-uBiJ9tfPJO .container {
    padding: 0 16px;
  }
}
.cid-uBiJ9tfPJO .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uBiJ9tfPJO .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uBiJ9tfPJO .content-wrapper {
  margin-bottom: 80px;
}
.cid-uBiJ9tfPJO .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBiJ9tfPJO .content-wrapper .mbr-section-title span {
  color: #a3c9e7;
}
.cid-uBiJ9tfPJO .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBiJ9tfPJO .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBiJ9tfPJO .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uBiJ9tfPJO .item .item-wrapper {
  background-color: #6b8a96;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uBiJ9tfPJO .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .item-desc {
  margin-bottom: 16px;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .item-price {
  margin-bottom: 16px;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .mbr-section-btn {
  width: 100%;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .list-wrapper {
  margin-top: 40px;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .list-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  position: relative;
  padding-left: 28px;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .list-wrapper .list .item-wrap:before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #a3c9e7;
}
.cid-uBiJ9tfPJO .item .item-wrapper .card-box .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBiJ9tfPJO .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uBiJ9tfPJO .mbr-text,
.cid-uBiJ9tfPJO .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBiJ9tfPJO .item-desc {
  color: #a3c9e7;
}
.cid-uBiJ9tfPJO .item-title {
  color: #ffffff;
}
.cid-uBiJ9tfPJO .item-price {
  color: #000000;
}
.cid-uBiJ9tfPJO .mbr-list-title {
  color: #ffffff;
  text-align: left;
}
.cid-uBiJ9tfPJO .list {
  color: #000000;
}
.cid-uBiUf3WKKU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBiUf3WKKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBiUf3WKKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBiUf3WKKU li {
  padding-bottom: 1rem;
}
.cid-uBiUf3WKKU .row {
  justify-content: flex-end;
}
.cid-uBiUf3WKKU ul {
  padding-left: 1.5rem;
}
.cid-uBiUf3WKKU .mbr-text3 {
  line-height: 1.2;
}
.cid-uBiUf3WKKU p {
  line-height: 1.2;
}
.cid-uBiUf3WKKU .mbr-text {
  line-height: 1.2;
  color: #000000;
}
.cid-uBiUf3WKKU .card-wrapper {
  overflow: hidden;
  background: #ffffff;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-uBiUf3WKKU .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uBiUf3WKKU .image-wrapper {
  padding: 0 1rem;
}
.cid-uBiUf3WKKU .mbr-section-title {
  color: #6b8a96;
}
.cid-uBiUf3WKKU .mbr-text,
.cid-uBiUf3WKKU .mbr-section-btn {
  color: #f0466a;
}
.cid-uBiUf3WKKU .mbr-card-title {
  color: #f0466a;
}
.cid-uBiUf3WKKU .mbr-card-title,
.cid-uBiUf3WKKU .line {
  color: #f0466a;
}
.cid-uBiUf3WKKU .mbr-section-text {
  color: #000000;
}
.cid-uBiLVMFHdb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #6b8a96 10%, #6b8a96 100%) !important;
}
.cid-uBiLVMFHdb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBiLVMFHdb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBiLVMFHdb .card {
  margin: 10px 0;
}
.cid-uBiLVMFHdb .card-box {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .cid-uBiLVMFHdb .card-box {
    justify-content: center;
  }
}
.cid-uBiLVMFHdb .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  aspect-ratio: 1;
  padding: 4px;
  border-radius: 50%;
  background-color: #a3c9e7;
  margin-right: 10px;
}
.cid-uBiLVMFHdb .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-uBiLVMFHdb .card-text {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-uDWKKq7hNd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDWKKq7hNd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDWKKq7hNd form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uDWKKq7hNd form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uDWKKq7hNd form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDWKKq7hNd .mbr-section-title {
  color: #6b8a96;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBbDgp3rFI {
  background-image: url("../../../assets/images/mbr-1920x1257.webp");
}
.cid-uBbDgp3rFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbDgp3rFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbDgp3rFI .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBbDgp3rFI .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBbDgp3rFI .container {
    padding: 0 25px;
  }
}
.cid-uBbDgp3rFI .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBbDgp3rFI .title-wrapper {
    padding: 0;
  }
}
.cid-uBbDgp3rFI .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBbDgp3rFI .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBbDgp3rFI .mbr-section-title {
  color: #ffffff;
}
.cid-uBbDgp3rFI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uBbDgp3rFI .mbr-section-title,
.cid-uBbDgp3rFI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uBbE9OgsbZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uBbE9OgsbZ .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBbE9OgsbZ .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .title-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBbE9OgsbZ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBbE9OgsbZ .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBbE9OgsbZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 850px;
  max-width: 850px;
}
@media (max-width: 1200px) {
  .cid-uBbE9OgsbZ .embla__slide {
    min-width: 650px;
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uBbE9OgsbZ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBbE9OgsbZ .embla__slide:hover .slide-content .item-wrapper .item-img img,
.cid-uBbE9OgsbZ .embla__slide:focus .slide-content .item-wrapper .item-img img {
  border: 2px solid #078efb;
}
.cid-uBbE9OgsbZ .embla__slide .slide-content {
  width: 100%;
}
.cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 2px;
}
.cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
    width: 100%;
  }
}
.cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
    width: 100%;
  }
}
.cid-uBbE9OgsbZ .embla__button--next,
.cid-uBbE9OgsbZ .embla__button--prev {
  display: flex;
}
.cid-uBbE9OgsbZ .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #a3c9e7 !important;
  color: #ffffff !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-uBbE9OgsbZ .embla__button:hover {
  transform: scale(1.05);
}
.cid-uBbE9OgsbZ .embla__button.embla__button--prev {
  left: 0;
}
.cid-uBbE9OgsbZ .embla__button.embla__button--next {
  right: 0;
}
.cid-uBbE9OgsbZ .embla {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-uBbE9OgsbZ .embla {
    margin-bottom: 38px;
  }
}
.cid-uBbE9OgsbZ .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uBbE9OgsbZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBbE9OgsbZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBbE9OgsbZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBbE9OgsbZ .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uBbE9OgsbZ .mbr-section-title {
  color: #ffffff;
}
.cid-uBbE9OgsbZ .mbr-text,
.cid-uBbE9OgsbZ .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBbE9OgsbZ .mbr-desc,
.cid-uBbE9OgsbZ .desc-wrapper {
  color: #5f6368;
  text-align: center;
}
.cid-uBbE9OgsbZ .item-title,
.cid-uBbE9OgsbZ .title-wrap {
  color: #6b8a96;
  text-align: center;
}
.cid-uBbE9OgsbZ .item-text,
.cid-uBbE9OgsbZ .text-wrap {
  color: #000000;
  text-align: center;
}
.cid-uBbE9OgsbZ .mbr-section-title,
.cid-uBbE9OgsbZ .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBbSLVD9hY {
  background-image: url("../../../assets/images/background3-2.webp");
}
.cid-uBbSLVD9hY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbSLVD9hY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbSLVD9hY .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBbSLVD9hY .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBbSLVD9hY .container {
    padding: 0 25px;
  }
}
.cid-uBbSLVD9hY .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBbSLVD9hY .title-wrapper {
    padding: 0;
  }
}
.cid-uBbSLVD9hY .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBbSLVD9hY .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBbSLVD9hY .mbr-section-title {
  color: #ffffff;
}
.cid-uBbSLVD9hY .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uBbSLVD9hY .mbr-section-title,
.cid-uBbSLVD9hY .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBi7PTiyNc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBi7PTiyNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBi7PTiyNc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBi7PTiyNc .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uBi7PTiyNc .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper .item {
    margin-bottom: 12px;
  }
  .cid-uBi7PTiyNc .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uBi7PTiyNc .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #6b8a96;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #a3c9e7;
  color: #a3c9e7;
}
@media (max-width: 992px) {
  .cid-uBi7PTiyNc .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.cid-uBi7PTiyNc .item-title {
  color: #050f0f;
}
.cid-uBi7PTiyNc .item-text {
  color: #ffffff;
}
.cid-uBi7PTiyNc .icon-wrapper {
  text-align: right;
}
.cid-uBi7PTiyNc .item-title,
.cid-uBi7PTiyNc .icon-wrapper,
.cid-uBi7PTiyNc .mbr-section-btn {
  color: #ffffff;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBnYQYRcEv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBnYQYRcEv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBnYQYRcEv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBnYQYRcEv .items-wrapper {
  justify-content: center;
}
.cid-uBnYQYRcEv .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uBnYQYRcEv .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uBnYQYRcEv .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uBnYQYRcEv .content-wrapper .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-uBnYQYRcEv .form-wrapper {
  padding: 32px 40px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uBnYQYRcEv .form-wrapper {
    padding: 20px 16px;
  }
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 2px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  height: 34px;
}
@media (max-width: 992px) {
  .cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #a3c9e7 !important;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uBnYQYRcEv .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
  padding: 14px;
  border-radius: .5rem !important;
}
.cid-uBnYQYRcEv .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uBnYQYRcEv .mbr-section-subtitle {
  color: #272b2e;
  text-align: center;
}
.cid-uBbSTFZEAb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBbSTFZEAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbSTFZEAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbSTFZEAb .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBbSTFZEAb .google-map {
    margin-bottom: 48px;
  }
}
.cid-uBbSTFZEAb .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uBbSTFZEAb .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uBbSTFZEAb .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uBbSTFZEAb .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBbSTFZEAb .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSTFZEAb .list-wrapper .list .item-wrap:hover,
.cid-uBbSTFZEAb .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uBbSTFZEAb .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBbSTFZEAb .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uBbSTFZEAb .social-wrapper {
    text-align: left;
  }
}
.cid-uBbSTFZEAb .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBbSTFZEAb .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBbSTFZEAb .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBbSTFZEAb .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #000000;
}
.cid-uBbSTFZEAb .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uBbSTFZEAb .list {
  color: #9aa0a6;
}
.cid-uBbSTFZEAb .list,
.cid-uBbSTFZEAb .item-wrap,
.cid-uBbSTFZEAb .social-wrapper {
  color: #000000;
}
.cid-uBi6D0Agls {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBi6D0Agls .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBi6D0Agls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBi6D0Agls .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBi6D0Agls .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBi6D0Agls .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBi6D0Agls .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .item {
    margin-bottom: 28px;
  }
}
.cid-uBi6D0Agls .item .item-wrapper {
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uBi6D0Agls .item .item-wrapper:hover,
.cid-uBi6D0Agls .item .item-wrapper:focus {
  border: 2px solid #a3c9e7;
  background-color: #a3c9e7;
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap {
  padding: 12px;
  border: 1px solid #ffffff;
  background-color: #a3c9e7;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .item .item-wrapper .item-wrap {
    padding: 16px;
    display: block;
  }
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-img img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content {
    width: 100%;
    display: block;
  }
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 18px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .text-wrap {
    padding: 0;
    margin-bottom: 16px;
  }
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .text-wrap .item-date {
  margin-bottom: 4px;
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .icon-wrapper {
  min-width: 24px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .icon-wrapper {
    min-width: auto;
  }
}
.cid-uBi6D0Agls .item .item-wrapper .item-wrap .item-content .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #a3c9e7;
}
.cid-uBi6D0Agls .mbr-section-title {
  color: #6b8a96;
  text-align: center;
}
.cid-uBi6D0Agls .item-date {
  color: #000000;
}
.cid-uBi6D0Agls .item-text {
  color: #ffffff;
}
.cid-uBi99CcRZ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBi99CcRZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBi99CcRZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBi99CcRZ4 .content-wrapper {
  position: relative;
  padding: 130px 0;
  display: flex;
  justify-content: center;
  border-radius: 1000px;
  border: 1px solid #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uBi99CcRZ4 .content-wrapper {
    padding: 16px;
    border-radius: 24px;
  }
}
.cid-uBi99CcRZ4 .content-wrapper .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uBi99CcRZ4 .content-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cid-uBi99CcRZ4 .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBi99CcRZ4 .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 32px;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 12px !important;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  border: 1px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  color: #6b8a96;
  font-size: 18px;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
  font-size: 18px;
  opacity: .6;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.6em;
  margin-bottom: 16px;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uBi99CcRZ4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uBi99CcRZ4 .mbr-section-title {
  color: #ffffff;
}
.cid-uBi99CcRZ4 .mbr-text,
.cid-uBi99CcRZ4 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBi99CcRZ4 .mbr-section-title,
.cid-uBi99CcRZ4 .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBi99CcRZ4 LABEL {
  text-align: left;
}
.cid-uBnEmPh2MC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBnEmPh2MC .item-img {
  position: relative;
}
.cid-uBnEmPh2MC .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uBnEmPh2MC .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uBnEmPh2MC .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uBnEmPh2MC .image-wrapper {
  overflow: hidden;
}
.cid-uBnEmPh2MC .item1 {
  margin-bottom: 2rem !important;
}
.cid-uBnEmPh2MC .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uBnEmPh2MC .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uBnEmPh2MC .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uBnEmPh2MC .item1,
.cid-uBnEmPh2MC .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uBnEmPh2MC .item1 .item:hover,
.cid-uBnEmPh2MC .item .item:hover {
  cursor: pointer;
}
.cid-uBnEmPh2MC .item1:hover .link-icon-wrapper span,
.cid-uBnEmPh2MC .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uBnEmPh2MC .card2 {
    margin-top: 1rem;
  }
}
.cid-uBnEmPh2MC .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uBnEmPh2MC .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uBnEmPh2MC .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uBnEmPh2MC .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uBnEmPh2MC .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uBnEmPh2MC .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uBnEmPh2MC .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uBnEmPh2MC .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uBnEmPh2MC .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uBnEmPh2MC img,
.cid-uBnEmPh2MC .item-img {
  width: 100%;
}
.cid-uBnEmPh2MC .item:focus,
.cid-uBnEmPh2MC span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uBnEmPh2MC .item {
    margin-bottom: 1rem;
  }
}
.cid-uBnEmPh2MC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBnEmPh2MC .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uBnEmPh2MC .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uBnEmPh2MC .mbr-section-subtitle,
.cid-uBnEmPh2MC .subtitle-wrap,
.cid-uBnEmPh2MC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uBnEmPh2MC .mbr-text,
.cid-uBnEmPh2MC .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBLWkDLHhq {
  background-image: url("../../../assets/images/mbr-1920x1043.webp");
}
.cid-uBLWkDLHhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBLWkDLHhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBLWkDLHhq .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBLWkDLHhq .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBLWkDLHhq .container {
    padding: 0 25px;
  }
}
.cid-uBLWkDLHhq .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBLWkDLHhq .title-wrapper {
    padding: 0;
  }
}
.cid-uBLWkDLHhq .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBLWkDLHhq .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBLWkDLHhq .mbr-section-title {
  color: #ffffff;
}
.cid-uBLWkDLHhq .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uBLWkDLHhq .mbr-section-title,
.cid-uBLWkDLHhq .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBM2iOGhpr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #6b8a96;
  overflow: hidden;
}
.cid-uBM2iOGhpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBM2iOGhpr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBM2iOGhpr .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uBM2iOGhpr .col-title {
    margin-bottom: 40px;
  }
}
.cid-uBM2iOGhpr .mbr-section-title {
  color: #ffffff;
}
.cid-uBM2iOGhpr .mbr-section-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-uBM2iOGhpr .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uBM2iOGhpr .mbr-section-btn {
  margin-top: 10px;
}
.cid-uBM2iOGhpr .mbr-section-btn .btn {
  padding: 5px 35px !important;
  min-width: max-content !important;
}
.cid-uBM2iOGhpr .col-card {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uBM2iOGhpr .col-card {
    margin-bottom: 60px;
  }
}
.cid-uBM2iOGhpr .card-wrap {
  border-radius: 0;
}
.cid-uBM2iOGhpr .content-wrap {
  width: 100%;
  margin-top: 20px;
}
.cid-uBM2iOGhpr .card-title {
  color: #2B2B2B;
}
.cid-uBM2iOGhpr .mbr-text {
  color: #000000;
  margin-top: 8px;
}
.cid-uBM2iOGhpr .image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  transition: .3s all;
}
.cid-uBM2iOGhpr .image-wrap img {
  height: 300px;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uBM2iOGhpr .image-wrap img {
    height: 246px;
  }
}
@media (max-width: 991px) {
  .cid-uBM2iOGhpr .image-wrap img {
    height: 168px;
  }
}
@media (max-width: 767px) {
  .cid-uBM2iOGhpr .image-wrap img {
    height: auto !important;
    max-height: 400px;
  }
}
.cid-uBM2iOGhpr .container,
.cid-uBM2iOGhpr .container-fluid {
  position: relative;
}
.cid-uBM2iOGhpr .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 200px;
  height: 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 767px) {
  .cid-uBM2iOGhpr .circle-blur {
    width: 200px;
    height: 200px;
  }
}
.cid-uBM2iOGhpr .circle-blur1 {
  top: 0;
  right: 50%;
  background-image: linear-gradient(132deg, #fff182 27%, #fff182 50%, #fff182 79%);
}
.cid-uBM2iOGhpr .circle-blur2 {
  top: 12%;
  right: 40%;
  background-image: linear-gradient(132deg, #77bbdf 27%, #77bbdf 50%, #77bbdf 79%);
}
.cid-uBM2iOGhpr .card-title,
.cid-uBM2iOGhpr .mbr-section-btn {
  color: #ffffff;
}
.cid-uBLXkr3Zmm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBLXkr3Zmm .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uBLXkr3Zmm .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uBLXkr3Zmm .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uBLXkr3Zmm .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uBLXkr3Zmm .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uBLXkr3Zmm .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-uBLXkr3Zmm .item-img {
  width: 100%;
  opacity: 0.8;
  filter: brightness(60%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.cid-uBLXkr3Zmm .item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 2rem;
}
.cid-uBLXkr3Zmm .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin: auto;
  pointer-events: auto;
}
.cid-uBLXkr3Zmm .item-title {
  color: #ffffff;
}
.cid-uBLXkr3Zmm .mbr-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uBLXkr3Zmm .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBHpap4Yp {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBHpap4Yp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBHpap4Yp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBHpap4Yp .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBHpap4Yp .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBHpap4Yp .container {
    padding: 0 25px;
  }
}
.cid-uCBHpap4Yp .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBHpap4Yp .title-wrapper {
    padding: 0;
  }
}
.cid-uCBHpap4Yp .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBHpap4Yp .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBHpap4Yp .mbr-section-title {
  color: #ffffff;
}
.cid-uCBHpap4Yp .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBHpap4Yp .mbr-section-title,
.cid-uCBHpap4Yp .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBI2dSTib {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBI2dSTib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBI2dSTib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBI2dSTib .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBI2dSTib .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBKKpu5Of {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBKKpu5Of .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBKKpu5Of .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBKKpu5Of .row {
  justify-content: center;
}
.cid-uCBKKpu5Of .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uCBKKpu5Of .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uCBKKpu5Of .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uCBKKpu5Of .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCBKKpu5Of .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uCBKKpu5Of .item {
    margin-bottom: 35px;
  }
}
.cid-uCBKKpu5Of .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uCBKKpu5Of .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uCBKKpu5Of .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a3c9e7;
  color: #ffffff;
  font-size: 60px;
}
.cid-uCBKKpu5Of .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uCBKKpu5Of .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uCBKKpu5Of .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-uCBKKpu5Of .mbr-section-title {
  color: #6b8a96;
}
.cid-uCBKKpu5Of .mbr-text {
  color: #000000;
}
.cid-uCBKKpu5Of .item-title {
  color: #000000;
}
.cid-uCBKKpu5Of .item-text {
  color: #000000;
}
.cid-uCBKKpu5Of .item-title,
.cid-uCBKKpu5Of .icon-wrapper {
  color: #6b8a96;
}
.cid-uCBHSBFYXy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBHSBFYXy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBHSBFYXy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBHSBFYXy .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBHSBFYXy .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBHSBFYXy .container {
    padding: 0 20px;
  }
}
.cid-uCBHSBFYXy .row {
  justify-content: center;
}
.cid-uCBHSBFYXy .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBHSBFYXy .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBHSBFYXy .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBHSBFYXy .mbr-section-btn .btn:hover,
.cid-uCBHSBFYXy .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBHSBFYXy .mbr-desc {
  color: #ffffff;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uCBL1QKfCv {
  z-index: 1000;
  width: 100%;
}
.cid-uCBL1QKfCv .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-uCBL1QKfCv .dropdown-menu {
  padding: 0;
}
.cid-uCBL1QKfCv .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCBL1QKfCv .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCBL1QKfCv .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCBL1QKfCv .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCBL1QKfCv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCBL1QKfCv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCBL1QKfCv .nav-link {
  position: relative;
}
.cid-uCBL1QKfCv .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCBL1QKfCv .dropdown-menu,
.cid-uCBL1QKfCv .navbar.opened {
  background: #ffffff !important;
}
.cid-uCBL1QKfCv .nav-item:focus,
.cid-uCBL1QKfCv .nav-link:focus {
  outline: none;
}
.cid-uCBL1QKfCv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCBL1QKfCv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCBL1QKfCv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCBL1QKfCv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCBL1QKfCv .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCBL1QKfCv .navbar.opened {
  transition: all 0.3s;
}
.cid-uCBL1QKfCv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCBL1QKfCv .navbar .navbar-logo img {
  width: auto;
}
.cid-uCBL1QKfCv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCBL1QKfCv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCBL1QKfCv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCBL1QKfCv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCBL1QKfCv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCBL1QKfCv .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-uCBL1QKfCv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCBL1QKfCv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCBL1QKfCv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCBL1QKfCv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCBL1QKfCv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCBL1QKfCv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .navbar {
    min-height: 80px;
  }
}
.cid-uCBL1QKfCv .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCBL1QKfCv .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCBL1QKfCv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCBL1QKfCv .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCBL1QKfCv .dropdown-item.active,
.cid-uCBL1QKfCv .dropdown-item:active {
  background-color: transparent;
}
.cid-uCBL1QKfCv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCBL1QKfCv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCBL1QKfCv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCBL1QKfCv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCBL1QKfCv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCBL1QKfCv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCBL1QKfCv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCBL1QKfCv button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBL1QKfCv button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCBL1QKfCv button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBL1QKfCv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBL1QKfCv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBL1QKfCv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBL1QKfCv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBL1QKfCv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBL1QKfCv nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBL1QKfCv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBL1QKfCv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBL1QKfCv nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBL1QKfCv .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCBL1QKfCv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCBL1QKfCv .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-uCBL1QKfCv .navbar {
    height: 70px;
  }
  .cid-uCBL1QKfCv .navbar.opened {
    height: auto;
  }
  .cid-uCBL1QKfCv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCBL1QKfCv .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .navbar-short {
    min-height: 70px;
  }
}
.cid-uCBL1QKfCv .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCBL1QKfCv .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCBL1QKfCv .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCBL1QKfCv .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCBL1QKfCv .navbar-nav {
  display: flex !important;
}
.cid-uCBL1QKfCv .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCBL1QKfCv .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCBL1QKfCv .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBL1QKfCv .navbar-nav .nav-item .nav-link:hover,
.cid-uCBL1QKfCv .navbar-nav .nav-item .nav-link:focus,
.cid-uCBL1QKfCv .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBL1QKfCv .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCBL1QKfCv .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCBL1QKfCv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCBL1QKfCv button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBL1QKfCv button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCBL1QKfCv button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBL1QKfCv button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBL1QKfCv button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBL1QKfCv button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBL1QKfCv button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBL1QKfCv button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBL1QKfCv .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBL1QKfCv .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCBL1QKfCv .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBL1QKfCv .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBL1QKfCv .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCBL1QKfCv .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBL1QKfCv .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBL1QKfCv .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCBL1QKfCv .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCBL1QKfCv .offcanvas.show {
  transform: translateX(0);
}
.cid-uCBL1QKfCv .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCBL1QKfCv .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCBL1QKfCv .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCBL1QKfCv .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCBL1QKfCv .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCBL1QKfCv .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCBL1QKfCv .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCBL1QKfCv .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCBL1QKfCv .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCBL1QKfCv .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCBL1QKfCv .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCBL1QKfCv ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCBL1QKfCv ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCBL1QKfCv ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCBL1QKfCv .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCBL1QKfCv .social-container {
    padding-top: 40px;
  }
}
.cid-uCBL1QKfCv .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCBL1QKfCv .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCBL1QKfCv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCBL1QKfCv .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCBL1QKfCv .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCBL1QKfCv .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCBL1QKfCv .soc-item:hover:before {
  opacity: 1;
}
.cid-uCBL1QKfCv .offcanvas_btn {
  margin-top: auto;
}
.cid-uCBL1QKfCv .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCBL1QKfCv .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBL1RpmlA {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBL1RpmlA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBL1RpmlA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBL1RpmlA .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBL1RpmlA .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBL1RpmlA .container {
    padding: 0 25px;
  }
}
.cid-uCBL1RpmlA .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBL1RpmlA .title-wrapper {
    padding: 0;
  }
}
.cid-uCBL1RpmlA .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBL1RpmlA .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBL1RpmlA .mbr-section-title {
  color: #ffffff;
}
.cid-uCBL1RpmlA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBL1RpmlA .mbr-section-title,
.cid-uCBL1RpmlA .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBL1RRaDH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBL1RRaDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBL1RRaDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBL1RRaDH .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBL1RRaDH .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBL1STGq0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBL1STGq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBL1STGq0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBL1STGq0 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBL1STGq0 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBL1STGq0 .container {
    padding: 0 20px;
  }
}
.cid-uCBL1STGq0 .row {
  justify-content: center;
}
.cid-uCBL1STGq0 .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBL1STGq0 .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBL1STGq0 .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBL1STGq0 .mbr-section-btn .btn:hover,
.cid-uCBL1STGq0 .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBL1STGq0 .mbr-desc {
  color: #ffffff;
}
.cid-uCBMig8MCz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBMig8MCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBMig8MCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBMig8MCz .col-title {
  margin-bottom: 32px;
}
.cid-uCBMig8MCz .mbr-section-title {
  color: #24262b;
}
.cid-uCBMig8MCz .mbr-section-subtitle {
  color: #24262b;
}
.cid-uCBMig8MCz .cards-row {
  row-gap: 32px;
}
.cid-uCBMig8MCz .card {
  border-radius: 0;
}
.cid-uCBMig8MCz .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uCBMig8MCz .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uCBMig8MCz .text-wrap {
  flex-grow: 1;
}
.cid-uCBMig8MCz .card-title {
  color: #ffffff;
}
.cid-uCBMig8MCz .card-text {
  color: #767676;
}
.cid-uCBL1ToS26 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBL1ToS26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBL1ToS26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBL1ToS26 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCBL1ToS26 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCBL1ToS26 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCBL1ToS26 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCBL1ToS26 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCBL1ToS26 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCBL1ToS26 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCBL1ToS26 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCBL1ToS26 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCBL1ToS26 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCBL1ToS26 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCBL1ToS26 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCBL1ToS26 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCBL1ToS26 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBL1ToS26 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBL1ToS26 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBL1ToS26 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCBL1ToS26 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCBL1ToS26 .list-wrapper .list .item-wrap:hover,
.cid-uCBL1ToS26 .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCBL1ToS26 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCBL1ToS26 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBL1ToS26 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBL1ToS26 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBL1ToS26 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCBL1ToS26 .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCBL1ToS26 .mbr-desc {
  color: #6b8a96;
}
.cid-uCBL1ToS26 .mbr-text,
.cid-uCBL1ToS26 .text-wrapper {
  color: #9aa0a6;
}
.cid-uCBL1ToS26 .list {
  color: #9aa0a6;
}
.cid-uCBL1ToS26 .list,
.cid-uCBL1ToS26 .item-wrap {
  color: #000000;
}
.cid-uCBL1ToS26 .mbr-text,
.cid-uCBL1ToS26 .mbr-section-btn {
  color: #000000;
}
.cid-uCBPmM0QN0 {
  z-index: 1000;
  width: 100%;
}
.cid-uCBPmM0QN0 .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-uCBPmM0QN0 .dropdown-menu {
  padding: 0;
}
.cid-uCBPmM0QN0 .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCBPmM0QN0 .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCBPmM0QN0 .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCBPmM0QN0 .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCBPmM0QN0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCBPmM0QN0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCBPmM0QN0 .nav-link {
  position: relative;
}
.cid-uCBPmM0QN0 .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCBPmM0QN0 .dropdown-menu,
.cid-uCBPmM0QN0 .navbar.opened {
  background: #ffffff !important;
}
.cid-uCBPmM0QN0 .nav-item:focus,
.cid-uCBPmM0QN0 .nav-link:focus {
  outline: none;
}
.cid-uCBPmM0QN0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCBPmM0QN0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCBPmM0QN0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCBPmM0QN0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCBPmM0QN0 .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCBPmM0QN0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCBPmM0QN0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCBPmM0QN0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCBPmM0QN0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCBPmM0QN0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCBPmM0QN0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCBPmM0QN0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCBPmM0QN0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCBPmM0QN0 .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-uCBPmM0QN0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCBPmM0QN0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCBPmM0QN0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCBPmM0QN0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCBPmM0QN0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCBPmM0QN0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .navbar {
    min-height: 80px;
  }
}
.cid-uCBPmM0QN0 .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCBPmM0QN0 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCBPmM0QN0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCBPmM0QN0 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCBPmM0QN0 .dropdown-item.active,
.cid-uCBPmM0QN0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCBPmM0QN0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCBPmM0QN0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCBPmM0QN0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCBPmM0QN0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCBPmM0QN0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCBPmM0QN0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCBPmM0QN0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCBPmM0QN0 button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBPmM0QN0 button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCBPmM0QN0 button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBPmM0QN0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBPmM0QN0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBPmM0QN0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBPmM0QN0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBPmM0QN0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBPmM0QN0 nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBPmM0QN0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBPmM0QN0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBPmM0QN0 nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBPmM0QN0 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCBPmM0QN0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCBPmM0QN0 .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-uCBPmM0QN0 .navbar {
    height: 70px;
  }
  .cid-uCBPmM0QN0 .navbar.opened {
    height: auto;
  }
  .cid-uCBPmM0QN0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCBPmM0QN0 .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .navbar-short {
    min-height: 70px;
  }
}
.cid-uCBPmM0QN0 .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCBPmM0QN0 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCBPmM0QN0 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCBPmM0QN0 .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCBPmM0QN0 .navbar-nav {
  display: flex !important;
}
.cid-uCBPmM0QN0 .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCBPmM0QN0 .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCBPmM0QN0 .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBPmM0QN0 .navbar-nav .nav-item .nav-link:hover,
.cid-uCBPmM0QN0 .navbar-nav .nav-item .nav-link:focus,
.cid-uCBPmM0QN0 .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBPmM0QN0 .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCBPmM0QN0 .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCBPmM0QN0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCBPmM0QN0 button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBPmM0QN0 button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCBPmM0QN0 button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBPmM0QN0 button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBPmM0QN0 button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBPmM0QN0 button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBPmM0QN0 button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBPmM0QN0 button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBPmM0QN0 .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBPmM0QN0 .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCBPmM0QN0 .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBPmM0QN0 .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBPmM0QN0 .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCBPmM0QN0 .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBPmM0QN0 .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBPmM0QN0 .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCBPmM0QN0 .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCBPmM0QN0 .offcanvas.show {
  transform: translateX(0);
}
.cid-uCBPmM0QN0 .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCBPmM0QN0 .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCBPmM0QN0 .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCBPmM0QN0 .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCBPmM0QN0 .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCBPmM0QN0 .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCBPmM0QN0 .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCBPmM0QN0 .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCBPmM0QN0 .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCBPmM0QN0 .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCBPmM0QN0 .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCBPmM0QN0 ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCBPmM0QN0 ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCBPmM0QN0 ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCBPmM0QN0 .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCBPmM0QN0 .social-container {
    padding-top: 40px;
  }
}
.cid-uCBPmM0QN0 .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCBPmM0QN0 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCBPmM0QN0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCBPmM0QN0 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCBPmM0QN0 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCBPmM0QN0 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCBPmM0QN0 .soc-item:hover:before {
  opacity: 1;
}
.cid-uCBPmM0QN0 .offcanvas_btn {
  margin-top: auto;
}
.cid-uCBPmM0QN0 .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCBPmM0QN0 .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBPmOywfJ {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBPmOywfJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBPmOywfJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBPmOywfJ .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBPmOywfJ .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBPmOywfJ .container {
    padding: 0 25px;
  }
}
.cid-uCBPmOywfJ .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBPmOywfJ .title-wrapper {
    padding: 0;
  }
}
.cid-uCBPmOywfJ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBPmOywfJ .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBPmOywfJ .mbr-section-title {
  color: #ffffff;
}
.cid-uCBPmOywfJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBPmOywfJ .mbr-section-title,
.cid-uCBPmOywfJ .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBPmPEKlm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBPmPEKlm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBPmPEKlm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBPmPEKlm .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBPmPEKlm .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBPmRqX8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBPmRqX8S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBPmRqX8S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBPmRqX8S .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBPmRqX8S .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBPmRqX8S .container {
    padding: 0 20px;
  }
}
.cid-uCBPmRqX8S .row {
  justify-content: center;
}
.cid-uCBPmRqX8S .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBPmRqX8S .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBPmRqX8S .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBPmRqX8S .mbr-section-btn .btn:hover,
.cid-uCBPmRqX8S .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBPmRqX8S .mbr-desc {
  color: #ffffff;
}
.cid-uCBPmSfxvg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBPmSfxvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBPmSfxvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBPmSfxvg .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCBPmSfxvg .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCBPmSfxvg .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCBPmSfxvg .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCBPmSfxvg .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCBPmSfxvg .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCBPmSfxvg .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCBPmSfxvg .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCBPmSfxvg .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCBPmSfxvg .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCBPmSfxvg .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCBPmSfxvg .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCBPmSfxvg .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCBPmSfxvg .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBPmSfxvg .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBPmSfxvg .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBPmSfxvg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCBPmSfxvg .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCBPmSfxvg .list-wrapper .list .item-wrap:hover,
.cid-uCBPmSfxvg .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCBPmSfxvg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCBPmSfxvg .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBPmSfxvg .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBPmSfxvg .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBPmSfxvg .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCBPmSfxvg .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCBPmSfxvg .mbr-desc {
  color: #6b8a96;
}
.cid-uCBPmSfxvg .mbr-text,
.cid-uCBPmSfxvg .text-wrapper {
  color: #9aa0a6;
}
.cid-uCBPmSfxvg .list {
  color: #9aa0a6;
}
.cid-uCBPmSfxvg .list,
.cid-uCBPmSfxvg .item-wrap {
  color: #000000;
}
.cid-uCBPmSfxvg .mbr-text,
.cid-uCBPmSfxvg .mbr-section-btn {
  color: #000000;
}
.cid-uCBRDTG1ac {
  z-index: 1000;
  width: 100%;
}
.cid-uCBRDTG1ac .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-uCBRDTG1ac .dropdown-menu {
  padding: 0;
}
.cid-uCBRDTG1ac .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCBRDTG1ac .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCBRDTG1ac .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCBRDTG1ac .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCBRDTG1ac .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCBRDTG1ac .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCBRDTG1ac .nav-link {
  position: relative;
}
.cid-uCBRDTG1ac .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCBRDTG1ac .dropdown-menu,
.cid-uCBRDTG1ac .navbar.opened {
  background: #ffffff !important;
}
.cid-uCBRDTG1ac .nav-item:focus,
.cid-uCBRDTG1ac .nav-link:focus {
  outline: none;
}
.cid-uCBRDTG1ac .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCBRDTG1ac .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCBRDTG1ac .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCBRDTG1ac .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCBRDTG1ac .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCBRDTG1ac .navbar.opened {
  transition: all 0.3s;
}
.cid-uCBRDTG1ac .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCBRDTG1ac .navbar .navbar-logo img {
  width: auto;
}
.cid-uCBRDTG1ac .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCBRDTG1ac .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCBRDTG1ac .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCBRDTG1ac .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCBRDTG1ac .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCBRDTG1ac .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-uCBRDTG1ac .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCBRDTG1ac .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCBRDTG1ac .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCBRDTG1ac .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCBRDTG1ac .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCBRDTG1ac .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .navbar {
    min-height: 80px;
  }
}
.cid-uCBRDTG1ac .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCBRDTG1ac .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCBRDTG1ac .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCBRDTG1ac .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCBRDTG1ac .dropdown-item.active,
.cid-uCBRDTG1ac .dropdown-item:active {
  background-color: transparent;
}
.cid-uCBRDTG1ac .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCBRDTG1ac .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCBRDTG1ac .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCBRDTG1ac .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCBRDTG1ac .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCBRDTG1ac .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCBRDTG1ac ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCBRDTG1ac button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBRDTG1ac button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCBRDTG1ac button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBRDTG1ac button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBRDTG1ac button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBRDTG1ac button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBRDTG1ac button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBRDTG1ac button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBRDTG1ac nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBRDTG1ac nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBRDTG1ac nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBRDTG1ac nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBRDTG1ac .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCBRDTG1ac a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCBRDTG1ac .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-uCBRDTG1ac .navbar {
    height: 70px;
  }
  .cid-uCBRDTG1ac .navbar.opened {
    height: auto;
  }
  .cid-uCBRDTG1ac .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCBRDTG1ac .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .navbar-short {
    min-height: 70px;
  }
}
.cid-uCBRDTG1ac .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCBRDTG1ac .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCBRDTG1ac .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCBRDTG1ac .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCBRDTG1ac .navbar-nav {
  display: flex !important;
}
.cid-uCBRDTG1ac .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCBRDTG1ac .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCBRDTG1ac .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBRDTG1ac .navbar-nav .nav-item .nav-link:hover,
.cid-uCBRDTG1ac .navbar-nav .nav-item .nav-link:focus,
.cid-uCBRDTG1ac .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBRDTG1ac .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCBRDTG1ac .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCBRDTG1ac .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCBRDTG1ac button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBRDTG1ac button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCBRDTG1ac button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBRDTG1ac button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBRDTG1ac button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBRDTG1ac button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBRDTG1ac button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBRDTG1ac button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBRDTG1ac .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBRDTG1ac .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCBRDTG1ac .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBRDTG1ac .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBRDTG1ac .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCBRDTG1ac .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBRDTG1ac .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBRDTG1ac .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCBRDTG1ac .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCBRDTG1ac .offcanvas.show {
  transform: translateX(0);
}
.cid-uCBRDTG1ac .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCBRDTG1ac .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCBRDTG1ac .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCBRDTG1ac .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCBRDTG1ac .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCBRDTG1ac .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCBRDTG1ac .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCBRDTG1ac .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCBRDTG1ac .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCBRDTG1ac .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCBRDTG1ac .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCBRDTG1ac ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCBRDTG1ac ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCBRDTG1ac ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCBRDTG1ac .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCBRDTG1ac .social-container {
    padding-top: 40px;
  }
}
.cid-uCBRDTG1ac .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCBRDTG1ac .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCBRDTG1ac .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCBRDTG1ac .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCBRDTG1ac .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCBRDTG1ac .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCBRDTG1ac .soc-item:hover:before {
  opacity: 1;
}
.cid-uCBRDTG1ac .offcanvas_btn {
  margin-top: auto;
}
.cid-uCBRDTG1ac .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCBRDTG1ac .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBRDUXcCe {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBRDUXcCe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBRDUXcCe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBRDUXcCe .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBRDUXcCe .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBRDUXcCe .container {
    padding: 0 25px;
  }
}
.cid-uCBRDUXcCe .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBRDUXcCe .title-wrapper {
    padding: 0;
  }
}
.cid-uCBRDUXcCe .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBRDUXcCe .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBRDUXcCe .mbr-section-title {
  color: #ffffff;
}
.cid-uCBRDUXcCe .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBRDUXcCe .mbr-section-title,
.cid-uCBRDUXcCe .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBRDW7Ks3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBRDW7Ks3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBRDW7Ks3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBRDW7Ks3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBRDW7Ks3 .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBRDWMUJR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBRDWMUJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBRDWMUJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBRDWMUJR .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBRDWMUJR .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBRDWMUJR .container {
    padding: 0 20px;
  }
}
.cid-uCBRDWMUJR .row {
  justify-content: center;
}
.cid-uCBRDWMUJR .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBRDWMUJR .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBRDWMUJR .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBRDWMUJR .mbr-section-btn .btn:hover,
.cid-uCBRDWMUJR .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBRDWMUJR .mbr-desc {
  color: #ffffff;
}
.cid-uCBRDXqXDk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBRDXqXDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBRDXqXDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBRDXqXDk .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCBRDXqXDk .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCBRDXqXDk .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCBRDXqXDk .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCBRDXqXDk .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCBRDXqXDk .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCBRDXqXDk .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCBRDXqXDk .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCBRDXqXDk .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCBRDXqXDk .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCBRDXqXDk .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCBRDXqXDk .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCBRDXqXDk .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCBRDXqXDk .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBRDXqXDk .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBRDXqXDk .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBRDXqXDk .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCBRDXqXDk .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCBRDXqXDk .list-wrapper .list .item-wrap:hover,
.cid-uCBRDXqXDk .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCBRDXqXDk .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCBRDXqXDk .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBRDXqXDk .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBRDXqXDk .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBRDXqXDk .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCBRDXqXDk .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCBRDXqXDk .mbr-desc {
  color: #6b8a96;
}
.cid-uCBRDXqXDk .mbr-text,
.cid-uCBRDXqXDk .text-wrapper {
  color: #9aa0a6;
}
.cid-uCBRDXqXDk .list {
  color: #9aa0a6;
}
.cid-uCBRDXqXDk .list,
.cid-uCBRDXqXDk .item-wrap {
  color: #000000;
}
.cid-uCBRDXqXDk .mbr-text,
.cid-uCBRDXqXDk .mbr-section-btn {
  color: #000000;
}
.cid-uCBTUyYvdn {
  z-index: 1000;
  width: 100%;
}
.cid-uCBTUyYvdn .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-uCBTUyYvdn .dropdown-menu {
  padding: 0;
}
.cid-uCBTUyYvdn .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCBTUyYvdn .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCBTUyYvdn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCBTUyYvdn .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCBTUyYvdn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCBTUyYvdn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCBTUyYvdn .nav-link {
  position: relative;
}
.cid-uCBTUyYvdn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCBTUyYvdn .dropdown-menu,
.cid-uCBTUyYvdn .navbar.opened {
  background: #ffffff !important;
}
.cid-uCBTUyYvdn .nav-item:focus,
.cid-uCBTUyYvdn .nav-link:focus {
  outline: none;
}
.cid-uCBTUyYvdn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCBTUyYvdn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCBTUyYvdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCBTUyYvdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCBTUyYvdn .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCBTUyYvdn .navbar.opened {
  transition: all 0.3s;
}
.cid-uCBTUyYvdn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCBTUyYvdn .navbar .navbar-logo img {
  width: auto;
}
.cid-uCBTUyYvdn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCBTUyYvdn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCBTUyYvdn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCBTUyYvdn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCBTUyYvdn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCBTUyYvdn .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-uCBTUyYvdn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCBTUyYvdn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCBTUyYvdn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCBTUyYvdn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCBTUyYvdn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCBTUyYvdn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .navbar {
    min-height: 80px;
  }
}
.cid-uCBTUyYvdn .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCBTUyYvdn .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCBTUyYvdn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCBTUyYvdn .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCBTUyYvdn .dropdown-item.active,
.cid-uCBTUyYvdn .dropdown-item:active {
  background-color: transparent;
}
.cid-uCBTUyYvdn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCBTUyYvdn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCBTUyYvdn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCBTUyYvdn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCBTUyYvdn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCBTUyYvdn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCBTUyYvdn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCBTUyYvdn button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBTUyYvdn button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCBTUyYvdn button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBTUyYvdn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBTUyYvdn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBTUyYvdn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBTUyYvdn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBTUyYvdn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBTUyYvdn nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBTUyYvdn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBTUyYvdn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBTUyYvdn nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBTUyYvdn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCBTUyYvdn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCBTUyYvdn .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-uCBTUyYvdn .navbar {
    height: 70px;
  }
  .cid-uCBTUyYvdn .navbar.opened {
    height: auto;
  }
  .cid-uCBTUyYvdn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCBTUyYvdn .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .navbar-short {
    min-height: 70px;
  }
}
.cid-uCBTUyYvdn .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCBTUyYvdn .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCBTUyYvdn .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCBTUyYvdn .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCBTUyYvdn .navbar-nav {
  display: flex !important;
}
.cid-uCBTUyYvdn .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCBTUyYvdn .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCBTUyYvdn .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBTUyYvdn .navbar-nav .nav-item .nav-link:hover,
.cid-uCBTUyYvdn .navbar-nav .nav-item .nav-link:focus,
.cid-uCBTUyYvdn .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBTUyYvdn .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCBTUyYvdn .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCBTUyYvdn .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCBTUyYvdn button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBTUyYvdn button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCBTUyYvdn button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBTUyYvdn button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBTUyYvdn button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBTUyYvdn button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBTUyYvdn button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBTUyYvdn button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBTUyYvdn .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBTUyYvdn .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCBTUyYvdn .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBTUyYvdn .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBTUyYvdn .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCBTUyYvdn .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBTUyYvdn .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBTUyYvdn .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCBTUyYvdn .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCBTUyYvdn .offcanvas.show {
  transform: translateX(0);
}
.cid-uCBTUyYvdn .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCBTUyYvdn .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCBTUyYvdn .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCBTUyYvdn .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCBTUyYvdn .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCBTUyYvdn .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCBTUyYvdn .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCBTUyYvdn .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCBTUyYvdn .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCBTUyYvdn .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCBTUyYvdn .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCBTUyYvdn ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCBTUyYvdn ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCBTUyYvdn ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCBTUyYvdn .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCBTUyYvdn .social-container {
    padding-top: 40px;
  }
}
.cid-uCBTUyYvdn .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCBTUyYvdn .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCBTUyYvdn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCBTUyYvdn .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCBTUyYvdn .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCBTUyYvdn .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCBTUyYvdn .soc-item:hover:before {
  opacity: 1;
}
.cid-uCBTUyYvdn .offcanvas_btn {
  margin-top: auto;
}
.cid-uCBTUyYvdn .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCBTUyYvdn .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBTUzFr6z {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBTUzFr6z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBTUzFr6z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBTUzFr6z .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBTUzFr6z .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBTUzFr6z .container {
    padding: 0 25px;
  }
}
.cid-uCBTUzFr6z .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBTUzFr6z .title-wrapper {
    padding: 0;
  }
}
.cid-uCBTUzFr6z .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBTUzFr6z .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBTUzFr6z .mbr-section-title {
  color: #ffffff;
}
.cid-uCBTUzFr6z .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBTUzFr6z .mbr-section-title,
.cid-uCBTUzFr6z .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBTUA6srG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBTUA6srG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBTUA6srG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBTUA6srG .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBTUA6srG .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBTUAEIhw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBTUAEIhw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBTUAEIhw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBTUAEIhw .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBTUAEIhw .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBTUAEIhw .container {
    padding: 0 20px;
  }
}
.cid-uCBTUAEIhw .row {
  justify-content: center;
}
.cid-uCBTUAEIhw .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBTUAEIhw .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBTUAEIhw .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBTUAEIhw .mbr-section-btn .btn:hover,
.cid-uCBTUAEIhw .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBTUAEIhw .mbr-desc {
  color: #ffffff;
}
.cid-uCBTUBcsU2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBTUBcsU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBTUBcsU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCBTUBcsU2 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCBTUBcsU2 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCBTUBcsU2 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCBTUBcsU2 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCBTUBcsU2 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCBTUBcsU2 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCBTUBcsU2 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCBTUBcsU2 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBTUBcsU2 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBTUBcsU2 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBTUBcsU2 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCBTUBcsU2 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCBTUBcsU2 .list-wrapper .list .item-wrap:hover,
.cid-uCBTUBcsU2 .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCBTUBcsU2 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCBTUBcsU2 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBTUBcsU2 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBTUBcsU2 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBTUBcsU2 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCBTUBcsU2 .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCBTUBcsU2 .mbr-desc {
  color: #6b8a96;
}
.cid-uCBTUBcsU2 .mbr-text,
.cid-uCBTUBcsU2 .text-wrapper {
  color: #9aa0a6;
}
.cid-uCBTUBcsU2 .list {
  color: #9aa0a6;
}
.cid-uCBTUBcsU2 .list,
.cid-uCBTUBcsU2 .item-wrap {
  color: #000000;
}
.cid-uCBTUBcsU2 .mbr-text,
.cid-uCBTUBcsU2 .mbr-section-btn {
  color: #000000;
}
.cid-uCBYRtzLcz {
  z-index: 1000;
  width: 100%;
}
.cid-uCBYRtzLcz .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-uCBYRtzLcz .dropdown-menu {
  padding: 0;
}
.cid-uCBYRtzLcz .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCBYRtzLcz .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCBYRtzLcz .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCBYRtzLcz .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCBYRtzLcz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCBYRtzLcz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCBYRtzLcz .nav-link {
  position: relative;
}
.cid-uCBYRtzLcz .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCBYRtzLcz .dropdown-menu,
.cid-uCBYRtzLcz .navbar.opened {
  background: #ffffff !important;
}
.cid-uCBYRtzLcz .nav-item:focus,
.cid-uCBYRtzLcz .nav-link:focus {
  outline: none;
}
.cid-uCBYRtzLcz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCBYRtzLcz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCBYRtzLcz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCBYRtzLcz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCBYRtzLcz .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCBYRtzLcz .navbar.opened {
  transition: all 0.3s;
}
.cid-uCBYRtzLcz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCBYRtzLcz .navbar .navbar-logo img {
  width: auto;
}
.cid-uCBYRtzLcz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCBYRtzLcz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCBYRtzLcz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCBYRtzLcz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCBYRtzLcz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCBYRtzLcz .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-uCBYRtzLcz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCBYRtzLcz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCBYRtzLcz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCBYRtzLcz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCBYRtzLcz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCBYRtzLcz .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .navbar {
    min-height: 80px;
  }
}
.cid-uCBYRtzLcz .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCBYRtzLcz .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCBYRtzLcz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCBYRtzLcz .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCBYRtzLcz .dropdown-item.active,
.cid-uCBYRtzLcz .dropdown-item:active {
  background-color: transparent;
}
.cid-uCBYRtzLcz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCBYRtzLcz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCBYRtzLcz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCBYRtzLcz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCBYRtzLcz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCBYRtzLcz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCBYRtzLcz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCBYRtzLcz button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBYRtzLcz button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCBYRtzLcz button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBYRtzLcz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBYRtzLcz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBYRtzLcz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBYRtzLcz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBYRtzLcz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBYRtzLcz nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBYRtzLcz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBYRtzLcz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBYRtzLcz nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBYRtzLcz .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCBYRtzLcz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCBYRtzLcz .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-uCBYRtzLcz .navbar {
    height: 70px;
  }
  .cid-uCBYRtzLcz .navbar.opened {
    height: auto;
  }
  .cid-uCBYRtzLcz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCBYRtzLcz .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .navbar-short {
    min-height: 70px;
  }
}
.cid-uCBYRtzLcz .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCBYRtzLcz .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCBYRtzLcz .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCBYRtzLcz .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCBYRtzLcz .navbar-nav {
  display: flex !important;
}
.cid-uCBYRtzLcz .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCBYRtzLcz .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCBYRtzLcz .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBYRtzLcz .navbar-nav .nav-item .nav-link:hover,
.cid-uCBYRtzLcz .navbar-nav .nav-item .nav-link:focus,
.cid-uCBYRtzLcz .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBYRtzLcz .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCBYRtzLcz .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCBYRtzLcz .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCBYRtzLcz button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBYRtzLcz button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCBYRtzLcz button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBYRtzLcz button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBYRtzLcz button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBYRtzLcz button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBYRtzLcz button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBYRtzLcz button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBYRtzLcz .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBYRtzLcz .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCBYRtzLcz .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBYRtzLcz .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBYRtzLcz .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCBYRtzLcz .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBYRtzLcz .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBYRtzLcz .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCBYRtzLcz .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCBYRtzLcz .offcanvas.show {
  transform: translateX(0);
}
.cid-uCBYRtzLcz .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCBYRtzLcz .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCBYRtzLcz .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCBYRtzLcz .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCBYRtzLcz .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCBYRtzLcz .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCBYRtzLcz .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCBYRtzLcz .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCBYRtzLcz .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCBYRtzLcz .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCBYRtzLcz .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCBYRtzLcz ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCBYRtzLcz ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCBYRtzLcz ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCBYRtzLcz .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCBYRtzLcz .social-container {
    padding-top: 40px;
  }
}
.cid-uCBYRtzLcz .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCBYRtzLcz .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCBYRtzLcz .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCBYRtzLcz .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCBYRtzLcz .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCBYRtzLcz .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCBYRtzLcz .soc-item:hover:before {
  opacity: 1;
}
.cid-uCBYRtzLcz .offcanvas_btn {
  margin-top: auto;
}
.cid-uCBYRtzLcz .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCBYRtzLcz .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBYRv20uk {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBYRv20uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBYRv20uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBYRv20uk .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBYRv20uk .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBYRv20uk .container {
    padding: 0 25px;
  }
}
.cid-uCBYRv20uk .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBYRv20uk .title-wrapper {
    padding: 0;
  }
}
.cid-uCBYRv20uk .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBYRv20uk .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBYRv20uk .mbr-section-title {
  color: #ffffff;
}
.cid-uCBYRv20uk .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBYRv20uk .mbr-section-title,
.cid-uCBYRv20uk .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBYRvSUod {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBYRvSUod .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBYRvSUod .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBYRvSUod .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBYRvSUod .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBYRwOKSe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBYRwOKSe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBYRwOKSe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBYRwOKSe .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBYRwOKSe .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBYRwOKSe .container {
    padding: 0 20px;
  }
}
.cid-uCBYRwOKSe .row {
  justify-content: center;
}
.cid-uCBYRwOKSe .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBYRwOKSe .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBYRwOKSe .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBYRwOKSe .mbr-section-btn .btn:hover,
.cid-uCBYRwOKSe .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBYRwOKSe .mbr-desc {
  color: #ffffff;
}
.cid-uCBYRxu303 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBYRxu303 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBYRxu303 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBYRxu303 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCBYRxu303 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCBYRxu303 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCBYRxu303 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCBYRxu303 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCBYRxu303 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCBYRxu303 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCBYRxu303 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCBYRxu303 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCBYRxu303 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCBYRxu303 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCBYRxu303 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCBYRxu303 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCBYRxu303 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBYRxu303 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBYRxu303 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBYRxu303 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCBYRxu303 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCBYRxu303 .list-wrapper .list .item-wrap:hover,
.cid-uCBYRxu303 .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCBYRxu303 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCBYRxu303 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBYRxu303 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBYRxu303 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBYRxu303 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCBYRxu303 .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCBYRxu303 .mbr-desc {
  color: #6b8a96;
}
.cid-uCBYRxu303 .mbr-text,
.cid-uCBYRxu303 .text-wrapper {
  color: #9aa0a6;
}
.cid-uCBYRxu303 .list {
  color: #9aa0a6;
}
.cid-uCBYRxu303 .list,
.cid-uCBYRxu303 .item-wrap {
  color: #000000;
}
.cid-uCBYRxu303 .mbr-text,
.cid-uCBYRxu303 .mbr-section-btn {
  color: #000000;
}
.cid-uCBVHKGbPQ {
  z-index: 1000;
  width: 100%;
}
.cid-uCBVHKGbPQ .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-uCBVHKGbPQ .dropdown-menu {
  padding: 0;
}
.cid-uCBVHKGbPQ .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCBVHKGbPQ .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCBVHKGbPQ .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCBVHKGbPQ .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCBVHKGbPQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCBVHKGbPQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCBVHKGbPQ .nav-link {
  position: relative;
}
.cid-uCBVHKGbPQ .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCBVHKGbPQ .dropdown-menu,
.cid-uCBVHKGbPQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uCBVHKGbPQ .nav-item:focus,
.cid-uCBVHKGbPQ .nav-link:focus {
  outline: none;
}
.cid-uCBVHKGbPQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCBVHKGbPQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCBVHKGbPQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCBVHKGbPQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCBVHKGbPQ .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCBVHKGbPQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uCBVHKGbPQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCBVHKGbPQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uCBVHKGbPQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCBVHKGbPQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCBVHKGbPQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCBVHKGbPQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCBVHKGbPQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCBVHKGbPQ .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-uCBVHKGbPQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCBVHKGbPQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCBVHKGbPQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCBVHKGbPQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCBVHKGbPQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCBVHKGbPQ .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .navbar {
    min-height: 80px;
  }
}
.cid-uCBVHKGbPQ .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCBVHKGbPQ .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCBVHKGbPQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCBVHKGbPQ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCBVHKGbPQ .dropdown-item.active,
.cid-uCBVHKGbPQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uCBVHKGbPQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCBVHKGbPQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCBVHKGbPQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCBVHKGbPQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCBVHKGbPQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCBVHKGbPQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCBVHKGbPQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCBVHKGbPQ button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBVHKGbPQ button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCBVHKGbPQ button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBVHKGbPQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBVHKGbPQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBVHKGbPQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBVHKGbPQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBVHKGbPQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBVHKGbPQ nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBVHKGbPQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBVHKGbPQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBVHKGbPQ nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCBVHKGbPQ .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCBVHKGbPQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCBVHKGbPQ .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-uCBVHKGbPQ .navbar {
    height: 70px;
  }
  .cid-uCBVHKGbPQ .navbar.opened {
    height: auto;
  }
  .cid-uCBVHKGbPQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCBVHKGbPQ .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .navbar-short {
    min-height: 70px;
  }
}
.cid-uCBVHKGbPQ .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCBVHKGbPQ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCBVHKGbPQ .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCBVHKGbPQ .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCBVHKGbPQ .navbar-nav {
  display: flex !important;
}
.cid-uCBVHKGbPQ .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCBVHKGbPQ .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCBVHKGbPQ .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBVHKGbPQ .navbar-nav .nav-item .nav-link:hover,
.cid-uCBVHKGbPQ .navbar-nav .nav-item .nav-link:focus,
.cid-uCBVHKGbPQ .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCBVHKGbPQ .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCBVHKGbPQ .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCBVHKGbPQ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCBVHKGbPQ button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBVHKGbPQ button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCBVHKGbPQ button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBVHKGbPQ button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBVHKGbPQ button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCBVHKGbPQ button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBVHKGbPQ button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCBVHKGbPQ button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCBVHKGbPQ .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCBVHKGbPQ .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCBVHKGbPQ .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCBVHKGbPQ .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCBVHKGbPQ .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCBVHKGbPQ .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCBVHKGbPQ .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCBVHKGbPQ .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCBVHKGbPQ .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCBVHKGbPQ .offcanvas.show {
  transform: translateX(0);
}
.cid-uCBVHKGbPQ .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCBVHKGbPQ .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCBVHKGbPQ .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCBVHKGbPQ .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCBVHKGbPQ .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCBVHKGbPQ .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCBVHKGbPQ .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCBVHKGbPQ .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCBVHKGbPQ .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCBVHKGbPQ .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCBVHKGbPQ .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCBVHKGbPQ ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCBVHKGbPQ ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCBVHKGbPQ ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCBVHKGbPQ .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCBVHKGbPQ .social-container {
    padding-top: 40px;
  }
}
.cid-uCBVHKGbPQ .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCBVHKGbPQ .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCBVHKGbPQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCBVHKGbPQ .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCBVHKGbPQ .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCBVHKGbPQ .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCBVHKGbPQ .soc-item:hover:before {
  opacity: 1;
}
.cid-uCBVHKGbPQ .offcanvas_btn {
  margin-top: auto;
}
.cid-uCBVHKGbPQ .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCBVHKGbPQ .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCBVHLX3yk {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCBVHLX3yk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBVHLX3yk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBVHLX3yk .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCBVHLX3yk .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCBVHLX3yk .container {
    padding: 0 25px;
  }
}
.cid-uCBVHLX3yk .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCBVHLX3yk .title-wrapper {
    padding: 0;
  }
}
.cid-uCBVHLX3yk .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBVHLX3yk .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCBVHLX3yk .mbr-section-title {
  color: #ffffff;
}
.cid-uCBVHLX3yk .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCBVHLX3yk .mbr-section-title,
.cid-uCBVHLX3yk .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCBVHMIuSG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBVHMIuSG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBVHMIuSG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBVHMIuSG .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCBVHMIuSG .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCBVHNrOa6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCBVHNrOa6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBVHNrOa6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBVHNrOa6 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCBVHNrOa6 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBVHNrOa6 .container {
    padding: 0 20px;
  }
}
.cid-uCBVHNrOa6 .row {
  justify-content: center;
}
.cid-uCBVHNrOa6 .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCBVHNrOa6 .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCBVHNrOa6 .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCBVHNrOa6 .mbr-section-btn .btn:hover,
.cid-uCBVHNrOa6 .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCBVHNrOa6 .mbr-desc {
  color: #ffffff;
}
.cid-uCBVHO3O9g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBVHO3O9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBVHO3O9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBVHO3O9g .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCBVHO3O9g .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCBVHO3O9g .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCBVHO3O9g .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCBVHO3O9g .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCBVHO3O9g .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCBVHO3O9g .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCBVHO3O9g .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCBVHO3O9g .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCBVHO3O9g .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCBVHO3O9g .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCBVHO3O9g .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCBVHO3O9g .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCBVHO3O9g .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBVHO3O9g .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBVHO3O9g .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBVHO3O9g .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCBVHO3O9g .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCBVHO3O9g .list-wrapper .list .item-wrap:hover,
.cid-uCBVHO3O9g .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCBVHO3O9g .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCBVHO3O9g .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCBVHO3O9g .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCBVHO3O9g .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCBVHO3O9g .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCBVHO3O9g .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCBVHO3O9g .mbr-desc {
  color: #6b8a96;
}
.cid-uCBVHO3O9g .mbr-text,
.cid-uCBVHO3O9g .text-wrapper {
  color: #9aa0a6;
}
.cid-uCBVHO3O9g .list {
  color: #9aa0a6;
}
.cid-uCBVHO3O9g .list,
.cid-uCBVHO3O9g .item-wrap {
  color: #000000;
}
.cid-uCBVHO3O9g .mbr-text,
.cid-uCBVHO3O9g .mbr-section-btn {
  color: #000000;
}
.cid-uCC1FBvTDi {
  z-index: 1000;
  width: 100%;
}
.cid-uCC1FBvTDi .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-uCC1FBvTDi .dropdown-menu {
  padding: 0;
}
.cid-uCC1FBvTDi .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCC1FBvTDi .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCC1FBvTDi .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCC1FBvTDi .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCC1FBvTDi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCC1FBvTDi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCC1FBvTDi .nav-link {
  position: relative;
}
.cid-uCC1FBvTDi .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCC1FBvTDi .dropdown-menu,
.cid-uCC1FBvTDi .navbar.opened {
  background: #ffffff !important;
}
.cid-uCC1FBvTDi .nav-item:focus,
.cid-uCC1FBvTDi .nav-link:focus {
  outline: none;
}
.cid-uCC1FBvTDi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCC1FBvTDi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCC1FBvTDi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCC1FBvTDi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCC1FBvTDi .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCC1FBvTDi .navbar.opened {
  transition: all 0.3s;
}
.cid-uCC1FBvTDi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCC1FBvTDi .navbar .navbar-logo img {
  width: auto;
}
.cid-uCC1FBvTDi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCC1FBvTDi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCC1FBvTDi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCC1FBvTDi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCC1FBvTDi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCC1FBvTDi .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-uCC1FBvTDi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCC1FBvTDi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCC1FBvTDi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCC1FBvTDi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCC1FBvTDi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCC1FBvTDi .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .navbar {
    min-height: 80px;
  }
}
.cid-uCC1FBvTDi .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCC1FBvTDi .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCC1FBvTDi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCC1FBvTDi .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCC1FBvTDi .dropdown-item.active,
.cid-uCC1FBvTDi .dropdown-item:active {
  background-color: transparent;
}
.cid-uCC1FBvTDi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCC1FBvTDi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCC1FBvTDi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCC1FBvTDi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCC1FBvTDi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCC1FBvTDi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCC1FBvTDi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCC1FBvTDi button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC1FBvTDi button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCC1FBvTDi button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC1FBvTDi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC1FBvTDi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC1FBvTDi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC1FBvTDi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC1FBvTDi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC1FBvTDi nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC1FBvTDi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC1FBvTDi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC1FBvTDi nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC1FBvTDi .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCC1FBvTDi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCC1FBvTDi .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-uCC1FBvTDi .navbar {
    height: 70px;
  }
  .cid-uCC1FBvTDi .navbar.opened {
    height: auto;
  }
  .cid-uCC1FBvTDi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCC1FBvTDi .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .navbar-short {
    min-height: 70px;
  }
}
.cid-uCC1FBvTDi .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCC1FBvTDi .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCC1FBvTDi .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCC1FBvTDi .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCC1FBvTDi .navbar-nav {
  display: flex !important;
}
.cid-uCC1FBvTDi .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCC1FBvTDi .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCC1FBvTDi .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC1FBvTDi .navbar-nav .nav-item .nav-link:hover,
.cid-uCC1FBvTDi .navbar-nav .nav-item .nav-link:focus,
.cid-uCC1FBvTDi .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC1FBvTDi .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCC1FBvTDi .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCC1FBvTDi .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCC1FBvTDi button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC1FBvTDi button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCC1FBvTDi button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC1FBvTDi button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC1FBvTDi button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC1FBvTDi button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC1FBvTDi button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC1FBvTDi button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC1FBvTDi .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC1FBvTDi .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCC1FBvTDi .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC1FBvTDi .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC1FBvTDi .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCC1FBvTDi .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC1FBvTDi .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC1FBvTDi .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCC1FBvTDi .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCC1FBvTDi .offcanvas.show {
  transform: translateX(0);
}
.cid-uCC1FBvTDi .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCC1FBvTDi .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCC1FBvTDi .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCC1FBvTDi .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCC1FBvTDi .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCC1FBvTDi .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCC1FBvTDi .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCC1FBvTDi .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCC1FBvTDi .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCC1FBvTDi .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCC1FBvTDi .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCC1FBvTDi ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCC1FBvTDi ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCC1FBvTDi ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCC1FBvTDi .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCC1FBvTDi .social-container {
    padding-top: 40px;
  }
}
.cid-uCC1FBvTDi .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCC1FBvTDi .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCC1FBvTDi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCC1FBvTDi .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCC1FBvTDi .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCC1FBvTDi .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCC1FBvTDi .soc-item:hover:before {
  opacity: 1;
}
.cid-uCC1FBvTDi .offcanvas_btn {
  margin-top: auto;
}
.cid-uCC1FBvTDi .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCC1FBvTDi .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCC1FCt5op {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCC1FCt5op .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC1FCt5op .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC1FCt5op .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCC1FCt5op .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCC1FCt5op .container {
    padding: 0 25px;
  }
}
.cid-uCC1FCt5op .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCC1FCt5op .title-wrapper {
    padding: 0;
  }
}
.cid-uCC1FCt5op .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCC1FCt5op .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCC1FCt5op .mbr-section-title {
  color: #ffffff;
}
.cid-uCC1FCt5op .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC1FCt5op .mbr-section-title,
.cid-uCC1FCt5op .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCC1FDhhFD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC1FDhhFD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC1FDhhFD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC1FDhhFD .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCC1FDhhFD .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCC1FE9DGR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCC1FE9DGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC1FE9DGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC1FE9DGR .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCC1FE9DGR .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCC1FE9DGR .container {
    padding: 0 20px;
  }
}
.cid-uCC1FE9DGR .row {
  justify-content: center;
}
.cid-uCC1FE9DGR .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCC1FE9DGR .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCC1FE9DGR .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCC1FE9DGR .mbr-section-btn .btn:hover,
.cid-uCC1FE9DGR .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCC1FE9DGR .mbr-desc {
  color: #ffffff;
}
.cid-uCC1FEStJT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC1FEStJT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC1FEStJT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC1FEStJT .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCC1FEStJT .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCC1FEStJT .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCC1FEStJT .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCC1FEStJT .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCC1FEStJT .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCC1FEStJT .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCC1FEStJT .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCC1FEStJT .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCC1FEStJT .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCC1FEStJT .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCC1FEStJT .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCC1FEStJT .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCC1FEStJT .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC1FEStJT .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC1FEStJT .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC1FEStJT .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCC1FEStJT .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCC1FEStJT .list-wrapper .list .item-wrap:hover,
.cid-uCC1FEStJT .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCC1FEStJT .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCC1FEStJT .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC1FEStJT .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC1FEStJT .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC1FEStJT .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCC1FEStJT .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCC1FEStJT .mbr-desc {
  color: #6b8a96;
}
.cid-uCC1FEStJT .mbr-text,
.cid-uCC1FEStJT .text-wrapper {
  color: #9aa0a6;
}
.cid-uCC1FEStJT .list {
  color: #9aa0a6;
}
.cid-uCC1FEStJT .list,
.cid-uCC1FEStJT .item-wrap {
  color: #000000;
}
.cid-uCC1FEStJT .mbr-text,
.cid-uCC1FEStJT .mbr-section-btn {
  color: #000000;
}
.cid-uCC4atcv1j {
  z-index: 1000;
  width: 100%;
}
.cid-uCC4atcv1j .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-uCC4atcv1j .dropdown-menu {
  padding: 0;
}
.cid-uCC4atcv1j .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCC4atcv1j .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCC4atcv1j .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCC4atcv1j .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCC4atcv1j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCC4atcv1j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCC4atcv1j .nav-link {
  position: relative;
}
.cid-uCC4atcv1j .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCC4atcv1j .dropdown-menu,
.cid-uCC4atcv1j .navbar.opened {
  background: #ffffff !important;
}
.cid-uCC4atcv1j .nav-item:focus,
.cid-uCC4atcv1j .nav-link:focus {
  outline: none;
}
.cid-uCC4atcv1j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCC4atcv1j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCC4atcv1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCC4atcv1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCC4atcv1j .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCC4atcv1j .navbar.opened {
  transition: all 0.3s;
}
.cid-uCC4atcv1j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCC4atcv1j .navbar .navbar-logo img {
  width: auto;
}
.cid-uCC4atcv1j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCC4atcv1j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCC4atcv1j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCC4atcv1j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCC4atcv1j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCC4atcv1j .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-uCC4atcv1j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCC4atcv1j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCC4atcv1j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCC4atcv1j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCC4atcv1j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCC4atcv1j .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .navbar {
    min-height: 80px;
  }
}
.cid-uCC4atcv1j .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCC4atcv1j .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCC4atcv1j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCC4atcv1j .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCC4atcv1j .dropdown-item.active,
.cid-uCC4atcv1j .dropdown-item:active {
  background-color: transparent;
}
.cid-uCC4atcv1j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCC4atcv1j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCC4atcv1j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCC4atcv1j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCC4atcv1j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCC4atcv1j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCC4atcv1j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCC4atcv1j button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC4atcv1j button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCC4atcv1j button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC4atcv1j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC4atcv1j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC4atcv1j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC4atcv1j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC4atcv1j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC4atcv1j nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC4atcv1j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC4atcv1j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC4atcv1j nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC4atcv1j .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCC4atcv1j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCC4atcv1j .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-uCC4atcv1j .navbar {
    height: 70px;
  }
  .cid-uCC4atcv1j .navbar.opened {
    height: auto;
  }
  .cid-uCC4atcv1j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCC4atcv1j .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .navbar-short {
    min-height: 70px;
  }
}
.cid-uCC4atcv1j .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCC4atcv1j .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCC4atcv1j .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCC4atcv1j .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCC4atcv1j .navbar-nav {
  display: flex !important;
}
.cid-uCC4atcv1j .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCC4atcv1j .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCC4atcv1j .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC4atcv1j .navbar-nav .nav-item .nav-link:hover,
.cid-uCC4atcv1j .navbar-nav .nav-item .nav-link:focus,
.cid-uCC4atcv1j .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC4atcv1j .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCC4atcv1j .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCC4atcv1j .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCC4atcv1j button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC4atcv1j button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCC4atcv1j button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC4atcv1j button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC4atcv1j button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC4atcv1j button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC4atcv1j button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC4atcv1j button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC4atcv1j .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC4atcv1j .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCC4atcv1j .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC4atcv1j .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC4atcv1j .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCC4atcv1j .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC4atcv1j .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC4atcv1j .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCC4atcv1j .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCC4atcv1j .offcanvas.show {
  transform: translateX(0);
}
.cid-uCC4atcv1j .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCC4atcv1j .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCC4atcv1j .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCC4atcv1j .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCC4atcv1j .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCC4atcv1j .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCC4atcv1j .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCC4atcv1j .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCC4atcv1j .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCC4atcv1j .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCC4atcv1j .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCC4atcv1j ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCC4atcv1j ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCC4atcv1j ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCC4atcv1j .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCC4atcv1j .social-container {
    padding-top: 40px;
  }
}
.cid-uCC4atcv1j .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCC4atcv1j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCC4atcv1j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCC4atcv1j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCC4atcv1j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCC4atcv1j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCC4atcv1j .soc-item:hover:before {
  opacity: 1;
}
.cid-uCC4atcv1j .offcanvas_btn {
  margin-top: auto;
}
.cid-uCC4atcv1j .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCC4atcv1j .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCC4av0uuE {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCC4av0uuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC4av0uuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC4av0uuE .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCC4av0uuE .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCC4av0uuE .container {
    padding: 0 25px;
  }
}
.cid-uCC4av0uuE .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCC4av0uuE .title-wrapper {
    padding: 0;
  }
}
.cid-uCC4av0uuE .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCC4av0uuE .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCC4av0uuE .mbr-section-title {
  color: #ffffff;
}
.cid-uCC4av0uuE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC4av0uuE .mbr-section-title,
.cid-uCC4av0uuE .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCC4aw97Ce {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC4aw97Ce .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC4aw97Ce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC4aw97Ce .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCC4aw97Ce .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCC4axAzuD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCC4axAzuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC4axAzuD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC4axAzuD .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCC4axAzuD .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCC4axAzuD .container {
    padding: 0 20px;
  }
}
.cid-uCC4axAzuD .row {
  justify-content: center;
}
.cid-uCC4axAzuD .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCC4axAzuD .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCC4axAzuD .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCC4axAzuD .mbr-section-btn .btn:hover,
.cid-uCC4axAzuD .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCC4axAzuD .mbr-desc {
  color: #ffffff;
}
.cid-uCC4aywrBq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC4aywrBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC4aywrBq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC4aywrBq .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCC4aywrBq .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCC4aywrBq .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCC4aywrBq .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCC4aywrBq .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCC4aywrBq .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCC4aywrBq .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCC4aywrBq .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCC4aywrBq .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCC4aywrBq .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCC4aywrBq .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCC4aywrBq .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCC4aywrBq .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCC4aywrBq .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC4aywrBq .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC4aywrBq .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC4aywrBq .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCC4aywrBq .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCC4aywrBq .list-wrapper .list .item-wrap:hover,
.cid-uCC4aywrBq .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCC4aywrBq .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCC4aywrBq .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC4aywrBq .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC4aywrBq .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC4aywrBq .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCC4aywrBq .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCC4aywrBq .mbr-desc {
  color: #6b8a96;
}
.cid-uCC4aywrBq .mbr-text,
.cid-uCC4aywrBq .text-wrapper {
  color: #9aa0a6;
}
.cid-uCC4aywrBq .list {
  color: #9aa0a6;
}
.cid-uCC4aywrBq .list,
.cid-uCC4aywrBq .item-wrap {
  color: #000000;
}
.cid-uCC4aywrBq .mbr-text,
.cid-uCC4aywrBq .mbr-section-btn {
  color: #000000;
}
.cid-uCC539unGt {
  z-index: 1000;
  width: 100%;
}
.cid-uCC539unGt .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-uCC539unGt .dropdown-menu {
  padding: 0;
}
.cid-uCC539unGt .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCC539unGt .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCC539unGt .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCC539unGt .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCC539unGt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCC539unGt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCC539unGt .nav-link {
  position: relative;
}
.cid-uCC539unGt .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCC539unGt .dropdown-menu,
.cid-uCC539unGt .navbar.opened {
  background: #ffffff !important;
}
.cid-uCC539unGt .nav-item:focus,
.cid-uCC539unGt .nav-link:focus {
  outline: none;
}
.cid-uCC539unGt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCC539unGt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCC539unGt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCC539unGt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCC539unGt .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCC539unGt .navbar.opened {
  transition: all 0.3s;
}
.cid-uCC539unGt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCC539unGt .navbar .navbar-logo img {
  width: auto;
}
.cid-uCC539unGt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCC539unGt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCC539unGt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCC539unGt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCC539unGt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCC539unGt .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-uCC539unGt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCC539unGt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCC539unGt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCC539unGt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCC539unGt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCC539unGt .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCC539unGt .navbar {
    min-height: 80px;
  }
}
.cid-uCC539unGt .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCC539unGt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCC539unGt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCC539unGt .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCC539unGt .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCC539unGt .dropdown-item.active,
.cid-uCC539unGt .dropdown-item:active {
  background-color: transparent;
}
.cid-uCC539unGt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCC539unGt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCC539unGt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCC539unGt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCC539unGt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCC539unGt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCC539unGt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCC539unGt button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC539unGt button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCC539unGt button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC539unGt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC539unGt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC539unGt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC539unGt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC539unGt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC539unGt nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC539unGt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC539unGt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC539unGt nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC539unGt .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCC539unGt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCC539unGt .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-uCC539unGt .navbar {
    height: 70px;
  }
  .cid-uCC539unGt .navbar.opened {
    height: auto;
  }
  .cid-uCC539unGt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCC539unGt .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCC539unGt .navbar-short {
    min-height: 70px;
  }
}
.cid-uCC539unGt .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCC539unGt .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCC539unGt .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCC539unGt .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCC539unGt .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCC539unGt .navbar-nav {
  display: flex !important;
}
.cid-uCC539unGt .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCC539unGt .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCC539unGt .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC539unGt .navbar-nav .nav-item .nav-link:hover,
.cid-uCC539unGt .navbar-nav .nav-item .nav-link:focus,
.cid-uCC539unGt .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC539unGt .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCC539unGt .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCC539unGt .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCC539unGt button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC539unGt button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCC539unGt button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC539unGt button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC539unGt button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC539unGt button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC539unGt button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC539unGt button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC539unGt .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC539unGt .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCC539unGt .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC539unGt .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC539unGt .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCC539unGt .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC539unGt .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC539unGt .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCC539unGt .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCC539unGt .offcanvas.show {
  transform: translateX(0);
}
.cid-uCC539unGt .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCC539unGt .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCC539unGt .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCC539unGt .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCC539unGt .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCC539unGt .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCC539unGt .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCC539unGt .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCC539unGt .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCC539unGt .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCC539unGt .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCC539unGt .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCC539unGt .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCC539unGt ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCC539unGt ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCC539unGt ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCC539unGt .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCC539unGt .social-container {
    padding-top: 40px;
  }
}
.cid-uCC539unGt .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCC539unGt .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCC539unGt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCC539unGt .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCC539unGt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCC539unGt .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCC539unGt .soc-item:hover:before {
  opacity: 1;
}
.cid-uCC539unGt .offcanvas_btn {
  margin-top: auto;
}
.cid-uCC539unGt .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCC539unGt .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCC53afXAu {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCC53afXAu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC53afXAu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC53afXAu .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCC53afXAu .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCC53afXAu .container {
    padding: 0 25px;
  }
}
.cid-uCC53afXAu .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCC53afXAu .title-wrapper {
    padding: 0;
  }
}
.cid-uCC53afXAu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCC53afXAu .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCC53afXAu .mbr-section-title {
  color: #ffffff;
}
.cid-uCC53afXAu .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC53afXAu .mbr-section-title,
.cid-uCC53afXAu .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCC53aGEYx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC53aGEYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC53aGEYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC53aGEYx .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCC53aGEYx .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCC6ThxM94 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCC6ThxM94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC6ThxM94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC6ThxM94 .col-title {
  margin-bottom: 32px;
}
.cid-uCC6ThxM94 .mbr-section-title {
  color: #24262b;
}
.cid-uCC6ThxM94 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uCC6ThxM94 .cards-row {
  row-gap: 32px;
}
.cid-uCC6ThxM94 .card {
  border-radius: 0;
}
.cid-uCC6ThxM94 .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uCC6ThxM94 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uCC6ThxM94 .text-wrap {
  flex-grow: 1;
}
.cid-uCC6ThxM94 .card-title {
  color: #ffffff;
}
.cid-uCC6ThxM94 .card-text {
  color: #767676;
}
.cid-uCC53be8O9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCC53be8O9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC53be8O9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC53be8O9 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCC53be8O9 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCC53be8O9 .container {
    padding: 0 20px;
  }
}
.cid-uCC53be8O9 .row {
  justify-content: center;
}
.cid-uCC53be8O9 .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCC53be8O9 .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCC53be8O9 .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCC53be8O9 .mbr-section-btn .btn:hover,
.cid-uCC53be8O9 .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCC53be8O9 .mbr-desc {
  color: #ffffff;
}
.cid-uCC53bId7y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC53bId7y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC53bId7y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC53bId7y .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCC53bId7y .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCC53bId7y .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCC53bId7y .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCC53bId7y .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCC53bId7y .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCC53bId7y .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCC53bId7y .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCC53bId7y .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCC53bId7y .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCC53bId7y .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCC53bId7y .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCC53bId7y .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCC53bId7y .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC53bId7y .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC53bId7y .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC53bId7y .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCC53bId7y .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCC53bId7y .list-wrapper .list .item-wrap:hover,
.cid-uCC53bId7y .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCC53bId7y .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCC53bId7y .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC53bId7y .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC53bId7y .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC53bId7y .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCC53bId7y .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCC53bId7y .mbr-desc {
  color: #6b8a96;
}
.cid-uCC53bId7y .mbr-text,
.cid-uCC53bId7y .text-wrapper {
  color: #9aa0a6;
}
.cid-uCC53bId7y .list {
  color: #9aa0a6;
}
.cid-uCC53bId7y .list,
.cid-uCC53bId7y .item-wrap {
  color: #000000;
}
.cid-uCC53bId7y .mbr-text,
.cid-uCC53bId7y .mbr-section-btn {
  color: #000000;
}
.cid-uCC6Xx1VNa {
  z-index: 1000;
  width: 100%;
}
.cid-uCC6Xx1VNa .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-uCC6Xx1VNa .dropdown-menu {
  padding: 0;
}
.cid-uCC6Xx1VNa .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCC6Xx1VNa .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCC6Xx1VNa .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCC6Xx1VNa .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCC6Xx1VNa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCC6Xx1VNa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCC6Xx1VNa .nav-link {
  position: relative;
}
.cid-uCC6Xx1VNa .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCC6Xx1VNa .dropdown-menu,
.cid-uCC6Xx1VNa .navbar.opened {
  background: #ffffff !important;
}
.cid-uCC6Xx1VNa .nav-item:focus,
.cid-uCC6Xx1VNa .nav-link:focus {
  outline: none;
}
.cid-uCC6Xx1VNa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCC6Xx1VNa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCC6Xx1VNa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCC6Xx1VNa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCC6Xx1VNa .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCC6Xx1VNa .navbar.opened {
  transition: all 0.3s;
}
.cid-uCC6Xx1VNa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCC6Xx1VNa .navbar .navbar-logo img {
  width: auto;
}
.cid-uCC6Xx1VNa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCC6Xx1VNa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCC6Xx1VNa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCC6Xx1VNa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCC6Xx1VNa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCC6Xx1VNa .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-uCC6Xx1VNa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCC6Xx1VNa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCC6Xx1VNa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCC6Xx1VNa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCC6Xx1VNa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCC6Xx1VNa .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .navbar {
    min-height: 80px;
  }
}
.cid-uCC6Xx1VNa .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCC6Xx1VNa .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCC6Xx1VNa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCC6Xx1VNa .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCC6Xx1VNa .dropdown-item.active,
.cid-uCC6Xx1VNa .dropdown-item:active {
  background-color: transparent;
}
.cid-uCC6Xx1VNa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCC6Xx1VNa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCC6Xx1VNa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCC6Xx1VNa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCC6Xx1VNa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCC6Xx1VNa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCC6Xx1VNa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCC6Xx1VNa button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC6Xx1VNa button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCC6Xx1VNa button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC6Xx1VNa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC6Xx1VNa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC6Xx1VNa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC6Xx1VNa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC6Xx1VNa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC6Xx1VNa nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC6Xx1VNa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC6Xx1VNa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC6Xx1VNa nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCC6Xx1VNa .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCC6Xx1VNa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCC6Xx1VNa .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-uCC6Xx1VNa .navbar {
    height: 70px;
  }
  .cid-uCC6Xx1VNa .navbar.opened {
    height: auto;
  }
  .cid-uCC6Xx1VNa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCC6Xx1VNa .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .navbar-short {
    min-height: 70px;
  }
}
.cid-uCC6Xx1VNa .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCC6Xx1VNa .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCC6Xx1VNa .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCC6Xx1VNa .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCC6Xx1VNa .navbar-nav {
  display: flex !important;
}
.cid-uCC6Xx1VNa .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCC6Xx1VNa .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCC6Xx1VNa .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC6Xx1VNa .navbar-nav .nav-item .nav-link:hover,
.cid-uCC6Xx1VNa .navbar-nav .nav-item .nav-link:focus,
.cid-uCC6Xx1VNa .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCC6Xx1VNa .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCC6Xx1VNa .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCC6Xx1VNa .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCC6Xx1VNa button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC6Xx1VNa button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCC6Xx1VNa button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC6Xx1VNa button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC6Xx1VNa button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCC6Xx1VNa button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC6Xx1VNa button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCC6Xx1VNa button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCC6Xx1VNa .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCC6Xx1VNa .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCC6Xx1VNa .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCC6Xx1VNa .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCC6Xx1VNa .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCC6Xx1VNa .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCC6Xx1VNa .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCC6Xx1VNa .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCC6Xx1VNa .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCC6Xx1VNa .offcanvas.show {
  transform: translateX(0);
}
.cid-uCC6Xx1VNa .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCC6Xx1VNa .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCC6Xx1VNa .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCC6Xx1VNa .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCC6Xx1VNa .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCC6Xx1VNa .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCC6Xx1VNa .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCC6Xx1VNa .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCC6Xx1VNa .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCC6Xx1VNa .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCC6Xx1VNa .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCC6Xx1VNa ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCC6Xx1VNa ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCC6Xx1VNa ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCC6Xx1VNa .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCC6Xx1VNa .social-container {
    padding-top: 40px;
  }
}
.cid-uCC6Xx1VNa .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCC6Xx1VNa .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCC6Xx1VNa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCC6Xx1VNa .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCC6Xx1VNa .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCC6Xx1VNa .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCC6Xx1VNa .soc-item:hover:before {
  opacity: 1;
}
.cid-uCC6Xx1VNa .offcanvas_btn {
  margin-top: auto;
}
.cid-uCC6Xx1VNa .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCC6Xx1VNa .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCC6XxIaWG {
  background-image: url("../../../assets/images/mbr-1000x556.webp");
}
.cid-uCC6XxIaWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC6XxIaWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC6XxIaWG .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCC6XxIaWG .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCC6XxIaWG .container {
    padding: 0 25px;
  }
}
.cid-uCC6XxIaWG .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCC6XxIaWG .title-wrapper {
    padding: 0;
  }
}
.cid-uCC6XxIaWG .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCC6XxIaWG .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCC6XxIaWG .mbr-section-title {
  color: #ffffff;
}
.cid-uCC6XxIaWG .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC6XxIaWG .mbr-section-title,
.cid-uCC6XxIaWG .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCC6XyhpMd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC6XyhpMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC6XyhpMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC6XyhpMd .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uCC6XyhpMd .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-uCC6Xzm6HI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCC6Xzm6HI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC6Xzm6HI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC6Xzm6HI .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uCC6Xzm6HI .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCC6Xzm6HI .container {
    padding: 0 20px;
  }
}
.cid-uCC6Xzm6HI .row {
  justify-content: center;
}
.cid-uCC6Xzm6HI .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCC6Xzm6HI .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCC6Xzm6HI .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCC6Xzm6HI .mbr-section-btn .btn:hover,
.cid-uCC6Xzm6HI .mbr-section-btn .btn:focus {
  box-shadow: inset 800px 0 0 0 #000000 !important;
}
.cid-uCC6Xzm6HI .mbr-desc {
  color: #ffffff;
}
.cid-uCC6XzPrrZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC6XzPrrZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC6XzPrrZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCC6XzPrrZ .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCC6XzPrrZ .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCC6XzPrrZ .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCC6XzPrrZ .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCC6XzPrrZ .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCC6XzPrrZ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCC6XzPrrZ .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCC6XzPrrZ .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC6XzPrrZ .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC6XzPrrZ .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC6XzPrrZ .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCC6XzPrrZ .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCC6XzPrrZ .list-wrapper .list .item-wrap:hover,
.cid-uCC6XzPrrZ .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCC6XzPrrZ .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCC6XzPrrZ .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCC6XzPrrZ .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCC6XzPrrZ .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCC6XzPrrZ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCC6XzPrrZ .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCC6XzPrrZ .mbr-desc {
  color: #6b8a96;
}
.cid-uCC6XzPrrZ .mbr-text,
.cid-uCC6XzPrrZ .text-wrapper {
  color: #9aa0a6;
}
.cid-uCC6XzPrrZ .list {
  color: #9aa0a6;
}
.cid-uCC6XzPrrZ .list,
.cid-uCC6XzPrrZ .item-wrap {
  color: #000000;
}
.cid-uCC6XzPrrZ .mbr-text,
.cid-uCC6XzPrrZ .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uBM4jaR0kW {
  background-image: url("../../../assets/images/mbr-6-1920x1280.webp");
}
.cid-uBM4jaR0kW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBM4jaR0kW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBM4jaR0kW .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uBM4jaR0kW .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uBM4jaR0kW .container {
    padding: 0 25px;
  }
}
.cid-uBM4jaR0kW .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uBM4jaR0kW .title-wrapper {
    padding: 0;
  }
}
.cid-uBM4jaR0kW .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uBM4jaR0kW .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uBM4jaR0kW .mbr-section-title {
  color: #ffffff;
}
.cid-uBM4jaR0kW .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uBM4jaR0kW .mbr-section-title,
.cid-uBM4jaR0kW .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBM4pEwno8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBM4pEwno8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBM4pEwno8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBM4pEwno8 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBM4pEwno8 .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uBM4pEwno8 .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBM4pEwno8 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBM4pEwno8 .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uBM4pEwno8 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBM4pEwno8 .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBM4pEwno8 .image-wrapper img {
    height: 350px;
  }
}
.cid-uBM4pEwno8 .mbr-section-title {
  color: #ffffff;
}
.cid-uBM4pEwno8 .mbr-text,
.cid-uBM4pEwno8 .text-wrapper {
  color: #000000;
}
.cid-uBM4pEwno8 .mbr-section-title,
.cid-uBM4pEwno8 .mbr-section-btn {
  color: #6b8a96;
}
.cid-uBM4qOadPr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uBM4qOadPr .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBM4qOadPr .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .title-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBM4qOadPr .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBM4qOadPr .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBM4qOadPr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 850px;
  max-width: 850px;
}
@media (max-width: 1200px) {
  .cid-uBM4qOadPr .embla__slide {
    min-width: 650px;
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uBM4qOadPr .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBM4qOadPr .embla__slide:hover .slide-content .item-wrapper .item-img img,
.cid-uBM4qOadPr .embla__slide:focus .slide-content .item-wrapper .item-img img {
  border: 2px solid #a3c9e7;
}
.cid-uBM4qOadPr .embla__slide .slide-content {
  width: 100%;
}
.cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-img img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 2px;
}
.cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
    width: 100%;
  }
}
.cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
    width: 100%;
  }
}
.cid-uBM4qOadPr .embla__button--next,
.cid-uBM4qOadPr .embla__button--prev {
  display: flex;
}
.cid-uBM4qOadPr .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #252525 !important;
  color: #ffffff !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-uBM4qOadPr .embla__button:hover {
  transform: scale(1.05);
}
.cid-uBM4qOadPr .embla__button.embla__button--prev {
  left: 0;
}
.cid-uBM4qOadPr .embla__button.embla__button--next {
  right: 0;
}
.cid-uBM4qOadPr .embla {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-uBM4qOadPr .embla {
    margin-bottom: 38px;
  }
}
.cid-uBM4qOadPr .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uBM4qOadPr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBM4qOadPr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBM4qOadPr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBM4qOadPr .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uBM4qOadPr .mbr-section-title {
  color: #ffffff;
}
.cid-uBM4qOadPr .mbr-text,
.cid-uBM4qOadPr .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBM4qOadPr .mbr-desc,
.cid-uBM4qOadPr .desc-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBM4qOadPr .item-title,
.cid-uBM4qOadPr .title-wrap {
  color: #a3c9e7;
  text-align: center;
}
.cid-uBM4qOadPr .item-text,
.cid-uBM4qOadPr .text-wrap {
  color: #000000;
  text-align: center;
}
.cid-uBM4qOadPr .mbr-section-title,
.cid-uBM4qOadPr .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uBM4uJHwK4 {
  background-color: #ffffff;
}
.cid-uBM4uJHwK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBM4uJHwK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBM4uJHwK4 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBM4uJHwK4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBM4uJHwK4 .container {
    padding: 0 24px;
  }
}
.cid-uBM4uJHwK4 .row {
  justify-content: center;
}
.cid-uBM4uJHwK4 .content-wrapper {
  padding: 200px 48px;
  position: relative;
  display: flex;
  justify-content: center;
  border: 1px solid #edeceb;
  border-radius: 2rem !important;
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .content-wrapper {
    padding: 64px 24px;
  }
}
.cid-uBM4uJHwK4 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap {
    display: block;
    max-width: 100%;
  }
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 32px;
}
@media (max-width: 1440px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper {
    padding-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper {
  margin-top: 48px;
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper {
    margin-top: 32px;
  }
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
@media (max-width: 1200px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap {
    grid-template-columns: 1fr;
  }
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item:hover .mbr-soc,
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item:focus .mbr-soc {
  opacity: .5;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  margin-right: 16px;
  background-color: #ffffff;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .icon-wrapper .mbr-iconfont {
  position: center;
  z-index: 1;
  color: #18212d;
  font-size: 18px;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .mbr-soc {
  margin-bottom: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper {
  width: 50%;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 40px;
  margin-left: 32px;
}
@media (max-width: 1440px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper {
    margin-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper {
    margin-left: 0;
    padding: 16px;
    border-radius: 1rem;
    width: 100%;
  }
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  position: relative;
  margin-bottom: 24px !important;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:hover::before,
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:focus::before {
  opacity: 1;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:hover .form-control::placeholder,
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:focus .form-control::placeholder {
  opacity: .2;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 12px !important;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  padding: 16px;
  border: 1px solid #edeceb !important;
  box-shadow: none;
  border-radius: 8px !important;
  background-color: transparent;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #18212d !important;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #18212d;
  font-size: 18px;
  opacity: .5;
  transition: all 0.3s ease-in-out;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 160px;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #edeceb;
  border-color: #edeceb;
  border-radius: 0;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uBM4uJHwK4 .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0;
}
.cid-uBM4uJHwK4 .mbr-section-title {
  color: #18212d;
}
.cid-uBM4uJHwK4 .mbr-desc {
  color: #18212d;
}
.cid-uBM4uJHwK4 .mbr-text {
  color: #18212d;
}
.cid-uBM4uJHwK4 .mbr-soc {
  color: #18212d;
}
.cid-uBM4uJHwK4 label {
  color: #18212d;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
.cid-uCGonC9nkB {
  z-index: 1000;
  width: 100%;
}
.cid-uCGonC9nkB .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-uCGonC9nkB .dropdown-menu {
  padding: 0;
}
.cid-uCGonC9nkB .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCGonC9nkB .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCGonC9nkB .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCGonC9nkB .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCGonC9nkB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCGonC9nkB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGonC9nkB .nav-link {
  position: relative;
}
.cid-uCGonC9nkB .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCGonC9nkB .dropdown-menu,
.cid-uCGonC9nkB .navbar.opened {
  background: #ffffff !important;
}
.cid-uCGonC9nkB .nav-item:focus,
.cid-uCGonC9nkB .nav-link:focus {
  outline: none;
}
.cid-uCGonC9nkB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGonC9nkB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGonC9nkB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCGonC9nkB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGonC9nkB .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCGonC9nkB .navbar.opened {
  transition: all 0.3s;
}
.cid-uCGonC9nkB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCGonC9nkB .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGonC9nkB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCGonC9nkB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGonC9nkB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGonC9nkB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGonC9nkB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGonC9nkB .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-uCGonC9nkB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCGonC9nkB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGonC9nkB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGonC9nkB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGonC9nkB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCGonC9nkB .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .navbar {
    min-height: 80px;
  }
}
.cid-uCGonC9nkB .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCGonC9nkB .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCGonC9nkB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGonC9nkB .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCGonC9nkB .dropdown-item.active,
.cid-uCGonC9nkB .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGonC9nkB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGonC9nkB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGonC9nkB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGonC9nkB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCGonC9nkB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGonC9nkB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGonC9nkB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGonC9nkB button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGonC9nkB button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCGonC9nkB button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGonC9nkB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGonC9nkB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGonC9nkB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGonC9nkB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGonC9nkB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGonC9nkB nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGonC9nkB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGonC9nkB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGonC9nkB nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGonC9nkB .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCGonC9nkB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGonC9nkB .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-uCGonC9nkB .navbar {
    height: 70px;
  }
  .cid-uCGonC9nkB .navbar.opened {
    height: auto;
  }
  .cid-uCGonC9nkB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCGonC9nkB .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .navbar-short {
    min-height: 70px;
  }
}
.cid-uCGonC9nkB .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCGonC9nkB .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCGonC9nkB .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCGonC9nkB .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCGonC9nkB .navbar-nav {
  display: flex !important;
}
.cid-uCGonC9nkB .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCGonC9nkB .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCGonC9nkB .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGonC9nkB .navbar-nav .nav-item .nav-link:hover,
.cid-uCGonC9nkB .navbar-nav .nav-item .nav-link:focus,
.cid-uCGonC9nkB .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGonC9nkB .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCGonC9nkB .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCGonC9nkB .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCGonC9nkB button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGonC9nkB button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCGonC9nkB button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGonC9nkB button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGonC9nkB button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGonC9nkB button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGonC9nkB button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGonC9nkB button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGonC9nkB .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGonC9nkB .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCGonC9nkB .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGonC9nkB .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGonC9nkB .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCGonC9nkB .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGonC9nkB .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGonC9nkB .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCGonC9nkB .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCGonC9nkB .offcanvas.show {
  transform: translateX(0);
}
.cid-uCGonC9nkB .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCGonC9nkB .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCGonC9nkB .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCGonC9nkB .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCGonC9nkB .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCGonC9nkB .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCGonC9nkB .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCGonC9nkB .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCGonC9nkB .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCGonC9nkB .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCGonC9nkB .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCGonC9nkB ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCGonC9nkB ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCGonC9nkB ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCGonC9nkB .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCGonC9nkB .social-container {
    padding-top: 40px;
  }
}
.cid-uCGonC9nkB .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCGonC9nkB .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCGonC9nkB .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCGonC9nkB .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCGonC9nkB .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCGonC9nkB .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCGonC9nkB .soc-item:hover:before {
  opacity: 1;
}
.cid-uCGonC9nkB .offcanvas_btn {
  margin-top: auto;
}
.cid-uCGonC9nkB .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCGonC9nkB .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGonD9TlL {
  background-image: url("../../../assets/images/mbr-9-1000x667.webp");
}
.cid-uCGonD9TlL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGonD9TlL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGonD9TlL .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGonD9TlL .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGonD9TlL .container {
    padding: 0 25px;
  }
}
.cid-uCGonD9TlL .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGonD9TlL .title-wrapper {
    padding: 0;
  }
}
.cid-uCGonD9TlL .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGonD9TlL .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGonD9TlL .mbr-section-title {
  color: #ffffff;
}
.cid-uCGonD9TlL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGonD9TlL .mbr-section-title,
.cid-uCGonD9TlL .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGonDFIAe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCGonDFIAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGonDFIAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGonDFIAe .col-title {
  margin-bottom: 32px;
}
.cid-uCGonDFIAe .mbr-section-title {
  color: #24262b;
}
.cid-uCGonDFIAe .mbr-section-subtitle {
  color: #24262b;
}
.cid-uCGonDFIAe .cards-row {
  row-gap: 32px;
}
.cid-uCGonDFIAe .card {
  border-radius: 0;
}
.cid-uCGonDFIAe .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uCGonDFIAe .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uCGonDFIAe .text-wrap {
  flex-grow: 1;
}
.cid-uCGonDFIAe .card-title {
  color: #ffffff;
}
.cid-uCGonDFIAe .card-text {
  color: #767676;
}
.cid-uCGonEtr4L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGonEtr4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGonEtr4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGonEtr4L .mbr-section-title {
  color: #6b8a96;
}
.cid-uCGonEtr4L .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGonERFv2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGonERFv2 .item-img {
  position: relative;
}
.cid-uCGonERFv2 .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGonERFv2 .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGonERFv2 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGonERFv2 .image-wrapper {
  overflow: hidden;
}
.cid-uCGonERFv2 .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGonERFv2 .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGonERFv2 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGonERFv2 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGonERFv2 .item1,
.cid-uCGonERFv2 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGonERFv2 .item1 .item:hover,
.cid-uCGonERFv2 .item .item:hover {
  cursor: pointer;
}
.cid-uCGonERFv2 .item1:hover .link-icon-wrapper span,
.cid-uCGonERFv2 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGonERFv2 .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGonERFv2 .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGonERFv2 .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGonERFv2 .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGonERFv2 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGonERFv2 .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGonERFv2 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGonERFv2 .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGonERFv2 .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGonERFv2 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGonERFv2 img,
.cid-uCGonERFv2 .item-img {
  width: 100%;
}
.cid-uCGonERFv2 .item:focus,
.cid-uCGonERFv2 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGonERFv2 .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGonERFv2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGonERFv2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGonERFv2 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGonERFv2 .mbr-section-subtitle,
.cid-uCGonERFv2 .subtitle-wrap,
.cid-uCGonERFv2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGonERFv2 .mbr-text,
.cid-uCGonERFv2 .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCGonFhnv2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGonFhnv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGonFhnv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGonFhnv2 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCGonFhnv2 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCGonFhnv2 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCGonFhnv2 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCGonFhnv2 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGonFhnv2 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGonFhnv2 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGonFhnv2 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCGonFhnv2 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGonFhnv2 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCGonFhnv2 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCGonFhnv2 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGonFhnv2 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCGonFhnv2 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGonFhnv2 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGonFhnv2 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGonFhnv2 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGonFhnv2 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCGonFhnv2 .list-wrapper .list .item-wrap:hover,
.cid-uCGonFhnv2 .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCGonFhnv2 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGonFhnv2 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGonFhnv2 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGonFhnv2 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGonFhnv2 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCGonFhnv2 .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCGonFhnv2 .mbr-desc {
  color: #6b8a96;
}
.cid-uCGonFhnv2 .mbr-text,
.cid-uCGonFhnv2 .text-wrapper {
  color: #9aa0a6;
}
.cid-uCGonFhnv2 .list {
  color: #9aa0a6;
}
.cid-uCGonFhnv2 .list,
.cid-uCGonFhnv2 .item-wrap {
  color: #000000;
}
.cid-uCGonFhnv2 .mbr-text,
.cid-uCGonFhnv2 .mbr-section-btn {
  color: #000000;
}
.cid-uCGqpMrgs1 {
  z-index: 1000;
  width: 100%;
}
.cid-uCGqpMrgs1 .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-uCGqpMrgs1 .dropdown-menu {
  padding: 0;
}
.cid-uCGqpMrgs1 .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCGqpMrgs1 .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCGqpMrgs1 .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCGqpMrgs1 .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCGqpMrgs1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCGqpMrgs1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGqpMrgs1 .nav-link {
  position: relative;
}
.cid-uCGqpMrgs1 .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCGqpMrgs1 .dropdown-menu,
.cid-uCGqpMrgs1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uCGqpMrgs1 .nav-item:focus,
.cid-uCGqpMrgs1 .nav-link:focus {
  outline: none;
}
.cid-uCGqpMrgs1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGqpMrgs1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGqpMrgs1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCGqpMrgs1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGqpMrgs1 .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCGqpMrgs1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCGqpMrgs1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCGqpMrgs1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGqpMrgs1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCGqpMrgs1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGqpMrgs1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGqpMrgs1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGqpMrgs1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGqpMrgs1 .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-uCGqpMrgs1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCGqpMrgs1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGqpMrgs1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGqpMrgs1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGqpMrgs1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCGqpMrgs1 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .navbar {
    min-height: 80px;
  }
}
.cid-uCGqpMrgs1 .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCGqpMrgs1 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCGqpMrgs1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGqpMrgs1 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCGqpMrgs1 .dropdown-item.active,
.cid-uCGqpMrgs1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGqpMrgs1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGqpMrgs1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGqpMrgs1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGqpMrgs1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCGqpMrgs1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGqpMrgs1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGqpMrgs1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGqpMrgs1 button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGqpMrgs1 button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCGqpMrgs1 button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGqpMrgs1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGqpMrgs1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGqpMrgs1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGqpMrgs1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGqpMrgs1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGqpMrgs1 nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGqpMrgs1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGqpMrgs1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGqpMrgs1 nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGqpMrgs1 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCGqpMrgs1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGqpMrgs1 .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-uCGqpMrgs1 .navbar {
    height: 70px;
  }
  .cid-uCGqpMrgs1 .navbar.opened {
    height: auto;
  }
  .cid-uCGqpMrgs1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCGqpMrgs1 .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .navbar-short {
    min-height: 70px;
  }
}
.cid-uCGqpMrgs1 .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCGqpMrgs1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCGqpMrgs1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCGqpMrgs1 .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCGqpMrgs1 .navbar-nav {
  display: flex !important;
}
.cid-uCGqpMrgs1 .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCGqpMrgs1 .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCGqpMrgs1 .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGqpMrgs1 .navbar-nav .nav-item .nav-link:hover,
.cid-uCGqpMrgs1 .navbar-nav .nav-item .nav-link:focus,
.cid-uCGqpMrgs1 .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGqpMrgs1 .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCGqpMrgs1 .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCGqpMrgs1 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCGqpMrgs1 button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGqpMrgs1 button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCGqpMrgs1 button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGqpMrgs1 button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGqpMrgs1 button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGqpMrgs1 button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGqpMrgs1 button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGqpMrgs1 button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGqpMrgs1 .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGqpMrgs1 .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCGqpMrgs1 .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGqpMrgs1 .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGqpMrgs1 .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCGqpMrgs1 .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGqpMrgs1 .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGqpMrgs1 .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCGqpMrgs1 .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCGqpMrgs1 .offcanvas.show {
  transform: translateX(0);
}
.cid-uCGqpMrgs1 .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCGqpMrgs1 .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCGqpMrgs1 .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCGqpMrgs1 .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCGqpMrgs1 .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCGqpMrgs1 .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCGqpMrgs1 .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCGqpMrgs1 .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCGqpMrgs1 .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCGqpMrgs1 .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCGqpMrgs1 .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCGqpMrgs1 ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCGqpMrgs1 ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCGqpMrgs1 ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCGqpMrgs1 .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCGqpMrgs1 .social-container {
    padding-top: 40px;
  }
}
.cid-uCGqpMrgs1 .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCGqpMrgs1 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCGqpMrgs1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCGqpMrgs1 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCGqpMrgs1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCGqpMrgs1 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCGqpMrgs1 .soc-item:hover:before {
  opacity: 1;
}
.cid-uCGqpMrgs1 .offcanvas_btn {
  margin-top: auto;
}
.cid-uCGqpMrgs1 .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCGqpMrgs1 .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGqpO9Eub {
  background-image: url("../../../assets/images/mbr-1000x668.webp");
}
.cid-uCGqpO9Eub .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGqpO9Eub .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGqpO9Eub .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGqpO9Eub .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGqpO9Eub .container {
    padding: 0 25px;
  }
}
.cid-uCGqpO9Eub .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGqpO9Eub .title-wrapper {
    padding: 0;
  }
}
.cid-uCGqpO9Eub .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGqpO9Eub .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGqpO9Eub .mbr-section-title {
  color: #ffffff;
}
.cid-uCGqpO9Eub .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGqpO9Eub .mbr-section-title,
.cid-uCGqpO9Eub .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGqpOIdH1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCGqpOIdH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGqpOIdH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGqpOIdH1 .col-title {
  margin-bottom: 32px;
}
.cid-uCGqpOIdH1 .mbr-section-title {
  color: #24262b;
}
.cid-uCGqpOIdH1 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uCGqpOIdH1 .cards-row {
  row-gap: 32px;
}
.cid-uCGqpOIdH1 .card {
  border-radius: 0;
}
.cid-uCGqpOIdH1 .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uCGqpOIdH1 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uCGqpOIdH1 .text-wrap {
  flex-grow: 1;
}
.cid-uCGqpOIdH1 .card-title {
  color: #ffffff;
}
.cid-uCGqpOIdH1 .card-text {
  color: #767676;
}
.cid-uCGqpPAFdt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGqpPAFdt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGqpPAFdt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGqpPAFdt .mbr-section-title {
  color: #6b8a96;
}
.cid-uCGqpPAFdt .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGqpQjQck {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGqpQjQck .item-img {
  position: relative;
}
.cid-uCGqpQjQck .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGqpQjQck .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGqpQjQck .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGqpQjQck .image-wrapper {
  overflow: hidden;
}
.cid-uCGqpQjQck .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGqpQjQck .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGqpQjQck .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGqpQjQck .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGqpQjQck .item1,
.cid-uCGqpQjQck .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGqpQjQck .item1 .item:hover,
.cid-uCGqpQjQck .item .item:hover {
  cursor: pointer;
}
.cid-uCGqpQjQck .item1:hover .link-icon-wrapper span,
.cid-uCGqpQjQck .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGqpQjQck .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGqpQjQck .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGqpQjQck .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGqpQjQck .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGqpQjQck .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGqpQjQck .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGqpQjQck .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGqpQjQck .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGqpQjQck .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGqpQjQck .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGqpQjQck img,
.cid-uCGqpQjQck .item-img {
  width: 100%;
}
.cid-uCGqpQjQck .item:focus,
.cid-uCGqpQjQck span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGqpQjQck .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGqpQjQck .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGqpQjQck .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGqpQjQck .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGqpQjQck .mbr-section-subtitle,
.cid-uCGqpQjQck .subtitle-wrap,
.cid-uCGqpQjQck .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGqpQjQck .mbr-text,
.cid-uCGqpQjQck .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCGqpR2dZ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGqpR2dZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGqpR2dZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCGqpR2dZ4 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCGqpR2dZ4 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGqpR2dZ4 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCGqpR2dZ4 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCGqpR2dZ4 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGqpR2dZ4 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCGqpR2dZ4 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGqpR2dZ4 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGqpR2dZ4 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGqpR2dZ4 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGqpR2dZ4 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCGqpR2dZ4 .list-wrapper .list .item-wrap:hover,
.cid-uCGqpR2dZ4 .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCGqpR2dZ4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGqpR2dZ4 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGqpR2dZ4 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGqpR2dZ4 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGqpR2dZ4 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCGqpR2dZ4 .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCGqpR2dZ4 .mbr-desc {
  color: #6b8a96;
}
.cid-uCGqpR2dZ4 .mbr-text,
.cid-uCGqpR2dZ4 .text-wrapper {
  color: #9aa0a6;
}
.cid-uCGqpR2dZ4 .list {
  color: #9aa0a6;
}
.cid-uCGqpR2dZ4 .list,
.cid-uCGqpR2dZ4 .item-wrap {
  color: #000000;
}
.cid-uCGqpR2dZ4 .mbr-text,
.cid-uCGqpR2dZ4 .mbr-section-btn {
  color: #000000;
}
.cid-uCGs2sCXVF {
  z-index: 1000;
  width: 100%;
}
.cid-uCGs2sCXVF .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-uCGs2sCXVF .dropdown-menu {
  padding: 0;
}
.cid-uCGs2sCXVF .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCGs2sCXVF .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCGs2sCXVF .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCGs2sCXVF .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCGs2sCXVF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCGs2sCXVF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGs2sCXVF .nav-link {
  position: relative;
}
.cid-uCGs2sCXVF .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCGs2sCXVF .dropdown-menu,
.cid-uCGs2sCXVF .navbar.opened {
  background: #ffffff !important;
}
.cid-uCGs2sCXVF .nav-item:focus,
.cid-uCGs2sCXVF .nav-link:focus {
  outline: none;
}
.cid-uCGs2sCXVF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGs2sCXVF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGs2sCXVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCGs2sCXVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGs2sCXVF .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCGs2sCXVF .navbar.opened {
  transition: all 0.3s;
}
.cid-uCGs2sCXVF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCGs2sCXVF .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGs2sCXVF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCGs2sCXVF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGs2sCXVF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGs2sCXVF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGs2sCXVF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGs2sCXVF .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-uCGs2sCXVF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCGs2sCXVF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGs2sCXVF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGs2sCXVF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGs2sCXVF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCGs2sCXVF .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .navbar {
    min-height: 80px;
  }
}
.cid-uCGs2sCXVF .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCGs2sCXVF .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCGs2sCXVF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGs2sCXVF .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCGs2sCXVF .dropdown-item.active,
.cid-uCGs2sCXVF .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGs2sCXVF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGs2sCXVF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGs2sCXVF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGs2sCXVF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCGs2sCXVF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGs2sCXVF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGs2sCXVF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGs2sCXVF button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGs2sCXVF button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCGs2sCXVF button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGs2sCXVF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGs2sCXVF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGs2sCXVF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGs2sCXVF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGs2sCXVF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGs2sCXVF nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGs2sCXVF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGs2sCXVF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGs2sCXVF nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGs2sCXVF .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCGs2sCXVF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGs2sCXVF .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-uCGs2sCXVF .navbar {
    height: 70px;
  }
  .cid-uCGs2sCXVF .navbar.opened {
    height: auto;
  }
  .cid-uCGs2sCXVF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCGs2sCXVF .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .navbar-short {
    min-height: 70px;
  }
}
.cid-uCGs2sCXVF .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCGs2sCXVF .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCGs2sCXVF .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCGs2sCXVF .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCGs2sCXVF .navbar-nav {
  display: flex !important;
}
.cid-uCGs2sCXVF .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCGs2sCXVF .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCGs2sCXVF .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGs2sCXVF .navbar-nav .nav-item .nav-link:hover,
.cid-uCGs2sCXVF .navbar-nav .nav-item .nav-link:focus,
.cid-uCGs2sCXVF .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGs2sCXVF .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCGs2sCXVF .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCGs2sCXVF .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCGs2sCXVF button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGs2sCXVF button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCGs2sCXVF button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGs2sCXVF button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGs2sCXVF button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGs2sCXVF button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGs2sCXVF button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGs2sCXVF button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGs2sCXVF .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGs2sCXVF .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCGs2sCXVF .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGs2sCXVF .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGs2sCXVF .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCGs2sCXVF .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGs2sCXVF .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGs2sCXVF .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCGs2sCXVF .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCGs2sCXVF .offcanvas.show {
  transform: translateX(0);
}
.cid-uCGs2sCXVF .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCGs2sCXVF .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCGs2sCXVF .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCGs2sCXVF .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCGs2sCXVF .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCGs2sCXVF .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCGs2sCXVF .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCGs2sCXVF .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCGs2sCXVF .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCGs2sCXVF .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCGs2sCXVF .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCGs2sCXVF ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCGs2sCXVF ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCGs2sCXVF ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCGs2sCXVF .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCGs2sCXVF .social-container {
    padding-top: 40px;
  }
}
.cid-uCGs2sCXVF .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCGs2sCXVF .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCGs2sCXVF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCGs2sCXVF .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCGs2sCXVF .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCGs2sCXVF .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCGs2sCXVF .soc-item:hover:before {
  opacity: 1;
}
.cid-uCGs2sCXVF .offcanvas_btn {
  margin-top: auto;
}
.cid-uCGs2sCXVF .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCGs2sCXVF .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGs2tKCMu {
  background-image: url("../../../assets/images/property-a0ef-img-9841-08-01-25-19-54-1000x667.webp");
}
.cid-uCGs2tKCMu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGs2tKCMu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGs2tKCMu .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGs2tKCMu .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGs2tKCMu .container {
    padding: 0 25px;
  }
}
.cid-uCGs2tKCMu .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGs2tKCMu .title-wrapper {
    padding: 0;
  }
}
.cid-uCGs2tKCMu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGs2tKCMu .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGs2tKCMu .mbr-section-title {
  color: #ffffff;
}
.cid-uCGs2tKCMu .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGs2tKCMu .mbr-section-title,
.cid-uCGs2tKCMu .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGs2uk4F0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCGs2uk4F0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGs2uk4F0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGs2uk4F0 .col-title {
  margin-bottom: 32px;
}
.cid-uCGs2uk4F0 .mbr-section-title {
  color: #24262b;
}
.cid-uCGs2uk4F0 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uCGs2uk4F0 .cards-row {
  row-gap: 32px;
}
.cid-uCGs2uk4F0 .card {
  border-radius: 0;
}
.cid-uCGs2uk4F0 .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uCGs2uk4F0 .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uCGs2uk4F0 .text-wrap {
  flex-grow: 1;
}
.cid-uCGs2uk4F0 .card-title {
  color: #ffffff;
}
.cid-uCGs2uk4F0 .card-text {
  color: #767676;
}
.cid-uCGs2v4iMT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGs2v4iMT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGs2v4iMT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGs2v4iMT .mbr-section-title {
  color: #6b8a96;
}
.cid-uCGs2v4iMT .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGs2vN4Oh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGs2vN4Oh .item-img {
  position: relative;
}
.cid-uCGs2vN4Oh .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGs2vN4Oh .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGs2vN4Oh .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGs2vN4Oh .image-wrapper {
  overflow: hidden;
}
.cid-uCGs2vN4Oh .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGs2vN4Oh .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGs2vN4Oh .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGs2vN4Oh .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGs2vN4Oh .item1,
.cid-uCGs2vN4Oh .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGs2vN4Oh .item1 .item:hover,
.cid-uCGs2vN4Oh .item .item:hover {
  cursor: pointer;
}
.cid-uCGs2vN4Oh .item1:hover .link-icon-wrapper span,
.cid-uCGs2vN4Oh .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGs2vN4Oh .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGs2vN4Oh .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGs2vN4Oh .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGs2vN4Oh .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGs2vN4Oh .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGs2vN4Oh .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGs2vN4Oh .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGs2vN4Oh .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGs2vN4Oh .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGs2vN4Oh .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGs2vN4Oh img,
.cid-uCGs2vN4Oh .item-img {
  width: 100%;
}
.cid-uCGs2vN4Oh .item:focus,
.cid-uCGs2vN4Oh span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGs2vN4Oh .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGs2vN4Oh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGs2vN4Oh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGs2vN4Oh .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGs2vN4Oh .mbr-section-subtitle,
.cid-uCGs2vN4Oh .subtitle-wrap,
.cid-uCGs2vN4Oh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGs2vN4Oh .mbr-text,
.cid-uCGs2vN4Oh .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCGs2wpPqM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGs2wpPqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGs2wpPqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGs2wpPqM .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCGs2wpPqM .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCGs2wpPqM .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCGs2wpPqM .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCGs2wpPqM .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGs2wpPqM .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGs2wpPqM .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGs2wpPqM .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCGs2wpPqM .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGs2wpPqM .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCGs2wpPqM .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCGs2wpPqM .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGs2wpPqM .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCGs2wpPqM .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGs2wpPqM .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGs2wpPqM .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGs2wpPqM .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGs2wpPqM .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCGs2wpPqM .list-wrapper .list .item-wrap:hover,
.cid-uCGs2wpPqM .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCGs2wpPqM .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGs2wpPqM .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGs2wpPqM .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGs2wpPqM .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGs2wpPqM .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCGs2wpPqM .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCGs2wpPqM .mbr-desc {
  color: #6b8a96;
}
.cid-uCGs2wpPqM .mbr-text,
.cid-uCGs2wpPqM .text-wrapper {
  color: #9aa0a6;
}
.cid-uCGs2wpPqM .list {
  color: #9aa0a6;
}
.cid-uCGs2wpPqM .list,
.cid-uCGs2wpPqM .item-wrap {
  color: #000000;
}
.cid-uCGs2wpPqM .mbr-text,
.cid-uCGs2wpPqM .mbr-section-btn {
  color: #000000;
}
.cid-uCGuGCs4Ka {
  background-image: url("../../../assets/images/background3-2.webp");
}
.cid-uCGuGCs4Ka .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGCs4Ka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGCs4Ka .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGuGCs4Ka .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGuGCs4Ka .container {
    padding: 0 25px;
  }
}
.cid-uCGuGCs4Ka .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGuGCs4Ka .title-wrapper {
    padding: 0;
  }
}
.cid-uCGuGCs4Ka .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGuGCs4Ka .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGuGCs4Ka .mbr-section-title {
  color: #ffffff;
}
.cid-uCGuGCs4Ka .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGuGCs4Ka .mbr-section-title,
.cid-uCGuGCs4Ka .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGvbhfTXD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCGvbhfTXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGvbhfTXD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGvbhfTXD .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGxk51vxY {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCGxk51vxY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxk51vxY .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-uCGxk51vxY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCGxk51vxY .row {
  flex-direction: row-reverse;
}
.cid-uCGxk51vxY img {
  width: 100%;
}
.cid-uCGx6F3NwG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGx6F3NwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGx6F3NwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGx6F3NwG .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGuGDJG52 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGuGDJG52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGDJG52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGDJG52 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uCGuGDJG52 .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper .item {
    margin-bottom: 12px;
  }
  .cid-uCGuGDJG52 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uCGuGDJG52 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #6b8a96;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #a3c9e7;
  color: #a3c9e7;
}
@media (max-width: 992px) {
  .cid-uCGuGDJG52 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.cid-uCGuGDJG52 .item-title {
  color: #050f0f;
}
.cid-uCGuGDJG52 .item-text {
  color: #ffffff;
}
.cid-uCGuGDJG52 .icon-wrapper {
  text-align: right;
}
.cid-uCGuGDJG52 .item-title,
.cid-uCGuGDJG52 .icon-wrapper,
.cid-uCGuGDJG52 .mbr-section-btn {
  color: #ffffff;
}
.cid-uCGuGEJEyy {
  z-index: 1000;
  width: 100%;
}
.cid-uCGuGEJEyy .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-uCGuGEJEyy .dropdown-menu {
  padding: 0;
}
.cid-uCGuGEJEyy .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCGuGEJEyy .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCGuGEJEyy .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCGuGEJEyy .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCGuGEJEyy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCGuGEJEyy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGuGEJEyy .nav-link {
  position: relative;
}
.cid-uCGuGEJEyy .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCGuGEJEyy .dropdown-menu,
.cid-uCGuGEJEyy .navbar.opened {
  background: #ffffff !important;
}
.cid-uCGuGEJEyy .nav-item:focus,
.cid-uCGuGEJEyy .nav-link:focus {
  outline: none;
}
.cid-uCGuGEJEyy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGuGEJEyy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGuGEJEyy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCGuGEJEyy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGuGEJEyy .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCGuGEJEyy .navbar.opened {
  transition: all 0.3s;
}
.cid-uCGuGEJEyy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCGuGEJEyy .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGuGEJEyy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCGuGEJEyy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGuGEJEyy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGuGEJEyy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGuGEJEyy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGuGEJEyy .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-uCGuGEJEyy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCGuGEJEyy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGuGEJEyy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGuGEJEyy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGuGEJEyy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCGuGEJEyy .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .navbar {
    min-height: 80px;
  }
}
.cid-uCGuGEJEyy .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCGuGEJEyy .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCGuGEJEyy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGuGEJEyy .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCGuGEJEyy .dropdown-item.active,
.cid-uCGuGEJEyy .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGuGEJEyy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGuGEJEyy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGuGEJEyy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGuGEJEyy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCGuGEJEyy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGuGEJEyy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGuGEJEyy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGuGEJEyy button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGuGEJEyy button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCGuGEJEyy button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGuGEJEyy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGuGEJEyy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGuGEJEyy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGuGEJEyy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGuGEJEyy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGuGEJEyy nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGuGEJEyy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGuGEJEyy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGuGEJEyy nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGuGEJEyy .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCGuGEJEyy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGuGEJEyy .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-uCGuGEJEyy .navbar {
    height: 70px;
  }
  .cid-uCGuGEJEyy .navbar.opened {
    height: auto;
  }
  .cid-uCGuGEJEyy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCGuGEJEyy .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .navbar-short {
    min-height: 70px;
  }
}
.cid-uCGuGEJEyy .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCGuGEJEyy .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCGuGEJEyy .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCGuGEJEyy .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCGuGEJEyy .navbar-nav {
  display: flex !important;
}
.cid-uCGuGEJEyy .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCGuGEJEyy .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCGuGEJEyy .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGuGEJEyy .navbar-nav .nav-item .nav-link:hover,
.cid-uCGuGEJEyy .navbar-nav .nav-item .nav-link:focus,
.cid-uCGuGEJEyy .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGuGEJEyy .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCGuGEJEyy .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCGuGEJEyy .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCGuGEJEyy button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGuGEJEyy button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCGuGEJEyy button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGuGEJEyy button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGuGEJEyy button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGuGEJEyy button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGuGEJEyy button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGuGEJEyy button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGuGEJEyy .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGuGEJEyy .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCGuGEJEyy .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGuGEJEyy .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGuGEJEyy .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCGuGEJEyy .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGuGEJEyy .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGuGEJEyy .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCGuGEJEyy .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCGuGEJEyy .offcanvas.show {
  transform: translateX(0);
}
.cid-uCGuGEJEyy .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCGuGEJEyy .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCGuGEJEyy .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCGuGEJEyy .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCGuGEJEyy .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCGuGEJEyy .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCGuGEJEyy .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCGuGEJEyy .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCGuGEJEyy .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCGuGEJEyy .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCGuGEJEyy .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCGuGEJEyy ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCGuGEJEyy ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCGuGEJEyy ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCGuGEJEyy .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCGuGEJEyy .social-container {
    padding-top: 40px;
  }
}
.cid-uCGuGEJEyy .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCGuGEJEyy .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCGuGEJEyy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCGuGEJEyy .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCGuGEJEyy .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCGuGEJEyy .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCGuGEJEyy .soc-item:hover:before {
  opacity: 1;
}
.cid-uCGuGEJEyy .offcanvas_btn {
  margin-top: auto;
}
.cid-uCGuGEJEyy .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCGuGEJEyy .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGuGFRS4e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGuGFRS4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGFRS4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGFRS4e .items-wrapper {
  justify-content: center;
}
.cid-uCGuGFRS4e .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGuGFRS4e .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCGuGFRS4e .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGuGFRS4e .content-wrapper .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-uCGuGFRS4e .form-wrapper {
  padding: 32px 40px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uCGuGFRS4e .form-wrapper {
    padding: 20px 16px;
  }
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 2px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  height: 34px;
}
@media (max-width: 992px) {
  .cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #a3c9e7 !important;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uCGuGFRS4e .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
  padding: 14px;
  border-radius: .5rem !important;
}
.cid-uCGuGFRS4e .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCGuGFRS4e .mbr-section-subtitle {
  color: #272b2e;
  text-align: center;
}
.cid-uCGuGGDuu1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCGuGGDuu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGGDuu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGGDuu1 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCGuGGDuu1 .google-map {
    margin-bottom: 48px;
  }
}
.cid-uCGuGGDuu1 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCGuGGDuu1 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uCGuGGDuu1 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uCGuGGDuu1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGuGGDuu1 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uCGuGGDuu1 .list-wrapper .list .item-wrap:hover,
.cid-uCGuGGDuu1 .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uCGuGGDuu1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGuGGDuu1 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uCGuGGDuu1 .social-wrapper {
    text-align: left;
  }
}
.cid-uCGuGGDuu1 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGuGGDuu1 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGuGGDuu1 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGuGGDuu1 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #000000;
}
.cid-uCGuGGDuu1 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGuGGDuu1 .list {
  color: #9aa0a6;
}
.cid-uCGuGGDuu1 .list,
.cid-uCGuGGDuu1 .item-wrap,
.cid-uCGuGGDuu1 .social-wrapper {
  color: #000000;
}
.cid-uCGuGHBEzs {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGuGHBEzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGHBEzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGHBEzs .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uCGuGHBEzs .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCGuGHBEzs .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGuGHBEzs .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .item {
    margin-bottom: 28px;
  }
}
.cid-uCGuGHBEzs .item .item-wrapper {
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uCGuGHBEzs .item .item-wrapper:hover,
.cid-uCGuGHBEzs .item .item-wrapper:focus {
  border: 2px solid #a3c9e7;
  background-color: #a3c9e7;
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap {
  padding: 12px;
  border: 1px solid #ffffff;
  background-color: #a3c9e7;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .item .item-wrapper .item-wrap {
    padding: 16px;
    display: block;
  }
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-img img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content {
    width: 100%;
    display: block;
  }
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 18px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .text-wrap {
    padding: 0;
    margin-bottom: 16px;
  }
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .text-wrap .item-date {
  margin-bottom: 4px;
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .icon-wrapper {
  min-width: 24px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .icon-wrapper {
    min-width: auto;
  }
}
.cid-uCGuGHBEzs .item .item-wrapper .item-wrap .item-content .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #a3c9e7;
}
.cid-uCGuGHBEzs .mbr-section-title {
  color: #6b8a96;
  text-align: center;
}
.cid-uCGuGHBEzs .item-date {
  color: #000000;
}
.cid-uCGuGHBEzs .item-text {
  color: #ffffff;
}
.cid-uCGuGItL8j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGuGItL8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGItL8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGItL8j .content-wrapper {
  position: relative;
  padding: 130px 0;
  display: flex;
  justify-content: center;
  border-radius: 1000px;
  border: 1px solid #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uCGuGItL8j .content-wrapper {
    padding: 16px;
    border-radius: 24px;
  }
}
.cid-uCGuGItL8j .content-wrapper .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uCGuGItL8j .content-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cid-uCGuGItL8j .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCGuGItL8j .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 32px;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 12px !important;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  border: 1px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  color: #6b8a96;
  font-size: 18px;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
  font-size: 18px;
  opacity: .6;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.6em;
  margin-bottom: 16px;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uCGuGItL8j .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uCGuGItL8j .mbr-section-title {
  color: #ffffff;
}
.cid-uCGuGItL8j .mbr-text,
.cid-uCGuGItL8j .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCGuGItL8j .mbr-section-title,
.cid-uCGuGItL8j .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGuGItL8j LABEL {
  text-align: left;
}
.cid-uCGuGJoj4Q {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGuGJoj4Q .item-img {
  position: relative;
}
.cid-uCGuGJoj4Q .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGuGJoj4Q .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGuGJoj4Q .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGuGJoj4Q .image-wrapper {
  overflow: hidden;
}
.cid-uCGuGJoj4Q .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGuGJoj4Q .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGuGJoj4Q .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGuGJoj4Q .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGuGJoj4Q .item1,
.cid-uCGuGJoj4Q .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGuGJoj4Q .item1 .item:hover,
.cid-uCGuGJoj4Q .item .item:hover {
  cursor: pointer;
}
.cid-uCGuGJoj4Q .item1:hover .link-icon-wrapper span,
.cid-uCGuGJoj4Q .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGuGJoj4Q .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGuGJoj4Q .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGuGJoj4Q .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGuGJoj4Q .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGuGJoj4Q .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGuGJoj4Q .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGuGJoj4Q .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGuGJoj4Q .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGuGJoj4Q .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGuGJoj4Q .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGuGJoj4Q img,
.cid-uCGuGJoj4Q .item-img {
  width: 100%;
}
.cid-uCGuGJoj4Q .item:focus,
.cid-uCGuGJoj4Q span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGuGJoj4Q .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGuGJoj4Q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGuGJoj4Q .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGuGJoj4Q .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGuGJoj4Q .mbr-section-subtitle,
.cid-uCGuGJoj4Q .subtitle-wrap,
.cid-uCGuGJoj4Q .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGuGJoj4Q .mbr-text,
.cid-uCGuGJoj4Q .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCGuGKlRpQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGuGKlRpQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGuGKlRpQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCGuGKlRpQ .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCGuGKlRpQ .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCGuGKlRpQ .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGuGKlRpQ .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCGuGKlRpQ .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCGuGKlRpQ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGuGKlRpQ .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCGuGKlRpQ .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGuGKlRpQ .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGuGKlRpQ .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGuGKlRpQ .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGuGKlRpQ .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCGuGKlRpQ .list-wrapper .list .item-wrap:hover,
.cid-uCGuGKlRpQ .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCGuGKlRpQ .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGuGKlRpQ .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGuGKlRpQ .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGuGKlRpQ .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGuGKlRpQ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCGuGKlRpQ .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCGuGKlRpQ .mbr-desc {
  color: #6b8a96;
}
.cid-uCGuGKlRpQ .mbr-text,
.cid-uCGuGKlRpQ .text-wrapper {
  color: #9aa0a6;
}
.cid-uCGuGKlRpQ .list {
  color: #9aa0a6;
}
.cid-uCGuGKlRpQ .list,
.cid-uCGuGKlRpQ .item-wrap {
  color: #000000;
}
.cid-uCGuGKlRpQ .mbr-text,
.cid-uCGuGKlRpQ .mbr-section-btn {
  color: #000000;
}
.cid-uCGxSrYLWM {
  background-image: url("../../../assets/images/background3-2.webp");
}
.cid-uCGxSrYLWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSrYLWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSrYLWM .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGxSrYLWM .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGxSrYLWM .container {
    padding: 0 25px;
  }
}
.cid-uCGxSrYLWM .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGxSrYLWM .title-wrapper {
    padding: 0;
  }
}
.cid-uCGxSrYLWM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGxSrYLWM .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGxSrYLWM .mbr-section-title {
  color: #ffffff;
}
.cid-uCGxSrYLWM .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGxSrYLWM .mbr-section-title,
.cid-uCGxSrYLWM .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGxSsrEkG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGxSsrEkG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSsrEkG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSsrEkG .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGxStIpv1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGxStIpv1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxStIpv1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxStIpv1 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uCGxStIpv1 .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper .item {
    margin-bottom: 12px;
  }
  .cid-uCGxStIpv1 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uCGxStIpv1 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #6b8a96;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #a3c9e7;
  color: #a3c9e7;
}
@media (max-width: 992px) {
  .cid-uCGxStIpv1 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.cid-uCGxStIpv1 .item-title {
  color: #050f0f;
}
.cid-uCGxStIpv1 .item-text {
  color: #ffffff;
}
.cid-uCGxStIpv1 .icon-wrapper {
  text-align: right;
}
.cid-uCGxStIpv1 .item-title,
.cid-uCGxStIpv1 .icon-wrapper,
.cid-uCGxStIpv1 .mbr-section-btn {
  color: #ffffff;
}
.cid-uCGxSufUCa {
  z-index: 1000;
  width: 100%;
}
.cid-uCGxSufUCa .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-uCGxSufUCa .dropdown-menu {
  padding: 0;
}
.cid-uCGxSufUCa .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCGxSufUCa .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCGxSufUCa .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCGxSufUCa .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCGxSufUCa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCGxSufUCa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGxSufUCa .nav-link {
  position: relative;
}
.cid-uCGxSufUCa .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCGxSufUCa .dropdown-menu,
.cid-uCGxSufUCa .navbar.opened {
  background: #ffffff !important;
}
.cid-uCGxSufUCa .nav-item:focus,
.cid-uCGxSufUCa .nav-link:focus {
  outline: none;
}
.cid-uCGxSufUCa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGxSufUCa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGxSufUCa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCGxSufUCa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGxSufUCa .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCGxSufUCa .navbar.opened {
  transition: all 0.3s;
}
.cid-uCGxSufUCa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCGxSufUCa .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGxSufUCa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCGxSufUCa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGxSufUCa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGxSufUCa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGxSufUCa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGxSufUCa .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-uCGxSufUCa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCGxSufUCa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGxSufUCa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGxSufUCa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGxSufUCa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCGxSufUCa .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .navbar {
    min-height: 80px;
  }
}
.cid-uCGxSufUCa .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCGxSufUCa .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCGxSufUCa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGxSufUCa .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCGxSufUCa .dropdown-item.active,
.cid-uCGxSufUCa .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGxSufUCa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGxSufUCa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGxSufUCa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGxSufUCa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCGxSufUCa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGxSufUCa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGxSufUCa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGxSufUCa button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGxSufUCa button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCGxSufUCa button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGxSufUCa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGxSufUCa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGxSufUCa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGxSufUCa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGxSufUCa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGxSufUCa nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGxSufUCa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGxSufUCa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGxSufUCa nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGxSufUCa .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCGxSufUCa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGxSufUCa .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-uCGxSufUCa .navbar {
    height: 70px;
  }
  .cid-uCGxSufUCa .navbar.opened {
    height: auto;
  }
  .cid-uCGxSufUCa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCGxSufUCa .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .navbar-short {
    min-height: 70px;
  }
}
.cid-uCGxSufUCa .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCGxSufUCa .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCGxSufUCa .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCGxSufUCa .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCGxSufUCa .navbar-nav {
  display: flex !important;
}
.cid-uCGxSufUCa .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCGxSufUCa .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCGxSufUCa .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGxSufUCa .navbar-nav .nav-item .nav-link:hover,
.cid-uCGxSufUCa .navbar-nav .nav-item .nav-link:focus,
.cid-uCGxSufUCa .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGxSufUCa .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCGxSufUCa .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCGxSufUCa .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCGxSufUCa button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGxSufUCa button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCGxSufUCa button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGxSufUCa button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGxSufUCa button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGxSufUCa button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGxSufUCa button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGxSufUCa button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGxSufUCa .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGxSufUCa .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCGxSufUCa .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGxSufUCa .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGxSufUCa .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCGxSufUCa .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGxSufUCa .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGxSufUCa .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCGxSufUCa .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCGxSufUCa .offcanvas.show {
  transform: translateX(0);
}
.cid-uCGxSufUCa .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCGxSufUCa .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCGxSufUCa .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCGxSufUCa .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCGxSufUCa .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCGxSufUCa .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCGxSufUCa .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCGxSufUCa .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCGxSufUCa .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCGxSufUCa .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCGxSufUCa .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCGxSufUCa ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCGxSufUCa ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCGxSufUCa ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCGxSufUCa .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCGxSufUCa .social-container {
    padding-top: 40px;
  }
}
.cid-uCGxSufUCa .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCGxSufUCa .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCGxSufUCa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCGxSufUCa .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCGxSufUCa .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCGxSufUCa .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCGxSufUCa .soc-item:hover:before {
  opacity: 1;
}
.cid-uCGxSufUCa .offcanvas_btn {
  margin-top: auto;
}
.cid-uCGxSufUCa .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCGxSufUCa .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGxSv008Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGxSv008Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSv008Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSv008Z .items-wrapper {
  justify-content: center;
}
.cid-uCGxSv008Z .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGxSv008Z .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCGxSv008Z .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGxSv008Z .content-wrapper .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-uCGxSv008Z .form-wrapper {
  padding: 32px 40px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uCGxSv008Z .form-wrapper {
    padding: 20px 16px;
  }
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 2px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  height: 34px;
}
@media (max-width: 992px) {
  .cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #a3c9e7 !important;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uCGxSv008Z .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
  padding: 14px;
  border-radius: .5rem !important;
}
.cid-uCGxSv008Z .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCGxSv008Z .mbr-section-subtitle {
  color: #272b2e;
  text-align: center;
}
.cid-uCGxSvxIH4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCGxSvxIH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSvxIH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSvxIH4 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCGxSvxIH4 .google-map {
    margin-bottom: 48px;
  }
}
.cid-uCGxSvxIH4 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCGxSvxIH4 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uCGxSvxIH4 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uCGxSvxIH4 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGxSvxIH4 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uCGxSvxIH4 .list-wrapper .list .item-wrap:hover,
.cid-uCGxSvxIH4 .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uCGxSvxIH4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGxSvxIH4 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uCGxSvxIH4 .social-wrapper {
    text-align: left;
  }
}
.cid-uCGxSvxIH4 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGxSvxIH4 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGxSvxIH4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGxSvxIH4 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #000000;
}
.cid-uCGxSvxIH4 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGxSvxIH4 .list {
  color: #9aa0a6;
}
.cid-uCGxSvxIH4 .list,
.cid-uCGxSvxIH4 .item-wrap,
.cid-uCGxSvxIH4 .social-wrapper {
  color: #000000;
}
.cid-uCGxSwexkE {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGxSwexkE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSwexkE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSwexkE .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uCGxSwexkE .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCGxSwexkE .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGxSwexkE .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .item {
    margin-bottom: 28px;
  }
}
.cid-uCGxSwexkE .item .item-wrapper {
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uCGxSwexkE .item .item-wrapper:hover,
.cid-uCGxSwexkE .item .item-wrapper:focus {
  border: 2px solid #a3c9e7;
  background-color: #a3c9e7;
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap {
  padding: 12px;
  border: 1px solid #ffffff;
  background-color: #a3c9e7;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .item .item-wrapper .item-wrap {
    padding: 16px;
    display: block;
  }
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-img img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content {
    width: 100%;
    display: block;
  }
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 18px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .text-wrap {
    padding: 0;
    margin-bottom: 16px;
  }
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .text-wrap .item-date {
  margin-bottom: 4px;
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .icon-wrapper {
  min-width: 24px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .icon-wrapper {
    min-width: auto;
  }
}
.cid-uCGxSwexkE .item .item-wrapper .item-wrap .item-content .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #a3c9e7;
}
.cid-uCGxSwexkE .mbr-section-title {
  color: #6b8a96;
  text-align: center;
}
.cid-uCGxSwexkE .item-date {
  color: #000000;
}
.cid-uCGxSwexkE .item-text {
  color: #ffffff;
}
.cid-uCGxSwQDJs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGxSwQDJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSwQDJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSwQDJs .content-wrapper {
  position: relative;
  padding: 130px 0;
  display: flex;
  justify-content: center;
  border-radius: 1000px;
  border: 1px solid #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uCGxSwQDJs .content-wrapper {
    padding: 16px;
    border-radius: 24px;
  }
}
.cid-uCGxSwQDJs .content-wrapper .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uCGxSwQDJs .content-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cid-uCGxSwQDJs .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCGxSwQDJs .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 32px;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 12px !important;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  border: 1px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  color: #6b8a96;
  font-size: 18px;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
  font-size: 18px;
  opacity: .6;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.6em;
  margin-bottom: 16px;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uCGxSwQDJs .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uCGxSwQDJs .mbr-section-title {
  color: #ffffff;
}
.cid-uCGxSwQDJs .mbr-text,
.cid-uCGxSwQDJs .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCGxSwQDJs .mbr-section-title,
.cid-uCGxSwQDJs .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGxSwQDJs LABEL {
  text-align: left;
}
.cid-uCGxSxthHD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGxSxthHD .item-img {
  position: relative;
}
.cid-uCGxSxthHD .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGxSxthHD .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGxSxthHD .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGxSxthHD .image-wrapper {
  overflow: hidden;
}
.cid-uCGxSxthHD .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGxSxthHD .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGxSxthHD .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGxSxthHD .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGxSxthHD .item1,
.cid-uCGxSxthHD .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGxSxthHD .item1 .item:hover,
.cid-uCGxSxthHD .item .item:hover {
  cursor: pointer;
}
.cid-uCGxSxthHD .item1:hover .link-icon-wrapper span,
.cid-uCGxSxthHD .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGxSxthHD .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGxSxthHD .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGxSxthHD .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGxSxthHD .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGxSxthHD .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGxSxthHD .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGxSxthHD .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGxSxthHD .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGxSxthHD .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGxSxthHD .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGxSxthHD img,
.cid-uCGxSxthHD .item-img {
  width: 100%;
}
.cid-uCGxSxthHD .item:focus,
.cid-uCGxSxthHD span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGxSxthHD .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGxSxthHD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGxSxthHD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGxSxthHD .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGxSxthHD .mbr-section-subtitle,
.cid-uCGxSxthHD .subtitle-wrap,
.cid-uCGxSxthHD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGxSxthHD .mbr-text,
.cid-uCGxSxthHD .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCGxSy1RlI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGxSy1RlI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGxSy1RlI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGxSy1RlI .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCGxSy1RlI .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCGxSy1RlI .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCGxSy1RlI .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCGxSy1RlI .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGxSy1RlI .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGxSy1RlI .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGxSy1RlI .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCGxSy1RlI .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGxSy1RlI .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCGxSy1RlI .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCGxSy1RlI .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGxSy1RlI .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCGxSy1RlI .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGxSy1RlI .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGxSy1RlI .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGxSy1RlI .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGxSy1RlI .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCGxSy1RlI .list-wrapper .list .item-wrap:hover,
.cid-uCGxSy1RlI .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCGxSy1RlI .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGxSy1RlI .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGxSy1RlI .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGxSy1RlI .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGxSy1RlI .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCGxSy1RlI .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCGxSy1RlI .mbr-desc {
  color: #6b8a96;
}
.cid-uCGxSy1RlI .mbr-text,
.cid-uCGxSy1RlI .text-wrapper {
  color: #9aa0a6;
}
.cid-uCGxSy1RlI .list {
  color: #9aa0a6;
}
.cid-uCGxSy1RlI .list,
.cid-uCGxSy1RlI .item-wrap {
  color: #000000;
}
.cid-uCGxSy1RlI .mbr-text,
.cid-uCGxSy1RlI .mbr-section-btn {
  color: #000000;
}
.cid-uCGydtv9QC {
  background-image: url("../../../assets/images/background3-2.webp");
}
.cid-uCGydtv9QC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydtv9QC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydtv9QC .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGydtv9QC .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGydtv9QC .container {
    padding: 0 25px;
  }
}
.cid-uCGydtv9QC .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGydtv9QC .title-wrapper {
    padding: 0;
  }
}
.cid-uCGydtv9QC .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGydtv9QC .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGydtv9QC .mbr-section-title {
  color: #ffffff;
}
.cid-uCGydtv9QC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGydtv9QC .mbr-section-title,
.cid-uCGydtv9QC .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGyduXiaF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCGyduXiaF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGyduXiaF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGyduXiaF .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGydwJnCF {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGydwJnCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydwJnCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydwJnCF .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uCGydwJnCF .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper .item {
    margin-bottom: 12px;
  }
  .cid-uCGydwJnCF .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uCGydwJnCF .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #6b8a96;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #a3c9e7;
  color: #a3c9e7;
}
@media (max-width: 992px) {
  .cid-uCGydwJnCF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.cid-uCGydwJnCF .item-title {
  color: #050f0f;
}
.cid-uCGydwJnCF .item-text {
  color: #ffffff;
}
.cid-uCGydwJnCF .icon-wrapper {
  text-align: right;
}
.cid-uCGydwJnCF .item-title,
.cid-uCGydwJnCF .icon-wrapper,
.cid-uCGydwJnCF .mbr-section-btn {
  color: #ffffff;
}
.cid-uCGydxqTHx {
  z-index: 1000;
  width: 100%;
}
.cid-uCGydxqTHx .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-uCGydxqTHx .dropdown-menu {
  padding: 0;
}
.cid-uCGydxqTHx .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uCGydxqTHx .dropdown-item {
    text-align: left !important;
  }
}
.cid-uCGydxqTHx .dropdown-item:hover {
  background-position: right !important;
}
.cid-uCGydxqTHx .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uCGydxqTHx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCGydxqTHx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGydxqTHx .nav-link {
  position: relative;
}
.cid-uCGydxqTHx .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uCGydxqTHx .dropdown-menu,
.cid-uCGydxqTHx .navbar.opened {
  background: #ffffff !important;
}
.cid-uCGydxqTHx .nav-item:focus,
.cid-uCGydxqTHx .nav-link:focus {
  outline: none;
}
.cid-uCGydxqTHx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGydxqTHx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGydxqTHx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCGydxqTHx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGydxqTHx .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uCGydxqTHx .navbar.opened {
  transition: all 0.3s;
}
.cid-uCGydxqTHx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCGydxqTHx .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGydxqTHx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uCGydxqTHx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGydxqTHx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGydxqTHx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGydxqTHx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGydxqTHx .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-uCGydxqTHx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCGydxqTHx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGydxqTHx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGydxqTHx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGydxqTHx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCGydxqTHx .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .navbar {
    min-height: 80px;
  }
}
.cid-uCGydxqTHx .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uCGydxqTHx .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uCGydxqTHx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGydxqTHx .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .navbar-brand {
    min-height: 69px;
  }
}
.cid-uCGydxqTHx .dropdown-item.active,
.cid-uCGydxqTHx .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGydxqTHx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGydxqTHx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGydxqTHx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGydxqTHx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCGydxqTHx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGydxqTHx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGydxqTHx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGydxqTHx button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGydxqTHx button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uCGydxqTHx button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGydxqTHx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGydxqTHx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGydxqTHx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGydxqTHx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGydxqTHx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGydxqTHx nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGydxqTHx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGydxqTHx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGydxqTHx nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCGydxqTHx .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uCGydxqTHx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGydxqTHx .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-uCGydxqTHx .navbar {
    height: 70px;
  }
  .cid-uCGydxqTHx .navbar.opened {
    height: auto;
  }
  .cid-uCGydxqTHx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCGydxqTHx .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .navbar-short {
    min-height: 70px;
  }
}
.cid-uCGydxqTHx .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uCGydxqTHx .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uCGydxqTHx .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .container-fluid {
    padding: 0 3px;
  }
}
.cid-uCGydxqTHx .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uCGydxqTHx .navbar-nav {
  display: flex !important;
}
.cid-uCGydxqTHx .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uCGydxqTHx .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uCGydxqTHx .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGydxqTHx .navbar-nav .nav-item .nav-link:hover,
.cid-uCGydxqTHx .navbar-nav .nav-item .nav-link:focus,
.cid-uCGydxqTHx .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uCGydxqTHx .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uCGydxqTHx .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uCGydxqTHx .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCGydxqTHx button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGydxqTHx button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uCGydxqTHx button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGydxqTHx button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGydxqTHx button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uCGydxqTHx button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGydxqTHx button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uCGydxqTHx button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCGydxqTHx .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uCGydxqTHx .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uCGydxqTHx .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uCGydxqTHx .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uCGydxqTHx .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uCGydxqTHx .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCGydxqTHx .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCGydxqTHx .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uCGydxqTHx .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uCGydxqTHx .offcanvas.show {
  transform: translateX(0);
}
.cid-uCGydxqTHx .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uCGydxqTHx .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCGydxqTHx .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uCGydxqTHx .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uCGydxqTHx .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCGydxqTHx .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uCGydxqTHx .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uCGydxqTHx .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uCGydxqTHx .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uCGydxqTHx .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uCGydxqTHx .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uCGydxqTHx ::-webkit-scrollbar {
  width: 1em;
}
.cid-uCGydxqTHx ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uCGydxqTHx ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uCGydxqTHx .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uCGydxqTHx .social-container {
    padding-top: 40px;
  }
}
.cid-uCGydxqTHx .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uCGydxqTHx .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uCGydxqTHx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uCGydxqTHx .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uCGydxqTHx .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uCGydxqTHx .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uCGydxqTHx .soc-item:hover:before {
  opacity: 1;
}
.cid-uCGydxqTHx .offcanvas_btn {
  margin-top: auto;
}
.cid-uCGydxqTHx .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uCGydxqTHx .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGydyAwJa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGydyAwJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydyAwJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydyAwJa .items-wrapper {
  justify-content: center;
}
.cid-uCGydyAwJa .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGydyAwJa .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCGydyAwJa .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCGydyAwJa .content-wrapper .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-uCGydyAwJa .form-wrapper {
  padding: 32px 40px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uCGydyAwJa .form-wrapper {
    padding: 20px 16px;
  }
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 2px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  height: 34px;
}
@media (max-width: 992px) {
  .cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #a3c9e7 !important;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uCGydyAwJa .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
  padding: 14px;
  border-radius: .5rem !important;
}
.cid-uCGydyAwJa .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCGydyAwJa .mbr-section-subtitle {
  color: #272b2e;
  text-align: center;
}
.cid-uCGydznYLw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCGydznYLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydznYLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydznYLw .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCGydznYLw .google-map {
    margin-bottom: 48px;
  }
}
.cid-uCGydznYLw .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCGydznYLw .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uCGydznYLw .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uCGydznYLw .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGydznYLw .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uCGydznYLw .list-wrapper .list .item-wrap:hover,
.cid-uCGydznYLw .list-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-uCGydznYLw .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGydznYLw .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uCGydznYLw .social-wrapper {
    text-align: left;
  }
}
.cid-uCGydznYLw .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGydznYLw .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGydznYLw .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGydznYLw .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #000000;
}
.cid-uCGydznYLw .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGydznYLw .list {
  color: #9aa0a6;
}
.cid-uCGydznYLw .list,
.cid-uCGydznYLw .item-wrap,
.cid-uCGydznYLw .social-wrapper {
  color: #000000;
}
.cid-uCGydAyB8z {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGydAyB8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydAyB8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydAyB8z .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uCGydAyB8z .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCGydAyB8z .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGydAyB8z .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .item {
    margin-bottom: 28px;
  }
}
.cid-uCGydAyB8z .item .item-wrapper {
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uCGydAyB8z .item .item-wrapper:hover,
.cid-uCGydAyB8z .item .item-wrapper:focus {
  border: 2px solid #a3c9e7;
  background-color: #a3c9e7;
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap {
  padding: 12px;
  border: 1px solid #ffffff;
  background-color: #a3c9e7;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .item .item-wrapper .item-wrap {
    padding: 16px;
    display: block;
  }
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-img img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content {
    width: 100%;
    display: block;
  }
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 18px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .text-wrap {
    padding: 0;
    margin-bottom: 16px;
  }
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .text-wrap .item-date {
  margin-bottom: 4px;
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .icon-wrapper {
  min-width: 24px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .icon-wrapper {
    min-width: auto;
  }
}
.cid-uCGydAyB8z .item .item-wrapper .item-wrap .item-content .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #a3c9e7;
}
.cid-uCGydAyB8z .mbr-section-title {
  color: #6b8a96;
  text-align: center;
}
.cid-uCGydAyB8z .item-date {
  color: #000000;
}
.cid-uCGydAyB8z .item-text {
  color: #ffffff;
}
.cid-uCGydBs7aj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGydBs7aj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydBs7aj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydBs7aj .content-wrapper {
  position: relative;
  padding: 130px 0;
  display: flex;
  justify-content: center;
  border-radius: 1000px;
  border: 1px solid #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uCGydBs7aj .content-wrapper {
    padding: 16px;
    border-radius: 24px;
  }
}
.cid-uCGydBs7aj .content-wrapper .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uCGydBs7aj .content-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cid-uCGydBs7aj .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCGydBs7aj .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 32px;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 12px !important;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  border: 1px solid #6b8a96 !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  color: #6b8a96;
  font-size: 18px;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6b8a96;
  font-size: 18px;
  opacity: .6;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.6em;
  margin-bottom: 16px;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6b8a96;
  border-color: #6b8a96;
}
.cid-uCGydBs7aj .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uCGydBs7aj .mbr-section-title {
  color: #ffffff;
}
.cid-uCGydBs7aj .mbr-text,
.cid-uCGydBs7aj .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCGydBs7aj .mbr-section-title,
.cid-uCGydBs7aj .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGydBs7aj LABEL {
  text-align: left;
}
.cid-uCGydCmimp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGydCmimp .item-img {
  position: relative;
}
.cid-uCGydCmimp .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGydCmimp .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGydCmimp .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGydCmimp .image-wrapper {
  overflow: hidden;
}
.cid-uCGydCmimp .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGydCmimp .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGydCmimp .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGydCmimp .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGydCmimp .item1,
.cid-uCGydCmimp .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGydCmimp .item1 .item:hover,
.cid-uCGydCmimp .item .item:hover {
  cursor: pointer;
}
.cid-uCGydCmimp .item1:hover .link-icon-wrapper span,
.cid-uCGydCmimp .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGydCmimp .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGydCmimp .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGydCmimp .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGydCmimp .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGydCmimp .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGydCmimp .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGydCmimp .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGydCmimp .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGydCmimp .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGydCmimp .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGydCmimp img,
.cid-uCGydCmimp .item-img {
  width: 100%;
}
.cid-uCGydCmimp .item:focus,
.cid-uCGydCmimp span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGydCmimp .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGydCmimp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGydCmimp .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGydCmimp .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGydCmimp .mbr-section-subtitle,
.cid-uCGydCmimp .subtitle-wrap,
.cid-uCGydCmimp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGydCmimp .mbr-text,
.cid-uCGydCmimp .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uCGydDcY3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGydDcY3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGydDcY3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGydDcY3H .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCGydDcY3H .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uCGydDcY3H .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCGydDcY3H .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uCGydDcY3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCGydDcY3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCGydDcY3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCGydDcY3H .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uCGydDcY3H .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uCGydDcY3H .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCGydDcY3H .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uCGydDcY3H .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uCGydDcY3H .items-wrapper .card {
  padding: 0 32px;
}
.cid-uCGydDcY3H .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGydDcY3H .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGydDcY3H .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGydDcY3H .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uCGydDcY3H .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uCGydDcY3H .list-wrapper .list .item-wrap:hover,
.cid-uCGydDcY3H .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uCGydDcY3H .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCGydDcY3H .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uCGydDcY3H .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uCGydDcY3H .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uCGydDcY3H .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uCGydDcY3H .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uCGydDcY3H .mbr-desc {
  color: #6b8a96;
}
.cid-uCGydDcY3H .mbr-text,
.cid-uCGydDcY3H .text-wrapper {
  color: #9aa0a6;
}
.cid-uCGydDcY3H .list {
  color: #9aa0a6;
}
.cid-uCGydDcY3H .list,
.cid-uCGydDcY3H .item-wrap {
  color: #000000;
}
.cid-uCGydDcY3H .mbr-text,
.cid-uCGydDcY3H .mbr-section-btn {
  color: #000000;
}
.cid-uAE2otyIuA {
  z-index: 1000;
  width: 100%;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .dropdown-menu {
  padding: 0;
}
.cid-uAE2otyIuA .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .dropdown-item {
    text-align: left !important;
  }
}
.cid-uAE2otyIuA .dropdown-item:hover {
  background-position: right !important;
}
.cid-uAE2otyIuA .dropdown-item:hover:after {
  color: #6b8a96;
}
.cid-uAE2otyIuA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAE2otyIuA .nav-link {
  position: relative;
}
.cid-uAE2otyIuA .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uAE2otyIuA .dropdown-menu,
.cid-uAE2otyIuA .navbar.opened {
  background: #ffffff !important;
}
.cid-uAE2otyIuA .nav-item:focus,
.cid-uAE2otyIuA .nav-link:focus {
  outline: none;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAE2otyIuA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAE2otyIuA .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uAE2otyIuA .navbar.opened {
  transition: all 0.3s;
}
.cid-uAE2otyIuA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAE2otyIuA .navbar .navbar-logo img {
  width: auto;
}
.cid-uAE2otyIuA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAE2otyIuA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAE2otyIuA .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-uAE2otyIuA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAE2otyIuA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAE2otyIuA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAE2otyIuA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAE2otyIuA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAE2otyIuA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar {
    min-height: 80px;
  }
}
.cid-uAE2otyIuA .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uAE2otyIuA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uAE2otyIuA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAE2otyIuA .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-brand {
    min-height: 69px;
  }
}
.cid-uAE2otyIuA .dropdown-item.active,
.cid-uAE2otyIuA .dropdown-item:active {
  background-color: transparent;
}
.cid-uAE2otyIuA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAE2otyIuA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAE2otyIuA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAE2otyIuA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAE2otyIuA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAE2otyIuA button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uAE2otyIuA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAE2otyIuA .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-uAE2otyIuA .navbar {
    height: 70px;
  }
  .cid-uAE2otyIuA .navbar.opened {
    height: auto;
  }
  .cid-uAE2otyIuA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAE2otyIuA .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .navbar-short {
    min-height: 70px;
  }
}
.cid-uAE2otyIuA .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .container-fluid {
    padding: 0 3px;
  }
}
.cid-uAE2otyIuA .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uAE2otyIuA .navbar-nav {
  display: flex !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 10px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: flex-start;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:hover,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:focus,
.cid-uAE2otyIuA .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uAE2otyIuA .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #ffffff !important;
}
.cid-uAE2otyIuA .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uAE2otyIuA .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uAE2otyIuA button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uAE2otyIuA button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAE2otyIuA .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uAE2otyIuA .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #a3c9e7;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAE2otyIuA .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uAE2otyIuA .offcanvas-end {
  left: 0 !important;
  transform: translateX(-100%);
}
.cid-uAE2otyIuA .offcanvas.show {
  transform: translateX(0);
}
.cid-uAE2otyIuA .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.5s ease-in-out;
}
.cid-uAE2otyIuA .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAE2otyIuA .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  width: 375px;
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body {
    width: 260px;
    padding: 10px;
  }
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-uAE2otyIuA .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-uAE2otyIuA .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-uAE2otyIuA .mbr-text {
  color: #6b8a96;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-uAE2otyIuA .modal-backdrop.show {
  opacity: 0.8;
}
.cid-uAE2otyIuA .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 0;
  margin-top: 20px;
}
.cid-uAE2otyIuA ::-webkit-scrollbar {
  width: 1em;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-uAE2otyIuA ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-uAE2otyIuA .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-uAE2otyIuA .social-container {
    padding-top: 40px;
  }
}
.cid-uAE2otyIuA .social-title {
  color: #C4CFDE;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-uAE2otyIuA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-uAE2otyIuA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #6b8a96, #23272b);
  transition: 0.4s all;
}
.cid-uAE2otyIuA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uAE2otyIuA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uAE2otyIuA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uAE2otyIuA .soc-item:hover:before {
  opacity: 1;
}
.cid-uAE2otyIuA .offcanvas_btn {
  margin-top: auto;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.cid-uAE2otyIuA .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uCGl41GoWQ {
  background-image: url("../../../assets/images/media.media.09055001-f13d-46b4-808a-c1ce4cdad908.original1024-236x155.webp");
}
.cid-uCGl41GoWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGl41GoWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGl41GoWQ .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uCGl41GoWQ .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uCGl41GoWQ .container {
    padding: 0 25px;
  }
}
.cid-uCGl41GoWQ .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uCGl41GoWQ .title-wrapper {
    padding: 0;
  }
}
.cid-uCGl41GoWQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCGl41GoWQ .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uCGl41GoWQ .mbr-section-title {
  color: #ffffff;
}
.cid-uCGl41GoWQ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCGl41GoWQ .mbr-section-title,
.cid-uCGl41GoWQ .mbr-section-btn {
  text-align: center;
  color: #6b8a96;
}
.cid-uCGlaR72uF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6b8a96;
}
.cid-uCGlaR72uF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGlaR72uF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGlaR72uF .col-title {
  margin-bottom: 32px;
}
.cid-uCGlaR72uF .mbr-section-title {
  color: #24262b;
}
.cid-uCGlaR72uF .mbr-section-subtitle {
  color: #24262b;
}
.cid-uCGlaR72uF .cards-row {
  row-gap: 32px;
}
.cid-uCGlaR72uF .card {
  border-radius: 0;
}
.cid-uCGlaR72uF .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-uCGlaR72uF .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #a3c9e7;
  margin-right: 2rem;
  flex-shrink: 0;
}
.cid-uCGlaR72uF .text-wrap {
  flex-grow: 1;
}
.cid-uCGlaR72uF .card-title {
  color: #ffffff;
}
.cid-uCGlaR72uF .card-text {
  color: #767676;
}
.cid-uCGlfbpABs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGlfbpABs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGlfbpABs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGlfbpABs .mbr-section-title {
  color: #6b8a96;
}
.cid-uCGlfbpABs .mbr-section-subtitle {
  text-align: left;
}
.cid-uCGlaeV2cz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uCGlaeV2cz .item-img {
  position: relative;
}
.cid-uCGlaeV2cz .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uCGlaeV2cz .cardbg {
  background: #6b8a96;
  height: 100%;
  min-height: 160px;
}
.cid-uCGlaeV2cz .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uCGlaeV2cz .image-wrapper {
  overflow: hidden;
}
.cid-uCGlaeV2cz .item1 {
  margin-bottom: 2rem !important;
}
.cid-uCGlaeV2cz .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uCGlaeV2cz .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uCGlaeV2cz .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #a3c9e7;
}
.cid-uCGlaeV2cz .item1,
.cid-uCGlaeV2cz .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uCGlaeV2cz .item1 .item:hover,
.cid-uCGlaeV2cz .item .item:hover {
  cursor: pointer;
}
.cid-uCGlaeV2cz .item1:hover .link-icon-wrapper span,
.cid-uCGlaeV2cz .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uCGlaeV2cz .card2 {
    margin-top: 1rem;
  }
}
.cid-uCGlaeV2cz .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uCGlaeV2cz .link-icon-wrapper .icon-wrap {
  background: #6b8a96;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uCGlaeV2cz .link-icon-wrapper .icon-wrap span {
  color: #a3c9e7;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uCGlaeV2cz .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uCGlaeV2cz .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uCGlaeV2cz .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uCGlaeV2cz .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uCGlaeV2cz .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uCGlaeV2cz .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uCGlaeV2cz img,
.cid-uCGlaeV2cz .item-img {
  width: 100%;
}
.cid-uCGlaeV2cz .item:focus,
.cid-uCGlaeV2cz span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uCGlaeV2cz .item {
    margin-bottom: 1rem;
  }
}
.cid-uCGlaeV2cz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uCGlaeV2cz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uCGlaeV2cz .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uCGlaeV2cz .mbr-section-subtitle,
.cid-uCGlaeV2cz .subtitle-wrap,
.cid-uCGlaeV2cz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uCGlaeV2cz .mbr-text,
.cid-uCGlaeV2cz .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uAxZz3QV0F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxZz3QV0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxZz3QV0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uAxZz3QV0F .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uAxZz3QV0F .items-wrapper .card {
  padding: 0 32px;
}
.cid-uAxZz3QV0F .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:hover,
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:focus {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAxZz3QV0F .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAxZz3QV0F .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uAxZz3QV0F .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uAxZz3QV0F .mbr-copy {
  margin-bottom: 0;
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-desc {
  color: #6b8a96;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .text-wrapper {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list {
  color: #9aa0a6;
}
.cid-uAxZz3QV0F .list,
.cid-uAxZz3QV0F .item-wrap {
  color: #000000;
}
.cid-uAxZz3QV0F .mbr-text,
.cid-uAxZz3QV0F .mbr-section-btn {
  color: #000000;
}
