.btn {
  border-width: 2px;
}
body {
  font-family: Cormorant Infant;
}
.display-1 {
  font-family: 'vertopal.com_MusticaPro-Medium';
  font-size: 0.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1rem;
}
.display-2 {
  font-family: 'vertopal.com_MusticaPro-Medium';
  font-size: 5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'vertopal.com_MusticaPro-Medium';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'vertopal.com_MusticaPro-Medium';
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-7 {
  font-family: 'vertopal.com_MusticaPro-Medium';
  font-size: 1.4rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 1400px) {
  .display-1 {
    font-size: 0.56rem;
  }
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 0.4rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 0.16rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.56rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #d3d3d3 !important;
}
.bg-info {
  background-color: #004d50 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #eeeeee !important;
  border-color: #eeeeee !important;
  color: #6f6f6f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #6f6f6f !important;
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
}
.btn-info,
.btn-info:active {
  background-color: #004d50 !important;
  border-color: #004d50 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d3d3d3 !important;
  border-color: #d3d3d3 !important;
  color: #535353 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #a8a8a8 !important;
  border-color: #a8a8a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #535353 !important;
  background-color: #a8a8a8 !important;
  border-color: #a8a8a8 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #eeeeee;
  color: #eeeeee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c3c3c3 !important;
  background-color: transparent !important;
  border-color: #c3c3c3 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #6f6f6f !important;
  background-color: #eeeeee !important;
  border-color: #eeeeee !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #004d50;
  color: #004d50;
}
.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: #004d50 !important;
  border-color: #004d50 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #d3d3d3;
  color: #d3d3d3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a8a8a8 !important;
  background-color: transparent !important;
  border-color: #a8a8a8 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #535353 !important;
  background-color: #d3d3d3 !important;
  border-color: #d3d3d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #eeeeee !important;
}
.text-success {
  color: #d3d3d3 !important;
}
.text-info {
  color: #004d50 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #bbbbbb !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a0a0a0 !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: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #004d50;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #37f7ff;
}
.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: 'vertopal.com_MusticaPro-Medium';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'vertopal.com_MusticaPro-Medium';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #eeeeee !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uHYkMvAHWX .mbr-section-title,
.cid-uHYkMvAHWX .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uHYkMvAHWX .mbr-section-text {
  color: #767676;
}
.cid-uHYkMvAHWX .mbr-text,
.cid-uHYkMvAHWX .typed-text,
.cid-uHYkMvAHWX .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uHYkMvAHWX .btn {
  margin-left: 4px !important;
}
.cid-uHYkMvAHWX .animated-element {
  color: #d3d3d3;
}
.cid-uHYkMvAHWX .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uHYkMvAHWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHYkMvAHWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-uHYkMvAHWX .mbr-section-subtitle,
.cid-uHYkMvAHWX .typed-text {
  color: #ffffff;
}
.cid-uHYkMvAHWX .mbr-section-text,
.cid-uHYkMvAHWX .mbr-section-btn {
  color: #eeeeee;
}
.cid-uLmgbkbJu1 {
  padding-top: 75px;
  padding-bottom: 135px;
  background-color: #fffff9;
}
.cid-uLmgbkbJu1 .top-part {
  margin-bottom: 70px;
}
.cid-uLmgbkbJu1 .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uLmgbkbJu1 .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uLmgbkbJu1 .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uLmgbkbJu1 .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-item.open .nav-link:focus,
.cid-uLmgbkbJu1 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uLmgbkbJu1 .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-uLmgbkbJu1 .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-link.active {
  border-bottom: 2px solid #03bb85;
  color: #28303f;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-link.active span {
  color: #03bb85;
}
.cid-uLmgbkbJu1 .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-uLmgbkbJu1 .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uLmgbkbJu1 .mbr-text,
  .cid-uLmgbkbJu1 .nav-link {
    text-align: left;
  }
  .cid-uLmgbkbJu1 .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-uLmgbkbJu1 .mbr-section-title,
  .cid-uLmgbkbJu1 .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uLmgbkbJu1 .tab-content {
  margin-top: 44px;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #539091;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-uLmgbkbJu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLmgbkbJu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLmgbkbJu1 .top-part .mbr-section-subtitle {
  color: #004d50;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-section-title,
.cid-uLmgbkbJu1 .mbr-list {
  color: #004d50;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-text,
.cid-uLmgbkbJu1 .mbr-list {
  color: #000000;
}
.cid-uLmgbkbJu1 .top-part .mbr-section-title {
  color: #004d50;
}
.cid-uLmgbkbJu1 .tab-content .tab-pane .mbr-list .list {
  color: #000000;
}
.cid-uTiPAVs2fV {
  padding-top: 75px;
  padding-bottom: 135px;
  background-color: #fffff9;
}
.cid-uTiPAVs2fV .top-part {
  margin-bottom: 70px;
}
.cid-uTiPAVs2fV .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uTiPAVs2fV .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uTiPAVs2fV .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-uTiPAVs2fV .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uTiPAVs2fV .nav-tabs .nav-item.open .nav-link:focus,
.cid-uTiPAVs2fV .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uTiPAVs2fV .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-uTiPAVs2fV .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-uTiPAVs2fV .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-uTiPAVs2fV .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-uTiPAVs2fV .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-uTiPAVs2fV .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-uTiPAVs2fV .nav-tabs .nav-link.active {
  border-bottom: 2px solid #03bb85;
  color: #28303f;
}
.cid-uTiPAVs2fV .nav-tabs .nav-link.active span {
  color: #03bb85;
}
.cid-uTiPAVs2fV .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-uTiPAVs2fV .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uTiPAVs2fV .mbr-text,
  .cid-uTiPAVs2fV .nav-link {
    text-align: left;
  }
  .cid-uTiPAVs2fV .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-uTiPAVs2fV .mbr-section-title,
  .cid-uTiPAVs2fV .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uTiPAVs2fV .tab-content {
  margin-top: 44px;
}
.cid-uTiPAVs2fV .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #539091;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-uTiPAVs2fV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTiPAVs2fV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTiPAVs2fV .top-part .mbr-section-subtitle {
  color: #004d50;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-section-title,
.cid-uTiPAVs2fV .mbr-list {
  color: #004d50;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-text,
.cid-uTiPAVs2fV .mbr-list {
  color: #000000;
}
.cid-uTiPAVs2fV .top-part .mbr-section-title {
  color: #004d50;
}
.cid-uTiPAVs2fV .tab-content .tab-pane .mbr-list .list {
  color: #000000;
}
.cid-uLmix6Eweo {
  background-image: url("../../../assets/images/setecidadestour4h20250202-48copy.jpg");
}
.cid-uLmix6Eweo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLmix6Eweo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLmix6Eweo .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uLmix6Eweo .container-fluid {
    padding: 0 20px;
  }
}
.cid-uLmix6Eweo .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uLmix6Eweo .container {
    padding: 0 20px;
  }
}
.cid-uLmix6Eweo .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uLmix6Eweo .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uLmix6Eweo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLmix6Eweo .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uHoSEidxtH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fffff9;
}
.cid-uHoSEidxtH img,
.cid-uHoSEidxtH .item-img {
  width: 100%;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  background-color: white;
  min-height: 500px;
  height: 500px;
}
.cid-uHoSEidxtH .image-wrapper {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-uHoSEidxtH .item:focus,
.cid-uHoSEidxtH span:focus {
  outline: none;
}
.cid-uHoSEidxtH .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uHoSEidxtH .item {
    margin-bottom: 1rem;
  }
}
.cid-uHoSEidxtH .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uHoSEidxtH .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-uHoSEidxtH .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uHoSEidxtH .item-wrapper:hover .image-wrapper {
  margin: 10px;
}
.cid-uHoSEidxtH .item-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uHoSEidxtH .item-wrapper {
    height: auto;
  }
}
.cid-uHoSEidxtH .mbr-section-title {
  color: #004d50;
  text-align: left;
}
.cid-uHoSEidxtH .item-title {
  text-align: left;
  color: #000000;
}
.cid-uHoSEidxtH .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uHoSEidxtH .mbr-text,
.cid-uHoSEidxtH .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uHoSEidxtH .mbr-section-subtitle,
.cid-uHoSEidxtH .mbr-section-head .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uHYhElIXts {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/aliawestafamilysetecidades44.jpg");
}
.cid-uHYhElIXts .mbr-section-title {
  color: #ffffff;
}
.cid-uHYhElIXts .mbr-text,
.cid-uHYhElIXts .mbr-section-btn {
  color: #fafafa;
}
.cid-uKhDLHe9AO {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uKhDLHe9AO::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uKhDLHe9AO .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uKhDLHe9AO .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uKhDLHe9AO .container {
    padding: 0 25px;
  }
}
.cid-uKhDLHe9AO .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKhDLHe9AO .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uKhDLHe9AO .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uKhDLHe9AO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKhDLHe9AO .item:focus,
.cid-uKhDLHe9AO span:focus {
  outline: none;
}
.cid-uKhDLHe9AO .item-wrapper {
  position: relative;
}
.cid-uKhDLHe9AO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uKhDLHe9AO .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uKhDLHe9AO .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uKhDLHe9AO .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uKhDLHe9AO .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uKhDLHe9AO .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uKhDLHe9AO .embla__button--next,
.cid-uKhDLHe9AO .embla__button--prev {
  display: flex;
}
.cid-uKhDLHe9AO .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uKhDLHe9AO .embla__button {
    display: none;
  }
}
.cid-uKhDLHe9AO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKhDLHe9AO .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uKhDLHe9AO .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uKhDLHe9AO .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uKhDLHe9AO .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uKhDLHe9AO .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uKhDLHe9AO .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uKhDLHe9AO .embla {
  position: relative;
  width: 100%;
}
.cid-uKhDLHe9AO .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uKhDLHe9AO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKhDLHe9AO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKhDLHe9AO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKhDLHe9AO .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uKhDLHe9AO .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uTiYiULPfA {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uTiYiULPfA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTiYiULPfA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTiYiULPfA .main-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-uTiYiULPfA .main-container {
    margin-bottom: 70px;
  }
}
.cid-uTiYiULPfA .mbr-title {
  color: #004d50;
}
.cid-uTiYiULPfA .mbr-text {
  color: #000000;
  margin-top: 30px;
}
.cid-uTiYiULPfA .card-row {
  display: flex;
  align-items: stretch;
  row-gap: 20px;
}
@media (min-width: 1200px) {
  .cid-uTiYiULPfA .card-row {
    margin: 0 -20px;
    row-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uTiYiULPfA .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uTiYiULPfA .card {
  border-radius: 0;
}
.cid-uTiYiULPfA .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 40px 37px 30px;
  background-color: #e2e2e2;
}
@media (max-width: 767px) {
  .cid-uTiYiULPfA .card-wrap {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .cid-uTiYiULPfA .card-wrap {
    padding: 24px 18px 30px;
  }
}
.cid-uTiYiULPfA .testimonial-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-uTiYiULPfA .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTiYiULPfA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #747474;
  margin: 0 2px;
}
.cid-uTiYiULPfA .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uTiYiULPfA .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-uTiYiULPfA .card-text {
  color: #747474;
  margin-bottom: 30px;
}
.cid-uTiYiULPfA .card-name-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.cid-uTiYiULPfA .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 20px;
}
.cid-uTiYiULPfA .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uTiYiULPfA .card-name {
  color: #000000;
}
.cid-uTiYiULPfA .card-prof {
  color: #747474;
}
.cid-uGydoSvPAS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGydoSvPAS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGydoSvPAS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGydoSvPAS .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .container {
    padding: 0 25px;
  }
}
.cid-uGydoSvPAS .row {
  justify-content: space-between;
}
.cid-uGydoSvPAS .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGydoSvPAS .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGydoSvPAS .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .list-content {
    display: block;
  }
}
.cid-uGydoSvPAS .list-content .nav-wrapper,
.cid-uGydoSvPAS .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content .nav-wrapper,
  .cid-uGydoSvPAS .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGydoSvPAS .list-content .nav-wrapper .mbr-list-title,
