body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 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))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #e43f3f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #fff0b0 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
  color: #b08f00 !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: #594800 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #b08f00 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff0b0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe059 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #b08f00 !important;
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #fff0b0 !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: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffdd4a !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: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #fff0b0;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Luxurious Roman', display;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Luxurious Roman', display;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e43f3f' %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-u7ZJPd9C7d .navbar-dropdown {
  position: relative !important;
}
.cid-u7ZJPd9C7d .navbar-logo {
  margin-right: 1rem !important;
}
.cid-u7ZJPd9C7d .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-u7ZJPd9C7d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7ZJPd9C7d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7ZJPd9C7d .dropdown-item:hover,
.cid-u7ZJPd9C7d .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u7ZJPd9C7d .dropdown-item:hover span {
  color: white;
}
.cid-u7ZJPd9C7d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7ZJPd9C7d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7ZJPd9C7d .nav-dropdown .link {
  padding: 0 1.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7ZJPd9C7d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7ZJPd9C7d .nav-link {
  position: relative;
}
.cid-u7ZJPd9C7d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7ZJPd9C7d .container {
    flex-wrap: nowrap;
  }
}
.cid-u7ZJPd9C7d .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7ZJPd9C7d .dropdown-menu,
.cid-u7ZJPd9C7d .navbar.opened {
  background: #bfbdb7 !important;
}
.cid-u7ZJPd9C7d .nav-item:focus,
.cid-u7ZJPd9C7d .nav-link:focus {
  outline: none;
}
.cid-u7ZJPd9C7d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7ZJPd9C7d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7ZJPd9C7d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7ZJPd9C7d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7ZJPd9C7d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7ZJPd9C7d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7ZJPd9C7d .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bfbdb7;
}
.cid-u7ZJPd9C7d .navbar.opened {
  transition: all 0.3s;
}
.cid-u7ZJPd9C7d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7ZJPd9C7d .navbar .navbar-logo img {
  width: auto;
}
.cid-u7ZJPd9C7d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7ZJPd9C7d .navbar.collapsed {
  justify-content: center;
}
.cid-u7ZJPd9C7d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7ZJPd9C7d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7ZJPd9C7d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7ZJPd9C7d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7ZJPd9C7d .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-u7ZJPd9C7d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7ZJPd9C7d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7ZJPd9C7d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7ZJPd9C7d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7ZJPd9C7d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7ZJPd9C7d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7ZJPd9C7d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7ZJPd9C7d .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-u7ZJPd9C7d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7ZJPd9C7d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7ZJPd9C7d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7ZJPd9C7d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7ZJPd9C7d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7ZJPd9C7d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7ZJPd9C7d .navbar.navbar-short {
  min-height: 80px;
}
.cid-u7ZJPd9C7d .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u7ZJPd9C7d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7ZJPd9C7d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7ZJPd9C7d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7ZJPd9C7d .dropdown-item.active,
.cid-u7ZJPd9C7d .dropdown-item:active {
  background-color: transparent;
}
.cid-u7ZJPd9C7d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7ZJPd9C7d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7ZJPd9C7d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7ZJPd9C7d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bfbdb7;
}
.cid-u7ZJPd9C7d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7ZJPd9C7d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7ZJPd9C7d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7ZJPd9C7d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7ZJPd9C7d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7ZJPd9C7d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7ZJPd9C7d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7ZJPd9C7d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7ZJPd9C7d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7ZJPd9C7d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7ZJPd9C7d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7ZJPd9C7d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7ZJPd9C7d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7ZJPd9C7d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7ZJPd9C7d .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u7ZJPd9C7d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7ZJPd9C7d .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-u7ZJPd9C7d .navbar {
    height: 70px;
  }
  .cid-u7ZJPd9C7d .navbar.opened {
    height: auto;
  }
  .cid-u7ZJPd9C7d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u83hVcF2Mt {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #023936;
}
.cid-u83hVcF2Mt .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-u83hVcF2Mt .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-u83hVcF2Mt .row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83hVcF2Mt .item-text {
  padding: 0 32px 55px;
}
.cid-u83hVcF2Mt .text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .cid-u83hVcF2Mt .text-container {
    flex-wrap: wrap;
  }
}
.cid-u83hVcF2Mt .mbr-section-title {
  flex-grow: 1;
  line-height: 65px!important;
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u83hVcF2Mt .mbr-section-title {
    font-size: 79px;
    line-height: 87px!important;
  }
}
.cid-u83hVcF2Mt .text {
  color: #3d3d3d;
}
.cid-u83hVcF2Mt .link-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 50px;
  width: 18%;
}
@media (max-width: 767px) {
  .cid-u83hVcF2Mt .link-wrap {
    width: 100%;
  }
}
.cid-u83hVcF2Mt .emerging-underline-link {
  color: #3d3d3d;
}
.cid-u83hVcF2Mt .item-image {
  padding: 0 32px;
  max-height: 100vh;
}
.cid-u83iCTYP0s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #023936;
}
.cid-u83iCTYP0s blockquote {
  border-color: #ffe885;
  border-radius: 4px;
  background-color: #024a46;
}
.cid-u83iCTYP0s .mbr-text {
  color: #fafafa;
}
.cid-u7ZKkadMkY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bfbdb7;
}
.cid-u7ZKkadMkY .list-border {
  border-bottom: 2px solid #aac69b;
}
.cid-u7ZKkadMkY .list1 {
  padding: 80px 1rem;
}
.cid-u7ZKkadMkY .mbr-text {
  padding-bottom: 40px;
  color: #fff0b0;
}
.cid-u7ZKkadMkY .list-border {
  padding-bottom: 160px;
}
.cid-u7ZKkadMkY .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u7ZKkadMkY .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u7ZKkadMkY .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u7ZKkadMkY .counter-container ol li a:hover {
  opacity: .85;
}
.cid-u7ZKkadMkY .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: -3px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #191919;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u7ZKkadMkY .list-border {
    padding-bottom: 60px;
  }
}
@media (max-width: 425px) {
  .cid-u7ZKkadMkY .list-border {
    padding-bottom: 40px;
  }
}
.cid-u7ZKkadMkY .mbr-section-title {
  color: #000000;
}
.cid-u7ZKsJFuAW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u7ZKsJFuAW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKsJFuAW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZKsJFuAW .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u7ZKsJFuAW .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ZKsJFuAW .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ZKsJFuAW .card-wrapper {
    padding: 4rem;
  }
}
.cid-u7ZKsJFuAW .mbr-text,
.cid-u7ZKsJFuAW .mbr-section-btn {
  color: #000000;
}
.cid-u7ZKsJFuAW .card-title,
.cid-u7ZKsJFuAW .card-box {
  text-align: left;
  color: #000000;
}
.cid-u7ZKuLM7OK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u7ZKuLM7OK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKuLM7OK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7ZKuLM7OK .container {
    padding: 0 22px;
  }
}
.cid-u7ZKuLM7OK .row {
  justify-content: space-between;
}
.cid-u7ZKuLM7OK .row .card {
  justify-content: center;
}
.cid-u7ZKuLM7OK .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7ZKuLM7OK .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u7ZKuLM7OK .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-u7ZKuLM7OK .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u7ZKuLM7OK .image-wrapper img {
  height: 850px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u7ZKuLM7OK .image-wrapper img {
    height: 350px;
  }
}
.cid-u7ZKuLM7OK .mbr-section-title {
  color: #000000;
}
.cid-u7ZKuLM7OK .mbr-text {
  color: #101010;
  text-align: center;
}
.cid-u7ZKuLM7OK .mbr-section-title,
.cid-u7ZKuLM7OK .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u7ZKywBgx4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u7ZKywBgx4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKywBgx4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZKywBgx4 .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u7ZKywBgx4 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ZKywBgx4 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ZKywBgx4 .card-wrapper {
    padding: 4rem;
  }
}
.cid-u7ZKywBgx4 .mbr-text,
.cid-u7ZKywBgx4 .mbr-section-btn {
  color: #000000;
}
.cid-u7ZKywBgx4 .card-title,
.cid-u7ZKywBgx4 .card-box {
  text-align: left;
  color: #030822;
}
.cid-u7ZNIM6VOg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-u7ZNIM6VOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZNIM6VOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7ZNIM6VOg .container {
    padding: 0 22px;
  }
}
.cid-u7ZNIM6VOg .items-wrapper {
  justify-content: center;
  margin: 0 -6px;
}
.cid-u7ZNIM6VOg .items-wrapper .item {
  padding: 0 6px;
}
.cid-u7ZNIM6VOg .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-u7ZNIM6VOg .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u7ZNIM6VOg .mbr-section-btn {
  margin-bottom: 55px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u7ZNIM6VOg .mbr-section-btn {
    margin-bottom: 32px;
  }
}
.cid-u7ZNIM6VOg .desc-wrapper .mbr-desc {
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 28px;
}
.cid-u7ZNIM6VOg .item {
  margin-bottom: 12px;
}
.cid-u7ZNIM6VOg .item .item-wrapper {
  padding: 32px 24px 24px;
  border-radius: 15px !important;
  border: 1px solid #000000;
  height: 100%;
}
.cid-u7ZNIM6VOg .item .item-wrapper .card-box .tag-wrapper {
  margin-bottom: 16px;
}
.cid-u7ZNIM6VOg .item .item-wrapper .card-box .tag-wrapper .card-tag {
  padding: 0 16px;
  display: inline-flex;
  border: 1px solid #000000;
  border-radius: 15px;
}
.cid-u7ZNIM6VOg .item .item-wrapper .card-box .card-title {
  margin-bottom: 18px;
}
.cid-u7ZNIM6VOg .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u7ZNIM6VOg .mbr-section-title {
  color: #000000;
}
.cid-u7ZNIM6VOg .mbr-desc {
  color: #000000;
}
.cid-u7ZNIM6VOg .card-title {
  color: #000000;
}
.cid-u7ZNIM6VOg .card-tag {
  color: #000000;
}
.cid-u7ZNIM6VOg .card-text {
  color: #000000;
}
.cid-u7ZKKy8zfs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u7ZKKy8zfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKKy8zfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZKKy8zfs .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u7ZKKy8zfs .mbr-section-title {
  color: #fafafa;
  text-align: left;
}
.cid-u7ZKKy8zfs .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u7ZKH98wzW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
  flex-direction: column;
  justify-content: center;
}
.cid-u7ZKH98wzW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKH98wzW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7ZKH98wzW .container {
    padding: 0 16px;
  }
}
.cid-u7ZKH98wzW .row {
  justify-content: space-between;
}
.cid-u7ZKH98wzW .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u7ZKH98wzW .panel-group {
  border: 1px solid #f18886;
  background-color: #023936;
}
.cid-u7ZKH98wzW .panel-group .card {
  position: relative;
  border-top: 1px solid #f18886;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-u7ZKH98wzW .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-u7ZKH98wzW .panel-group .card:first-child {
  border-top: none;
}
.cid-u7ZKH98wzW .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #6d93d7;
  margin-left: 30px;
  background-color: #bfbdb7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #66c2ee;
  color: #ffffff;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #023936;
}
.cid-u7ZKH98wzW .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-u7ZKH98wzW .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-u7ZKH98wzW .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u7ZKH98wzW .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u7ZKH98wzW .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-u7ZKH98wzW .mbr-desc {
  color: #030822;
  text-align: center;
}
.cid-u7ZKH98wzW .panel-title-edit {
  color: #ffe161;
}
.cid-u7ZKH98wzW .panel-text {
  color: #000000;
}
.cid-u7ZKUxTsJb {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #023936;
}
.cid-u7ZKUxTsJb img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.cid-u7ZKUxTsJb .mbr-iconfont-1 {
  color: #f0ad4e;
  font-size: 1rem;
  transition: 0.7s;
}
.cid-u7ZKUxTsJb .mbr-section-title {
  margin-bottom: 4rem;
}
.cid-u7ZKUxTsJb .mbr-section-subtitle {
  color: #e9204f;
  margin-bottom: 1.5rem;
}
.cid-u7ZKUxTsJb .card-img {
  margin-bottom: 1.3rem;
}
.cid-u7ZKUxTsJb .card-title {
  margin-bottom: 1.5rem;
}
.cid-u7ZKUxTsJb .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7ZKUxTsJb .card {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u7ZKUxTsJb .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u7ZKUxTsJb .row {
    padding: 0 1rem;
  }
  .cid-u7ZKUxTsJb .card-inner {
    padding: 3.3rem 2.5rem;
  }
}
.cid-u7ZKUxTsJb .card-inner {
  background-color: #ffffff;
  transition: 0.3s;
  border: 2px solid rgba(255, 153, 102, 0);
}
.cid-u7ZKUxTsJb .card:hover .card-inner {
  border: 2px solid #ff9966;
}
.cid-u7ZKUxTsJb .mbr-text {
  margin-bottom: 1.3rem;
  color: #828282;
}
.cid-u7ZKUxTsJb .card-people {
  display: flex;
  align-items: center;
}
.cid-u7ZKUxTsJb .user_image {
  margin-right: 1rem;
}
.cid-u7ZKUxTsJb .mbr-author-desc {
  color: #e9204f;
  font-weight: 500;
}
.cid-u7ZKUxTsJb .mbr-text,
.cid-u7ZKUxTsJb .link {
  color: #101010;
  text-align: center;
}
.cid-u7ZKEJXbCm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfbdb7;
}
.cid-u7ZKEJXbCm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKEJXbCm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u7ZKEJXbCm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7ZKEJXbCm .row {
  flex-direction: row-reverse;
}
.cid-u7ZKEJXbCm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7ZKEJXbCm .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7ZKEJXbCm .mbr-text {
  color: #030822;
}
.cid-u7ZKEJXbCm .mbr-section-title {
  color: #030822;
}
.cid-u7ZL6kMyjP {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #023936;
}
.cid-u7ZL6kMyjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZL6kMyjP .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-u7ZL6kMyjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZL6kMyjP h1 {
  max-width: 800px;
}
.cid-u7ZL6kMyjP p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-u7ZL6kMyjP .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #e43f3f !important;
}
.cid-u7ZL6kMyjP .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-u7ZL6kMyjP .btn div {
  overflow: hidden;
}
.cid-u7ZL6kMyjP .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-u7ZL6kMyjP {
    align-items: center;
  }
  .cid-u7ZL6kMyjP .row {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u7ZL6kMyjP .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u7ZL6kMyjP {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u7ZL6kMyjP .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u7ZL6kMyjP .content-wrap {
    width: 100%;
  }
}
.cid-u7ZL6kMyjP .mbr-section-subtitle,
.cid-u7ZL6kMyjP .line {
  color: #ffffff;
}
.cid-u7ZL6kMyjP .mbr-text,
.cid-u7ZL6kMyjP .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-u7ZL6kMyjP .mbr-section-title {
  color: #ffffff;
}
.cid-u7ZKp6Yf6N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u7ZKp6Yf6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZKp6Yf6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZKp6Yf6N .video-wrapper iframe {
  width: 100%;
}
.cid-u7ZKp6Yf6N .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #47b5ed;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u7ZKp6Yf6N .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-u7ZKp6Yf6N .video-block {
  position: relative;
  z-index: 1;
}
.cid-u7ZKp6Yf6N .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-u7ZKp6Yf6N .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u7ZKp6Yf6N .video-block .image-absolute {
    display: none;
  }
}
.cid-u7ZLqqxWO3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u7ZLqqxWO3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZLqqxWO3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZLqqxWO3 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-u7ZLqqxWO3 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-u7ZLqqxWO3 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u7ZLqqxWO3 .container {
    padding: 0 16px;
  }
}
.cid-u7ZLqqxWO3 .row {
  justify-content: space-between;
}
.cid-u7ZLqqxWO3 .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7ZLqqxWO3 .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u7ZLqqxWO3 .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u7ZLqqxWO3 .content-wrapper {
  position: relative;
}
.cid-u7ZLqqxWO3 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7ZLqqxWO3 .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7ZLqqxWO3 .mbr-text {
  color: #333333;
}
.cid-u7ZLqqxWO3 .mbr-section-title,
.cid-u7ZLqqxWO3 .mbr-section-btn {
  color: #fafafa;
}
.cid-u7ZLqqxWO3 .mbr-text,
.cid-u7ZLqqxWO3 .icon-wrapper {
  color: #fafafa;
}
.cid-u7ZLfgtj32 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u7ZLfgtj32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZLfgtj32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7ZLfgtj32 .container {
    padding: 0 22px;
  }
}
.cid-u7ZLfgtj32 .row {
  justify-content: center;
}
.cid-u7ZLfgtj32 .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u7ZLfgtj32 .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u7ZLfgtj32 .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
.cid-u7ZLfgtj32 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7ZLfgtj32 .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #ffffff;
}
.cid-u7ZLfgtj32 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u7ZLfgtj32 .mbr-section-title {
  color: #ffffff;
}
.cid-u7ZLfgtj32 .mbr-text {
  color: #030822;
  text-align: left;
}
.cid-u7ZLfgtj32 .mbr-section-title,
.cid-u7ZLfgtj32 .icon-wrapper {
  text-align: left;
  color: #030822;
}
.cid-u7ZLC7QOFT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #023936;
}
.cid-u7ZLC7QOFT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZLC7QOFT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZLC7QOFT .mbr-section-head {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .cid-u7ZLC7QOFT .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-u7ZLC7QOFT .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u7ZLC7QOFT .mbr-section-title {
  color: #fafafa;
}
.cid-u7ZLC7QOFT .mbr-section-subtitle {
  margin-top: 30px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-u7ZLC7QOFT .mbr-section-subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-u7ZLC7QOFT .mbr-section-subtitle {
    margin-top: 20px;
  }
}
.cid-u7ZLC7QOFT .map-container {
  padding: 0 !important;
}
.cid-u7ZLC7QOFT .google-map {
  height: 850px;
  position: relative;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-u7ZLC7QOFT .google-map {
    height: 520px;
    max-height: 70vh;
  }
}
.cid-u7ZLC7QOFT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u7ZLC7QOFT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u7ZLC7QOFT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u7ZLC7QOFT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u7ZLiopWCI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbdb7;
}
.cid-u7ZLiopWCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZLiopWCI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZLiopWCI .row {
  background: #023936;
  padding: 3rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.3);
}
.cid-u7ZLiopWCI li:hover {
  color: #e43f3f;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-u7ZLiopWCI .col-lg-3 {
    max-width: 20%;
  }
}
.cid-u7ZLiopWCI .mbr-iconfont {
  color: #151515;
  opacity: 0.7;
  transition: all 0.3s;
}
.cid-u7ZLiopWCI .mbr-iconfont:hover {
  opacity: 1;
}
.cid-u7ZLiopWCI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u7ZLiopWCI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-u7ZLiopWCI .soc-item {
    margin: 0 0.6rem;
  }
}
@media (max-width: 767px) {
  .cid-u7ZLiopWCI .row {
    text-align: center;
  }
  .cid-u7ZLiopWCI .social-row {
    justify-content: center;
  }
}
.cid-u7ZLiopWCI .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7ZLiopWCI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ZLiopWCI .list {
    margin-bottom: 0rem;
  }
}
.cid-u7ZLiopWCI .list,
.cid-u7ZLiopWCI .mbr-text {
  color: #ffffff;
}
.cid-u7ZLiopWCI H5 {
  color: #000000;
}
.cid-u7ZLiopWCI .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u7ZLiopWCI .copyright {
  color: #ffffff;
}
.cid-u7ZYOACRBt .navbar-dropdown {
  position: relative !important;
}
.cid-u7ZYOACRBt .navbar-logo {
  margin-right: 1rem !important;
}
.cid-u7ZYOACRBt .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-u7ZYOACRBt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7ZYOACRBt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7ZYOACRBt .dropdown-item:hover,
.cid-u7ZYOACRBt .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u7ZYOACRBt .dropdown-item:hover span {
  color: white;
}
.cid-u7ZYOACRBt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7ZYOACRBt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7ZYOACRBt .nav-dropdown .link {
  padding: 0 1.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7ZYOACRBt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7ZYOACRBt .nav-link {
  position: relative;
}
.cid-u7ZYOACRBt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7ZYOACRBt .container {
    flex-wrap: nowrap;
  }
}
.cid-u7ZYOACRBt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7ZYOACRBt .dropdown-menu,
.cid-u7ZYOACRBt .navbar.opened {
  background: #bfbdb7 !important;
}
.cid-u7ZYOACRBt .nav-item:focus,
.cid-u7ZYOACRBt .nav-link:focus {
  outline: none;
}
.cid-u7ZYOACRBt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7ZYOACRBt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7ZYOACRBt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7ZYOACRBt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7ZYOACRBt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7ZYOACRBt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7ZYOACRBt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bfbdb7;
}
.cid-u7ZYOACRBt .navbar.opened {
  transition: all 0.3s;
}
.cid-u7ZYOACRBt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7ZYOACRBt .navbar .navbar-logo img {
  width: auto;
}
.cid-u7ZYOACRBt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7ZYOACRBt .navbar.collapsed {
  justify-content: center;
}
.cid-u7ZYOACRBt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7ZYOACRBt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7ZYOACRBt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7ZYOACRBt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7ZYOACRBt .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-u7ZYOACRBt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7ZYOACRBt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7ZYOACRBt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7ZYOACRBt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7ZYOACRBt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7ZYOACRBt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7ZYOACRBt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7ZYOACRBt .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-u7ZYOACRBt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7ZYOACRBt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7ZYOACRBt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7ZYOACRBt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7ZYOACRBt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7ZYOACRBt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7ZYOACRBt .navbar.navbar-short {
  min-height: 80px;
}
.cid-u7ZYOACRBt .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u7ZYOACRBt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7ZYOACRBt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7ZYOACRBt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7ZYOACRBt .dropdown-item.active,
.cid-u7ZYOACRBt .dropdown-item:active {
  background-color: transparent;
}
.cid-u7ZYOACRBt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7ZYOACRBt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7ZYOACRBt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7ZYOACRBt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bfbdb7;
}
.cid-u7ZYOACRBt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7ZYOACRBt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7ZYOACRBt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7ZYOACRBt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7ZYOACRBt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7ZYOACRBt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7ZYOACRBt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7ZYOACRBt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7ZYOACRBt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7ZYOACRBt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7ZYOACRBt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7ZYOACRBt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7ZYOACRBt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7ZYOACRBt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7ZYOACRBt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u7ZYOACRBt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7ZYOACRBt .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-u7ZYOACRBt .navbar {
    height: 70px;
  }
  .cid-u7ZYOACRBt .navbar.opened {
    height: auto;
  }
  .cid-u7ZYOACRBt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7ZZ5WNCyB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #024a46;
}
.cid-u7ZZ5WNCyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZZ5WNCyB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZZ5WNCyB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u7ZZ5WNCyB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ZZ5WNCyB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u7ZZ5WNCyB .mbr-text,
.cid-u7ZZ5WNCyB .mbr-section-btn {
  color: #ffe161;
}
.cid-u7ZZ5WNCyB .mbr-section-title {
  color: #ffe161;
}
.cid-u7ZZ6GQpII {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-u7ZZ6GQpII .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZZ6GQpII .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZZ6GQpII .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u7ZZ6GQpII .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ZZ6GQpII .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ZZ6GQpII .card-wrapper {
    padding: 4rem;
  }
}
.cid-u7ZZ6GQpII .mbr-text,
.cid-u7ZZ6GQpII .mbr-section-btn {
  text-align: left;
}
.cid-u7ZZcJk7X6 .google-map {
  height: 34rem;
  position: relative;
}
.cid-u7ZZcJk7X6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u7ZZcJk7X6 .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-u7ZZcJk7X6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u7ZZcJk7X6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u7ZYON18c1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbdb7;
}
.cid-u7ZYON18c1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ZYON18c1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ZYON18c1 .row {
  background: #023936;
  padding: 3rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.3);
}
.cid-u7ZYON18c1 li:hover {
  color: #e43f3f;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-u7ZYON18c1 .col-lg-3 {
    max-width: 20%;
  }
}
.cid-u7ZYON18c1 .mbr-iconfont {
  color: #151515;
  opacity: 0.7;
  transition: all 0.3s;
}
.cid-u7ZYON18c1 .mbr-iconfont:hover {
  opacity: 1;
}
.cid-u7ZYON18c1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u7ZYON18c1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-u7ZYON18c1 .soc-item {
    margin: 0 0.6rem;
  }
}
@media (max-width: 767px) {
  .cid-u7ZYON18c1 .row {
    text-align: center;
  }
  .cid-u7ZYON18c1 .social-row {
    justify-content: center;
  }
}
.cid-u7ZYON18c1 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7ZYON18c1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ZYON18c1 .list {
    margin-bottom: 0rem;
  }
}
.cid-u7ZYON18c1 .list,
.cid-u7ZYON18c1 .mbr-text {
  color: #ffffff;
}
.cid-u7ZYON18c1 H5 {
  color: #000000;
}
.cid-u7ZYON18c1 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u7ZYON18c1 .copyright {
  color: #ffffff;
}
.cid-u81MNuZgmM .navbar-dropdown {
  position: relative !important;
}
.cid-u81MNuZgmM .navbar-logo {
  margin-right: 1rem !important;
}
.cid-u81MNuZgmM .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-u81MNuZgmM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u81MNuZgmM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u81MNuZgmM .dropdown-item:hover,
.cid-u81MNuZgmM .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u81MNuZgmM .dropdown-item:hover span {
  color: white;
}
.cid-u81MNuZgmM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u81MNuZgmM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u81MNuZgmM .nav-dropdown .link {
  padding: 0 1.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u81MNuZgmM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u81MNuZgmM .nav-link {
  position: relative;
}
.cid-u81MNuZgmM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u81MNuZgmM .container {
    flex-wrap: nowrap;
  }
}
.cid-u81MNuZgmM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u81MNuZgmM .dropdown-menu,
.cid-u81MNuZgmM .navbar.opened {
  background: #bfbdb7 !important;
}
.cid-u81MNuZgmM .nav-item:focus,
.cid-u81MNuZgmM .nav-link:focus {
  outline: none;
}
.cid-u81MNuZgmM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u81MNuZgmM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u81MNuZgmM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u81MNuZgmM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u81MNuZgmM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u81MNuZgmM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u81MNuZgmM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bfbdb7;
}
.cid-u81MNuZgmM .navbar.opened {
  transition: all 0.3s;
}
.cid-u81MNuZgmM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u81MNuZgmM .navbar .navbar-logo img {
  width: auto;
}
.cid-u81MNuZgmM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u81MNuZgmM .navbar.collapsed {
  justify-content: center;
}
.cid-u81MNuZgmM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u81MNuZgmM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u81MNuZgmM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u81MNuZgmM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u81MNuZgmM .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-u81MNuZgmM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u81MNuZgmM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u81MNuZgmM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u81MNuZgmM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u81MNuZgmM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u81MNuZgmM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u81MNuZgmM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u81MNuZgmM .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-u81MNuZgmM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u81MNuZgmM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u81MNuZgmM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u81MNuZgmM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u81MNuZgmM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u81MNuZgmM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u81MNuZgmM .navbar.navbar-short {
  min-height: 80px;
}
.cid-u81MNuZgmM .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u81MNuZgmM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u81MNuZgmM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u81MNuZgmM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u81MNuZgmM .dropdown-item.active,
.cid-u81MNuZgmM .dropdown-item:active {
  background-color: transparent;
}
.cid-u81MNuZgmM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u81MNuZgmM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u81MNuZgmM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u81MNuZgmM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bfbdb7;
}
.cid-u81MNuZgmM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u81MNuZgmM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u81MNuZgmM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u81MNuZgmM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u81MNuZgmM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u81MNuZgmM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u81MNuZgmM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u81MNuZgmM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u81MNuZgmM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u81MNuZgmM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u81MNuZgmM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u81MNuZgmM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u81MNuZgmM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u81MNuZgmM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u81MNuZgmM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u81MNuZgmM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u81MNuZgmM .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-u81MNuZgmM .navbar {
    height: 70px;
  }
  .cid-u81MNuZgmM .navbar.opened {
    height: auto;
  }
  .cid-u81MNuZgmM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u81MNvLbMw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #023936;
}
.cid-u81MNvLbMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81MNvLbMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81MNvLbMw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u81MNvLbMw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u81MNvLbMw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u81MNvLbMw .mbr-section-title {
  color: #fafafa;
}
.cid-u81MNvLbMw .mbr-text,
.cid-u81MNvLbMw .mbr-section-btn {
  color: #fafafa;
}
.cid-u81MNwljTc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-u81MNwljTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81MNwljTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81MNwljTc .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u81MNwljTc .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u81MNwljTc .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u81MNwljTc .card-wrapper {
    padding: 4rem;
  }
}
.cid-u81MNwljTc .mbr-text,
.cid-u81MNwljTc .mbr-section-btn {
  text-align: left;
}
.cid-u81MNwVfFw .google-map {
  height: 34rem;
  position: relative;
}
.cid-u81MNwVfFw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u81MNwVfFw .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-u81MNwVfFw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u81MNwVfFw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u81MNxxuJ8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbdb7;
}
.cid-u81MNxxuJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81MNxxuJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81MNxxuJ8 .row {
  background: #023936;
  padding: 3rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.3);
}
.cid-u81MNxxuJ8 li:hover {
  color: #e43f3f;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-u81MNxxuJ8 .col-lg-3 {
    max-width: 20%;
  }
}
.cid-u81MNxxuJ8 .mbr-iconfont {
  color: #151515;
  opacity: 0.7;
  transition: all 0.3s;
}
.cid-u81MNxxuJ8 .mbr-iconfont:hover {
  opacity: 1;
}
.cid-u81MNxxuJ8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u81MNxxuJ8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-u81MNxxuJ8 .soc-item {
    margin: 0 0.6rem;
  }
}
@media (max-width: 767px) {
  .cid-u81MNxxuJ8 .row {
    text-align: center;
  }
  .cid-u81MNxxuJ8 .social-row {
    justify-content: center;
  }
}
.cid-u81MNxxuJ8 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u81MNxxuJ8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u81MNxxuJ8 .list {
    margin-bottom: 0rem;
  }
}
.cid-u81MNxxuJ8 .list,
.cid-u81MNxxuJ8 .mbr-text {
  color: #ffffff;
}
.cid-u81MNxxuJ8 H5 {
  color: #000000;
}
.cid-u81MNxxuJ8 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u81MNxxuJ8 .copyright {
  color: #ffffff;
}
.cid-u83trmUnCZ .navbar-dropdown {
  position: relative !important;
}
.cid-u83trmUnCZ .navbar-logo {
  margin-right: 1rem !important;
}
.cid-u83trmUnCZ .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-u83trmUnCZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u83trmUnCZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u83trmUnCZ .dropdown-item:hover,
.cid-u83trmUnCZ .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u83trmUnCZ .dropdown-item:hover span {
  color: white;
}
.cid-u83trmUnCZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u83trmUnCZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u83trmUnCZ .nav-dropdown .link {
  padding: 0 1.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u83trmUnCZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u83trmUnCZ .nav-link {
  position: relative;
}
.cid-u83trmUnCZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u83trmUnCZ .container {
    flex-wrap: nowrap;
  }
}
.cid-u83trmUnCZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u83trmUnCZ .dropdown-menu,
.cid-u83trmUnCZ .navbar.opened {
  background: #bfbdb7 !important;
}
.cid-u83trmUnCZ .nav-item:focus,
.cid-u83trmUnCZ .nav-link:focus {
  outline: none;
}
.cid-u83trmUnCZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u83trmUnCZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u83trmUnCZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u83trmUnCZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u83trmUnCZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u83trmUnCZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u83trmUnCZ .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bfbdb7;
}
.cid-u83trmUnCZ .navbar.opened {
  transition: all 0.3s;
}
.cid-u83trmUnCZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u83trmUnCZ .navbar .navbar-logo img {
  width: auto;
}
.cid-u83trmUnCZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u83trmUnCZ .navbar.collapsed {
  justify-content: center;
}
.cid-u83trmUnCZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u83trmUnCZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u83trmUnCZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u83trmUnCZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u83trmUnCZ .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-u83trmUnCZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u83trmUnCZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u83trmUnCZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u83trmUnCZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u83trmUnCZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u83trmUnCZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u83trmUnCZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u83trmUnCZ .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-u83trmUnCZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u83trmUnCZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u83trmUnCZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u83trmUnCZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u83trmUnCZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u83trmUnCZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u83trmUnCZ .navbar.navbar-short {
  min-height: 80px;
}
.cid-u83trmUnCZ .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u83trmUnCZ .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u83trmUnCZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u83trmUnCZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u83trmUnCZ .dropdown-item.active,
.cid-u83trmUnCZ .dropdown-item:active {
  background-color: transparent;
}
.cid-u83trmUnCZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u83trmUnCZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u83trmUnCZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u83trmUnCZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bfbdb7;
}
.cid-u83trmUnCZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u83trmUnCZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u83trmUnCZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u83trmUnCZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u83trmUnCZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u83trmUnCZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u83trmUnCZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u83trmUnCZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u83trmUnCZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u83trmUnCZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u83trmUnCZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u83trmUnCZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u83trmUnCZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u83trmUnCZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u83trmUnCZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u83trmUnCZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u83trmUnCZ .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-u83trmUnCZ .navbar {
    height: 70px;
  }
  .cid-u83trmUnCZ .navbar.opened {
    height: auto;
  }
  .cid-u83trmUnCZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u83trnttJL {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #023936;
}
.cid-u83trnttJL .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-u83trnttJL .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-u83trnttJL .row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83trnttJL .item-text {
  padding: 0 32px 55px;
}
.cid-u83trnttJL .text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .cid-u83trnttJL .text-container {
    flex-wrap: wrap;
  }
}
.cid-u83trnttJL .mbr-section-title {
  flex-grow: 1;
  line-height: 65px!important;
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u83trnttJL .mbr-section-title {
    font-size: 79px;
    line-height: 87px!important;
  }
}
.cid-u83trnttJL .text {
  color: #3d3d3d;
}
.cid-u83trnttJL .link-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 50px;
  width: 18%;
}
@media (max-width: 767px) {
  .cid-u83trnttJL .link-wrap {
    width: 100%;
  }
}
.cid-u83trnttJL .emerging-underline-link {
  color: #3d3d3d;
}
.cid-u83trnttJL .item-image {
  padding: 0 32px;
  max-height: 100vh;
}
.cid-u83trnYxIn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #023936;
}
.cid-u83trnYxIn blockquote {
  border-color: #ffe885;
  border-radius: 4px;
  background-color: #024a46;
}
.cid-u83trnYxIn .mbr-text {
  color: #fafafa;
}
.cid-u83trolfps {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bfbdb7;
}
.cid-u83trolfps .list-border {
  border-bottom: 2px solid #aac69b;
}
.cid-u83trolfps .list1 {
  padding: 80px 1rem;
}
.cid-u83trolfps .mbr-text {
  padding-bottom: 40px;
  color: #fff0b0;
}
.cid-u83trolfps .list-border {
  padding-bottom: 160px;
}
.cid-u83trolfps .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u83trolfps .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u83trolfps .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u83trolfps .counter-container ol li a:hover {
  opacity: .85;
}
.cid-u83trolfps .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: -3px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #191919;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u83trolfps .list-border {
    padding-bottom: 60px;
  }
}
@media (max-width: 425px) {
  .cid-u83trolfps .list-border {
    padding-bottom: 40px;
  }
}
.cid-u83trolfps .mbr-section-title {
  color: #000000;
}
.cid-u83troHDSh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83troHDSh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83troHDSh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83troHDSh .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u83troHDSh .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u83troHDSh .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83troHDSh .card-wrapper {
    padding: 4rem;
  }
}
.cid-u83troHDSh .mbr-text,
.cid-u83troHDSh .mbr-section-btn {
  color: #000000;
}
.cid-u83troHDSh .card-title,
.cid-u83troHDSh .card-box {
  text-align: left;
  color: #000000;
}
.cid-u83trp6UC6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83trp6UC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trp6UC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83trp6UC6 .container {
    padding: 0 22px;
  }
}
.cid-u83trp6UC6 .row {
  justify-content: space-between;
}
.cid-u83trp6UC6 .row .card {
  justify-content: center;
}
.cid-u83trp6UC6 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u83trp6UC6 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u83trp6UC6 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-u83trp6UC6 .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u83trp6UC6 .image-wrapper img {
  height: 850px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u83trp6UC6 .image-wrapper img {
    height: 350px;
  }
}
.cid-u83trp6UC6 .mbr-section-title {
  color: #000000;
}
.cid-u83trp6UC6 .mbr-text {
  color: #101010;
  text-align: center;
}
.cid-u83trp6UC6 .mbr-section-title,
.cid-u83trp6UC6 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u83trpBqu3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83trpBqu3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trpBqu3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83trpBqu3 .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u83trpBqu3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u83trpBqu3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83trpBqu3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-u83trpBqu3 .mbr-text,
.cid-u83trpBqu3 .mbr-section-btn {
  color: #000000;
}
.cid-u83trpBqu3 .card-title,
.cid-u83trpBqu3 .card-box {
  text-align: left;
  color: #030822;
}
.cid-u83trpZul7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-u83trpZul7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trpZul7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83trpZul7 .container {
    padding: 0 22px;
  }
}
.cid-u83trpZul7 .items-wrapper {
  justify-content: center;
  margin: 0 -6px;
}
.cid-u83trpZul7 .items-wrapper .item {
  padding: 0 6px;
}
.cid-u83trpZul7 .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-u83trpZul7 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u83trpZul7 .mbr-section-btn {
  margin-bottom: 55px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u83trpZul7 .mbr-section-btn {
    margin-bottom: 32px;
  }
}
.cid-u83trpZul7 .desc-wrapper .mbr-desc {
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 28px;
}
.cid-u83trpZul7 .item {
  margin-bottom: 12px;
}
.cid-u83trpZul7 .item .item-wrapper {
  padding: 32px 24px 24px;
  border-radius: 15px !important;
  border: 1px solid #000000;
  height: 100%;
}
.cid-u83trpZul7 .item .item-wrapper .card-box .tag-wrapper {
  margin-bottom: 16px;
}
.cid-u83trpZul7 .item .item-wrapper .card-box .tag-wrapper .card-tag {
  padding: 0 16px;
  display: inline-flex;
  border: 1px solid #000000;
  border-radius: 15px;
}
.cid-u83trpZul7 .item .item-wrapper .card-box .card-title {
  margin-bottom: 18px;
}
.cid-u83trpZul7 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u83trpZul7 .mbr-section-title {
  color: #000000;
}
.cid-u83trpZul7 .mbr-desc {
  color: #000000;
}
.cid-u83trpZul7 .card-title {
  color: #000000;
}
.cid-u83trpZul7 .card-tag {
  color: #000000;
}
.cid-u83trpZul7 .card-text {
  color: #000000;
}
.cid-u83trqBAQ7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83trqBAQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trqBAQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83trqBAQ7 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u83trqBAQ7 .mbr-section-title {
  color: #fafafa;
  text-align: left;
}
.cid-u83trqBAQ7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u83trr0mxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
  flex-direction: column;
  justify-content: center;
}
.cid-u83trr0mxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trr0mxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83trr0mxq .container {
    padding: 0 16px;
  }
}
.cid-u83trr0mxq .row {
  justify-content: space-between;
}
.cid-u83trr0mxq .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u83trr0mxq .panel-group {
  border: 1px solid #f18886;
  background-color: #023936;
}
.cid-u83trr0mxq .panel-group .card {
  position: relative;
  border-top: 1px solid #f18886;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-u83trr0mxq .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-u83trr0mxq .panel-group .card:first-child {
  border-top: none;
}
.cid-u83trr0mxq .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #6d93d7;
  margin-left: 30px;
  background-color: #bfbdb7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #66c2ee;
  color: #ffffff;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #023936;
}
.cid-u83trr0mxq .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-u83trr0mxq .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-u83trr0mxq .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u83trr0mxq .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u83trr0mxq .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-u83trr0mxq .mbr-desc {
  color: #030822;
  text-align: center;
}
.cid-u83trr0mxq .panel-title-edit {
  color: #ffe161;
}
.cid-u83trr0mxq .panel-text {
  color: #000000;
}
.cid-u83trrP99s {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #023936;
}
.cid-u83trrP99s img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.cid-u83trrP99s .mbr-iconfont-1 {
  color: #f0ad4e;
  font-size: 1rem;
  transition: 0.7s;
}
.cid-u83trrP99s .mbr-section-title {
  margin-bottom: 4rem;
}
.cid-u83trrP99s .mbr-section-subtitle {
  color: #e9204f;
  margin-bottom: 1.5rem;
}
.cid-u83trrP99s .card-img {
  margin-bottom: 1.3rem;
}
.cid-u83trrP99s .card-title {
  margin-bottom: 1.5rem;
}
.cid-u83trrP99s .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u83trrP99s .card {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u83trrP99s .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u83trrP99s .row {
    padding: 0 1rem;
  }
  .cid-u83trrP99s .card-inner {
    padding: 3.3rem 2.5rem;
  }
}
.cid-u83trrP99s .card-inner {
  background-color: #ffffff;
  transition: 0.3s;
  border: 2px solid rgba(255, 153, 102, 0);
}
.cid-u83trrP99s .card:hover .card-inner {
  border: 2px solid #ff9966;
}
.cid-u83trrP99s .mbr-text {
  margin-bottom: 1.3rem;
  color: #828282;
}
.cid-u83trrP99s .card-people {
  display: flex;
  align-items: center;
}
.cid-u83trrP99s .user_image {
  margin-right: 1rem;
}
.cid-u83trrP99s .mbr-author-desc {
  color: #e9204f;
  font-weight: 500;
}
.cid-u83trrP99s .mbr-text,
.cid-u83trrP99s .link {
  color: #101010;
  text-align: center;
}
.cid-u83trsVWjB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfbdb7;
}
.cid-u83trsVWjB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trsVWjB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u83trsVWjB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83trsVWjB .row {
  flex-direction: row-reverse;
}
.cid-u83trsVWjB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83trsVWjB .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83trsVWjB .mbr-text {
  color: #030822;
}
.cid-u83trsVWjB .mbr-section-title {
  color: #030822;
}
.cid-u83trtqwMk {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #023936;
}
.cid-u83trtqwMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trtqwMk .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-u83trtqwMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83trtqwMk h1 {
  max-width: 800px;
}
.cid-u83trtqwMk p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-u83trtqwMk .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #e43f3f !important;
}
.cid-u83trtqwMk .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-u83trtqwMk .btn div {
  overflow: hidden;
}
.cid-u83trtqwMk .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-u83trtqwMk {
    align-items: center;
  }
  .cid-u83trtqwMk .row {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u83trtqwMk .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u83trtqwMk {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u83trtqwMk .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u83trtqwMk .content-wrap {
    width: 100%;
  }
}
.cid-u83trtqwMk .mbr-section-subtitle,
.cid-u83trtqwMk .line {
  color: #ffffff;
}
.cid-u83trtqwMk .mbr-text,
.cid-u83trtqwMk .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-u83trtqwMk .mbr-section-title {
  color: #ffffff;
}
.cid-u83trtRqMV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83trtRqMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trtRqMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83trtRqMV .video-wrapper iframe {
  width: 100%;
}
.cid-u83trtRqMV .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #47b5ed;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u83trtRqMV .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-u83trtRqMV .video-block {
  position: relative;
  z-index: 1;
}
.cid-u83trtRqMV .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-u83trtRqMV .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u83trtRqMV .video-block .image-absolute {
    display: none;
  }
}
.cid-u83truhdiy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83truhdiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83truhdiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83truhdiy .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-u83truhdiy .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-u83truhdiy .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u83truhdiy .container {
    padding: 0 16px;
  }
}
.cid-u83truhdiy .row {
  justify-content: space-between;
}
.cid-u83truhdiy .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u83truhdiy .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u83truhdiy .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u83truhdiy .content-wrapper {
  position: relative;
}
.cid-u83truhdiy .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u83truhdiy .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u83truhdiy .mbr-text {
  color: #333333;
}
.cid-u83truhdiy .mbr-section-title,
.cid-u83truhdiy .mbr-section-btn {
  color: #fafafa;
}
.cid-u83truhdiy .mbr-text,
.cid-u83truhdiy .icon-wrapper {
  color: #fafafa;
}
.cid-u83truLGOP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83truLGOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83truLGOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83truLGOP .container {
    padding: 0 22px;
  }
}
.cid-u83truLGOP .row {
  justify-content: center;
}
.cid-u83truLGOP .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u83truLGOP .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u83truLGOP .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
.cid-u83truLGOP .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u83truLGOP .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #ffffff;
}
.cid-u83truLGOP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u83truLGOP .mbr-section-title {
  color: #ffffff;
}
.cid-u83truLGOP .mbr-text {
  color: #030822;
  text-align: left;
}
.cid-u83truLGOP .mbr-section-title,
.cid-u83truLGOP .icon-wrapper {
  text-align: left;
  color: #030822;
}
.cid-u83DXeMiTF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u83DXeMiTF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83DXeMiTF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83DXeMiTF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u83DXeMiTF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u83DXeMiTF .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e43f3f;
}
.cid-u83DXeMiTF .panel-body,
.cid-u83DXeMiTF .card-header {
  padding: 1rem 0;
}
.cid-u83DXeMiTF .panel-title-edit {
  color: #030822;
}
.cid-u83DXeMiTF .panel-text {
  color: #e43f3f;
}
.cid-u83DXeMiTF H3 {
  color: #023936;
  text-align: left;
}
.cid-u83trvdw4I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #023936;
}
.cid-u83trvdw4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trvdw4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83trvdw4I .mbr-section-head {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .cid-u83trvdw4I .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-u83trvdw4I .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u83trvdw4I .mbr-section-title {
  color: #fafafa;
}
.cid-u83trvdw4I .mbr-section-subtitle {
  margin-top: 30px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-u83trvdw4I .mbr-section-subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-u83trvdw4I .mbr-section-subtitle {
    margin-top: 20px;
  }
}
.cid-u83trvdw4I .map-container {
  padding: 0 !important;
}
.cid-u83trvdw4I .google-map {
  height: 850px;
  position: relative;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-u83trvdw4I .google-map {
    height: 520px;
    max-height: 70vh;
  }
}
.cid-u83trvdw4I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u83trvdw4I .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u83trvdw4I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u83trvdw4I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u83trvHAj0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbdb7;
}
.cid-u83trvHAj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83trvHAj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83trvHAj0 .row {
  background: #023936;
  padding: 3rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.3);
}
.cid-u83trvHAj0 li:hover {
  color: #e43f3f;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-u83trvHAj0 .col-lg-3 {
    max-width: 20%;
  }
}
.cid-u83trvHAj0 .mbr-iconfont {
  color: #151515;
  opacity: 0.7;
  transition: all 0.3s;
}
.cid-u83trvHAj0 .mbr-iconfont:hover {
  opacity: 1;
}
.cid-u83trvHAj0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83trvHAj0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-u83trvHAj0 .soc-item {
    margin: 0 0.6rem;
  }
}
@media (max-width: 767px) {
  .cid-u83trvHAj0 .row {
    text-align: center;
  }
  .cid-u83trvHAj0 .social-row {
    justify-content: center;
  }
}
.cid-u83trvHAj0 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83trvHAj0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83trvHAj0 .list {
    margin-bottom: 0rem;
  }
}
.cid-u83trvHAj0 .list,
.cid-u83trvHAj0 .mbr-text {
  color: #ffffff;
}
.cid-u83trvHAj0 H5 {
  color: #000000;
}
.cid-u83trvHAj0 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u83trvHAj0 .copyright {
  color: #ffffff;
}
.cid-u83ts3LEDn .navbar-dropdown {
  position: relative !important;
}
.cid-u83ts3LEDn .navbar-logo {
  margin-right: 1rem !important;
}
.cid-u83ts3LEDn .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-u83ts3LEDn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u83ts3LEDn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u83ts3LEDn .dropdown-item:hover,
.cid-u83ts3LEDn .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u83ts3LEDn .dropdown-item:hover span {
  color: white;
}
.cid-u83ts3LEDn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u83ts3LEDn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u83ts3LEDn .nav-dropdown .link {
  padding: 0 1.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u83ts3LEDn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u83ts3LEDn .nav-link {
  position: relative;
}
.cid-u83ts3LEDn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u83ts3LEDn .container {
    flex-wrap: nowrap;
  }
}
.cid-u83ts3LEDn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u83ts3LEDn .dropdown-menu,
.cid-u83ts3LEDn .navbar.opened {
  background: #bfbdb7 !important;
}
.cid-u83ts3LEDn .nav-item:focus,
.cid-u83ts3LEDn .nav-link:focus {
  outline: none;
}
.cid-u83ts3LEDn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u83ts3LEDn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u83ts3LEDn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u83ts3LEDn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u83ts3LEDn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u83ts3LEDn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u83ts3LEDn .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bfbdb7;
}
.cid-u83ts3LEDn .navbar.opened {
  transition: all 0.3s;
}
.cid-u83ts3LEDn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u83ts3LEDn .navbar .navbar-logo img {
  width: auto;
}
.cid-u83ts3LEDn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u83ts3LEDn .navbar.collapsed {
  justify-content: center;
}
.cid-u83ts3LEDn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u83ts3LEDn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u83ts3LEDn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u83ts3LEDn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u83ts3LEDn .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-u83ts3LEDn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u83ts3LEDn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u83ts3LEDn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u83ts3LEDn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u83ts3LEDn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u83ts3LEDn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u83ts3LEDn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u83ts3LEDn .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-u83ts3LEDn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u83ts3LEDn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u83ts3LEDn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u83ts3LEDn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u83ts3LEDn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u83ts3LEDn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u83ts3LEDn .navbar.navbar-short {
  min-height: 80px;
}
.cid-u83ts3LEDn .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u83ts3LEDn .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u83ts3LEDn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u83ts3LEDn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u83ts3LEDn .dropdown-item.active,
.cid-u83ts3LEDn .dropdown-item:active {
  background-color: transparent;
}
.cid-u83ts3LEDn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u83ts3LEDn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u83ts3LEDn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u83ts3LEDn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bfbdb7;
}
.cid-u83ts3LEDn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u83ts3LEDn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u83ts3LEDn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u83ts3LEDn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u83ts3LEDn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u83ts3LEDn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u83ts3LEDn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u83ts3LEDn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u83ts3LEDn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u83ts3LEDn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u83ts3LEDn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u83ts3LEDn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u83ts3LEDn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u83ts3LEDn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u83ts3LEDn .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u83ts3LEDn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u83ts3LEDn .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-u83ts3LEDn .navbar {
    height: 70px;
  }
  .cid-u83ts3LEDn .navbar.opened {
    height: auto;
  }
  .cid-u83ts3LEDn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u83ts4f90N {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #023936;
}
.cid-u83ts4f90N .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-u83ts4f90N .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-u83ts4f90N .row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83ts4f90N .item-text {
  padding: 0 32px 55px;
}
.cid-u83ts4f90N .text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .cid-u83ts4f90N .text-container {
    flex-wrap: wrap;
  }
}
.cid-u83ts4f90N .mbr-section-title {
  flex-grow: 1;
  line-height: 65px!important;
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u83ts4f90N .mbr-section-title {
    font-size: 79px;
    line-height: 87px!important;
  }
}
.cid-u83ts4f90N .text {
  color: #3d3d3d;
}
.cid-u83ts4f90N .link-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 50px;
  width: 18%;
}
@media (max-width: 767px) {
  .cid-u83ts4f90N .link-wrap {
    width: 100%;
  }
}
.cid-u83ts4f90N .emerging-underline-link {
  color: #3d3d3d;
}
.cid-u83ts4f90N .item-image {
  padding: 0 32px;
  max-height: 100vh;
}
.cid-u83ts4xwuv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #023936;
}
.cid-u83ts4xwuv blockquote {
  border-color: #ffe885;
  border-radius: 4px;
  background-color: #024a46;
}
.cid-u83ts4xwuv .mbr-text {
  color: #fafafa;
}
.cid-u83ts4VCXC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bfbdb7;
}
.cid-u83ts4VCXC .list-border {
  border-bottom: 2px solid #aac69b;
}
.cid-u83ts4VCXC .list1 {
  padding: 80px 1rem;
}
.cid-u83ts4VCXC .mbr-text {
  padding-bottom: 40px;
  color: #fff0b0;
}
.cid-u83ts4VCXC .list-border {
  padding-bottom: 160px;
}
.cid-u83ts4VCXC .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u83ts4VCXC .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u83ts4VCXC .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u83ts4VCXC .counter-container ol li a:hover {
  opacity: .85;
}
.cid-u83ts4VCXC .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: -3px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #191919;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u83ts4VCXC .list-border {
    padding-bottom: 60px;
  }
}
@media (max-width: 425px) {
  .cid-u83ts4VCXC .list-border {
    padding-bottom: 40px;
  }
}
.cid-u83ts4VCXC .mbr-section-title {
  color: #000000;
}
.cid-u83ts5gMWp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83ts5gMWp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts5gMWp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83ts5gMWp .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u83ts5gMWp .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u83ts5gMWp .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83ts5gMWp .card-wrapper {
    padding: 4rem;
  }
}
.cid-u83ts5gMWp .mbr-text,
.cid-u83ts5gMWp .mbr-section-btn {
  color: #000000;
}
.cid-u83ts5gMWp .card-title,
.cid-u83ts5gMWp .card-box {
  text-align: left;
  color: #000000;
}
.cid-u83ts5ERWp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83ts5ERWp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts5ERWp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83ts5ERWp .container {
    padding: 0 22px;
  }
}
.cid-u83ts5ERWp .row {
  justify-content: space-between;
}
.cid-u83ts5ERWp .row .card {
  justify-content: center;
}
.cid-u83ts5ERWp .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u83ts5ERWp .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u83ts5ERWp .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-u83ts5ERWp .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u83ts5ERWp .image-wrapper img {
  height: 850px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u83ts5ERWp .image-wrapper img {
    height: 350px;
  }
}
.cid-u83ts5ERWp .mbr-section-title {
  color: #000000;
}
.cid-u83ts5ERWp .mbr-text {
  color: #101010;
  text-align: center;
}
.cid-u83ts5ERWp .mbr-section-title,
.cid-u83ts5ERWp .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u83ts63EDg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83ts63EDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts63EDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83ts63EDg .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u83ts63EDg .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u83ts63EDg .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83ts63EDg .card-wrapper {
    padding: 4rem;
  }
}
.cid-u83ts63EDg .mbr-text,
.cid-u83ts63EDg .mbr-section-btn {
  color: #000000;
}
.cid-u83ts63EDg .card-title,
.cid-u83ts63EDg .card-box {
  text-align: left;
  color: #030822;
}
.cid-u83ts6n3s3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-u83ts6n3s3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts6n3s3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83ts6n3s3 .container {
    padding: 0 22px;
  }
}
.cid-u83ts6n3s3 .items-wrapper {
  justify-content: center;
  margin: 0 -6px;
}
.cid-u83ts6n3s3 .items-wrapper .item {
  padding: 0 6px;
}
.cid-u83ts6n3s3 .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-u83ts6n3s3 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u83ts6n3s3 .mbr-section-btn {
  margin-bottom: 55px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u83ts6n3s3 .mbr-section-btn {
    margin-bottom: 32px;
  }
}
.cid-u83ts6n3s3 .desc-wrapper .mbr-desc {
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 28px;
}
.cid-u83ts6n3s3 .item {
  margin-bottom: 12px;
}
.cid-u83ts6n3s3 .item .item-wrapper {
  padding: 32px 24px 24px;
  border-radius: 15px !important;
  border: 1px solid #000000;
  height: 100%;
}
.cid-u83ts6n3s3 .item .item-wrapper .card-box .tag-wrapper {
  margin-bottom: 16px;
}
.cid-u83ts6n3s3 .item .item-wrapper .card-box .tag-wrapper .card-tag {
  padding: 0 16px;
  display: inline-flex;
  border: 1px solid #000000;
  border-radius: 15px;
}
.cid-u83ts6n3s3 .item .item-wrapper .card-box .card-title {
  margin-bottom: 18px;
}
.cid-u83ts6n3s3 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u83ts6n3s3 .mbr-section-title {
  color: #000000;
}
.cid-u83ts6n3s3 .mbr-desc {
  color: #000000;
}
.cid-u83ts6n3s3 .card-title {
  color: #000000;
}
.cid-u83ts6n3s3 .card-tag {
  color: #000000;
}
.cid-u83ts6n3s3 .card-text {
  color: #000000;
}
.cid-u83ts6UeId {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83ts6UeId .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts6UeId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83ts6UeId .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u83ts6UeId .mbr-section-title {
  color: #fafafa;
  text-align: left;
}
.cid-u83ts6UeId .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u83ts7gl2G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
  flex-direction: column;
  justify-content: center;
}
.cid-u83ts7gl2G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts7gl2G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83ts7gl2G .container {
    padding: 0 16px;
  }
}
.cid-u83ts7gl2G .row {
  justify-content: space-between;
}
.cid-u83ts7gl2G .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u83ts7gl2G .panel-group {
  border: 1px solid #f18886;
  background-color: #023936;
}
.cid-u83ts7gl2G .panel-group .card {
  position: relative;
  border-top: 1px solid #f18886;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-u83ts7gl2G .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-u83ts7gl2G .panel-group .card:first-child {
  border-top: none;
}
.cid-u83ts7gl2G .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #6d93d7;
  margin-left: 30px;
  background-color: #bfbdb7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #66c2ee;
  color: #ffffff;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #023936;
}
.cid-u83ts7gl2G .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-u83ts7gl2G .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-u83ts7gl2G .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u83ts7gl2G .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u83ts7gl2G .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-u83ts7gl2G .mbr-desc {
  color: #030822;
  text-align: center;
}
.cid-u83ts7gl2G .panel-title-edit {
  color: #ffe161;
}
.cid-u83ts7gl2G .panel-text {
  color: #000000;
}
.cid-u83ts7T36j {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #023936;
}
.cid-u83ts7T36j img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.cid-u83ts7T36j .mbr-iconfont-1 {
  color: #f0ad4e;
  font-size: 1rem;
  transition: 0.7s;
}
.cid-u83ts7T36j .mbr-section-title {
  margin-bottom: 4rem;
}
.cid-u83ts7T36j .mbr-section-subtitle {
  color: #e9204f;
  margin-bottom: 1.5rem;
}
.cid-u83ts7T36j .card-img {
  margin-bottom: 1.3rem;
}
.cid-u83ts7T36j .card-title {
  margin-bottom: 1.5rem;
}
.cid-u83ts7T36j .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u83ts7T36j .card {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u83ts7T36j .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u83ts7T36j .row {
    padding: 0 1rem;
  }
  .cid-u83ts7T36j .card-inner {
    padding: 3.3rem 2.5rem;
  }
}
.cid-u83ts7T36j .card-inner {
  background-color: #ffffff;
  transition: 0.3s;
  border: 2px solid rgba(255, 153, 102, 0);
}
.cid-u83ts7T36j .card:hover .card-inner {
  border: 2px solid #ff9966;
}
.cid-u83ts7T36j .mbr-text {
  margin-bottom: 1.3rem;
  color: #828282;
}
.cid-u83ts7T36j .card-people {
  display: flex;
  align-items: center;
}
.cid-u83ts7T36j .user_image {
  margin-right: 1rem;
}
.cid-u83ts7T36j .mbr-author-desc {
  color: #e9204f;
  font-weight: 500;
}
.cid-u83ts7T36j .mbr-text,
.cid-u83ts7T36j .link {
  color: #101010;
  text-align: center;
}
.cid-u83ts8NRdC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfbdb7;
}
.cid-u83ts8NRdC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts8NRdC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u83ts8NRdC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83ts8NRdC .row {
  flex-direction: row-reverse;
}
.cid-u83ts8NRdC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83ts8NRdC .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83ts8NRdC .mbr-text {
  color: #030822;
}
.cid-u83ts8NRdC .mbr-section-title {
  color: #030822;
}
.cid-u83ts9bEi3 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #023936;
}
.cid-u83ts9bEi3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts9bEi3 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-u83ts9bEi3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83ts9bEi3 h1 {
  max-width: 800px;
}
.cid-u83ts9bEi3 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-u83ts9bEi3 .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #e43f3f !important;
}
.cid-u83ts9bEi3 .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-u83ts9bEi3 .btn div {
  overflow: hidden;
}
.cid-u83ts9bEi3 .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-u83ts9bEi3 {
    align-items: center;
  }
  .cid-u83ts9bEi3 .row {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u83ts9bEi3 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u83ts9bEi3 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u83ts9bEi3 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u83ts9bEi3 .content-wrap {
    width: 100%;
  }
}
.cid-u83ts9bEi3 .mbr-section-subtitle,
.cid-u83ts9bEi3 .line {
  color: #ffffff;
}
.cid-u83ts9bEi3 .mbr-text,
.cid-u83ts9bEi3 .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-u83ts9bEi3 .mbr-section-title {
  color: #ffffff;
}
.cid-u83ts9CtmM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83ts9CtmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts9CtmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83ts9CtmM .video-wrapper iframe {
  width: 100%;
}
.cid-u83ts9CtmM .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #47b5ed;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u83ts9CtmM .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-u83ts9CtmM .video-block {
  position: relative;
  z-index: 1;
}
.cid-u83ts9CtmM .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-u83ts9CtmM .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u83ts9CtmM .video-block .image-absolute {
    display: none;
  }
}
.cid-u83ts9Z0uw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83ts9Z0uw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83ts9Z0uw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83ts9Z0uw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-u83ts9Z0uw .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-u83ts9Z0uw .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u83ts9Z0uw .container {
    padding: 0 16px;
  }
}
.cid-u83ts9Z0uw .row {
  justify-content: space-between;
}
.cid-u83ts9Z0uw .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u83ts9Z0uw .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u83ts9Z0uw .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u83ts9Z0uw .content-wrapper {
  position: relative;
}
.cid-u83ts9Z0uw .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u83ts9Z0uw .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u83ts9Z0uw .mbr-text {
  color: #333333;
}
.cid-u83ts9Z0uw .mbr-section-title,
.cid-u83ts9Z0uw .mbr-section-btn {
  color: #fafafa;
}
.cid-u83ts9Z0uw .mbr-text,
.cid-u83ts9Z0uw .icon-wrapper {
  color: #fafafa;
}
.cid-u83tsaHe9M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83tsaHe9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsaHe9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83tsaHe9M .container {
    padding: 0 22px;
  }
}
.cid-u83tsaHe9M .row {
  justify-content: center;
}
.cid-u83tsaHe9M .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u83tsaHe9M .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u83tsaHe9M .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
.cid-u83tsaHe9M .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u83tsaHe9M .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #ffffff;
}
.cid-u83tsaHe9M .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u83tsaHe9M .mbr-section-title {
  color: #ffffff;
}
.cid-u83tsaHe9M .mbr-text {
  color: #030822;
  text-align: left;
}
.cid-u83tsaHe9M .mbr-section-title,
.cid-u83tsaHe9M .icon-wrapper {
  text-align: left;
  color: #030822;
}
.cid-u85sf3tYv0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u85sf3tYv0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u85sf3tYv0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u85sf3tYv0 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u85sf3tYv0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u85sf3tYv0 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e43f3f;
}
.cid-u85sf3tYv0 .panel-body,
.cid-u85sf3tYv0 .card-header {
  padding: 1rem 0;
}
.cid-u85sf3tYv0 .panel-title-edit {
  color: #030822;
}
.cid-u85sf3tYv0 .panel-text {
  color: #e43f3f;
}
.cid-u85sf3tYv0 H3 {
  color: #023936;
  text-align: left;
}
.cid-u83tsb7E09 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #023936;
}
.cid-u83tsb7E09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsb7E09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsb7E09 .mbr-section-head {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .cid-u83tsb7E09 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-u83tsb7E09 .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u83tsb7E09 .mbr-section-title {
  color: #fafafa;
}
.cid-u83tsb7E09 .mbr-section-subtitle {
  margin-top: 30px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-u83tsb7E09 .mbr-section-subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-u83tsb7E09 .mbr-section-subtitle {
    margin-top: 20px;
  }
}
.cid-u83tsb7E09 .map-container {
  padding: 0 !important;
}
.cid-u83tsb7E09 .google-map {
  height: 850px;
  position: relative;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-u83tsb7E09 .google-map {
    height: 520px;
    max-height: 70vh;
  }
}
.cid-u83tsb7E09 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u83tsb7E09 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u83tsb7E09 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u83tsb7E09 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u85mcYj66W {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u85mcYj66W .mbr-fallback-image.disabled {
  display: none;
}
.cid-u85mcYj66W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u85mcYj66W .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u85mcYj66W .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u85mcYj66W .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e43f3f;
}
.cid-u85mcYj66W .panel-body,
.cid-u85mcYj66W .card-header {
  padding: 1rem 0;
}
.cid-u85mcYj66W .panel-title-edit {
  color: #030822;
}
.cid-u85mcYj66W .panel-text {
  color: #e43f3f;
}
.cid-u85mcYj66W H3 {
  color: #023936;
  text-align: left;
}
.cid-u83tsbAsrr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbdb7;
}
.cid-u83tsbAsrr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsbAsrr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsbAsrr .row {
  background: #023936;
  padding: 3rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.3);
}
.cid-u83tsbAsrr li:hover {
  color: #e43f3f;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-u83tsbAsrr .col-lg-3 {
    max-width: 20%;
  }
}
.cid-u83tsbAsrr .mbr-iconfont {
  color: #151515;
  opacity: 0.7;
  transition: all 0.3s;
}
.cid-u83tsbAsrr .mbr-iconfont:hover {
  opacity: 1;
}
.cid-u83tsbAsrr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83tsbAsrr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-u83tsbAsrr .soc-item {
    margin: 0 0.6rem;
  }
}
@media (max-width: 767px) {
  .cid-u83tsbAsrr .row {
    text-align: center;
  }
  .cid-u83tsbAsrr .social-row {
    justify-content: center;
  }
}
.cid-u83tsbAsrr .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83tsbAsrr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83tsbAsrr .list {
    margin-bottom: 0rem;
  }
}
.cid-u83tsbAsrr .list,
.cid-u83tsbAsrr .mbr-text {
  color: #ffffff;
}
.cid-u83tsbAsrr H5 {
  color: #000000;
}
.cid-u83tsbAsrr .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u83tsbAsrr .copyright {
  color: #ffffff;
}
.cid-u83tsEYTks .navbar-dropdown {
  position: relative !important;
}
.cid-u83tsEYTks .navbar-logo {
  margin-right: 1rem !important;
}
.cid-u83tsEYTks .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-u83tsEYTks .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u83tsEYTks .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u83tsEYTks .dropdown-item:hover,
.cid-u83tsEYTks .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u83tsEYTks .dropdown-item:hover span {
  color: white;
}
.cid-u83tsEYTks .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u83tsEYTks .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u83tsEYTks .nav-dropdown .link {
  padding: 0 1.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u83tsEYTks .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u83tsEYTks .nav-link {
  position: relative;
}
.cid-u83tsEYTks .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u83tsEYTks .container {
    flex-wrap: nowrap;
  }
}
.cid-u83tsEYTks .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u83tsEYTks .dropdown-menu,
.cid-u83tsEYTks .navbar.opened {
  background: #bfbdb7 !important;
}
.cid-u83tsEYTks .nav-item:focus,
.cid-u83tsEYTks .nav-link:focus {
  outline: none;
}
.cid-u83tsEYTks .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u83tsEYTks .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u83tsEYTks .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u83tsEYTks .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u83tsEYTks .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u83tsEYTks .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u83tsEYTks .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bfbdb7;
}
.cid-u83tsEYTks .navbar.opened {
  transition: all 0.3s;
}
.cid-u83tsEYTks .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u83tsEYTks .navbar .navbar-logo img {
  width: auto;
}
.cid-u83tsEYTks .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u83tsEYTks .navbar.collapsed {
  justify-content: center;
}
.cid-u83tsEYTks .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u83tsEYTks .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u83tsEYTks .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u83tsEYTks .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u83tsEYTks .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-u83tsEYTks .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u83tsEYTks .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u83tsEYTks .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u83tsEYTks .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u83tsEYTks .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u83tsEYTks .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u83tsEYTks .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u83tsEYTks .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-u83tsEYTks .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u83tsEYTks .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u83tsEYTks .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u83tsEYTks .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u83tsEYTks .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u83tsEYTks .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u83tsEYTks .navbar.navbar-short {
  min-height: 80px;
}
.cid-u83tsEYTks .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u83tsEYTks .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u83tsEYTks .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u83tsEYTks .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u83tsEYTks .dropdown-item.active,
.cid-u83tsEYTks .dropdown-item:active {
  background-color: transparent;
}
.cid-u83tsEYTks .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u83tsEYTks .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u83tsEYTks .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u83tsEYTks .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bfbdb7;
}
.cid-u83tsEYTks .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u83tsEYTks .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u83tsEYTks ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u83tsEYTks .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u83tsEYTks button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u83tsEYTks button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u83tsEYTks button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u83tsEYTks button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u83tsEYTks button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u83tsEYTks button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u83tsEYTks nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u83tsEYTks nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u83tsEYTks nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u83tsEYTks nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u83tsEYTks .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u83tsEYTks a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u83tsEYTks .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-u83tsEYTks .navbar {
    height: 70px;
  }
  .cid-u83tsEYTks .navbar.opened {
    height: auto;
  }
  .cid-u83tsEYTks .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u83tsFqZnh {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #023936;
}
.cid-u83tsFqZnh .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-u83tsFqZnh .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-u83tsFqZnh .row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83tsFqZnh .item-text {
  padding: 0 32px 55px;
}
.cid-u83tsFqZnh .text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .cid-u83tsFqZnh .text-container {
    flex-wrap: wrap;
  }
}
.cid-u83tsFqZnh .mbr-section-title {
  flex-grow: 1;
  line-height: 65px!important;
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u83tsFqZnh .mbr-section-title {
    font-size: 79px;
    line-height: 87px!important;
  }
}
.cid-u83tsFqZnh .text {
  color: #3d3d3d;
}
.cid-u83tsFqZnh .link-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 50px;
  width: 18%;
}
@media (max-width: 767px) {
  .cid-u83tsFqZnh .link-wrap {
    width: 100%;
  }
}
.cid-u83tsFqZnh .emerging-underline-link {
  color: #3d3d3d;
}
.cid-u83tsFqZnh .item-image {
  padding: 0 32px;
  max-height: 100vh;
}
.cid-u83tsFKPkk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #023936;
}
.cid-u83tsFKPkk blockquote {
  border-color: #ffe885;
  border-radius: 4px;
  background-color: #024a46;
}
.cid-u83tsFKPkk .mbr-text {
  color: #fafafa;
}
.cid-u83tsG1dpq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bfbdb7;
}
.cid-u83tsG1dpq .list-border {
  border-bottom: 2px solid #aac69b;
}
.cid-u83tsG1dpq .list1 {
  padding: 80px 1rem;
}
.cid-u83tsG1dpq .mbr-text {
  padding-bottom: 40px;
  color: #fff0b0;
}
.cid-u83tsG1dpq .list-border {
  padding-bottom: 160px;
}
.cid-u83tsG1dpq .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u83tsG1dpq .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u83tsG1dpq .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u83tsG1dpq .counter-container ol li a:hover {
  opacity: .85;
}
.cid-u83tsG1dpq .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: -3px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #191919;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u83tsG1dpq .list-border {
    padding-bottom: 60px;
  }
}
@media (max-width: 425px) {
  .cid-u83tsG1dpq .list-border {
    padding-bottom: 40px;
  }
}
.cid-u83tsG1dpq .mbr-section-title {
  color: #000000;
}
.cid-u83tsGqObv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83tsGqObv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsGqObv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsGqObv .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u83tsGqObv .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u83tsGqObv .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83tsGqObv .card-wrapper {
    padding: 4rem;
  }
}
.cid-u83tsGqObv .mbr-text,
.cid-u83tsGqObv .mbr-section-btn {
  color: #000000;
}
.cid-u83tsGqObv .card-title,
.cid-u83tsGqObv .card-box {
  text-align: left;
  color: #000000;
}
.cid-u83tsGMm81 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83tsGMm81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsGMm81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83tsGMm81 .container {
    padding: 0 22px;
  }
}
.cid-u83tsGMm81 .row {
  justify-content: space-between;
}
.cid-u83tsGMm81 .row .card {
  justify-content: center;
}
.cid-u83tsGMm81 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u83tsGMm81 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u83tsGMm81 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-u83tsGMm81 .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u83tsGMm81 .image-wrapper img {
  height: 850px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u83tsGMm81 .image-wrapper img {
    height: 350px;
  }
}
.cid-u83tsGMm81 .mbr-section-title {
  color: #000000;
}
.cid-u83tsGMm81 .mbr-text {
  color: #101010;
  text-align: center;
}
.cid-u83tsGMm81 .mbr-section-title,
.cid-u83tsGMm81 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u83tsHdOBA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83tsHdOBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsHdOBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsHdOBA .card-wrapper {
  background: #bfbdb7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u83tsHdOBA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u83tsHdOBA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83tsHdOBA .card-wrapper {
    padding: 4rem;
  }
}
.cid-u83tsHdOBA .mbr-text,
.cid-u83tsHdOBA .mbr-section-btn {
  color: #000000;
}
.cid-u83tsHdOBA .card-title,
.cid-u83tsHdOBA .card-box {
  text-align: left;
  color: #030822;
}
.cid-u83tsHyiEX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-u83tsHyiEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsHyiEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83tsHyiEX .container {
    padding: 0 22px;
  }
}
.cid-u83tsHyiEX .items-wrapper {
  justify-content: center;
  margin: 0 -6px;
}
.cid-u83tsHyiEX .items-wrapper .item {
  padding: 0 6px;
}
.cid-u83tsHyiEX .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-u83tsHyiEX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u83tsHyiEX .mbr-section-btn {
  margin-bottom: 55px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u83tsHyiEX .mbr-section-btn {
    margin-bottom: 32px;
  }
}
.cid-u83tsHyiEX .desc-wrapper .mbr-desc {
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 28px;
}
.cid-u83tsHyiEX .item {
  margin-bottom: 12px;
}
.cid-u83tsHyiEX .item .item-wrapper {
  padding: 32px 24px 24px;
  border-radius: 15px !important;
  border: 1px solid #000000;
  height: 100%;
}
.cid-u83tsHyiEX .item .item-wrapper .card-box .tag-wrapper {
  margin-bottom: 16px;
}
.cid-u83tsHyiEX .item .item-wrapper .card-box .tag-wrapper .card-tag {
  padding: 0 16px;
  display: inline-flex;
  border: 1px solid #000000;
  border-radius: 15px;
}
.cid-u83tsHyiEX .item .item-wrapper .card-box .card-title {
  margin-bottom: 18px;
}
.cid-u83tsHyiEX .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u83tsHyiEX .mbr-section-title {
  color: #000000;
}
.cid-u83tsHyiEX .mbr-desc {
  color: #000000;
}
.cid-u83tsHyiEX .card-title {
  color: #000000;
}
.cid-u83tsHyiEX .card-tag {
  color: #000000;
}
.cid-u83tsHyiEX .card-text {
  color: #000000;
}
.cid-u83tsI1hYA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83tsI1hYA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsI1hYA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsI1hYA .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u83tsI1hYA .mbr-section-title {
  color: #fafafa;
  text-align: left;
}
.cid-u83tsI1hYA .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-u83tsIrqks {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
  flex-direction: column;
  justify-content: center;
}
.cid-u83tsIrqks .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsIrqks .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83tsIrqks .container {
    padding: 0 16px;
  }
}
.cid-u83tsIrqks .row {
  justify-content: space-between;
}
.cid-u83tsIrqks .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u83tsIrqks .panel-group {
  border: 1px solid #f18886;
  background-color: #023936;
}
.cid-u83tsIrqks .panel-group .card {
  position: relative;
  border-top: 1px solid #f18886;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-u83tsIrqks .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-u83tsIrqks .panel-group .card:first-child {
  border-top: none;
}
.cid-u83tsIrqks .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #6d93d7;
  margin-left: 30px;
  background-color: #bfbdb7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #66c2ee;
  color: #ffffff;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #023936;
}
.cid-u83tsIrqks .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-u83tsIrqks .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-u83tsIrqks .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u83tsIrqks .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u83tsIrqks .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-u83tsIrqks .mbr-desc {
  color: #030822;
  text-align: center;
}
.cid-u83tsIrqks .panel-title-edit {
  color: #ffe161;
}
.cid-u83tsIrqks .panel-text {
  color: #000000;
}
.cid-u83tsJ0w6H {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #023936;
}
.cid-u83tsJ0w6H img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.cid-u83tsJ0w6H .mbr-iconfont-1 {
  color: #f0ad4e;
  font-size: 1rem;
  transition: 0.7s;
}
.cid-u83tsJ0w6H .mbr-section-title {
  margin-bottom: 4rem;
}
.cid-u83tsJ0w6H .mbr-section-subtitle {
  color: #e9204f;
  margin-bottom: 1.5rem;
}
.cid-u83tsJ0w6H .card-img {
  margin-bottom: 1.3rem;
}
.cid-u83tsJ0w6H .card-title {
  margin-bottom: 1.5rem;
}
.cid-u83tsJ0w6H .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u83tsJ0w6H .card {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u83tsJ0w6H .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u83tsJ0w6H .row {
    padding: 0 1rem;
  }
  .cid-u83tsJ0w6H .card-inner {
    padding: 3.3rem 2.5rem;
  }
}
.cid-u83tsJ0w6H .card-inner {
  background-color: #ffffff;
  transition: 0.3s;
  border: 2px solid rgba(255, 153, 102, 0);
}
.cid-u83tsJ0w6H .card:hover .card-inner {
  border: 2px solid #ff9966;
}
.cid-u83tsJ0w6H .mbr-text {
  margin-bottom: 1.3rem;
  color: #828282;
}
.cid-u83tsJ0w6H .card-people {
  display: flex;
  align-items: center;
}
.cid-u83tsJ0w6H .user_image {
  margin-right: 1rem;
}
.cid-u83tsJ0w6H .mbr-author-desc {
  color: #e9204f;
  font-weight: 500;
}
.cid-u83tsJ0w6H .mbr-text,
.cid-u83tsJ0w6H .link {
  color: #101010;
  text-align: center;
}
.cid-u83tsJR2tC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfbdb7;
}
.cid-u83tsJR2tC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsJR2tC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u83tsJR2tC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83tsJR2tC .row {
  flex-direction: row-reverse;
}
.cid-u83tsJR2tC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83tsJR2tC .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83tsJR2tC .mbr-text {
  color: #030822;
}
.cid-u83tsJR2tC .mbr-section-title {
  color: #030822;
}
.cid-u83tsKlguO {
  display: flex;
  padding-top: 2rem;
  padding-bottom: 8rem;
  background-color: #023936;
}
.cid-u83tsKlguO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsKlguO .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-u83tsKlguO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsKlguO h1 {
  max-width: 800px;
}
.cid-u83tsKlguO p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-u83tsKlguO .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #e43f3f !important;
}
.cid-u83tsKlguO .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-u83tsKlguO .btn div {
  overflow: hidden;
}
.cid-u83tsKlguO .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-u83tsKlguO {
    align-items: center;
  }
  .cid-u83tsKlguO .row {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u83tsKlguO .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u83tsKlguO {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u83tsKlguO .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u83tsKlguO .content-wrap {
    width: 100%;
  }
}
.cid-u83tsKlguO .mbr-section-subtitle,
.cid-u83tsKlguO .line {
  color: #ffffff;
}
.cid-u83tsKlguO .mbr-text,
.cid-u83tsKlguO .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-u83tsKlguO .mbr-section-title {
  color: #ffffff;
}
.cid-u83tsKL4xX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83tsKL4xX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsKL4xX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsKL4xX .video-wrapper iframe {
  width: 100%;
}
.cid-u83tsKL4xX .app-video-wrapper::before {
  font-size: 100px;
  line-height: 100px;
  border: 10px solid #47b5ed;
  border-radius: 50%;
  padding: 28px 28px 28px 30px;
  top: 45%;
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u83tsKL4xX .app-video-wrapper::before {
    font-size: 70px;
    line-height: 70px;
    border: none;
    padding: 0;
    top: 50%;
    left: 50%;
  }
}
.cid-u83tsKL4xX .video-block {
  position: relative;
  z-index: 1;
}
.cid-u83tsKL4xX .video-block .video-wrapper iframe {
  z-index: 1;
  position: relative;
}
.cid-u83tsKL4xX .video-block .image-absolute {
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 300px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u83tsKL4xX .video-block .image-absolute {
    display: none;
  }
}
.cid-u83tsLcvnz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #023936;
}
.cid-u83tsLcvnz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsLcvnz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsLcvnz .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-u83tsLcvnz .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-u83tsLcvnz .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u83tsLcvnz .container {
    padding: 0 16px;
  }
}
.cid-u83tsLcvnz .row {
  justify-content: space-between;
}
.cid-u83tsLcvnz .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u83tsLcvnz .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u83tsLcvnz .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u83tsLcvnz .content-wrapper {
  position: relative;
}
.cid-u83tsLcvnz .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u83tsLcvnz .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u83tsLcvnz .mbr-text {
  color: #333333;
}
.cid-u83tsLcvnz .mbr-section-title,
.cid-u83tsLcvnz .mbr-section-btn {
  color: #fafafa;
}
.cid-u83tsLcvnz .mbr-text,
.cid-u83tsLcvnz .icon-wrapper {
  color: #fafafa;
}
.cid-u83tsLBz6e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbdb7;
}
.cid-u83tsLBz6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsLBz6e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u83tsLBz6e .container {
    padding: 0 22px;
  }
}
.cid-u83tsLBz6e .row {
  justify-content: center;
}
.cid-u83tsLBz6e .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-u83tsLBz6e .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u83tsLBz6e .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
.cid-u83tsLBz6e .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u83tsLBz6e .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #ffffff;
}
.cid-u83tsLBz6e .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u83tsLBz6e .mbr-section-title {
  color: #ffffff;
}
.cid-u83tsLBz6e .mbr-text {
  color: #030822;
  text-align: left;
}
.cid-u83tsLBz6e .mbr-section-title,
.cid-u83tsLBz6e .icon-wrapper {
  text-align: left;
  color: #030822;
}
.cid-u85w0Ws6vn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u85w0Ws6vn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u85w0Ws6vn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u85w0Ws6vn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u85w0Ws6vn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u85w0Ws6vn .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e43f3f;
}
.cid-u85w0Ws6vn .panel-body,
.cid-u85w0Ws6vn .card-header {
  padding: 1rem 0;
}
.cid-u85w0Ws6vn .panel-title-edit {
  color: #030822;
}
.cid-u85w0Ws6vn .panel-text {
  color: #e43f3f;
}
.cid-u85w0Ws6vn H3 {
  color: #023936;
  text-align: left;
}
.cid-u83tsM4Zs7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #023936;
}
.cid-u83tsM4Zs7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsM4Zs7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsM4Zs7 .mbr-section-head {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .cid-u83tsM4Zs7 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-u83tsM4Zs7 .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u83tsM4Zs7 .mbr-section-title {
  color: #fafafa;
}
.cid-u83tsM4Zs7 .mbr-section-subtitle {
  margin-top: 30px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-u83tsM4Zs7 .mbr-section-subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-u83tsM4Zs7 .mbr-section-subtitle {
    margin-top: 20px;
  }
}
.cid-u83tsM4Zs7 .map-container {
  padding: 0 !important;
}
.cid-u83tsM4Zs7 .google-map {
  height: 850px;
  position: relative;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-u83tsM4Zs7 .google-map {
    height: 520px;
    max-height: 70vh;
  }
}
.cid-u83tsM4Zs7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u83tsM4Zs7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u83tsM4Zs7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u83tsM4Zs7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u83tsMynwy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbdb7;
}
.cid-u83tsMynwy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u83tsMynwy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u83tsMynwy .row {
  background: #023936;
  padding: 3rem;
  margin: 0;
  border-radius: 1rem;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.3);
}
.cid-u83tsMynwy li:hover {
  color: #e43f3f;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-u83tsMynwy .col-lg-3 {
    max-width: 20%;
  }
}
.cid-u83tsMynwy .mbr-iconfont {
  color: #151515;
  opacity: 0.7;
  transition: all 0.3s;
}
.cid-u83tsMynwy .mbr-iconfont:hover {
  opacity: 1;
}
.cid-u83tsMynwy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u83tsMynwy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-u83tsMynwy .soc-item {
    margin: 0 0.6rem;
  }
}
@media (max-width: 767px) {
  .cid-u83tsMynwy .row {
    text-align: center;
  }
  .cid-u83tsMynwy .social-row {
    justify-content: center;
  }
}
.cid-u83tsMynwy .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83tsMynwy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u83tsMynwy .list {
    margin-bottom: 0rem;
  }
}
.cid-u83tsMynwy .list,
.cid-u83tsMynwy .mbr-text {
  color: #ffffff;
}
.cid-u83tsMynwy H5 {
  color: #000000;
}
.cid-u83tsMynwy .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u83tsMynwy .copyright {
  color: #ffffff;
}