.cid-uGydoSvPAS .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list,
.cid-uGydoSvPAS .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGydoSvPAS .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGydoSvPAS .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGydoSvPAS .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGydoSvPAS .mbr-section-title {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-list-title {
  color: #004d50;
}
.cid-uGydoSvPAS .list {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGydoSvPAS .mbr-brand {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-section-title,
.cid-uGydoSvPAS .mbr-section-btn {
  color: #004d50;
}
.cid-uGydoSvPAS .list,
.cid-uGydoSvPAS .item-wrap {
  color: #004d50;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uGywYoC717 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sessaoflyingdressmariamelo20250305-12copy-2.jpeg");
}
.cid-uGywYoC717 .mbr-text,
.cid-uGywYoC717 .mbr-section-btn {
  color: #bbbbbb;
  text-align: center;
}
.cid-uGywYoC717 .mbr-section-btn {
  padding-bottom: 8rem;
}
.cid-uGywYoC717 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uGywYoC717 .mbr-iconfont {
  color: #fffff9;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.cid-uGywYoC717 .icons-wrapper {
  position: absolute;
  display: flex;
  bottom: 4rem;
  width: fit-content;
  left: 4rem;
}
@media (max-width: 767px) {
  .cid-uGywYoC717 .icons-wrapper {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-uGywYoC717 .icon-wrapper {
  position: relative;
  width: 35px;
  cursor: pointer;
  margin: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}
.cid-uGywYoC717 .icon-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-uGywYoC717 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uGywYoC717 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGywYoC717 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyztL5lxs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGyztL5lxs .jc-sb {
  justify-content: space-between;
}
.cid-uGyztL5lxs .mbr-text {
  line-height: 1.6;
}
@media (max-width: 767px) {
  .cid-uGyztL5lxs .row {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-uGyztL5lxs img {
    margin-bottom: 2rem;
  }
}
.cid-uGyztL5lxs .mbr-section-title {
  color: #232323;
}
.cid-uGyztL5lxs .mbr-section-text {
  text-align: left;
}
.cid-uGywYqGykK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGywYqGykK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGywYqGykK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGywYqGykK .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGywYqGykK .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGywYqGykK .container {
    padding: 0 25px;
  }
}
.cid-uGywYqGykK .row {
  justify-content: space-between;
}
.cid-uGywYqGykK .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGywYqGykK .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGywYqGykK .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGywYqGykK .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGywYqGykK .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGywYqGykK .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGywYqGykK .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGywYqGykK .list-content {
    display: block;
  }
}
.cid-uGywYqGykK .list-content .nav-wrapper,
.cid-uGywYqGykK .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGywYqGykK .list-content .nav-wrapper,
  .cid-uGywYqGykK .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGywYqGykK .list-content .nav-wrapper .mbr-list-title,
.cid-uGywYqGykK .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGywYqGykK .list-content .nav-wrapper .list,
.cid-uGywYqGykK .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGywYqGykK .list-content .nav-wrapper .list .item-wrap,
.cid-uGywYqGykK .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGywYqGykK .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGywYqGykK .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGywYqGykK .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGywYqGykK .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGywYqGykK .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGywYqGykK .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGywYqGykK .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGywYqGykK .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGywYqGykK .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGywYqGykK .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGywYqGykK .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGywYqGykK .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGywYqGykK .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGywYqGykK .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGywYqGykK .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGywYqGykK .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGywYqGykK .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGywYqGykK .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGywYqGykK .mbr-section-title {
  color: #ffffff;
}
.cid-uGywYqGykK .mbr-list-title {
  color: #004d50;
}
.cid-uGywYqGykK .list {
  color: #ffffff;
}
.cid-uGywYqGykK .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGywYqGykK .mbr-brand {
  color: #ffffff;
}
.cid-uGywYqGykK .mbr-section-title,
.cid-uGywYqGykK .mbr-section-btn {
  color: #004d50;
}
.cid-uGywYqGykK .list,
.cid-uGywYqGykK .item-wrap {
  color: #004d50;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uGz3E2eSkI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/343835364-957216152254235-6807948528041329072-ncopy.jpeg");
}
.cid-uGz3E2eSkI .mbr-text,
.cid-uGz3E2eSkI .mbr-section-btn {
  color: #bbbbbb;
  text-align: center;
}
.cid-uGz3E2eSkI .mbr-section-btn {
  padding-bottom: 8rem;
}
.cid-uGz3E2eSkI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uGz3E2eSkI .mbr-iconfont {
  color: #e1e1e1;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.cid-uGz3E2eSkI .icons-wrapper {
  position: absolute;
  display: flex;
  bottom: 4rem;
  width: fit-content;
  left: 4rem;
}
@media (max-width: 767px) {
  .cid-uGz3E2eSkI .icons-wrapper {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-uGz3E2eSkI .icon-wrapper {
  position: relative;
  width: 35px;
  cursor: pointer;
  margin: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}
.cid-uGz3E2eSkI .icon-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-uGz3E2eSkI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGz3E2eSkI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGz3E2eSkI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGz3W9lUca {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGz3W9lUca .mbr-section-head,
.cid-uGz3W9lUca .gallery_item {
  margin-bottom: 6rem;
}
.cid-uGz3W9lUca .mbr-section-subtitle {
  margin-bottom: 0.5rem;
  text-align: center;
}
.cid-uGz3W9lUca .mbr-section-title {
  line-height: .95;
  text-align: center;
  color: #004d50;
}
.cid-uGz3W9lUca .box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-uGz3W9lUca .gallery-wrap-left {
  padding-right: 2rem;
  max-width: 66%;
  width: 66%;
}
.cid-uGz3W9lUca .gallery-wrap-right {
  padding-left: 2rem;
  max-width: 33%;
  width: 33%;
}
.cid-uGz3W9lUca .item-img,
.cid-uGz3W9lUca img {
  max-width: 100%;
  object-fit: cover;
}
.cid-uGz3W9lUca .gallery-wrap-50 .item_left {
  padding-right: 1rem;
}
.cid-uGz3W9lUca .gallery-wrap-50 .item_right {
  padding-left: 1rem;
}
.cid-uGz3W9lUca .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.cid-uGz3W9lUca .item-title {
  text-align: left;
  flex: 1 1 0;
}
.cid-uGz3W9lUca .item-subtitle {
  text-align: right;
  flex: 1 1 0;
}
@media (max-width: 991px) {
  .cid-uGz3W9lUca .gallery-wrap-left {
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .cid-uGz3W9lUca .gallery-wrap-right {
    padding-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uGz3W9lUca .mbr-section-head,
  .cid-uGz3W9lUca .gallery_item {
    margin-bottom: 3rem;
  }
  .cid-uGz3W9lUca .gallery-wrap-50 .item_left {
    padding-right: 0;
  }
  .cid-uGz3W9lUca .gallery-wrap-50 .item_right {
    padding-left: 0;
  }
}
.cid-uGz3E2R1KS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGz3E2R1KS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGz3E2R1KS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGz3E2R1KS .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGz3E2R1KS .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGz3E2R1KS .container {
    padding: 0 25px;
  }
}
.cid-uGz3E2R1KS .row {
  justify-content: space-between;
}
.cid-uGz3E2R1KS .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGz3E2R1KS .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGz3E2R1KS .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGz3E2R1KS .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGz3E2R1KS .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGz3E2R1KS .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGz3E2R1KS .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGz3E2R1KS .list-content {
    display: block;
  }
}
.cid-uGz3E2R1KS .list-content .nav-wrapper,
.cid-uGz3E2R1KS .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGz3E2R1KS .list-content .nav-wrapper,
  .cid-uGz3E2R1KS .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGz3E2R1KS .list-content .nav-wrapper .mbr-list-title,
.cid-uGz3E2R1KS .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGz3E2R1KS .list-content .nav-wrapper .list,
.cid-uGz3E2R1KS .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGz3E2R1KS .list-content .nav-wrapper .list .item-wrap,
.cid-uGz3E2R1KS .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGz3E2R1KS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGz3E2R1KS .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGz3E2R1KS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGz3E2R1KS .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGz3E2R1KS .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGz3E2R1KS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGz3E2R1KS .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGz3E2R1KS .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGz3E2R1KS .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGz3E2R1KS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGz3E2R1KS .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGz3E2R1KS .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGz3E2R1KS .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGz3E2R1KS .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGz3E2R1KS .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGz3E2R1KS .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGz3E2R1KS .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGz3E2R1KS .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGz3E2R1KS .mbr-section-title {
  color: #ffffff;
}
.cid-uGz3E2R1KS .mbr-list-title {
  color: #004d50;
}
.cid-uGz3E2R1KS .list {
  color: #ffffff;
}
.cid-uGz3E2R1KS .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGz3E2R1KS .mbr-brand {
  color: #ffffff;
}
.cid-uGz3E2R1KS .mbr-section-title,
.cid-uGz3E2R1KS .mbr-section-btn {
  color: #004d50;
}
.cid-uGz3E2R1KS .list,
.cid-uGz3E2R1KS .item-wrap {
  color: #004d50;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uGz89XI7BA {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sessaotnuriapierrelagoadofogo-saltocabritoday228.jpeg");
}
.cid-uGz89XI7BA .mbr-text,
.cid-uGz89XI7BA .mbr-section-btn {
  color: #bbbbbb;
  text-align: center;
}
.cid-uGz89XI7BA .mbr-section-btn {
  padding-bottom: 8rem;
}
.cid-uGz89XI7BA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uGz89XI7BA .mbr-iconfont {
  color: #e1e1e1;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.cid-uGz89XI7BA .icons-wrapper {
  position: absolute;
  display: flex;
  bottom: 4rem;
  width: fit-content;
  left: 4rem;
}
@media (max-width: 767px) {
  .cid-uGz89XI7BA .icons-wrapper {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-uGz89XI7BA .icon-wrapper {
  position: relative;
  width: 35px;
  cursor: pointer;
  margin: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}
.cid-uGz89XI7BA .icon-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-uGz89XI7BA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGz89XI7BA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGz89XI7BA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGz89Y7uQ8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGz89Y7uQ8 .mbr-section-head,
.cid-uGz89Y7uQ8 .gallery_item {
  margin-bottom: 6rem;
}
.cid-uGz89Y7uQ8 .mbr-section-subtitle {
  margin-bottom: 0.5rem;
  text-align: center;
}
.cid-uGz89Y7uQ8 .mbr-section-title {
  line-height: .95;
  text-align: center;
}
.cid-uGz89Y7uQ8 .box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-uGz89Y7uQ8 .gallery-wrap-left {
  padding-right: 2rem;
  max-width: 66%;
  width: 66%;
}
.cid-uGz89Y7uQ8 .gallery-wrap-right {
  padding-left: 2rem;
  max-width: 33%;
  width: 33%;
}
.cid-uGz89Y7uQ8 .item-img,
.cid-uGz89Y7uQ8 img {
  max-width: 100%;
  object-fit: cover;
}
.cid-uGz89Y7uQ8 .gallery-wrap-50 .item_left {
  padding-right: 1rem;
}
.cid-uGz89Y7uQ8 .gallery-wrap-50 .item_right {
  padding-left: 1rem;
}
.cid-uGz89Y7uQ8 .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.cid-uGz89Y7uQ8 .item-title {
  text-align: left;
  flex: 1 1 0;
}
.cid-uGz89Y7uQ8 .item-subtitle {
  text-align: right;
  flex: 1 1 0;
}
@media (max-width: 991px) {
  .cid-uGz89Y7uQ8 .gallery-wrap-left {
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .cid-uGz89Y7uQ8 .gallery-wrap-right {
    padding-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uGz89Y7uQ8 .mbr-section-head,
  .cid-uGz89Y7uQ8 .gallery_item {
    margin-bottom: 3rem;
  }
  .cid-uGz89Y7uQ8 .gallery-wrap-50 .item_left {
    padding-right: 0;
  }
  .cid-uGz89Y7uQ8 .gallery-wrap-50 .item_right {
    padding-left: 0;
  }
}
.cid-uGz89ZcjEE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGz89ZcjEE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGz89ZcjEE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGz89ZcjEE .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGz89ZcjEE .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGz89ZcjEE .container {
    padding: 0 25px;
  }
}
.cid-uGz89ZcjEE .row {
  justify-content: space-between;
}
.cid-uGz89ZcjEE .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGz89ZcjEE .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGz89ZcjEE .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGz89ZcjEE .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGz89ZcjEE .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGz89ZcjEE .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGz89ZcjEE .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGz89ZcjEE .list-content {
    display: block;
  }
}
.cid-uGz89ZcjEE .list-content .nav-wrapper,
.cid-uGz89ZcjEE .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGz89ZcjEE .list-content .nav-wrapper,
  .cid-uGz89ZcjEE .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGz89ZcjEE .list-content .nav-wrapper .mbr-list-title,
.cid-uGz89ZcjEE .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGz89ZcjEE .list-content .nav-wrapper .list,
.cid-uGz89ZcjEE .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGz89ZcjEE .list-content .nav-wrapper .list .item-wrap,
.cid-uGz89ZcjEE .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGz89ZcjEE .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGz89ZcjEE .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGz89ZcjEE .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGz89ZcjEE .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGz89ZcjEE .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGz89ZcjEE .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGz89ZcjEE .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGz89ZcjEE .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGz89ZcjEE .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGz89ZcjEE .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGz89ZcjEE .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGz89ZcjEE .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGz89ZcjEE .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGz89ZcjEE .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGz89ZcjEE .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGz89ZcjEE .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGz89ZcjEE .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGz89ZcjEE .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGz89ZcjEE .mbr-section-title {
  color: #ffffff;
}
.cid-uGz89ZcjEE .mbr-list-title {
  color: #004d50;
}
.cid-uGz89ZcjEE .list {
  color: #ffffff;
}
.cid-uGz89ZcjEE .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGz89ZcjEE .mbr-brand {
  color: #ffffff;
}
.cid-uGz89ZcjEE .mbr-section-title,
.cid-uGz89ZcjEE .mbr-section-btn {
  color: #004d50;
}
.cid-uGz89ZcjEE .list,
.cid-uGz89ZcjEE .item-wrap {
  color: #004d50;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uGzB6LiYJa {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/donnaray35aniversariocasamento7cidades20240501-5copy.jpg");
}
.cid-uGzB6LiYJa .mbr-text,
.cid-uGzB6LiYJa .mbr-section-btn {
  color: #bbbbbb;
  text-align: center;
}
.cid-uGzB6LiYJa .mbr-section-btn {
  padding-bottom: 8rem;
}
.cid-uGzB6LiYJa .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uGzB6LiYJa .mbr-iconfont {
  color: #e1e1e1;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.cid-uGzB6LiYJa .icons-wrapper {
  position: absolute;
  display: flex;
  bottom: 4rem;
  width: fit-content;
  left: 4rem;
}
@media (max-width: 767px) {
  .cid-uGzB6LiYJa .icons-wrapper {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-uGzB6LiYJa .icon-wrapper {
  position: relative;
  width: 35px;
  cursor: pointer;
  margin: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}
.cid-uGzB6LiYJa .icon-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-uGzB6LiYJa .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uGzB6LiYJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzB6LiYJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzB9Rwaeq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uGzB9Rwaeq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGzB9Rwaeq .btn {
  box-shadow: none;
  border: none;
}
.cid-uGzB9Rwaeq .btn:hover,
.cid-uGzB9Rwaeq .btn:focus {
  box-shadow: none;
  border: none;
}
@media (max-width: 767px) {
  .cid-uGzB9Rwaeq .row {
    text-align: center;
  }
}
.cid-uGzB9Rwaeq p {
  line-height: 1.6;
}
@media (max-width: 767px) {
  .cid-uGzB9Rwaeq .col-auto {
    margin: auto;
  }
}
.cid-uGzB9Rwaeq .btn-white {
  background: white !important;
  color: black !important;
  padding: 0;
  margin: 0;
}
.cid-uGzB9Rwaeq .btn-white:hover,
.cid-uGzB9Rwaeq .btn-white:focus {
  background: white !important;
}
.cid-uGzB9Rwaeq input:hover,
.cid-uGzB9Rwaeq input:focus {
  border-color: transparent !important;
}
.cid-uGzB9Rwaeq textarea {
  border: 1px solid #232323 !important;
  min-height: 200px;
}
.cid-uGzB9Rwaeq textarea:hover {
  border-color: #232323 !important;
}
.cid-uGzB9Rwaeq .form-control,
.cid-uGzB9Rwaeq .field-input {
  padding: 0rem;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #232323 !important;
  color: #232323;
  border-radius: 0;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGzB9Rwaeq .form-control::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .field-input::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .form-control::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .field-input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.cid-uGzB9Rwaeq .form-control:-moz-placeholder,
.cid-uGzB9Rwaeq .field-input:-moz-placeholder,
.cid-uGzB9Rwaeq .form-control:-moz-placeholder,
.cid-uGzB9Rwaeq .field-input:-moz-placeholder {
  color: #aaaaaa;
}
.cid-uGzB9Rwaeq .form-control:hover,
.cid-uGzB9Rwaeq .field-input:hover,
.cid-uGzB9Rwaeq .form-control:focus,
.cid-uGzB9Rwaeq .field-input:focus {
  background-color: #ffffff;
  border-bottom: 1px solid #232323 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uGzB9Rwaeq .form-control:hover::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .field-input:hover::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .form-control:focus::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .field-input:focus::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .form-control:hover::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .field-input:hover::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .form-control:focus::-webkit-input-placeholder,
.cid-uGzB9Rwaeq .field-input:focus::-webkit-input-placeholder {
  color: #aaaaaa;
}
.cid-uGzB9Rwaeq .form-control:hover:-moz-placeholder,
.cid-uGzB9Rwaeq .field-input:hover:-moz-placeholder,
.cid-uGzB9Rwaeq .form-control:focus:-moz-placeholder,
.cid-uGzB9Rwaeq .field-input:focus:-moz-placeholder,
.cid-uGzB9Rwaeq .form-control:hover:-moz-placeholder,
.cid-uGzB9Rwaeq .field-input:hover:-moz-placeholder,
.cid-uGzB9Rwaeq .form-control:focus:-moz-placeholder,
.cid-uGzB9Rwaeq .field-input:focus:-moz-placeholder {
  color: #aaaaaa;
}
.cid-uGzB9Rwaeq .jq-number__spin:hover,
.cid-uGzB9Rwaeq .jq-number__spin:focus {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #232323 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uGzB9Rwaeq .jq-number__spin {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #232323 !important;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGzB9Rwaeq .jq-selectbox li,
.cid-uGzB9Rwaeq .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uGzB9Rwaeq .jq-selectbox li:hover,
.cid-uGzB9Rwaeq .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uGzB9Rwaeq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uGzB9Rwaeq .jq-number__spin.minus:hover:after,
.cid-uGzB9Rwaeq .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uGzB9Rwaeq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uGzB9Rwaeq .jq-number__spin.minus:after,
.cid-uGzB9Rwaeq .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uGzB9Rwaeq input::-webkit-clear-button {
  display: none;
}
.cid-uGzB9Rwaeq input::-webkit-inner-spin-button {
  display: none;
}
.cid-uGzB9Rwaeq input::-webkit-outer-spin-button {
  display: none;
}
.cid-uGzB9Rwaeq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uGzB9Rwaeq LABEL {
  color: #aaaaaa;
}
.cid-uGzB9Rwaeq .mbr-section-title {
  color: #004d50;
}
.cid-uLmjklLphP .google-map {
  height: 25rem;
  position: relative;
}
.cid-uLmjklLphP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLmjklLphP .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLmjklLphP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLmjklLphP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGzB6LNBBl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGzB6LNBBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzB6LNBBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzB6LNBBl .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGzB6LNBBl .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGzB6LNBBl .container {
    padding: 0 25px;
  }
}
.cid-uGzB6LNBBl .row {
  justify-content: space-between;
}
.cid-uGzB6LNBBl .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGzB6LNBBl .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGzB6LNBBl .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGzB6LNBBl .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGzB6LNBBl .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGzB6LNBBl .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGzB6LNBBl .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGzB6LNBBl .list-content {
    display: block;
  }
}
.cid-uGzB6LNBBl .list-content .nav-wrapper,
.cid-uGzB6LNBBl .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGzB6LNBBl .list-content .nav-wrapper,
  .cid-uGzB6LNBBl .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGzB6LNBBl .list-content .nav-wrapper .mbr-list-title,
.cid-uGzB6LNBBl .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGzB6LNBBl .list-content .nav-wrapper .list,
.cid-uGzB6LNBBl .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGzB6LNBBl .list-content .nav-wrapper .list .item-wrap,
.cid-uGzB6LNBBl .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGzB6LNBBl .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGzB6LNBBl .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGzB6LNBBl .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGzB6LNBBl .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGzB6LNBBl .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGzB6LNBBl .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGzB6LNBBl .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGzB6LNBBl .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGzB6LNBBl .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGzB6LNBBl .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGzB6LNBBl .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGzB6LNBBl .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGzB6LNBBl .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGzB6LNBBl .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGzB6LNBBl .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGzB6LNBBl .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGzB6LNBBl .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGzB6LNBBl .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGzB6LNBBl .mbr-section-title {
  color: #ffffff;
}
.cid-uGzB6LNBBl .mbr-list-title {
  color: #004d50;
}
.cid-uGzB6LNBBl .list {
  color: #ffffff;
}
.cid-uGzB6LNBBl .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGzB6LNBBl .mbr-brand {
  color: #ffffff;
}
.cid-uGzB6LNBBl .mbr-section-title,
.cid-uGzB6LNBBl .mbr-section-btn {
  color: #004d50;
}
.cid-uGzB6LNBBl .list,
.cid-uGzB6LNBBl .item-wrap {
  color: #004d50;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uK2UtTwlDb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/350238918-1710103356118286-6116345862961320054-n.jpg");
}
.cid-uK2UtTwlDb .mbr-section-title,
.cid-uK2UtTwlDb .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uK2UtTwlDb .mbr-section-text {
  color: #767676;
}
.cid-uK2UtTwlDb .mbr-text,
.cid-uK2UtTwlDb .typed-text,
.cid-uK2UtTwlDb .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uK2UtTwlDb .btn {
  margin-left: 4px !important;
}
.cid-uK2UtTwlDb .animated-element {
  color: #d3d3d3;
}
.cid-uK2UtTwlDb .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uK2UtTwlDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2UtTwlDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2UtTwlDb .mbr-section-subtitle,
.cid-uK2UtTwlDb .typed-text {
  color: #ffffff;
}
.cid-uK2UtTwlDb .mbr-section-text,
.cid-uK2UtTwlDb .mbr-section-btn {
  color: #eeeeee;
}
.cid-uK2UtTwlDb .mbr-section-title {
  text-align: center;
  color: #f5f4ed;
}
.cid-uK2UtTwlDb .mbr-section-title DIV {
  text-align: left;
}
.cid-uKhfit4N0M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uKhfit4N0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhfit4N0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhfit4N0M .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhfit4N0M .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhfit4N0M .container {
    padding: 0 24px;
  }
}
.cid-uKhfit4N0M .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uKhfit4N0M .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uKhfit4N0M .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uKhfit4N0M .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uKhfit4N0M .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .content-wrapper {
    padding: 24px;
  }
}
.cid-uKhfit4N0M .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uKhfit4N0M .content-wrapper .content-wrap .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-uKhfit4N0M .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uKhfit4N0M .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uKhfit4N0M .item {
  margin-bottom: 16px;
}
.cid-uKhfit4N0M .item:last-child {
  margin-bottom: 0;
}
.cid-uKhfit4N0M .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uKhfit4N0M .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uKhfit4N0M .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uKhfit4N0M .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uKhfit4N0M .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uKhfit4N0M .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uKhfit4N0M .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uKhfit4N0M .mbr-section-title {
  color: #004d50;
}
.cid-uKhfit4N0M .mbr-desc {
  color: #18212d;
}
.cid-uKhfit4N0M .mbr-text {
  color: #18212d;
}
.cid-uKhfit4N0M .mbr-recall {
  color: #ffffff;
}
.cid-uKhfit4N0M .mbr-name {
  color: #ffffff;
}
.cid-uKhfit4N0M .mbr-rating {
  color: #EFCC4E;
}
.cid-uKhfit4N0M .item-title {
  color: #000000;
}
.cid-uKhfit4N0M .item-text {
  color: #18212d;
}
.cid-uKhfit4N0M .item-desc {
  color: #18212d;
}
.cid-uKhfit4N0M .item-text,
.cid-uKhfit4N0M .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uKhfit4N0M .item-title,
.cid-uKhfit4N0M .mbr-section-btn {
  color: #004d50;
}
.cid-uKhjFBACsK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alexiadaniel4.jpeg");
}
.cid-uKhjFBACsK .mbr-section-title {
  color: #ffffff;
}
.cid-uKhjFBACsK .mbr-text,
.cid-uKhjFBACsK .mbr-section-btn {
  color: #fafafa;
}
.cid-uLmEGK4a9W {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uLmEGK4a9W::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uLmEGK4a9W .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uLmEGK4a9W .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLmEGK4a9W .container {
    padding: 0 25px;
  }
}
.cid-uLmEGK4a9W .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLmEGK4a9W .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uLmEGK4a9W .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLmEGK4a9W .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLmEGK4a9W .item:focus,
.cid-uLmEGK4a9W span:focus {
  outline: none;
}
.cid-uLmEGK4a9W .item-wrapper {
  position: relative;
}
.cid-uLmEGK4a9W .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uLmEGK4a9W .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uLmEGK4a9W .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uLmEGK4a9W .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uLmEGK4a9W .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLmEGK4a9W .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uLmEGK4a9W .embla__button--next,
.cid-uLmEGK4a9W .embla__button--prev {
  display: flex;
}
.cid-uLmEGK4a9W .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uLmEGK4a9W .embla__button {
    display: none;
  }
}
.cid-uLmEGK4a9W .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uLmEGK4a9W .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uLmEGK4a9W .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uLmEGK4a9W .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uLmEGK4a9W .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uLmEGK4a9W .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uLmEGK4a9W .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uLmEGK4a9W .embla {
  position: relative;
  width: 100%;
}
.cid-uLmEGK4a9W .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uLmEGK4a9W .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uLmEGK4a9W .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uLmEGK4a9W .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uLmEGK4a9W .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLmEGK4a9W .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uGydoSvPAS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGydoSvPAS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGydoSvPAS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGydoSvPAS .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .container {
    padding: 0 25px;
  }
}
.cid-uGydoSvPAS .row {
  justify-content: space-between;
}
.cid-uGydoSvPAS .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGydoSvPAS .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGydoSvPAS .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .list-content {
    display: block;
  }
}
.cid-uGydoSvPAS .list-content .nav-wrapper,
.cid-uGydoSvPAS .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content .nav-wrapper,
  .cid-uGydoSvPAS .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGydoSvPAS .list-content .nav-wrapper .mbr-list-title,
.cid-uGydoSvPAS .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list,
.cid-uGydoSvPAS .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGydoSvPAS .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGydoSvPAS .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGydoSvPAS .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGydoSvPAS .mbr-section-title {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-list-title {
  color: #004d50;
}
.cid-uGydoSvPAS .list {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGydoSvPAS .mbr-brand {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-section-title,
.cid-uGydoSvPAS .mbr-section-btn {
  color: #004d50;
}
.cid-uGydoSvPAS .list,
.cid-uGydoSvPAS .item-wrap {
  color: #004d50;
}
.cid-uKhk50GY8u {
  z-index: 1000;
  width: 100%;
}
.cid-uKhk50GY8u nav.navbar {
  position: fixed!important;
}
.cid-uKhk50GY8u .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-uKhk50GY8u .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uKhk50GY8u .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uKhk50GY8u .dropdown-item:hover {
  background-position: right !important;
}
.cid-uKhk50GY8u .dropdown-item:hover:after {
  color: #000000;
}
.cid-uKhk50GY8u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKhk50GY8u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKhk50GY8u .nav-link {
  position: relative;
}
.cid-uKhk50GY8u .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uKhk50GY8u .dropdown-menu,
.cid-uKhk50GY8u .navbar.opened {
  background: #353535 !important;
}
.cid-uKhk50GY8u .nav-item:focus,
.cid-uKhk50GY8u .nav-link:focus {
  outline: none;
}
.cid-uKhk50GY8u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKhk50GY8u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKhk50GY8u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKhk50GY8u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKhk50GY8u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKhk50GY8u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKhk50GY8u .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uKhk50GY8u .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uKhk50GY8u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKhk50GY8u .navbar .navbar-logo img {
  width: auto;
}
.cid-uKhk50GY8u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKhk50GY8u .navbar.collapsed {
  justify-content: center;
}
.cid-uKhk50GY8u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKhk50GY8u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uKhk50GY8u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKhk50GY8u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKhk50GY8u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKhk50GY8u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKhk50GY8u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKhk50GY8u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKhk50GY8u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKhk50GY8u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKhk50GY8u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKhk50GY8u .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-uKhk50GY8u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKhk50GY8u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKhk50GY8u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKhk50GY8u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKhk50GY8u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKhk50GY8u .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKhk50GY8u .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKhk50GY8u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKhk50GY8u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uKhk50GY8u .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uKhk50GY8u .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uKhk50GY8u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKhk50GY8u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKhk50GY8u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKhk50GY8u .dropdown-item.active,
.cid-uKhk50GY8u .dropdown-item:active {
  background-color: transparent;
}
.cid-uKhk50GY8u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKhk50GY8u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKhk50GY8u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKhk50GY8u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uKhk50GY8u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKhk50GY8u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKhk50GY8u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKhk50GY8u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKhk50GY8u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uKhk50GY8u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKhk50GY8u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKhk50GY8u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKhk50GY8u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKhk50GY8u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKhk50GY8u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKhk50GY8u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKhk50GY8u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKhk50GY8u .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uKhk50GY8u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKhk50GY8u .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-uKhk50GY8u .navbar {
    height: 70px;
  }
  .cid-uKhk50GY8u .navbar.opened {
    height: auto;
  }
  .cid-uKhk50GY8u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKhk50GY8u .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uKhk50GY8u .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uKhk50GY8u .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uKhk50GY8u .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uKhk50GY8u .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uKhk50GY8u .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uKhk50GY8u .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uKhk50GY8u .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uKhk50GY8u .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .nav-item {
    width: 100%;
  }
  .cid-uKhk50GY8u .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uKhk50GY8u .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uKhk50GY8u .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uKhk50GY8u .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uKhk50GY8u .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uKhk50GY8u .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uKhk50GY8u nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uKhk50GY8u .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uKhk50GY8u .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uKhk50GY8u .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uKhk50GY8u .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uKhk50GY8u .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uKhk50GY8u .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uKhk50GY8u .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uKhk50GY8u .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uKhk50GY8u .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uKhk50GY8u .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uKhk50GY8u .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uKhk50GY8u .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uKhk50GY8u .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uKhk50GY8u .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uKhk50GY8u .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uKhk50GY8u .offcanvas_box {
    display: none;
  }
}
.cid-uKhk50GY8u .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uKhk50GY8u .list li {
  display: flex;
  align-items: center;
}
.cid-uKhk50GY8u .list a {
  display: flex;
  align-items: center;
}
.cid-uKhk50GY8u .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uKhk50GY8u .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uKhk50GY8u .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uKhk50GY8u .mbr-section-subtitle {
  text-align: left;
}
.cid-uKhk50GY8u .mbr-text {
  text-align: left;
}
.cid-uKhk50GY8u .nav-link,
.cid-uKhk50GY8u .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uKhk50GY8u .nav-link:hover,
.cid-uKhk50GY8u .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uKhk50GY8u .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uKhk50GY8u .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uKhk51AAnr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/sessaotadriannemailletmatthew20250228-49copy.jpeg");
}
.cid-uKhk51AAnr .mbr-section-title,
.cid-uKhk51AAnr .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uKhk51AAnr .mbr-section-text {
  color: #767676;
}
.cid-uKhk51AAnr .mbr-text,
.cid-uKhk51AAnr .typed-text,
.cid-uKhk51AAnr .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uKhk51AAnr .btn {
  margin-left: 4px !important;
}
.cid-uKhk51AAnr .animated-element {
  color: #d3d3d3;
}
.cid-uKhk51AAnr .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uKhk51AAnr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhk51AAnr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhk51AAnr .mbr-section-subtitle,
.cid-uKhk51AAnr .typed-text {
  color: #ffffff;
}
.cid-uKhk51AAnr .mbr-section-text,
.cid-uKhk51AAnr .mbr-section-btn {
  color: #eeeeee;
}
.cid-uKhk51AAnr .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKhk51AAnr .mbr-section-title DIV {
  text-align: left;
}
.cid-uKhk521DO4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uKhk521DO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhk521DO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhk521DO4 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhk521DO4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhk521DO4 .container {
    padding: 0 24px;
  }
}
.cid-uKhk521DO4 .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uKhk521DO4 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uKhk521DO4 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uKhk521DO4 .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uKhk521DO4 .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .content-wrapper {
    padding: 24px;
  }
}
.cid-uKhk521DO4 .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uKhk521DO4 .content-wrapper .content-wrap .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-uKhk521DO4 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uKhk521DO4 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uKhk521DO4 .item {
  margin-bottom: 16px;
}
.cid-uKhk521DO4 .item:last-child {
  margin-bottom: 0;
}
.cid-uKhk521DO4 .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uKhk521DO4 .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uKhk521DO4 .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uKhk521DO4 .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uKhk521DO4 .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uKhk521DO4 .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uKhk521DO4 .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uKhk521DO4 .mbr-section-title {
  color: #004d50;
  text-align: left;
}
.cid-uKhk521DO4 .mbr-desc {
  color: #18212d;
}
.cid-uKhk521DO4 .mbr-text {
  color: #18212d;
}
.cid-uKhk521DO4 .mbr-recall {
  color: #ffffff;
}
.cid-uKhk521DO4 .mbr-name {
  color: #ffffff;
}
.cid-uKhk521DO4 .mbr-rating {
  color: #EFCC4E;
}
.cid-uKhk521DO4 .item-title {
  color: #18212d;
}
.cid-uKhk521DO4 .item-text {
  color: #18212d;
}
.cid-uKhk521DO4 .item-desc {
  color: #18212d;
}
.cid-uKhk521DO4 .item-text,
.cid-uKhk521DO4 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uKhk52DTnd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/343921859-107023305718114-3707502323523566399-ncopy.jpg");
}
.cid-uKhk52DTnd .mbr-section-title {
  color: #ffffff;
}
.cid-uKhk52DTnd .mbr-text,
.cid-uKhk52DTnd .mbr-section-btn {
  color: #fafafa;
}
.cid-uLmyVH2oQ9 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uLmyVH2oQ9::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uLmyVH2oQ9 .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uLmyVH2oQ9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLmyVH2oQ9 .container {
    padding: 0 25px;
  }
}
.cid-uLmyVH2oQ9 .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLmyVH2oQ9 .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uLmyVH2oQ9 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLmyVH2oQ9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLmyVH2oQ9 .item:focus,
.cid-uLmyVH2oQ9 span:focus {
  outline: none;
}
.cid-uLmyVH2oQ9 .item-wrapper {
  position: relative;
}
.cid-uLmyVH2oQ9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uLmyVH2oQ9 .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uLmyVH2oQ9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uLmyVH2oQ9 .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uLmyVH2oQ9 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLmyVH2oQ9 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uLmyVH2oQ9 .embla__button--next,
.cid-uLmyVH2oQ9 .embla__button--prev {
  display: flex;
}
.cid-uLmyVH2oQ9 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uLmyVH2oQ9 .embla__button {
    display: none;
  }
}
.cid-uLmyVH2oQ9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uLmyVH2oQ9 .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uLmyVH2oQ9 .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uLmyVH2oQ9 .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uLmyVH2oQ9 .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uLmyVH2oQ9 .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uLmyVH2oQ9 .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uLmyVH2oQ9 .embla {
  position: relative;
  width: 100%;
}
.cid-uLmyVH2oQ9 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uLmyVH2oQ9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uLmyVH2oQ9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uLmyVH2oQ9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uLmyVH2oQ9 .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uLmyVH2oQ9 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uRMYTraVq2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/setecidadestour4h20250202-80copy.jpg");
}
.cid-uRMYTraVq2 .mbr-section-title,
.cid-uRMYTraVq2 .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uRMYTraVq2 .mbr-section-text {
  color: #767676;
}
.cid-uRMYTraVq2 .mbr-text,
.cid-uRMYTraVq2 .typed-text,
.cid-uRMYTraVq2 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uRMYTraVq2 .btn {
  margin-left: 4px !important;
}
.cid-uRMYTraVq2 .animated-element {
  color: #d3d3d3;
}
.cid-uRMYTraVq2 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uRMYTraVq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMYTraVq2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMYTraVq2 .mbr-section-subtitle,
.cid-uRMYTraVq2 .typed-text {
  color: #ffffff;
}
.cid-uRMYTraVq2 .mbr-section-text,
.cid-uRMYTraVq2 .mbr-section-btn {
  color: #eeeeee;
}
.cid-uRMYTraVq2 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uRMYTraVq2 .mbr-section-title DIV {
  text-align: left;
}
.cid-uRMYUcKOtQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uRMYUcKOtQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMYUcKOtQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMYUcKOtQ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uRMYUcKOtQ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uRMYUcKOtQ .container {
    padding: 0 24px;
  }
}
.cid-uRMYUcKOtQ .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uRMYUcKOtQ .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uRMYUcKOtQ .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uRMYUcKOtQ .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uRMYUcKOtQ .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .content-wrapper {
    padding: 24px;
  }
}
.cid-uRMYUcKOtQ .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uRMYUcKOtQ .content-wrapper .content-wrap .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-uRMYUcKOtQ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uRMYUcKOtQ .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uRMYUcKOtQ .item {
  margin-bottom: 16px;
}
.cid-uRMYUcKOtQ .item:last-child {
  margin-bottom: 0;
}
.cid-uRMYUcKOtQ .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uRMYUcKOtQ .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uRMYUcKOtQ .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uRMYUcKOtQ .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uRMYUcKOtQ .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uRMYUcKOtQ .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uRMYUcKOtQ .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uRMYUcKOtQ .mbr-section-title {
  color: #004d50;
}
.cid-uRMYUcKOtQ .mbr-desc {
  color: #18212d;
}
.cid-uRMYUcKOtQ .mbr-text {
  color: #18212d;
}
.cid-uRMYUcKOtQ .mbr-recall {
  color: #ffffff;
}
.cid-uRMYUcKOtQ .mbr-name {
  color: #ffffff;
}
.cid-uRMYUcKOtQ .mbr-rating {
  color: #EFCC4E;
}
.cid-uRMYUcKOtQ .item-title {
  color: #18212d;
}
.cid-uRMYUcKOtQ .item-text {
  color: #18212d;
}
.cid-uRMYUcKOtQ .item-desc {
  color: #18212d;
}
.cid-uRMYUcKOtQ .item-text,
.cid-uRMYUcKOtQ .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uRMYUcKOtQ .item-title,
.cid-uRMYUcKOtQ .mbr-section-btn {
  color: #004d50;
}
.cid-uRMZDkxYGU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/343949204-1634126973667872-5352477063611873229-n.jpeg");
}
.cid-uRMZDkxYGU .mbr-section-title {
  color: #ffffff;
}
.cid-uRMZDkxYGU .mbr-text,
.cid-uRMZDkxYGU .mbr-section-btn {
  color: #fafafa;
}
.cid-uRN0a5tnYR {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uRN0a5tnYR::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uRN0a5tnYR .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uRN0a5tnYR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRN0a5tnYR .container {
    padding: 0 25px;
  }
}
.cid-uRN0a5tnYR .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRN0a5tnYR .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uRN0a5tnYR .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uRN0a5tnYR .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uRN0a5tnYR .item:focus,
.cid-uRN0a5tnYR span:focus {
  outline: none;
}
.cid-uRN0a5tnYR .item-wrapper {
  position: relative;
}
.cid-uRN0a5tnYR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uRN0a5tnYR .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uRN0a5tnYR .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uRN0a5tnYR .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uRN0a5tnYR .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRN0a5tnYR .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uRN0a5tnYR .embla__button--next,
.cid-uRN0a5tnYR .embla__button--prev {
  display: flex;
}
.cid-uRN0a5tnYR .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uRN0a5tnYR .embla__button {
    display: none;
  }
}
.cid-uRN0a5tnYR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uRN0a5tnYR .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uRN0a5tnYR .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uRN0a5tnYR .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uRN0a5tnYR .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uRN0a5tnYR .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uRN0a5tnYR .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uRN0a5tnYR .embla {
  position: relative;
  width: 100%;
}
.cid-uRN0a5tnYR .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uRN0a5tnYR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uRN0a5tnYR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uRN0a5tnYR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uRN0a5tnYR .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uRN0a5tnYR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uRMZll5E7r {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/nordeste34copy.jpg");
}
.cid-uRMZll5E7r .mbr-section-title,
.cid-uRMZll5E7r .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uRMZll5E7r .mbr-section-text {
  color: #767676;
}
.cid-uRMZll5E7r .mbr-text,
.cid-uRMZll5E7r .typed-text,
.cid-uRMZll5E7r .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uRMZll5E7r .btn {
  margin-left: 4px !important;
}
.cid-uRMZll5E7r .animated-element {
  color: #d3d3d3;
}
.cid-uRMZll5E7r .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uRMZll5E7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMZll5E7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMZll5E7r .mbr-section-subtitle,
.cid-uRMZll5E7r .typed-text {
  color: #ffffff;
}
.cid-uRMZll5E7r .mbr-section-text,
.cid-uRMZll5E7r .mbr-section-btn {
  color: #eeeeee;
}
.cid-uRMZll5E7r .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uRMZll5E7r .mbr-section-title DIV {
  text-align: left;
}
.cid-uRMZmpFKnf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uRMZmpFKnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMZmpFKnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMZmpFKnf .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uRMZmpFKnf .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uRMZmpFKnf .container {
    padding: 0 24px;
  }
}
.cid-uRMZmpFKnf .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uRMZmpFKnf .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uRMZmpFKnf .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uRMZmpFKnf .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uRMZmpFKnf .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .content-wrapper {
    padding: 24px;
  }
}
.cid-uRMZmpFKnf .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uRMZmpFKnf .content-wrapper .content-wrap .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-uRMZmpFKnf .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uRMZmpFKnf .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uRMZmpFKnf .item {
  margin-bottom: 16px;
}
.cid-uRMZmpFKnf .item:last-child {
  margin-bottom: 0;
}
.cid-uRMZmpFKnf .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uRMZmpFKnf .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uRMZmpFKnf .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uRMZmpFKnf .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uRMZmpFKnf .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uRMZmpFKnf .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uRMZmpFKnf .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uRMZmpFKnf .mbr-section-title {
  color: #004d50;
}
.cid-uRMZmpFKnf .mbr-desc {
  color: #18212d;
}
.cid-uRMZmpFKnf .mbr-text {
  color: #18212d;
}
.cid-uRMZmpFKnf .mbr-recall {
  color: #ffffff;
}
.cid-uRMZmpFKnf .mbr-name {
  color: #ffffff;
}
.cid-uRMZmpFKnf .mbr-rating {
  color: #EFCC4E;
}
.cid-uRMZmpFKnf .item-title {
  color: #18212d;
}
.cid-uRMZmpFKnf .item-text {
  color: #18212d;
}
.cid-uRMZmpFKnf .item-desc {
  color: #18212d;
}
.cid-uRMZmpFKnf .item-text,
.cid-uRMZmpFKnf .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uRMZmpFKnf .item-title,
.cid-uRMZmpFKnf .mbr-section-btn {
  color: #004d50;
}
.cid-uRMZoNuHhE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/nordeste34copy.jpg");
}
.cid-uRMZoNuHhE .mbr-section-title {
  color: #ffffff;
}
.cid-uRMZoNuHhE .mbr-text,
.cid-uRMZoNuHhE .mbr-section-btn {
  color: #fafafa;
}
.cid-uRMZq8AxaW {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uRMZq8AxaW::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uRMZq8AxaW .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uRMZq8AxaW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRMZq8AxaW .container {
    padding: 0 25px;
  }
}
.cid-uRMZq8AxaW .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRMZq8AxaW .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uRMZq8AxaW .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uRMZq8AxaW .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uRMZq8AxaW .item:focus,
.cid-uRMZq8AxaW span:focus {
  outline: none;
}
.cid-uRMZq8AxaW .item-wrapper {
  position: relative;
}
.cid-uRMZq8AxaW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uRMZq8AxaW .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uRMZq8AxaW .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uRMZq8AxaW .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uRMZq8AxaW .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRMZq8AxaW .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uRMZq8AxaW .embla__button--next,
.cid-uRMZq8AxaW .embla__button--prev {
  display: flex;
}
.cid-uRMZq8AxaW .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uRMZq8AxaW .embla__button {
    display: none;
  }
}
.cid-uRMZq8AxaW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uRMZq8AxaW .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uRMZq8AxaW .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uRMZq8AxaW .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uRMZq8AxaW .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uRMZq8AxaW .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uRMZq8AxaW .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uRMZq8AxaW .embla {
  position: relative;
  width: 100%;
}
.cid-uRMZq8AxaW .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uRMZq8AxaW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uRMZq8AxaW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uRMZq8AxaW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uRMZq8AxaW .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uRMZq8AxaW .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uRN04oliAs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/350238918-1710103356118286-6116345862961320054-n.jpg");
}
.cid-uRN04oliAs .mbr-section-title,
.cid-uRN04oliAs .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uRN04oliAs .mbr-section-text {
  color: #767676;
}
.cid-uRN04oliAs .mbr-text,
.cid-uRN04oliAs .typed-text,
.cid-uRN04oliAs .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uRN04oliAs .btn {
  margin-left: 4px !important;
}
.cid-uRN04oliAs .animated-element {
  color: #d3d3d3;
}
.cid-uRN04oliAs .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uRN04oliAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRN04oliAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRN04oliAs .mbr-section-subtitle,
.cid-uRN04oliAs .typed-text {
  color: #ffffff;
}
.cid-uRN04oliAs .mbr-section-text,
.cid-uRN04oliAs .mbr-section-btn {
  color: #eeeeee;
}
.cid-uRN04oliAs .mbr-section-title {
  text-align: center;
  color: #f5f4ed;
}
.cid-uRN04oliAs .mbr-section-title DIV {
  text-align: left;
}
.cid-uRN055cezj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uRN055cezj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRN055cezj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRN055cezj .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uRN055cezj .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uRN055cezj .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uRN055cezj .container {
    padding: 0 24px;
  }
}
.cid-uRN055cezj .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uRN055cezj .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uRN055cezj .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uRN055cezj .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uRN055cezj .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uRN055cezj .content-wrapper {
    padding: 24px;
  }
}
.cid-uRN055cezj .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uRN055cezj .content-wrapper .content-wrap .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-uRN055cezj .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uRN055cezj .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uRN055cezj .item {
  margin-bottom: 16px;
}
.cid-uRN055cezj .item:last-child {
  margin-bottom: 0;
}
.cid-uRN055cezj .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uRN055cezj .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uRN055cezj .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uRN055cezj .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uRN055cezj .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uRN055cezj .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uRN055cezj .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uRN055cezj .mbr-section-title {
  color: #004d50;
}
.cid-uRN055cezj .mbr-desc {
  color: #18212d;
}
.cid-uRN055cezj .mbr-text {
  color: #18212d;
}
.cid-uRN055cezj .mbr-recall {
  color: #ffffff;
}
.cid-uRN055cezj .mbr-name {
  color: #ffffff;
}
.cid-uRN055cezj .mbr-rating {
  color: #EFCC4E;
}
.cid-uRN055cezj .item-title {
  color: #000000;
}
.cid-uRN055cezj .item-text {
  color: #18212d;
}
.cid-uRN055cezj .item-desc {
  color: #18212d;
}
.cid-uRN055cezj .item-text,
.cid-uRN055cezj .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uRN055cezj .item-title,
.cid-uRN055cezj .mbr-section-btn {
  color: #004d50;
}
.cid-uRN07h9xbs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alexiadaniel4.jpeg");
}
.cid-uRN07h9xbs .mbr-section-title {
  color: #ffffff;
}
.cid-uRN07h9xbs .mbr-text,
.cid-uRN07h9xbs .mbr-section-btn {
  color: #fafafa;
}
.cid-uRN0863kEu {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uRN0863kEu::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uRN0863kEu .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uRN0863kEu .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRN0863kEu .container {
    padding: 0 25px;
  }
}
.cid-uRN0863kEu .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRN0863kEu .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uRN0863kEu .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uRN0863kEu .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uRN0863kEu .item:focus,
.cid-uRN0863kEu span:focus {
  outline: none;
}
.cid-uRN0863kEu .item-wrapper {
  position: relative;
}
.cid-uRN0863kEu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uRN0863kEu .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uRN0863kEu .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uRN0863kEu .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uRN0863kEu .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRN0863kEu .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uRN0863kEu .embla__button--next,
.cid-uRN0863kEu .embla__button--prev {
  display: flex;
}
.cid-uRN0863kEu .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uRN0863kEu .embla__button {
    display: none;
  }
}
.cid-uRN0863kEu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uRN0863kEu .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uRN0863kEu .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uRN0863kEu .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uRN0863kEu .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uRN0863kEu .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uRN0863kEu .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uRN0863kEu .embla {
  position: relative;
  width: 100%;
}
.cid-uRN0863kEu .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uRN0863kEu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uRN0863kEu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uRN0863kEu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uRN0863kEu .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uRN0863kEu .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uKhk533dTv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uKhk533dTv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhk533dTv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhk533dTv .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uKhk533dTv .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uKhk533dTv .container {
    padding: 0 25px;
  }
}
.cid-uKhk533dTv .row {
  justify-content: space-between;
}
.cid-uKhk533dTv .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uKhk533dTv .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uKhk533dTv .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uKhk533dTv .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uKhk533dTv .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uKhk533dTv .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uKhk533dTv .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uKhk533dTv .list-content {
    display: block;
  }
}
.cid-uKhk533dTv .list-content .nav-wrapper,
.cid-uKhk533dTv .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uKhk533dTv .list-content .nav-wrapper,
  .cid-uKhk533dTv .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uKhk533dTv .list-content .nav-wrapper .mbr-list-title,
.cid-uKhk533dTv .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uKhk533dTv .list-content .nav-wrapper .list,
.cid-uKhk533dTv .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uKhk533dTv .list-content .nav-wrapper .list .item-wrap,
.cid-uKhk533dTv .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uKhk533dTv .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uKhk533dTv .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uKhk533dTv .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uKhk533dTv .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uKhk533dTv .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uKhk533dTv .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKhk533dTv .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uKhk533dTv .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uKhk533dTv .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uKhk533dTv .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKhk533dTv .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uKhk533dTv .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uKhk533dTv .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uKhk533dTv .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uKhk533dTv .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uKhk533dTv .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uKhk533dTv .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uKhk533dTv .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uKhk533dTv .mbr-section-title {
  color: #ffffff;
}
.cid-uKhk533dTv .mbr-list-title {
  color: #004d50;
}
.cid-uKhk533dTv .list {
  color: #ffffff;
}
.cid-uKhk533dTv .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uKhk533dTv .mbr-brand {
  color: #ffffff;
}
.cid-uKhk533dTv .mbr-section-title,
.cid-uKhk533dTv .mbr-section-btn {
  color: #004d50;
}
.cid-uKhk533dTv .list,
.cid-uKhk533dTv .item-wrap {
  color: #004d50;
}
.cid-uKhsUUhXIQ {
  z-index: 1000;
  width: 100%;
}
.cid-uKhsUUhXIQ nav.navbar {
  position: fixed!important;
}
.cid-uKhsUUhXIQ .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-uKhsUUhXIQ .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uKhsUUhXIQ .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uKhsUUhXIQ .dropdown-item:hover {
  background-position: right !important;
}
.cid-uKhsUUhXIQ .dropdown-item:hover:after {
  color: #000000;
}
.cid-uKhsUUhXIQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKhsUUhXIQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKhsUUhXIQ .nav-link {
  position: relative;
}
.cid-uKhsUUhXIQ .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uKhsUUhXIQ .dropdown-menu,
.cid-uKhsUUhXIQ .navbar.opened {
  background: #353535 !important;
}
.cid-uKhsUUhXIQ .nav-item:focus,
.cid-uKhsUUhXIQ .nav-link:focus {
  outline: none;
}
.cid-uKhsUUhXIQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKhsUUhXIQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKhsUUhXIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKhsUUhXIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKhsUUhXIQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKhsUUhXIQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKhsUUhXIQ .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uKhsUUhXIQ .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uKhsUUhXIQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKhsUUhXIQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uKhsUUhXIQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKhsUUhXIQ .navbar.collapsed {
  justify-content: center;
}
.cid-uKhsUUhXIQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKhsUUhXIQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uKhsUUhXIQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKhsUUhXIQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKhsUUhXIQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKhsUUhXIQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKhsUUhXIQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKhsUUhXIQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKhsUUhXIQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKhsUUhXIQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKhsUUhXIQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKhsUUhXIQ .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-uKhsUUhXIQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKhsUUhXIQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKhsUUhXIQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKhsUUhXIQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKhsUUhXIQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKhsUUhXIQ .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKhsUUhXIQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKhsUUhXIQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKhsUUhXIQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uKhsUUhXIQ .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uKhsUUhXIQ .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uKhsUUhXIQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKhsUUhXIQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKhsUUhXIQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKhsUUhXIQ .dropdown-item.active,
.cid-uKhsUUhXIQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uKhsUUhXIQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKhsUUhXIQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKhsUUhXIQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKhsUUhXIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uKhsUUhXIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKhsUUhXIQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKhsUUhXIQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKhsUUhXIQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKhsUUhXIQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uKhsUUhXIQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKhsUUhXIQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKhsUUhXIQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKhsUUhXIQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKhsUUhXIQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKhsUUhXIQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKhsUUhXIQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKhsUUhXIQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKhsUUhXIQ .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uKhsUUhXIQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKhsUUhXIQ .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-uKhsUUhXIQ .navbar {
    height: 70px;
  }
  .cid-uKhsUUhXIQ .navbar.opened {
    height: auto;
  }
  .cid-uKhsUUhXIQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKhsUUhXIQ .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uKhsUUhXIQ .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uKhsUUhXIQ .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uKhsUUhXIQ .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uKhsUUhXIQ .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uKhsUUhXIQ .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uKhsUUhXIQ .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uKhsUUhXIQ .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uKhsUUhXIQ .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .nav-item {
    width: 100%;
  }
  .cid-uKhsUUhXIQ .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uKhsUUhXIQ .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uKhsUUhXIQ .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uKhsUUhXIQ .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uKhsUUhXIQ .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uKhsUUhXIQ .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uKhsUUhXIQ nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uKhsUUhXIQ .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uKhsUUhXIQ .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uKhsUUhXIQ .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uKhsUUhXIQ .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uKhsUUhXIQ .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uKhsUUhXIQ .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uKhsUUhXIQ .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uKhsUUhXIQ .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uKhsUUhXIQ .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uKhsUUhXIQ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uKhsUUhXIQ .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uKhsUUhXIQ .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uKhsUUhXIQ .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uKhsUUhXIQ .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uKhsUUhXIQ .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uKhsUUhXIQ .offcanvas_box {
    display: none;
  }
}
.cid-uKhsUUhXIQ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uKhsUUhXIQ .list li {
  display: flex;
  align-items: center;
}
.cid-uKhsUUhXIQ .list a {
  display: flex;
  align-items: center;
}
.cid-uKhsUUhXIQ .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uKhsUUhXIQ .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uKhsUUhXIQ .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uKhsUUhXIQ .mbr-section-subtitle {
  text-align: left;
}
.cid-uKhsUUhXIQ .mbr-text {
  text-align: left;
}
.cid-uKhsUUhXIQ .nav-link,
.cid-uKhsUUhXIQ .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uKhsUUhXIQ .nav-link:hover,
.cid-uKhsUUhXIQ .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uKhsUUhXIQ .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uKhsUUhXIQ .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uKhsUVfTaE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/setecidadestour4h20250202-80copy.jpg");
}
.cid-uKhsUVfTaE .mbr-section-title,
.cid-uKhsUVfTaE .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uKhsUVfTaE .mbr-section-text {
  color: #767676;
}
.cid-uKhsUVfTaE .mbr-text,
.cid-uKhsUVfTaE .typed-text,
.cid-uKhsUVfTaE .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uKhsUVfTaE .btn {
  margin-left: 4px !important;
}
.cid-uKhsUVfTaE .animated-element {
  color: #d3d3d3;
}
.cid-uKhsUVfTaE .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uKhsUVfTaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhsUVfTaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhsUVfTaE .mbr-section-subtitle,
.cid-uKhsUVfTaE .typed-text {
  color: #ffffff;
}
.cid-uKhsUVfTaE .mbr-section-text,
.cid-uKhsUVfTaE .mbr-section-btn {
  color: #eeeeee;
}
.cid-uKhsUVfTaE .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKhsUVfTaE .mbr-section-title DIV {
  text-align: left;
}
.cid-uKhsUVGj73 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uKhsUVGj73 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhsUVGj73 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhsUVGj73 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhsUVGj73 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhsUVGj73 .container {
    padding: 0 24px;
  }
}
.cid-uKhsUVGj73 .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uKhsUVGj73 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uKhsUVGj73 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uKhsUVGj73 .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uKhsUVGj73 .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .content-wrapper {
    padding: 24px;
  }
}
.cid-uKhsUVGj73 .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uKhsUVGj73 .content-wrapper .content-wrap .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-uKhsUVGj73 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uKhsUVGj73 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uKhsUVGj73 .item {
  margin-bottom: 16px;
}
.cid-uKhsUVGj73 .item:last-child {
  margin-bottom: 0;
}
.cid-uKhsUVGj73 .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uKhsUVGj73 .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uKhsUVGj73 .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uKhsUVGj73 .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uKhsUVGj73 .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uKhsUVGj73 .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uKhsUVGj73 .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uKhsUVGj73 .mbr-section-title {
  color: #004d50;
}
.cid-uKhsUVGj73 .mbr-desc {
  color: #18212d;
}
.cid-uKhsUVGj73 .mbr-text {
  color: #18212d;
}
.cid-uKhsUVGj73 .mbr-recall {
  color: #ffffff;
}
.cid-uKhsUVGj73 .mbr-name {
  color: #ffffff;
}
.cid-uKhsUVGj73 .mbr-rating {
  color: #EFCC4E;
}
.cid-uKhsUVGj73 .item-title {
  color: #18212d;
}
.cid-uKhsUVGj73 .item-text {
  color: #18212d;
}
.cid-uKhsUVGj73 .item-desc {
  color: #18212d;
}
.cid-uKhsUVGj73 .item-text,
.cid-uKhsUVGj73 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uKhsUVGj73 .item-title,
.cid-uKhsUVGj73 .mbr-section-btn {
  color: #004d50;
}
.cid-uKhsUWfxwM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/343949204-1634126973667872-5352477063611873229-n.jpeg");
}
.cid-uKhsUWfxwM .mbr-section-title {
  color: #ffffff;
}
.cid-uKhsUWfxwM .mbr-text,
.cid-uKhsUWfxwM .mbr-section-btn {
  color: #fafafa;
}
.cid-uKhsUWzmHR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uKhsUWzmHR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhsUWzmHR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhsUWzmHR .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uKhsUWzmHR .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uKhsUWzmHR .container {
    padding: 0 25px;
  }
}
.cid-uKhsUWzmHR .row {
  justify-content: space-between;
}
.cid-uKhsUWzmHR .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uKhsUWzmHR .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uKhsUWzmHR .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uKhsUWzmHR .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uKhsUWzmHR .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uKhsUWzmHR .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uKhsUWzmHR .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uKhsUWzmHR .list-content {
    display: block;
  }
}
.cid-uKhsUWzmHR .list-content .nav-wrapper,
.cid-uKhsUWzmHR .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uKhsUWzmHR .list-content .nav-wrapper,
  .cid-uKhsUWzmHR .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uKhsUWzmHR .list-content .nav-wrapper .mbr-list-title,
.cid-uKhsUWzmHR .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uKhsUWzmHR .list-content .nav-wrapper .list,
.cid-uKhsUWzmHR .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uKhsUWzmHR .list-content .nav-wrapper .list .item-wrap,
.cid-uKhsUWzmHR .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uKhsUWzmHR .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uKhsUWzmHR .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uKhsUWzmHR .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uKhsUWzmHR .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uKhsUWzmHR .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uKhsUWzmHR .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKhsUWzmHR .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uKhsUWzmHR .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uKhsUWzmHR .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uKhsUWzmHR .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKhsUWzmHR .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uKhsUWzmHR .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uKhsUWzmHR .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uKhsUWzmHR .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uKhsUWzmHR .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uKhsUWzmHR .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uKhsUWzmHR .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uKhsUWzmHR .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uKhsUWzmHR .mbr-section-title {
  color: #ffffff;
}
.cid-uKhsUWzmHR .mbr-list-title {
  color: #004d50;
}
.cid-uKhsUWzmHR .list {
  color: #ffffff;
}
.cid-uKhsUWzmHR .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uKhsUWzmHR .mbr-brand {
  color: #ffffff;
}
.cid-uKhsUWzmHR .mbr-section-title,
.cid-uKhsUWzmHR .mbr-section-btn {
  color: #004d50;
}
.cid-uKhsUWzmHR .list,
.cid-uKhsUWzmHR .item-wrap {
  color: #004d50;
}
.cid-uKhunVFDhI {
  z-index: 1000;
  width: 100%;
}
.cid-uKhunVFDhI nav.navbar {
  position: fixed!important;
}
.cid-uKhunVFDhI .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-uKhunVFDhI .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uKhunVFDhI .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uKhunVFDhI .dropdown-item:hover {
  background-position: right !important;
}
.cid-uKhunVFDhI .dropdown-item:hover:after {
  color: #000000;
}
.cid-uKhunVFDhI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKhunVFDhI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKhunVFDhI .nav-link {
  position: relative;
}
.cid-uKhunVFDhI .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uKhunVFDhI .dropdown-menu,
.cid-uKhunVFDhI .navbar.opened {
  background: #353535 !important;
}
.cid-uKhunVFDhI .nav-item:focus,
.cid-uKhunVFDhI .nav-link:focus {
  outline: none;
}
.cid-uKhunVFDhI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKhunVFDhI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKhunVFDhI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKhunVFDhI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKhunVFDhI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKhunVFDhI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKhunVFDhI .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uKhunVFDhI .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uKhunVFDhI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKhunVFDhI .navbar .navbar-logo img {
  width: auto;
}
.cid-uKhunVFDhI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKhunVFDhI .navbar.collapsed {
  justify-content: center;
}
.cid-uKhunVFDhI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKhunVFDhI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uKhunVFDhI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKhunVFDhI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKhunVFDhI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKhunVFDhI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKhunVFDhI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKhunVFDhI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKhunVFDhI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKhunVFDhI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKhunVFDhI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKhunVFDhI .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-uKhunVFDhI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKhunVFDhI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKhunVFDhI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKhunVFDhI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKhunVFDhI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKhunVFDhI .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKhunVFDhI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKhunVFDhI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKhunVFDhI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uKhunVFDhI .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uKhunVFDhI .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uKhunVFDhI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKhunVFDhI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKhunVFDhI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKhunVFDhI .dropdown-item.active,
.cid-uKhunVFDhI .dropdown-item:active {
  background-color: transparent;
}
.cid-uKhunVFDhI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKhunVFDhI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKhunVFDhI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKhunVFDhI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uKhunVFDhI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKhunVFDhI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKhunVFDhI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKhunVFDhI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKhunVFDhI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uKhunVFDhI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKhunVFDhI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKhunVFDhI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKhunVFDhI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKhunVFDhI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKhunVFDhI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKhunVFDhI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKhunVFDhI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKhunVFDhI .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uKhunVFDhI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKhunVFDhI .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-uKhunVFDhI .navbar {
    height: 70px;
  }
  .cid-uKhunVFDhI .navbar.opened {
    height: auto;
  }
  .cid-uKhunVFDhI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKhunVFDhI .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uKhunVFDhI .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uKhunVFDhI .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uKhunVFDhI .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uKhunVFDhI .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uKhunVFDhI .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uKhunVFDhI .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uKhunVFDhI .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uKhunVFDhI .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .nav-item {
    width: 100%;
  }
  .cid-uKhunVFDhI .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uKhunVFDhI .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uKhunVFDhI .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uKhunVFDhI .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uKhunVFDhI .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uKhunVFDhI .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uKhunVFDhI nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uKhunVFDhI .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uKhunVFDhI .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uKhunVFDhI .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uKhunVFDhI .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uKhunVFDhI .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uKhunVFDhI .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uKhunVFDhI .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uKhunVFDhI .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uKhunVFDhI .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uKhunVFDhI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uKhunVFDhI .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uKhunVFDhI .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uKhunVFDhI .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uKhunVFDhI .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uKhunVFDhI .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uKhunVFDhI .offcanvas_box {
    display: none;
  }
}
.cid-uKhunVFDhI .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uKhunVFDhI .list li {
  display: flex;
  align-items: center;
}
.cid-uKhunVFDhI .list a {
  display: flex;
  align-items: center;
}
.cid-uKhunVFDhI .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uKhunVFDhI .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uKhunVFDhI .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uKhunVFDhI .mbr-section-subtitle {
  text-align: left;
}
.cid-uKhunVFDhI .mbr-text {
  text-align: left;
}
.cid-uKhunVFDhI .nav-link,
.cid-uKhunVFDhI .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uKhunVFDhI .nav-link:hover,
.cid-uKhunVFDhI .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uKhunVFDhI .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uKhunVFDhI .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uKhunWKK5m {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/nordeste34copy.jpg");
}
.cid-uKhunWKK5m .mbr-section-title,
.cid-uKhunWKK5m .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uKhunWKK5m .mbr-section-text {
  color: #767676;
}
.cid-uKhunWKK5m .mbr-text,
.cid-uKhunWKK5m .typed-text,
.cid-uKhunWKK5m .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uKhunWKK5m .btn {
  margin-left: 4px !important;
}
.cid-uKhunWKK5m .animated-element {
  color: #d3d3d3;
}
.cid-uKhunWKK5m .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uKhunWKK5m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhunWKK5m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhunWKK5m .mbr-section-subtitle,
.cid-uKhunWKK5m .typed-text {
  color: #ffffff;
}
.cid-uKhunWKK5m .mbr-section-text,
.cid-uKhunWKK5m .mbr-section-btn {
  color: #eeeeee;
}
.cid-uKhunWKK5m .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKhunWKK5m .mbr-section-title DIV {
  text-align: left;
}
.cid-uKhunXj7B3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffff9;
}
.cid-uKhunXj7B3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhunXj7B3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhunXj7B3 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhunXj7B3 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uKhunXj7B3 .container {
    padding: 0 24px;
  }
}
.cid-uKhunXj7B3 .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uKhunXj7B3 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uKhunXj7B3 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uKhunXj7B3 .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uKhunXj7B3 .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .content-wrapper {
    padding: 24px;
  }
}
.cid-uKhunXj7B3 .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uKhunXj7B3 .content-wrapper .content-wrap .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-uKhunXj7B3 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uKhunXj7B3 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uKhunXj7B3 .item {
  margin-bottom: 16px;
}
.cid-uKhunXj7B3 .item:last-child {
  margin-bottom: 0;
}
.cid-uKhunXj7B3 .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uKhunXj7B3 .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uKhunXj7B3 .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uKhunXj7B3 .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uKhunXj7B3 .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uKhunXj7B3 .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uKhunXj7B3 .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uKhunXj7B3 .mbr-section-title {
  color: #004d50;
}
.cid-uKhunXj7B3 .mbr-desc {
  color: #18212d;
}
.cid-uKhunXj7B3 .mbr-text {
  color: #18212d;
}
.cid-uKhunXj7B3 .mbr-recall {
  color: #ffffff;
}
.cid-uKhunXj7B3 .mbr-name {
  color: #ffffff;
}
.cid-uKhunXj7B3 .mbr-rating {
  color: #EFCC4E;
}
.cid-uKhunXj7B3 .item-title {
  color: #18212d;
}
.cid-uKhunXj7B3 .item-text {
  color: #18212d;
}
.cid-uKhunXj7B3 .item-desc {
  color: #18212d;
}
.cid-uKhunXj7B3 .item-text,
.cid-uKhunXj7B3 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uKhunXj7B3 .item-title,
.cid-uKhunXj7B3 .mbr-section-btn {
  color: #004d50;
}
.cid-uKhunXU6tA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/nordeste34copy.jpg");
}
.cid-uKhunXU6tA .mbr-section-title {
  color: #ffffff;
}
.cid-uKhunXU6tA .mbr-text,
.cid-uKhunXU6tA .mbr-section-btn {
  color: #fafafa;
}
.cid-uLmI7dO86y {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffff9;
  position: relative;
}
.cid-uLmI7dO86y::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uLmI7dO86y .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uLmI7dO86y .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLmI7dO86y .container {
    padding: 0 25px;
  }
}
.cid-uLmI7dO86y .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLmI7dO86y .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uLmI7dO86y .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLmI7dO86y .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLmI7dO86y .item:focus,
.cid-uLmI7dO86y span:focus {
  outline: none;
}
.cid-uLmI7dO86y .item-wrapper {
  position: relative;
}
.cid-uLmI7dO86y .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uLmI7dO86y .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uLmI7dO86y .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uLmI7dO86y .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uLmI7dO86y .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLmI7dO86y .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uLmI7dO86y .embla__button--next,
.cid-uLmI7dO86y .embla__button--prev {
  display: flex;
}
.cid-uLmI7dO86y .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uLmI7dO86y .embla__button {
    display: none;
  }
}
.cid-uLmI7dO86y .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uLmI7dO86y .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uLmI7dO86y .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uLmI7dO86y .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uLmI7dO86y .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uLmI7dO86y .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uLmI7dO86y .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uLmI7dO86y .embla {
  position: relative;
  width: 100%;
}
.cid-uLmI7dO86y .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uLmI7dO86y .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uLmI7dO86y .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uLmI7dO86y .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uLmI7dO86y .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uLmI7dO86y .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uKhunYfYDk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uKhunYfYDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKhunYfYDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKhunYfYDk .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uKhunYfYDk .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uKhunYfYDk .container {
    padding: 0 25px;
  }
}
.cid-uKhunYfYDk .row {
  justify-content: space-between;
}
.cid-uKhunYfYDk .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uKhunYfYDk .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uKhunYfYDk .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uKhunYfYDk .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uKhunYfYDk .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uKhunYfYDk .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uKhunYfYDk .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uKhunYfYDk .list-content {
    display: block;
  }
}
.cid-uKhunYfYDk .list-content .nav-wrapper,
.cid-uKhunYfYDk .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uKhunYfYDk .list-content .nav-wrapper,
  .cid-uKhunYfYDk .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uKhunYfYDk .list-content .nav-wrapper .mbr-list-title,
.cid-uKhunYfYDk .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uKhunYfYDk .list-content .nav-wrapper .list,
.cid-uKhunYfYDk .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uKhunYfYDk .list-content .nav-wrapper .list .item-wrap,
.cid-uKhunYfYDk .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uKhunYfYDk .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uKhunYfYDk .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uKhunYfYDk .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uKhunYfYDk .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uKhunYfYDk .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uKhunYfYDk .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKhunYfYDk .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uKhunYfYDk .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uKhunYfYDk .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uKhunYfYDk .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uKhunYfYDk .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uKhunYfYDk .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uKhunYfYDk .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uKhunYfYDk .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uKhunYfYDk .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uKhunYfYDk .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uKhunYfYDk .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uKhunYfYDk .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uKhunYfYDk .mbr-section-title {
  color: #ffffff;
}
.cid-uKhunYfYDk .mbr-list-title {
  color: #004d50;
}
.cid-uKhunYfYDk .list {
  color: #ffffff;
}
.cid-uKhunYfYDk .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uKhunYfYDk .mbr-brand {
  color: #ffffff;
}
.cid-uKhunYfYDk .mbr-section-title,
.cid-uKhunYfYDk .mbr-section-btn {
  color: #004d50;
}
.cid-uKhunYfYDk .list,
.cid-uKhunYfYDk .item-wrap {
  color: #004d50;
}
.cid-uHXN3Ktdgn {
  z-index: 1000;
  width: 100%;
}
.cid-uHXN3Ktdgn nav.navbar {
  position: fixed!important;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uHXN3Ktdgn .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uHXN3Ktdgn .dropdown-item:hover {
  background-position: right !important;
}
.cid-uHXN3Ktdgn .dropdown-item:hover:after {
  color: #000000;
}
.cid-uHXN3Ktdgn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHXN3Ktdgn .nav-link {
  position: relative;
}
.cid-uHXN3Ktdgn .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn .dropdown-menu,
.cid-uHXN3Ktdgn .navbar.opened {
  background: #353535 !important;
}
.cid-uHXN3Ktdgn .nav-item:focus,
.cid-uHXN3Ktdgn .nav-link:focus {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHXN3Ktdgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHXN3Ktdgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXN3Ktdgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXN3Ktdgn .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uHXN3Ktdgn .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uHXN3Ktdgn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHXN3Ktdgn .navbar .navbar-logo img {
  width: auto;
}
.cid-uHXN3Ktdgn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar.collapsed {
  justify-content: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHXN3Ktdgn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHXN3Ktdgn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHXN3Ktdgn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHXN3Ktdgn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHXN3Ktdgn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHXN3Ktdgn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHXN3Ktdgn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHXN3Ktdgn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHXN3Ktdgn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHXN3Ktdgn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHXN3Ktdgn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uHXN3Ktdgn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHXN3Ktdgn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHXN3Ktdgn .dropdown-item.active,
.cid-uHXN3Ktdgn .dropdown-item:active {
  background-color: transparent;
}
.cid-uHXN3Ktdgn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHXN3Ktdgn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uHXN3Ktdgn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHXN3Ktdgn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXN3Ktdgn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHXN3Ktdgn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXN3Ktdgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXN3Ktdgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXN3Ktdgn .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uHXN3Ktdgn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXN3Ktdgn .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-uHXN3Ktdgn .navbar {
    height: 70px;
  }
  .cid-uHXN3Ktdgn .navbar.opened {
    height: auto;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHXN3Ktdgn .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uHXN3Ktdgn .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uHXN3Ktdgn .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uHXN3Ktdgn .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uHXN3Ktdgn .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uHXN3Ktdgn .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .nav-item {
    width: 100%;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uHXN3Ktdgn .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uHXN3Ktdgn .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uHXN3Ktdgn .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uHXN3Ktdgn .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uHXN3Ktdgn nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uHXN3Ktdgn .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uHXN3Ktdgn .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uHXN3Ktdgn .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uHXN3Ktdgn .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uHXN3Ktdgn .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uHXN3Ktdgn .offcanvas_box {
    display: none;
  }
}
.cid-uHXN3Ktdgn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uHXN3Ktdgn .list li {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .list a {
  display: flex;
  align-items: center;
}
.cid-uHXN3Ktdgn .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uHXN3Ktdgn .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uHXN3Ktdgn .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uHXN3Ktdgn .mbr-section-subtitle {
  text-align: left;
}
.cid-uHXN3Ktdgn .mbr-text {
  text-align: left;
}
.cid-uHXN3Ktdgn .nav-link,
.cid-uHXN3Ktdgn .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uHXN3Ktdgn .nav-link:hover,
.cid-uHXN3Ktdgn .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uHXN3Ktdgn .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uLmPF569vc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/sessodemodaallisonbengel20240723-239copy.jpeg");
}
.cid-uLmPF569vc .mbr-section-title,
.cid-uLmPF569vc .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uLmPF569vc .mbr-section-text {
  color: #767676;
}
.cid-uLmPF569vc .mbr-text,
.cid-uLmPF569vc .typed-text,
.cid-uLmPF569vc .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uLmPF569vc .btn {
  margin-left: 4px !important;
}
.cid-uLmPF569vc .animated-element {
  color: #d3d3d3;
}
.cid-uLmPF569vc .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uLmPF569vc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLmPF569vc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLmPF569vc .mbr-section-subtitle,
.cid-uLmPF569vc .typed-text {
  color: #ffffff;
}
.cid-uLmPF569vc .mbr-section-text,
.cid-uLmPF569vc .mbr-section-btn {
  color: #eeeeee;
}
.cid-uLmPF569vc .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uLmPF569vc .mbr-section-title DIV {
  text-align: left;
}
.cid-uLmLGhcLWj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/343937451-751745966625402-253225768264886082-ncopy.jpeg");
}
.cid-uLmLGhcLWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLmLGhcLWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLmLGhcLWj .items-wrap {
  justify-content: center;
}
.cid-uLmLGhcLWj .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLmLGhcLWj .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uLmLGhcLWj .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLmLGhcLWj .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uLmLGhcLWj .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uLmLGhcLWj .item {
    margin-bottom: 16px;
  }
}
.cid-uLmLGhcLWj .item:hover .item-wrapper,
.cid-uLmLGhcLWj .item:focus .item-wrapper {
  border: 2px solid #bed3f9;
}
.cid-uLmLGhcLWj .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  border: 2px solid #ffffff;
}
@media (max-width: 1200px) {
  .cid-uLmLGhcLWj .item .item-wrapper {
    padding: 24px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uLmLGhcLWj .item .item-wrapper {
    padding: 20px 16px;
  }
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .item-price {
  margin-bottom: 8px;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .item-desc {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin-top: 20px;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper {
  margin-top: 24px;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list .item-wrap {
  padding-left: 36px;
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 16px;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list_1 .item-wrap::before {
  color: #7dabab;
  background-color: #bbd3d3;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list_2 .item-wrap::before {
  color: #7dabab;
  background-color: #bbd3d3;
}
.cid-uLmLGhcLWj .item .item-wrapper .card-box .list-wrapper .list_3 .item-wrap::before {
  color: #a672ff;
  background-color: #e6d8ff;
}
.cid-uLmLGhcLWj .item .item-wrapper .mbr-section-btn {
  width: 100%;
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uLmLGhcLWj .item .item-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uLmLGhcLWj .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  padding: 14px;
}
.cid-uLmLGhcLWj .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uLmLGhcLWj .item-title {
  color: #272b2e;
  text-align: center;
}
.cid-uLmLGhcLWj .item-price {
  color: #000000;
  text-align: center;
}
.cid-uLmLGhcLWj .item-desc {
  color: #272b2e;
  text-align: center;
}
.cid-uLmLGhcLWj .list {
  color: #272b2e;
}
.cid-uLmLGhcLWj .mbr-section-title,
.cid-uLmLGhcLWj .mbr-section-btn {
  color: #004d50;
}
.cid-uOh7drrPkF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sessaotnuriapierrelagoadofogo-saltocabritoday228.jpg");
}
.cid-uOh7drrPkF .mbr-section-title {
  color: #7dabab;
}
.cid-uOh7drrPkF .mbr-text,
.cid-uOh7drrPkF .mbr-section-btn {
  color: #fafafa;
}
.cid-uOh6sZs1VI {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
}
.cid-uOh6sZs1VI::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uOh6sZs1VI .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uOh6sZs1VI .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uOh6sZs1VI .container {
    padding: 0 25px;
  }
}
.cid-uOh6sZs1VI .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOh6sZs1VI .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uOh6sZs1VI .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uOh6sZs1VI .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uOh6sZs1VI .item:focus,
.cid-uOh6sZs1VI span:focus {
  outline: none;
}
.cid-uOh6sZs1VI .item-wrapper {
  position: relative;
}
.cid-uOh6sZs1VI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uOh6sZs1VI .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uOh6sZs1VI .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uOh6sZs1VI .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uOh6sZs1VI .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOh6sZs1VI .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uOh6sZs1VI .embla__button--next,
.cid-uOh6sZs1VI .embla__button--prev {
  display: flex;
}
.cid-uOh6sZs1VI .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uOh6sZs1VI .embla__button {
    display: none;
  }
}
.cid-uOh6sZs1VI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uOh6sZs1VI .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uOh6sZs1VI .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uOh6sZs1VI .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uOh6sZs1VI .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uOh6sZs1VI .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uOh6sZs1VI .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uOh6sZs1VI .embla {
  position: relative;
  width: 100%;
}
.cid-uOh6sZs1VI .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uOh6sZs1VI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uOh6sZs1VI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uOh6sZs1VI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uOh6sZs1VI .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uOh6sZs1VI .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uGydoSvPAS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uGydoSvPAS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGydoSvPAS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGydoSvPAS .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .container {
    padding: 0 25px;
  }
}
.cid-uGydoSvPAS .row {
  justify-content: space-between;
}
.cid-uGydoSvPAS .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uGydoSvPAS .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uGydoSvPAS .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uGydoSvPAS .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .list-content {
    display: block;
  }
}
.cid-uGydoSvPAS .list-content .nav-wrapper,
.cid-uGydoSvPAS .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content .nav-wrapper,
  .cid-uGydoSvPAS .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uGydoSvPAS .list-content .nav-wrapper .mbr-list-title,
.cid-uGydoSvPAS .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list,
.cid-uGydoSvPAS .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uGydoSvPAS .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGydoSvPAS .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uGydoSvPAS .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uGydoSvPAS .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGydoSvPAS .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uGydoSvPAS .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uGydoSvPAS .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uGydoSvPAS .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uGydoSvPAS .mbr-section-title {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-list-title {
  color: #004d50;
}
.cid-uGydoSvPAS .list {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uGydoSvPAS .mbr-brand {
  color: #ffffff;
}
.cid-uGydoSvPAS .mbr-section-title,
.cid-uGydoSvPAS .mbr-section-btn {
  color: #004d50;
}
.cid-uGydoSvPAS .list,
.cid-uGydoSvPAS .item-wrap {
  color: #004d50;
}
.cid-uOiNeStqOl {
  z-index: 1000;
  width: 100%;
}
.cid-uOiNeStqOl nav.navbar {
  position: fixed!important;
}
.cid-uOiNeStqOl .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-uOiNeStqOl .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uOiNeStqOl .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uOiNeStqOl .dropdown-item:hover {
  background-position: right !important;
}
.cid-uOiNeStqOl .dropdown-item:hover:after {
  color: #000000;
}
.cid-uOiNeStqOl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOiNeStqOl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOiNeStqOl .nav-link {
  position: relative;
}
.cid-uOiNeStqOl .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uOiNeStqOl .dropdown-menu,
.cid-uOiNeStqOl .navbar.opened {
  background: #353535 !important;
}
.cid-uOiNeStqOl .nav-item:focus,
.cid-uOiNeStqOl .nav-link:focus {
  outline: none;
}
.cid-uOiNeStqOl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOiNeStqOl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOiNeStqOl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOiNeStqOl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOiNeStqOl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOiNeStqOl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOiNeStqOl .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uOiNeStqOl .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uOiNeStqOl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOiNeStqOl .navbar .navbar-logo img {
  width: auto;
}
.cid-uOiNeStqOl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOiNeStqOl .navbar.collapsed {
  justify-content: center;
}
.cid-uOiNeStqOl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOiNeStqOl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uOiNeStqOl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOiNeStqOl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOiNeStqOl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOiNeStqOl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOiNeStqOl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOiNeStqOl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOiNeStqOl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOiNeStqOl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOiNeStqOl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOiNeStqOl .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-uOiNeStqOl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOiNeStqOl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOiNeStqOl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOiNeStqOl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOiNeStqOl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOiNeStqOl .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOiNeStqOl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOiNeStqOl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOiNeStqOl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uOiNeStqOl .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uOiNeStqOl .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uOiNeStqOl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOiNeStqOl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOiNeStqOl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOiNeStqOl .dropdown-item.active,
.cid-uOiNeStqOl .dropdown-item:active {
  background-color: transparent;
}
.cid-uOiNeStqOl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOiNeStqOl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOiNeStqOl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOiNeStqOl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uOiNeStqOl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOiNeStqOl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOiNeStqOl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOiNeStqOl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOiNeStqOl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uOiNeStqOl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOiNeStqOl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOiNeStqOl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOiNeStqOl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOiNeStqOl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOiNeStqOl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOiNeStqOl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOiNeStqOl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOiNeStqOl .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uOiNeStqOl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOiNeStqOl .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-uOiNeStqOl .navbar {
    height: 70px;
  }
  .cid-uOiNeStqOl .navbar.opened {
    height: auto;
  }
  .cid-uOiNeStqOl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOiNeStqOl .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uOiNeStqOl .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uOiNeStqOl .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uOiNeStqOl .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uOiNeStqOl .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uOiNeStqOl .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uOiNeStqOl .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uOiNeStqOl .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uOiNeStqOl .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .nav-item {
    width: 100%;
  }
  .cid-uOiNeStqOl .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uOiNeStqOl .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uOiNeStqOl .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uOiNeStqOl .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uOiNeStqOl .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uOiNeStqOl .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uOiNeStqOl nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uOiNeStqOl .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uOiNeStqOl .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uOiNeStqOl .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uOiNeStqOl .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uOiNeStqOl .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uOiNeStqOl .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uOiNeStqOl .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uOiNeStqOl .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uOiNeStqOl .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uOiNeStqOl .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uOiNeStqOl .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uOiNeStqOl .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uOiNeStqOl .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uOiNeStqOl .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uOiNeStqOl .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uOiNeStqOl .offcanvas_box {
    display: none;
  }
}
.cid-uOiNeStqOl .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uOiNeStqOl .list li {
  display: flex;
  align-items: center;
}
.cid-uOiNeStqOl .list a {
  display: flex;
  align-items: center;
}
.cid-uOiNeStqOl .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uOiNeStqOl .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uOiNeStqOl .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uOiNeStqOl .mbr-section-subtitle {
  text-align: left;
}
.cid-uOiNeStqOl .mbr-text {
  text-align: left;
}
.cid-uOiNeStqOl .nav-link,
.cid-uOiNeStqOl .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uOiNeStqOl .nav-link:hover,
.cid-uOiNeStqOl .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uOiNeStqOl .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uOiNeStqOl .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uOiNeSY6wj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/kaseyrachelpontadelgada053.jpg");
}
.cid-uOiNeSY6wj .mbr-section-title,
.cid-uOiNeSY6wj .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uOiNeSY6wj .mbr-section-text {
  color: #767676;
}
.cid-uOiNeSY6wj .mbr-text,
.cid-uOiNeSY6wj .typed-text,
.cid-uOiNeSY6wj .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uOiNeSY6wj .btn {
  margin-left: 4px !important;
}
.cid-uOiNeSY6wj .animated-element {
  color: #d3d3d3;
}
.cid-uOiNeSY6wj .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uOiNeSY6wj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOiNeSY6wj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOiNeSY6wj .mbr-section-subtitle,
.cid-uOiNeSY6wj .typed-text {
  color: #ffffff;
}
.cid-uOiNeSY6wj .mbr-section-text,
.cid-uOiNeSY6wj .mbr-section-btn {
  color: #eeeeee;
}
.cid-uOiNeSY6wj .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uOiNeSY6wj .mbr-section-title DIV {
  text-align: left;
}
.cid-uOm4abxQbJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOm4abxQbJ .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uOm4abxQbJ .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uOm4abxQbJ .container {
    padding: 0 25px;
  }
}
.cid-uOm4abxQbJ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uOm4abxQbJ .item:focus,
.cid-uOm4abxQbJ span:focus {
  outline: none;
}
.cid-uOm4abxQbJ .item-wrapper {
  position: relative;
}
.cid-uOm4abxQbJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-uOm4abxQbJ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uOm4abxQbJ .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uOm4abxQbJ .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-uOm4abxQbJ .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-uOm4abxQbJ .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-uOm4abxQbJ .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #f0f0f0;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-uOm4abxQbJ .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-uOm4abxQbJ .embla__button--next,
.cid-uOm4abxQbJ .embla__button--prev {
  display: flex;
}
.cid-uOm4abxQbJ .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uOm4abxQbJ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uOm4abxQbJ .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uOm4abxQbJ .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-uOm4abxQbJ .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uOm4abxQbJ .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uOm4abxQbJ .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uOm4abxQbJ .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uOm4abxQbJ .embla {
  position: relative;
  width: 100%;
}
.cid-uOm4abxQbJ .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uOm4abxQbJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uOm4abxQbJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uOm4abxQbJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uOm4abxQbJ .mbr-section-title {
  color: #000000;
}
.cid-uOm4abxQbJ .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uOm4abxQbJ .item-title {
  color: #000000;
  text-align: center;
}
.cid-uOm4abxQbJ .item-price {
  color: #000000;
  text-align: center;
}
.cid-uOm12J98QR {
  padding-top: 150px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uOm12J98QR .nav-tabs .nav-item.open .nav-link:focus,
.cid-uOm12J98QR .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uOm12J98QR h4 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uOm12J98QR h4:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uOm12J98QR .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: none;
  justify-content: space-around;
}
.cid-uOm12J98QR .tabs-col {
  overflow: hidden;
}
.cid-uOm12J98QR .tab-content {
  border-top: 1px solid lightgray;
  padding: 0rem;
  padding-top: 5rem;
}
.cid-uOm12J98QR .nav-tabs .nav-link {
  color: #000000;
  font-style: normal;
  padding: 1rem 1.5rem;
  background: transparent;
  font-weight: 400;
  border: none;
  border-radius: 0;
  position: relative;
}
.cid-uOm12J98QR .nav-tabs .nav-link:before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid #000000;
  background: white;
  transition: all 0.3s;
  z-index: 9;
}
.cid-uOm12J98QR .nav-tabs .nav-link:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 50%;
  width: 9999px;
  height: 1px;
  transition: all 0.3s;
  background: transparent;
}
.cid-uOm12J98QR .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-uOm12J98QR .nav-tabs .nav-link.active {
  font-weight: 400;
  font-style: normal;
}
.cid-uOm12J98QR .nav-tabs .nav-link.active:before {
  background: #000000;
}
.cid-uOm12J98QR .nav-tabs .nav-link.active:after {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-uOm12J98QR .nav-tabs {
    flex-direction: row;
  }
  .cid-uOm12J98QR .mbr-text,
  .cid-uOm12J98QR .nav-link {
    text-align: center;
  }
  .cid-uOm12J98QR .nav-tabs .nav-link {
    margin-bottom: 1rem;
    border: 0;
  }
  .cid-uOm12J98QR .nav-tabs .nav-link:after {
    content: none;
  }
  .cid-uOm12J98QR .nav-item {
    min-width: 100px;
  }
  .cid-uOm12J98QR .tab-content {
    border-top: 0px;
    padding-top: 2rem;
  }
}
.cid-uOm12J98QR H3 {
  color: #767676;
  text-align: center;
}
.cid-uOm12J98QR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOm12J98QR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOm12J98QR H2 {
  text-align: center;
}
.cid-uOm12J98QR P {
  text-align: center;
}
.cid-uOm12J98QR H1 {
  color: #004d50;
}
.cid-uOiNeTUU5f {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
}
.cid-uOiNeTUU5f::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background-color: #ffffff;
}
.cid-uOiNeTUU5f .container-fluid {
  padding: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uOiNeTUU5f .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uOiNeTUU5f .container {
    padding: 0 25px;
  }
}
.cid-uOiNeTUU5f .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOiNeTUU5f .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uOiNeTUU5f .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uOiNeTUU5f .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uOiNeTUU5f .item:focus,
.cid-uOiNeTUU5f span:focus {
  outline: none;
}
.cid-uOiNeTUU5f .item-wrapper {
  position: relative;
}
.cid-uOiNeTUU5f .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 810px;
  max-width: 810px;
}
@media (max-width: 992px) {
  .cid-uOiNeTUU5f .embla__slide {
    min-width: 710px;
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .cid-uOiNeTUU5f .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uOiNeTUU5f .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uOiNeTUU5f .embla__slide .slide-content .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOiNeTUU5f .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uOiNeTUU5f .embla__button--next,
.cid-uOiNeTUU5f .embla__button--prev {
  display: flex;
}
.cid-uOiNeTUU5f .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uOiNeTUU5f .embla__button {
    display: none;
  }
}
.cid-uOiNeTUU5f .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uOiNeTUU5f .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uOiNeTUU5f .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uOiNeTUU5f .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uOiNeTUU5f .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uOiNeTUU5f .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uOiNeTUU5f .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uOiNeTUU5f .embla {
  position: relative;
  width: 100%;
}
.cid-uOiNeTUU5f .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uOiNeTUU5f .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uOiNeTUU5f .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uOiNeTUU5f .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uOiNeTUU5f .mbr-section-title {
  color: #004d50;
  text-align: center;
}
.cid-uOiNeTUU5f .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uOiNeUkeiE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uOiNeUkeiE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOiNeUkeiE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOiNeUkeiE .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uOiNeUkeiE .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uOiNeUkeiE .container {
    padding: 0 25px;
  }
}
.cid-uOiNeUkeiE .row {
  justify-content: space-between;
}
.cid-uOiNeUkeiE .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uOiNeUkeiE .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uOiNeUkeiE .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uOiNeUkeiE .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uOiNeUkeiE .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uOiNeUkeiE .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uOiNeUkeiE .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uOiNeUkeiE .list-content {
    display: block;
  }
}
.cid-uOiNeUkeiE .list-content .nav-wrapper,
.cid-uOiNeUkeiE .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uOiNeUkeiE .list-content .nav-wrapper,
  .cid-uOiNeUkeiE .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uOiNeUkeiE .list-content .nav-wrapper .mbr-list-title,
.cid-uOiNeUkeiE .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uOiNeUkeiE .list-content .nav-wrapper .list,
.cid-uOiNeUkeiE .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uOiNeUkeiE .list-content .nav-wrapper .list .item-wrap,
.cid-uOiNeUkeiE .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uOiNeUkeiE .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uOiNeUkeiE .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uOiNeUkeiE .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uOiNeUkeiE .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uOiNeUkeiE .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uOiNeUkeiE .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uOiNeUkeiE .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uOiNeUkeiE .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uOiNeUkeiE .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uOiNeUkeiE .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uOiNeUkeiE .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uOiNeUkeiE .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uOiNeUkeiE .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uOiNeUkeiE .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uOiNeUkeiE .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uOiNeUkeiE .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uOiNeUkeiE .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uOiNeUkeiE .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uOiNeUkeiE .mbr-section-title {
  color: #ffffff;
}
.cid-uOiNeUkeiE .mbr-list-title {
  color: #004d50;
}
.cid-uOiNeUkeiE .list {
  color: #ffffff;
}
.cid-uOiNeUkeiE .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uOiNeUkeiE .mbr-brand {
  color: #ffffff;
}
.cid-uOiNeUkeiE .mbr-section-title,
.cid-uOiNeUkeiE .mbr-section-btn {
  color: #004d50;
}
.cid-uOiNeUkeiE .list,
.cid-uOiNeUkeiE .item-wrap {
  color: #004d50;
}
.cid-uRLp0haRqp {
  z-index: 1000;
  width: 100%;
}
.cid-uRLp0haRqp nav.navbar {
  position: fixed!important;
}
.cid-uRLp0haRqp .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-uRLp0haRqp .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uRLp0haRqp .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uRLp0haRqp .dropdown-item:hover {
  background-position: right !important;
}
.cid-uRLp0haRqp .dropdown-item:hover:after {
  color: #000000;
}
.cid-uRLp0haRqp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRLp0haRqp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRLp0haRqp .nav-link {
  position: relative;
}
.cid-uRLp0haRqp .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uRLp0haRqp .dropdown-menu,
.cid-uRLp0haRqp .navbar.opened {
  background: #353535 !important;
}
.cid-uRLp0haRqp .nav-item:focus,
.cid-uRLp0haRqp .nav-link:focus {
  outline: none;
}
.cid-uRLp0haRqp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRLp0haRqp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRLp0haRqp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRLp0haRqp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRLp0haRqp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRLp0haRqp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRLp0haRqp .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uRLp0haRqp .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uRLp0haRqp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRLp0haRqp .navbar .navbar-logo img {
  width: auto;
}
.cid-uRLp0haRqp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRLp0haRqp .navbar.collapsed {
  justify-content: center;
}
.cid-uRLp0haRqp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRLp0haRqp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uRLp0haRqp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRLp0haRqp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRLp0haRqp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uRLp0haRqp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRLp0haRqp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRLp0haRqp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRLp0haRqp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRLp0haRqp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRLp0haRqp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRLp0haRqp .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-uRLp0haRqp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRLp0haRqp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRLp0haRqp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRLp0haRqp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRLp0haRqp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRLp0haRqp .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRLp0haRqp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRLp0haRqp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRLp0haRqp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uRLp0haRqp .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uRLp0haRqp .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uRLp0haRqp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRLp0haRqp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRLp0haRqp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRLp0haRqp .dropdown-item.active,
.cid-uRLp0haRqp .dropdown-item:active {
  background-color: transparent;
}
.cid-uRLp0haRqp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRLp0haRqp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRLp0haRqp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRLp0haRqp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uRLp0haRqp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRLp0haRqp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRLp0haRqp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRLp0haRqp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRLp0haRqp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uRLp0haRqp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRLp0haRqp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRLp0haRqp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRLp0haRqp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRLp0haRqp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRLp0haRqp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRLp0haRqp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRLp0haRqp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRLp0haRqp .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uRLp0haRqp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRLp0haRqp .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-uRLp0haRqp .navbar {
    height: 70px;
  }
  .cid-uRLp0haRqp .navbar.opened {
    height: auto;
  }
  .cid-uRLp0haRqp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRLp0haRqp .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uRLp0haRqp .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uRLp0haRqp .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uRLp0haRqp .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uRLp0haRqp .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uRLp0haRqp .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uRLp0haRqp .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uRLp0haRqp .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uRLp0haRqp .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .nav-item {
    width: 100%;
  }
  .cid-uRLp0haRqp .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uRLp0haRqp .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uRLp0haRqp .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uRLp0haRqp .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uRLp0haRqp .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uRLp0haRqp .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uRLp0haRqp nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uRLp0haRqp .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uRLp0haRqp .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uRLp0haRqp .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uRLp0haRqp .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uRLp0haRqp .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uRLp0haRqp .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uRLp0haRqp .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uRLp0haRqp .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uRLp0haRqp .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uRLp0haRqp .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uRLp0haRqp .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uRLp0haRqp .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uRLp0haRqp .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uRLp0haRqp .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uRLp0haRqp .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uRLp0haRqp .offcanvas_box {
    display: none;
  }
}
.cid-uRLp0haRqp .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uRLp0haRqp .list li {
  display: flex;
  align-items: center;
}
.cid-uRLp0haRqp .list a {
  display: flex;
  align-items: center;
}
.cid-uRLp0haRqp .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uRLp0haRqp .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uRLp0haRqp .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uRLp0haRqp .mbr-section-subtitle {
  text-align: left;
}
.cid-uRLp0haRqp .mbr-text {
  text-align: left;
}
.cid-uRLp0haRqp .nav-link,
.cid-uRLp0haRqp .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uRLp0haRqp .nav-link:hover,
.cid-uRLp0haRqp .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uRLp0haRqp .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uRLp0haRqp .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uRLp0hMNlt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/350238918-1710103356118286-6116345862961320054-n.jpg");
}
.cid-uRLp0hMNlt .mbr-section-title,
.cid-uRLp0hMNlt .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uRLp0hMNlt .mbr-section-text {
  color: #767676;
}
.cid-uRLp0hMNlt .mbr-text,
.cid-uRLp0hMNlt .typed-text,
.cid-uRLp0hMNlt .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uRLp0hMNlt .btn {
  margin-left: 4px !important;
}
.cid-uRLp0hMNlt .animated-element {
  color: #d3d3d3;
}
.cid-uRLp0hMNlt .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uRLp0hMNlt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRLp0hMNlt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRLp0hMNlt .mbr-section-subtitle,
.cid-uRLp0hMNlt .typed-text {
  color: #ffffff;
}
.cid-uRLp0hMNlt .mbr-section-text,
.cid-uRLp0hMNlt .mbr-section-btn {
  color: #eeeeee;
}
.cid-uRLp0hMNlt .mbr-section-title {
  text-align: center;
  color: #f5f4ed;
}
.cid-uRLp0hMNlt .mbr-section-title DIV {
  text-align: left;
}
.cid-uRLpd20XLG {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #fffcee;
}
.cid-uRLpd20XLG .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uRLpd20XLG .team-card:hover {
  transform: translateY(-10px);
}
.cid-uRLpd20XLG .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #000000;
}
.cid-uRLpd20XLG .svg-top .st0 {
  fill: #fffcee;
}
@media (max-width: 992px) {
  .cid-uRLpd20XLG .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uRLpd20XLG .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uRLpd20XLG .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uRLpd20XLG .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uRLpd20XLG .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uRLpd20XLG .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uRLpd20XLG .card-title,
.cid-uRLpd20XLG .social-row {
  color: #1a449a;
}
.cid-uRLpd20XLG .mbr-role,
.cid-uRLpd20XLG .social-row {
  color: #1a449a;
}
.cid-uRLpd20XLG .card-text,
.cid-uRLpd20XLG .mbr-section-btn,
.cid-uRLpd20XLG .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uRLpd20XLG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRLpd20XLG .card-title,
.cid-uRLpd20XLG .content-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uRLpd20XLG .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uRLp0jZEUs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uRLp0jZEUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRLp0jZEUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRLp0jZEUs .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uRLp0jZEUs .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uRLp0jZEUs .container {
    padding: 0 25px;
  }
}
.cid-uRLp0jZEUs .row {
  justify-content: space-between;
}
.cid-uRLp0jZEUs .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uRLp0jZEUs .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uRLp0jZEUs .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uRLp0jZEUs .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uRLp0jZEUs .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uRLp0jZEUs .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uRLp0jZEUs .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uRLp0jZEUs .list-content {
    display: block;
  }
}
.cid-uRLp0jZEUs .list-content .nav-wrapper,
.cid-uRLp0jZEUs .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRLp0jZEUs .list-content .nav-wrapper,
  .cid-uRLp0jZEUs .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uRLp0jZEUs .list-content .nav-wrapper .mbr-list-title,
.cid-uRLp0jZEUs .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uRLp0jZEUs .list-content .nav-wrapper .list,
.cid-uRLp0jZEUs .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRLp0jZEUs .list-content .nav-wrapper .list .item-wrap,
.cid-uRLp0jZEUs .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uRLp0jZEUs .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uRLp0jZEUs .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uRLp0jZEUs .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uRLp0jZEUs .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uRLp0jZEUs .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uRLp0jZEUs .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uRLp0jZEUs .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uRLp0jZEUs .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uRLp0jZEUs .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uRLp0jZEUs .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uRLp0jZEUs .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uRLp0jZEUs .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uRLp0jZEUs .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uRLp0jZEUs .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uRLp0jZEUs .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uRLp0jZEUs .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uRLp0jZEUs .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uRLp0jZEUs .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uRLp0jZEUs .mbr-section-title {
  color: #ffffff;
}
.cid-uRLp0jZEUs .mbr-list-title {
  color: #004d50;
}
.cid-uRLp0jZEUs .list {
  color: #ffffff;
}
.cid-uRLp0jZEUs .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uRLp0jZEUs .mbr-brand {
  color: #ffffff;
}
.cid-uRLp0jZEUs .mbr-section-title,
.cid-uRLp0jZEUs .mbr-section-btn {
  color: #004d50;
}
.cid-uRLp0jZEUs .list,
.cid-uRLp0jZEUs .item-wrap {
  color: #004d50;
}
.cid-uRLrZTxiM5 {
  z-index: 1000;
  width: 100%;
}
.cid-uRLrZTxiM5 nav.navbar {
  position: fixed!important;
}
.cid-uRLrZTxiM5 .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-uRLrZTxiM5 .dropdown-menu {
  background: #353535 !important;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-uRLrZTxiM5 .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-uRLrZTxiM5 .dropdown-item:hover {
  background-position: right !important;
}
.cid-uRLrZTxiM5 .dropdown-item:hover:after {
  color: #000000;
}
.cid-uRLrZTxiM5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRLrZTxiM5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRLrZTxiM5 .nav-link {
  position: relative;
}
.cid-uRLrZTxiM5 .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-uRLrZTxiM5 .dropdown-menu,
.cid-uRLrZTxiM5 .navbar.opened {
  background: #353535 !important;
}
.cid-uRLrZTxiM5 .nav-item:focus,
.cid-uRLrZTxiM5 .nav-link:focus {
  outline: none;
}
.cid-uRLrZTxiM5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRLrZTxiM5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRLrZTxiM5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRLrZTxiM5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRLrZTxiM5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRLrZTxiM5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRLrZTxiM5 .navbar {
  transition: all 0.4s ease-out;
  position: static !important;
  background-color: #353535;
  min-height: 60px;
  box-sizing: content-box;
}
.cid-uRLrZTxiM5 .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-uRLrZTxiM5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRLrZTxiM5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uRLrZTxiM5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRLrZTxiM5 .navbar.collapsed {
  justify-content: center;
}
.cid-uRLrZTxiM5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRLrZTxiM5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uRLrZTxiM5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRLrZTxiM5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRLrZTxiM5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uRLrZTxiM5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRLrZTxiM5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRLrZTxiM5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRLrZTxiM5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRLrZTxiM5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRLrZTxiM5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRLrZTxiM5 .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-uRLrZTxiM5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRLrZTxiM5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRLrZTxiM5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRLrZTxiM5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRLrZTxiM5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRLrZTxiM5 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRLrZTxiM5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRLrZTxiM5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRLrZTxiM5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-uRLrZTxiM5 .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uRLrZTxiM5 .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 .navbar {
    position: absolute !important;
    background-color: transparent !important;
    padding: 10px 73px !important;
    min-height: 130px;
  }
}
.cid-uRLrZTxiM5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRLrZTxiM5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRLrZTxiM5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRLrZTxiM5 .dropdown-item.active,
.cid-uRLrZTxiM5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uRLrZTxiM5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRLrZTxiM5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRLrZTxiM5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRLrZTxiM5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uRLrZTxiM5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRLrZTxiM5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRLrZTxiM5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRLrZTxiM5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRLrZTxiM5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-uRLrZTxiM5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRLrZTxiM5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRLrZTxiM5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRLrZTxiM5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRLrZTxiM5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRLrZTxiM5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRLrZTxiM5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRLrZTxiM5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRLrZTxiM5 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uRLrZTxiM5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRLrZTxiM5 .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-uRLrZTxiM5 .navbar {
    height: 70px;
  }
  .cid-uRLrZTxiM5 .navbar.opened {
    height: auto;
  }
  .cid-uRLrZTxiM5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRLrZTxiM5 .navbar-short {
  background-color: #353535 !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-uRLrZTxiM5 .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-uRLrZTxiM5 .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-uRLrZTxiM5 .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-uRLrZTxiM5 .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .navbar-nav {
    padding-top: 18px;
  }
}
.cid-uRLrZTxiM5 .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #ffffff 0, #ffffff 25%, #ffffff 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-uRLrZTxiM5 .nav-item .nav-link:hover {
  background-position: right;
}
.cid-uRLrZTxiM5 .nav-item .nav-link:hover:after {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-uRLrZTxiM5 .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .nav-item {
    width: 100%;
  }
  .cid-uRLrZTxiM5 .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-uRLrZTxiM5 .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-uRLrZTxiM5 .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-uRLrZTxiM5 .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uRLrZTxiM5 .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #eeeeee !important;
  }
}
.cid-uRLrZTxiM5 .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #353535 !important;
}
@media (min-width: 992px) {
  .cid-uRLrZTxiM5 nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-uRLrZTxiM5 .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-uRLrZTxiM5 .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-uRLrZTxiM5 .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-uRLrZTxiM5 .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-uRLrZTxiM5 .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uRLrZTxiM5 .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-uRLrZTxiM5 .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-uRLrZTxiM5 .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-uRLrZTxiM5 .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-uRLrZTxiM5 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #353535;
  }
  .cid-uRLrZTxiM5 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #353535 0, #353535 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #353535 66.66666667%, #353535 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-uRLrZTxiM5 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-uRLrZTxiM5 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-uRLrZTxiM5 .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-uRLrZTxiM5 .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-uRLrZTxiM5 .offcanvas_box {
    display: none;
  }
}
.cid-uRLrZTxiM5 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uRLrZTxiM5 .list li {
  display: flex;
  align-items: center;
}
.cid-uRLrZTxiM5 .list a {
  display: flex;
  align-items: center;
}
.cid-uRLrZTxiM5 .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-uRLrZTxiM5 .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-uRLrZTxiM5 .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-uRLrZTxiM5 .mbr-section-subtitle {
  text-align: left;
}
.cid-uRLrZTxiM5 .mbr-text {
  text-align: left;
}
.cid-uRLrZTxiM5 .nav-link,
.cid-uRLrZTxiM5 .dropdown-item {
  position: relative;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cid-uRLrZTxiM5 .nav-link:hover,
.cid-uRLrZTxiM5 .dropdown-item:hover {
  color: #ffffff !important;
  text-shadow: 0 0 2px #ffffff, 0 0 4px rgba(0, 77, 80, 0.6), 0 0 6px rgba(0, 77, 80, 0.3);
  transform: scale(1.03);
}
.cid-uRLrZTxiM5 .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.cid-uRLrZTxiM5 .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uRLrZU5gQC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/350238918-1710103356118286-6116345862961320054-n.jpg");
}
.cid-uRLrZU5gQC .mbr-section-title,
.cid-uRLrZU5gQC .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uRLrZU5gQC .mbr-section-text {
  color: #767676;
}
.cid-uRLrZU5gQC .mbr-text,
.cid-uRLrZU5gQC .typed-text,
.cid-uRLrZU5gQC .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uRLrZU5gQC .btn {
  margin-left: 4px !important;
}
.cid-uRLrZU5gQC .animated-element {
  color: #d3d3d3;
}
.cid-uRLrZU5gQC .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #d3d3d3;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uRLrZU5gQC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRLrZU5gQC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRLrZU5gQC .mbr-section-subtitle,
.cid-uRLrZU5gQC .typed-text {
  color: #ffffff;
}
.cid-uRLrZU5gQC .mbr-section-text,
.cid-uRLrZU5gQC .mbr-section-btn {
  color: #eeeeee;
}
.cid-uRLrZU5gQC .mbr-section-title {
  text-align: center;
  color: #f5f4ed;
}
.cid-uRLrZU5gQC .mbr-section-title DIV {
  text-align: left;
}
.cid-uRLrZUzPUV {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #fffcee;
}
.cid-uRLrZUzPUV .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uRLrZUzPUV .team-card:hover {
  transform: translateY(-10px);
}
.cid-uRLrZUzPUV .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #000000;
}
.cid-uRLrZUzPUV .svg-top .st0 {
  fill: #fffcee;
}
@media (max-width: 992px) {
  .cid-uRLrZUzPUV .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uRLrZUzPUV .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uRLrZUzPUV .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uRLrZUzPUV .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uRLrZUzPUV .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uRLrZUzPUV .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uRLrZUzPUV .card-title,
.cid-uRLrZUzPUV .social-row {
  color: #1a449a;
}
.cid-uRLrZUzPUV .mbr-role,
.cid-uRLrZUzPUV .social-row {
  color: #1a449a;
}
.cid-uRLrZUzPUV .card-text,
.cid-uRLrZUzPUV .mbr-section-btn,
.cid-uRLrZUzPUV .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uRLrZUzPUV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRLrZUzPUV .card-title,
.cid-uRLrZUzPUV .content-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uRLrZUzPUV .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uRLrZVpxEh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-uRLrZVpxEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRLrZVpxEh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRLrZVpxEh .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uRLrZVpxEh .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uRLrZVpxEh .container {
    padding: 0 25px;
  }
}
.cid-uRLrZVpxEh .row {
  justify-content: space-between;
}
.cid-uRLrZVpxEh .title-wrapper {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .cid-uRLrZVpxEh .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uRLrZVpxEh .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uRLrZVpxEh .title-wrapper .social-wrapper {
  margin-top: 35px;
}
.cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap .soc-item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap .soc-item {
    margin-right: 20px;
  }
}
.cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap .soc-item a {
  display: block;
}
.cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uRLrZVpxEh .title-wrapper .social-wrapper .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 22px;
  color: #004d50;
  transition: all 0.3s ease-in-out;
}
.cid-uRLrZVpxEh .list-content {
  margin-bottom: 150px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uRLrZVpxEh .list-content {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uRLrZVpxEh .list-content {
    display: block;
  }
}
.cid-uRLrZVpxEh .list-content .nav-wrapper,
.cid-uRLrZVpxEh .list-content .contact-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRLrZVpxEh .list-content .nav-wrapper,
  .cid-uRLrZVpxEh .list-content .contact-wrapper {
    margin-bottom: 60px;
    width: 100%;
  }
}
.cid-uRLrZVpxEh .list-content .nav-wrapper .mbr-list-title,
.cid-uRLrZVpxEh .list-content .contact-wrapper .mbr-list-title {
  margin-bottom: 30px;
}
.cid-uRLrZVpxEh .list-content .nav-wrapper .list,
.cid-uRLrZVpxEh .list-content .contact-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRLrZVpxEh .list-content .nav-wrapper .list .item-wrap,
.cid-uRLrZVpxEh .list-content .contact-wrapper .list .item-wrap {
  opacity: .7;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uRLrZVpxEh .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uRLrZVpxEh .list-content .contact-wrapper .list .item-wrap:hover,
.cid-uRLrZVpxEh .list-content .nav-wrapper .list .item-wrap:hover,
.cid-uRLrZVpxEh .list-content .contact-wrapper .list .item-wrap:hover {
  opacity: 1;
}
.cid-uRLrZVpxEh .list-content .nav-wrapper .list .item-wrap:last-child,
.cid-uRLrZVpxEh .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uRLrZVpxEh .list-content .contact-wrapper {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-uRLrZVpxEh .list-content .contact-wrapper {
    margin-left: 0;
  }
}
.cid-uRLrZVpxEh .list-content .contact-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
.cid-uRLrZVpxEh .list-content .contact-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uRLrZVpxEh .copy-wrapper {
  padding: 30px 0;
  border-top: 2px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uRLrZVpxEh .copy-wrapper {
    display: block;
    text-align: center;
  }
}
.cid-uRLrZVpxEh .copy-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uRLrZVpxEh .copy-wrapper .logo-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uRLrZVpxEh .copy-wrapper .logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cid-uRLrZVpxEh .copy-wrapper .logo-wrapper .mbr-brand {
  margin: 0 0 0 20px;
}
.cid-uRLrZVpxEh .copy-wrapper .mbr-copy {
  opacity: .7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uRLrZVpxEh .copy-wrapper .mbr-copy {
    text-align: center;
  }
}
.cid-uRLrZVpxEh .mbr-section-title {
  color: #ffffff;
}
.cid-uRLrZVpxEh .mbr-list-title {
  color: #004d50;
}
.cid-uRLrZVpxEh .list {
  color: #ffffff;
}
.cid-uRLrZVpxEh .mbr-copy {
  color: #004d50;
  text-align: right;
}
.cid-uRLrZVpxEh .mbr-brand {
  color: #ffffff;
}
.cid-uRLrZVpxEh .mbr-section-title,
.cid-uRLrZVpxEh .mbr-section-btn {
  color: #004d50;
}
.cid-uRLrZVpxEh .list,
.cid-uRLrZVpxEh .item-wrap {
  color: #004d50;
}
