body {
  font-family: Be Vietnam;
}
.display-1 {
  font-family: 'Lora', serif;
  font-size: 3rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Lora', serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #105b6e !important;
}
.bg-success {
  background-color: #ba898f !important;
}
.bg-info {
  background-color: #b5cbcc !important;
}
.bg-warning {
  background-color: #308990 !important;
}
.bg-danger {
  background-color: #ffbe0b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #105b6e !important;
  border-color: #105b6e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #06242b !important;
  border-color: #06242b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #06242b !important;
  border-color: #06242b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffb703 !important;
  border-color: #ffb703 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b58200 !important;
  border-color: #b58200 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b58200 !important;
  border-color: #b58200 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b5cbcc !important;
  border-color: #b5cbcc !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #88abad !important;
  border-color: #88abad !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #88abad !important;
  border-color: #88abad !important;
}
.btn-success,
.btn-success:active {
  background-color: #ba898f !important;
  border-color: #ba898f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #9c5b63 !important;
  border-color: #9c5b63 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9c5b63 !important;
  border-color: #9c5b63 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #308990 !important;
  border-color: #308990 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #1d5257 !important;
  border-color: #1d5257 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1d5257 !important;
  border-color: #1d5257 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffbe0b !important;
  border-color: #ffbe0b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #be8b00 !important;
  border-color: #be8b00 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #be8b00 !important;
  border-color: #be8b00 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #105b6e;
  color: #105b6e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #105b6e;
  border-color: #105b6e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #105b6e !important;
  border-color: #105b6e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #ffb703;
  color: #ffb703;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ffb703;
  border-color: #ffb703;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb703 !important;
  border-color: #ffb703 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #b5cbcc;
  color: #b5cbcc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #b5cbcc;
  border-color: #b5cbcc;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b5cbcc !important;
  border-color: #b5cbcc !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ba898f;
  color: #ba898f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #ba898f;
  border-color: #ba898f;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ba898f !important;
  border-color: #ba898f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #308990;
  color: #308990;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #308990;
  border-color: #308990;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #308990 !important;
  border-color: #308990 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #ffbe0b;
  color: #ffbe0b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ffbe0b;
  border-color: #ffbe0b;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbe0b !important;
  border-color: #ffbe0b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.text-primary {
  color: #105b6e !important;
}
.text-secondary {
  color: #ffb703 !important;
}
.text-success {
  color: #ba898f !important;
}
.text-info {
  color: #b5cbcc !important;
}
.text-warning {
  color: #308990 !important;
}
.text-danger {
  color: #ffbe0b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1da5c7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ffd469 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #e0c9cc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f1f5f6 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #5dc1c9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ffd971 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b5cbcc;
}
.alert-warning {
  background-color: #308990;
}
.alert-danger {
  background-color: #ffbe0b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #105b6e;
  border-color: #105b6e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #105b6e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #20b7dd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e9d9db;
}
.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: #70c8cf;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff4d7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #105b6e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #105b6e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #105b6e;
  border-bottom-color: #105b6e;
}
.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: #105b6e !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: #ffb703 !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='%23105b6e' %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-vfycvJdQnE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vfycvJdQnE nav.navbar {
  position: fixed;
}
.cid-vfycvJdQnE .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-vfycvJdQnE .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vfycvJdQnE .dropdown-item {
  border: none !important;
  background: #f6f5f4 !important;
  font-weight: 400;
}
.cid-vfycvJdQnE .dropdown-item:hover,
.cid-vfycvJdQnE .dropdown-item:focus {
  background: #ffffff !important;
  color: #b5cbcc !important;
}
.cid-vfycvJdQnE .dropdown-item:hover span {
  color: white;
}
.cid-vfycvJdQnE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfycvJdQnE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfycvJdQnE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfycvJdQnE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfycvJdQnE .nav-link {
  position: relative;
}
.cid-vfycvJdQnE .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-vfycvJdQnE .container {
    flex-wrap: nowrap;
  }
}
.cid-vfycvJdQnE .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vfycvJdQnE .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vfycvJdQnE .dropdown-menu,
.cid-vfycvJdQnE .navbar.opened {
  background: #ffffff !important;
}
.cid-vfycvJdQnE .nav-item:focus,
.cid-vfycvJdQnE .nav-link:focus {
  outline: none;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfycvJdQnE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfycvJdQnE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfycvJdQnE .navbar {
  min-height: 55px !important;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vfycvJdQnE .navbar.opened {
  transition: all 0.3s;
}
.cid-vfycvJdQnE .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 16px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  box-shadow: 0 3px 5px -2px #ffffff inset;
}
.cid-vfycvJdQnE .navbar .navbar-logo img {
  border-radius: 0 !important;
  width: auto;
}
.cid-vfycvJdQnE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfycvJdQnE .navbar.collapsed {
  justify-content: center;
}
.cid-vfycvJdQnE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfycvJdQnE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfycvJdQnE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vfycvJdQnE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfycvJdQnE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfycvJdQnE .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-vfycvJdQnE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfycvJdQnE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfycvJdQnE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfycvJdQnE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfycvJdQnE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfycvJdQnE .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-vfycvJdQnE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfycvJdQnE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-item:hover {
    box-shadow: 0 3px 5px -2px #ffffff inset;
  }
  .cid-vfycvJdQnE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vfycvJdQnE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfycvJdQnE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfycvJdQnE .navbar.navbar-short {
  min-height: 96px;
}
.cid-vfycvJdQnE .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vfycvJdQnE .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vfycvJdQnE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vfycvJdQnE .navbar-brand .navbar-caption:hover,
.cid-vfycvJdQnE .navbar-brand .navbar-caption:focus {
  color: #b5cbcc !important;
}
.cid-vfycvJdQnE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfycvJdQnE .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vfycvJdQnE .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #b5cbcc !important;
}
.cid-vfycvJdQnE .dropdown-item.active,
.cid-vfycvJdQnE .dropdown-item:active {
  background-color: transparent;
}
.cid-vfycvJdQnE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfycvJdQnE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfycvJdQnE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vfycvJdQnE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfycvJdQnE ul.navbar-nav {
  flex-wrap: wrap;
  background-color: transparent !important;
  border: none !important;
}
@media (min-width: 991px) {
  .cid-vfycvJdQnE ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vfycvJdQnE .navbar-buttons {
  text-align: center;
  width: auto;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
@media (min-width: 991px) {
  .cid-vfycvJdQnE .navbar-buttons {
    text-align: left;
  }
}
.cid-vfycvJdQnE .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-vfycvJdQnE .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vfycvJdQnE button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #212121;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfycvJdQnE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfycvJdQnE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfycvJdQnE .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-vfycvJdQnE .navbar {
    height: 70px;
  }
  .cid-vfycvJdQnE .navbar.opened {
    height: auto;
  }
  .cid-vfycvJdQnE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfycvJdQnE .navbar-nav {
  margin: 0 !important;
  justify-content: center !important;
  gap: 0;
}
.cid-vfycvJdQnE .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vfycvJdQnE .nav-item .nav-link {
  padding: 8px 16px !important;
  margin: 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vfycvJdQnE .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vfycvJdQnE .nav-item .nav-link:hover {
  background-color: transparent;
  color: #b5cbcc !important;
  box-shadow: 0 3px 5px -2px #ffffff inset;
}
.cid-vfycvJdQnE .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-vfycvJdQnE .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vfycvJdQnE .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vfycvJdQnE .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vfycvJdQnE .navbar {
    justify-content: flex-start !important;
  }
  .cid-vfycvJdQnE .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vfycvJdQnE .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vfycvJdQnE .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vfycvJdQnE .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vfycvJdQnE .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vfycvJdQnE .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
  .cid-vfycvJdQnE .navbar-buttons {
    width: 100%;
    justify-content: center !important;
    margin-left: 0 !important;
    padding-bottom: 1rem;
  }
  .cid-vfycvJdQnE .navbar-brand .navbar-logo {
    display: block !important;
    padding-left: 12px;
  }
  .cid-vfycvJdQnE .navbar-brand .navbar-logo img {
    height: 36px !important;
    width: auto;
  }
  .cid-vfycvJdQnE .logo-bar,
  .cid-vfycvJdQnE .logo-divider {
    display: none !important;
  }
}
.cid-vfycvJdQnE .content-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
}
.cid-vfycvJdQnE .navbar,
.cid-vfycvJdQnE .navbar-dropdown {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
}
.cid-vfycvJdQnE .mbr-section-btn,
.cid-vfycvJdQnE .mbr-section-title,
.cid-vfycvJdQnE .icon-wrapper {
  text-align: center;
}
.cid-vfycvJdQnE .mbr-section-title,
.cid-vfycvJdQnE .mbr-section-btn,
.cid-vfycvJdQnE .icon-wrapper {
  color: #313131;
}
.cid-vfycvJdQnE .mbr-section-btn a.btn.btn-info {
  color: #000 !important;
}
.cid-vfycvJdQnE .mbr-section-btn .btn {
  padding: 16px 22px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.cid-vfycvJdQnE .navbar-brand,
.cid-vfycvJdQnE .content-wrap {
  min-height: 55px !important;
}
.cid-vfycvJdQnE .navbar-collapse {
  justify-content: center !important;
}
.cid-vfycvJdQnE .nav-item .nav-link {
  padding: 6px 14px !important;
  margin: 2px !important;
}
.cid-vfycvJdQnE .logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 !important;
  padding: 0.6rem 0;
  background: #ffffff;
  height: 80px;
  overflow: hidden;
  transition: height 0.35s ease, padding 0.35s ease;
}
.cid-vfycvJdQnE .logo-bar img {
  width: auto;
  height: 60px;
}
.cid-vfycvJdQnE .logo-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
  width: 100%;
  opacity: 1;
  transition: opacity 0.35s ease;
}
@media (max-width: 992px) {
  .cid-vfycvJdQnE .logo-bar img {
    height: 44px;
  }
}
@media (max-width: 576px) {
  .cid-vfycvJdQnE .logo-bar img {
    height: 34px;
  }
}
@media (min-width: 992px) {
  .cid-vfycvJdQnE .navbar-brand .navbar-logo {
    display: none !important;
  }
}
.cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  border-radius: 0 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  background: #f6f5f4 !important;
  padding: 4px 0 !important;
}
.cid-vfycvJdQnE .dropdown-item:hover,
.cid-vfycvJdQnE .dropdown-item:focus {
  background: #f6f5f4 !important;
}
.cid-uYy83RWZba {
  padding-top: 195px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/premium-photo-1665990294269-f1d6c35ab9d1-1.png");
  background-position: 80% 20%;
}
.cid-uYy83RWZba H2 {
  color: #ffffff;
  text-align: left;
}
.cid-uYy83RWZba .row {
  justify-content: flex-start;
}
.cid-uYy83RWZba H1 {
  color: #ffffff;
}
.cid-uYy83RWZba .mbr-text,
.cid-uYy83RWZba .mbr-section-btn {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-uYy83RWZba .container {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uYy83RWZba .mbr-overlay {
    opacity: 0.3 !important;
  }
}
.cid-uYy83RWZba .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYy83RWZba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYy83RWZba .mbr-section-btn,
.cid-uYy83RWZba .mbr-section-title,
.cid-uYy83RWZba .icon-wrapper {
  text-align: left;
}
.cid-uYy83RWZba .mbr-section-btn,
.cid-uYy83RWZba .icon-wrapper {
  color: #313131;
}
.cid-uYy83RWZba .mbr-section-btn a.btn.btn-info {
  color: #000 !important;
}
.cid-uYy83RWZba .mbr-section-btn .btn {
  padding: 16px 22px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.cid-uYuivRihc5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uYuivRihc5 H3 {
  color: #095258;
}
.cid-uYuivRihc5 H4 {
  color: #d58f76;
}
.cid-uYuivRihc5 img {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-uYuivRihc5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuivRihc5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf9tGrk9E6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vf9tGrk9E6 H3 {
  color: #095258;
}
.cid-vf9tGrk9E6 H4 {
  color: #d58f76;
}
.cid-vf9tGrk9E6 img {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-vf9tGrk9E6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf9tGrk9E6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb1ed3FMKP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vb1ed3FMKP .mbr-iconfont {
  font-size: 3rem;
  color: #ffffff;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #b5cbcc;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-vb1ed3FMKP .card-wrapper {
    padding: 0 4rem;
  }
}
.cid-vb1ed3FMKP .card2 {
  border-right: 1px solid #b5cbcc;
}
.cid-vb1ed3FMKP .card1 {
  border-right: 1px solid #b5cbcc;
}
.cid-vb1ed3FMKP h4 {
  margin: 0;
}
.cid-vb1ed3FMKP .card-text {
  color: #999999;
  text-align: center;
}
.cid-vb1ed3FMKP .mbr-text {
  color: #200960;
}
.cid-vb1ed3FMKP .card-title {
  color: #095258;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vb1ed3FMKP .item {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-rT65dQ8bMp {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-3958.jpeg");
}
@media (min-width: 1500px) {
  .cid-rT65dQ8bMp .container {
    max-width: 1400px;
  }
}
.cid-rT65dQ8bMp .mbr-text,
.cid-rT65dQ8bMp .mbr-section-btn {
  color: #999999;
}
.cid-rT65dQ8bMp .quote {
  color: #095258;
}
.cid-rT65dQ8bMp .mbr-text {
  color: #000000;
}
.cid-rT65dQ8bMp .mbr-title {
  color: #095258;
}
.cid-uYy39SOjqa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uYy39SOjqa .container {
    max-width: 1400px;
  }
}
.cid-uYy39SOjqa img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-uYy39SOjqa .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-uYy39SOjqa .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #006665;
}
.cid-uYy39SOjqa .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-uYy39SOjqa .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-uYy39SOjqa .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uYy39SOjqa .mbr-text,
.cid-uYy39SOjqa .link-align {
  color: #111111;
}
.cid-uYy39SOjqa .card-title,
.cid-uYy39SOjqa .card-box {
  color: #d58f76;
}
.cid-uYy39SOjqa .mbr-section-subtitle,
.cid-uYy39SOjqa .card-box {
  color: #095258;
}
.cid-uYy39SOjqa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYy39SOjqa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYy39SOjqa .main-title {
  color: #095258;
}
.cid-vaa3X83xnK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-vaa3X83xnK .container {
    max-width: 1400px;
  }
}
.cid-vaa3X83xnK img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-vaa3X83xnK .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vaa3X83xnK .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #006665;
}
.cid-vaa3X83xnK .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-vaa3X83xnK .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-vaa3X83xnK .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-vaa3X83xnK .mbr-text,
.cid-vaa3X83xnK .link-align {
  color: #555555;
}
.cid-vaa3X83xnK .card-title,
.cid-vaa3X83xnK .card-box {
  color: #d58f76;
}
.cid-vaa3X83xnK .mbr-section-subtitle,
.cid-vaa3X83xnK .card-box {
  color: #095258;
}
.cid-vaa3X83xnK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaa3X83xnK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaa3X83xnK .main-title {
  color: #635a51;
}
.cid-vaa4O2OxOt {
  padding-top: 5rem;
  background-image: url("../../../assets/images/whatsapp-image-2026-03-29-at-15.02.57-4.jpeg");
}
.cid-vaa4O2OxOt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaa4O2OxOt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaa4O2OxOt .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}
.cid-vaa4O2OxOt .content-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vaa4O2OxOt .content-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vaa4O2OxOt .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f2aa86;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #96a69a;
}
.cid-vaa4O2OxOt .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vaa4O2OxOt .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaa4O2OxOt .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vaa4O2OxOt .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vaa4O2OxOt .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vaa4O2OxOt .mbr-section-title {
  color: #0f172a;
  text-align: center;
}
.cid-vaa4O2OxOt .mbr-text,
.cid-vaa4O2OxOt .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vaa4O2OxOt .mbr-section-btn,
.cid-vaa4O2OxOt .mbr-section-title,
.cid-vaa4O2OxOt .icon-wrapper {
  text-align: center;
}
.cid-vaa4O2OxOt .mbr-section-title,
.cid-vaa4O2OxOt .mbr-section-btn,
.cid-vaa4O2OxOt .icon-wrapper {
  color: #095258;
}
.cid-vaa4O2OxOt .mbr-section-btn a.btn.btn-info {
  color: #000000 !important;
}
.cid-vaa4O2OxOt .mbr-section-btn .btn {
  padding: 16px 22px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.cid-vf9HaSNGQZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vf9HaSNGQZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf9HaSNGQZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf9HaSNGQZ .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vf9HaSNGQZ .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vf9HaSNGQZ .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vf9HaSNGQZ .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vf9HaSNGQZ .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-vf9HaSNGQZ .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf9HaSNGQZ .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #095258, #095258 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vf9HaSNGQZ .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vf9HaSNGQZ .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vf9HaSNGQZ .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vf9HaSNGQZ .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vf9HaSNGQZ .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vf9HaSNGQZ .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vf9HaSNGQZ .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vf9HaSNGQZ .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vf9HaSNGQZ .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vf9HaSNGQZ .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vf9HaSNGQZ .mbr-label,
.cid-vf9HaSNGQZ .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf9HaSNGQZ .mbr-section-title,
.cid-vf9HaSNGQZ .title-wrapper {
  color: #095258 !important;
  text-align: left;
}
.cid-vf9HaSNGQZ .mbr-text {
  color: #515151;
}
.cid-vf9JahI5Et {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vf9JahI5Et .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf9JahI5Et .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf9JahI5Et .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vf9JahI5Et .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vf9JahI5Et .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vf9JahI5Et .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vf9JahI5Et .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-vf9JahI5Et .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf9JahI5Et .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #095258, #095258 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vf9JahI5Et .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vf9JahI5Et .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vf9JahI5Et .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vf9JahI5Et .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vf9JahI5Et .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vf9JahI5Et .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vf9JahI5Et .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vf9JahI5Et .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vf9JahI5Et .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vf9JahI5Et .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vf9JahI5Et .mbr-label,
.cid-vf9JahI5Et .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf9JahI5Et .mbr-section-title,
.cid-vf9JahI5Et .title-wrapper {
  color: #095258;
  text-align: left;
}
.cid-vf9JahI5Et .mbr-text {
  color: #515151;
}
.cid-rT65eXPVNW {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rT65eXPVNW .carousel {
  z-index: 2;
  position: relative;
}
.cid-rT65eXPVNW .user {
  padding: 0!important;
}
.cid-rT65eXPVNW .mbr-iconfont {
  font-size: 3rem;
  color: #308990 !important;
}
.cid-rT65eXPVNW .user_name {
  margin: 0;
  color: #000000;
}
.cid-rT65eXPVNW .user_image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  position: relative;
}
.cid-rT65eXPVNW .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rT65eXPVNW .user_image:before {
  content: '';
  position: absolute;
  height: 198px;
  width: 198px;
  left: 0px;
  top: 0px;
  background: transparent;
  border-radius: 100%;
  z-index: 0;
}
.cid-rT65eXPVNW .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rT65eXPVNW .carousel-item.active,
.cid-rT65eXPVNW .carousel-item-next,
.cid-rT65eXPVNW .carousel-item-prev {
  display: flex;
}
.cid-rT65eXPVNW .carousel-controls a {
  font-size: 2rem;
}
.cid-rT65eXPVNW .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 100px;
  padding: 10px;
  border-radius: 50%;
  color: #308990 !important;
  background: transparent;
  opacity: 0.8!important;
}
.cid-rT65eXPVNW .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-rT65eXPVNW ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-rT65eXPVNW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #308990;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-rT65eXPVNW .carousel-indicators li:hover {
  opacity: 1;
}
.cid-rT65eXPVNW .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-rT65eXPVNW .carousel-indicators .active:before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: -3px;
  top: -3px;
  background: transparent;
  border-radius: 100%;
  z-index: -1;
}
.cid-rT65eXPVNW .user_text {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-rT65eXPVNW .carousel-controls a span {
    top: auto;
    bottom: -40px;
  }
}
.cid-rT65eXPVNW .title,
.cid-rT65eXPVNW .line-align {
  color: #111111;
}
.cid-vaa7zYVxfp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vaa7zYVxfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaa7zYVxfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaa7zYVxfp .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-vaa7zYVxfp .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-vaa7zYVxfp .content-wrapper {
    width: 100%;
  }
}
.cid-vaa7zYVxfp .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vaa7zYVxfp .content-wrapper .text-wrapper .mbr-text {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-vaa7zYVxfp .content-wrapper .mbr-section-btn {
  margin-top: 12px;
}
@media (max-width: 992px) {
  .cid-vaa7zYVxfp .content-wrapper .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-vaa7zYVxfp .mbr-section-title {
  color: #181824;
}
.cid-vaa7zYVxfp .mbr-text,
.cid-vaa7zYVxfp .text-wrapper {
  color: #54547e;
  text-align: center;
}
.cid-vaa7zYVxfp .mbr-section-title,
.cid-vaa7zYVxfp .mbr-section-btn,
.cid-vaa7zYVxfp .icon-wrapper {
  text-align: center;
}
.cid-vuPscMSU7B {
  padding-top: 5rem;
  background-image: url("../../../assets/images/02-1.jpeg");
}
.cid-vuPscMSU7B .mbr-fallback-image.disabled {
  display: none;
}
.cid-vuPscMSU7B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vuPscMSU7B .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}
.cid-vuPscMSU7B .content-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vuPscMSU7B .content-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vuPscMSU7B .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f2aa86;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #96a69a;
}
.cid-vuPscMSU7B .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vuPscMSU7B .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vuPscMSU7B .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vuPscMSU7B .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vuPscMSU7B .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vuPscMSU7B .mbr-section-title {
  color: #0f172a;
  text-align: center;
}
.cid-vuPscMSU7B .mbr-text,
.cid-vuPscMSU7B .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vuPscMSU7B .mbr-section-btn,
.cid-vuPscMSU7B .mbr-section-title,
.cid-vuPscMSU7B .icon-wrapper {
  text-align: center;
}
.cid-vuPscMSU7B .mbr-section-title,
.cid-vuPscMSU7B .mbr-section-btn,
.cid-vuPscMSU7B .icon-wrapper {
  color: #095258;
}
.cid-vuPscMSU7B .mbr-section-btn a.btn.btn-info {
  color: #000000 !important;
}
.cid-vuPscMSU7B .mbr-section-btn .btn {
  padding: 16px 22px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.cid-vaasUPxq3H {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaasUPxq3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaasUPxq3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaasUPxq3H .content-wrap {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vaasUPxq3H .content-wrap {
    margin-bottom: 40px;
  }
}
.cid-vaasUPxq3H .content-wrap .label-wrapper {
  padding-bottom: 12px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 24px;
}
.cid-vaasUPxq3H .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cid-vaasUPxq3H .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: flex;
  font-size: 24px;
}
.cid-vaasUPxq3H .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vaasUPxq3H .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vaasUPxq3H .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vaasUPxq3H .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vaasUPxq3H .content-wrap .card {
  justify-content: center;
}
.cid-vaasUPxq3H .panel-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-vaasUPxq3H .panel-group {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vaasUPxq3H .panel-group .content-wrap:nth-child(2) {
    margin-top: 20px;
  }
}
.cid-vaasUPxq3H .panel-group .card {
  position: relative;
  padding: 0;
  margin-top: 24px;
  background-color: #f6f5f4;
  border: 1px solid #308990;
  border-radius: 0 !important;
  overflow: hidden;
}
.cid-vaasUPxq3H .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-vaasUPxq3H .panel-group .card {
    margin-top: 20px;
  }
  .cid-vaasUPxq3H .panel-group .card:first-child {
    margin-top: 0;
  }
}
.cid-vaasUPxq3H .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vaasUPxq3H .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.cid-vaasUPxq3H .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-vaasUPxq3H .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vaasUPxq3H .panel-group .card .card-header .panel-title .icon-wrapper {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }
}
.cid-vaasUPxq3H .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #308990;
}
.cid-vaasUPxq3H .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(45deg);
}
.cid-vaasUPxq3H .panel-group .card .panel-collapse .panel-body {
  padding: 20px;
  border-top: 1px solid #308990;
}
.cid-vaasUPxq3H .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-vaasUPxq3H .mbr-label {
  color: #9ba9c4;
}
.cid-vaasUPxq3H .mbr-section-title {
  color: #232323;
}
.cid-vaasUPxq3H .mbr-text,
.cid-vaasUPxq3H .text-wrapper {
  color: #9ba9c4;
}
.cid-vaasUPxq3H .panel-title-edit {
  color: #232323;
}
.cid-vaasUPxq3H .panel-text {
  color: #9ba9c4;
}
.cid-vaasUPxq3H .mbr-label,
.cid-vaasUPxq3H .label-wrapper {
  color: #635a51;
  text-align: left;
}
.cid-vaasUPxq3H .panel-text,
.cid-vaasUPxq3H .panel-body {
  color: #313131;
}
.cid-vaa7xYc4yx {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vaa7xYc4yx .item-wrapper {
  width: 100%;
}
.cid-vaa7xYc4yx .left-side {
  text-align: left;
  width: 100%;
  padding-right: 5rem;
}
.cid-vaa7xYc4yx .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-vaa7xYc4yx .mbr-section-btn {
    margin-bottom: 25px;
  }
  .cid-vaa7xYc4yx .mbr-section-title {
    margin-top: 25px;
  }
  .cid-vaa7xYc4yx .form-row {
    padding-top: 10px;
  }
}
.cid-vaa7xYc4yx .mbr-section-subtitle {
  color: #000000;
  padding-top: 10px;
  margin-top: 0;
}
.cid-vaa7xYc4yx .mbr-link {
  width: 100%;
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cid-vaa7xYc4yx .mbr-section-title {
  color: #000000;
  padding-bottom: 0px;
}
.cid-vaa7xYc4yx .item-content {
  color: #000000;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  text-align: center;
}
.cid-vaa7xYc4yx img,
.cid-vaa7xYc4yx .item-img {
  margin: auto;
  width: auto;
}
.cid-vaa7xYc4yx .lin {
  color: #000000;
  display: inline;
  margin: 0rem 0.5rem 0px 0;
  transition: all 0.2s ease-in-out;
}
.cid-vaa7xYc4yx .lin:hover {
  color: #105b6e;
}
.cid-vaa7xYc4yx .address:hover {
  color: #91a697 !important;
}
.cid-vaa7xYc4yx .bottom {
  text-transform: uppercase;
  display: inline;
}
.cid-vaa7xYc4yx p {
  margin-bottom: 0.5rem;
}
.cid-vaa7xYc4yx .col-auto {
  padding: 0;
  margin-top: 20px;
}
.cid-vaa7xYc4yx input {
  padding: 25px 30px;
  margin: 0;
  border-radius: 0;
  border: 0px;
  outline: 2px solid #cdcdcb;
}
.cid-vaa7xYc4yx textarea {
  padding: 25px 30px;
  margin: 0;
  border-radius: 0;
  border: 0px;
  outline: 2px solid #cdcdcb;
}
.cid-vaa7xYc4yx .form-group {
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.cid-vaa7xYc4yx a {
  font-weight: bold;
}
.cid-vaa7xYc4yx .p {
  display: block;
}
@media (max-width: 990px) {
  .cid-vaa7xYc4yx .first {
    border-bottom: 0px;
  }
  .cid-vaa7xYc4yx .left-side {
    padding: 15px;
  }
  .cid-vaa7xYc4yx .row .right-side {
    padding: 15px 15px 0 15px;
  }
}
.cid-vaa7xYc4yx .form-control:hover {
  outline: 2px solid #cdcdcb;
}
.cid-vaa7xYc4yx .form-control:focus {
  outline: 2px solid #cdcdcb;
}
.cid-vaa7xYc4yx .right-side {
  padding-right: 5rem;
  padding-left: 4rem;
}
.cid-vaa7xYc4yx .address {
  padding: 0;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
.cid-vaa7xYc4yx .address a {
  font-weight: 400;
}
.cid-vaa7xYc4yx .form-row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vaa7xYc4yx .text-primary {
  color: #000000 !important;
}
.cid-vaa7xYc4yx .mbr-section-title,
.cid-vaa7xYc4yx .mbr-link {
  color: #333333;
}
.cid-vaa7xYc4yx .mbr-link,
.cid-vaa7xYc4yx .lin,
.cid-vaa7xYc4yx .align .address {
  color: #111111;
}
.cid-vfaHawbZQE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-vfaHawbZQE .container {
    max-width: 1400px;
  }
}
.cid-vfaHawbZQE img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-vfaHawbZQE .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vfaHawbZQE .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #308990;
}
.cid-vfaHawbZQE .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-vfaHawbZQE .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-vfaHawbZQE .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-vfaHawbZQE .mbr-text,
.cid-vfaHawbZQE .link-align {
  color: #111111;
}
.cid-vfaHawbZQE .card-title,
.cid-vfaHawbZQE .card-box {
  color: #d58f76;
}
.cid-vfaHawbZQE .mbr-section-subtitle,
.cid-vfaHawbZQE .card-box {
  color: #308990;
}
.cid-vfaHawbZQE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfaHawbZQE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfaq4kLXen {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-vfaq4kLXen .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-vfaq4kLXen .copyright,
  .cid-vfaq4kLXen .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-vfaq4kLXen .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-vfaq4kLXen .mbr-text {
  color: #000000;
}
.cid-vfycvJdQnE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vfycvJdQnE nav.navbar {
  position: fixed;
}
.cid-vfycvJdQnE .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-vfycvJdQnE .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vfycvJdQnE .dropdown-item {
  border: none !important;
  background: #f6f5f4 !important;
  font-weight: 400;
}
.cid-vfycvJdQnE .dropdown-item:hover,
.cid-vfycvJdQnE .dropdown-item:focus {
  background: #ffffff !important;
  color: #b5cbcc !important;
}
.cid-vfycvJdQnE .dropdown-item:hover span {
  color: white;
}
.cid-vfycvJdQnE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfycvJdQnE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfycvJdQnE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfycvJdQnE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfycvJdQnE .nav-link {
  position: relative;
}
.cid-vfycvJdQnE .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-vfycvJdQnE .container {
    flex-wrap: nowrap;
  }
}
.cid-vfycvJdQnE .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vfycvJdQnE .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vfycvJdQnE .dropdown-menu,
.cid-vfycvJdQnE .navbar.opened {
  background: #ffffff !important;
}
.cid-vfycvJdQnE .nav-item:focus,
.cid-vfycvJdQnE .nav-link:focus {
  outline: none;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfycvJdQnE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfycvJdQnE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfycvJdQnE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfycvJdQnE .navbar {
  min-height: 55px !important;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vfycvJdQnE .navbar.opened {
  transition: all 0.3s;
}
.cid-vfycvJdQnE .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 16px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  box-shadow: 0 3px 5px -2px #ffffff inset;
}
.cid-vfycvJdQnE .navbar .navbar-logo img {
  border-radius: 0 !important;
  width: auto;
}
.cid-vfycvJdQnE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfycvJdQnE .navbar.collapsed {
  justify-content: center;
}
.cid-vfycvJdQnE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfycvJdQnE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfycvJdQnE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vfycvJdQnE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfycvJdQnE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfycvJdQnE .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-vfycvJdQnE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfycvJdQnE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfycvJdQnE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfycvJdQnE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfycvJdQnE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfycvJdQnE .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-vfycvJdQnE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfycvJdQnE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-vfycvJdQnE .navbar .dropdown-menu .dropdown-item:hover {
    box-shadow: 0 3px 5px -2px #ffffff inset;
  }
  .cid-vfycvJdQnE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vfycvJdQnE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfycvJdQnE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfycvJdQnE .navbar.navbar-short {
  min-height: 96px;
}
.cid-vfycvJdQnE .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vfycvJdQnE .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vfycvJdQnE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vfycvJdQnE .navbar-brand .navbar-caption:hover,
.cid-vfycvJdQnE .navbar-brand .navbar-caption:focus {
  color: #b5cbcc !important;
}
.cid-vfycvJdQnE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfycvJdQnE .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vfycvJdQnE .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #b5cbcc !important;
}
.cid-vfycvJdQnE .dropdown-item.active,
.cid-vfycvJdQnE .dropdown-item:active {
  background-color: transparent;
}
.cid-vfycvJdQnE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfycvJdQnE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfycvJdQnE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vfycvJdQnE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfycvJdQnE ul.navbar-nav {
  flex-wrap: wrap;
  background-color: transparent !important;
  border: none !important;
}
@media (min-width: 991px) {
  .cid-vfycvJdQnE ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vfycvJdQnE .navbar-buttons {
  text-align: center;
  width: auto;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
@media (min-width: 991px) {
  .cid-vfycvJdQnE .navbar-buttons {
    text-align: left;
  }
}
.cid-vfycvJdQnE .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-vfycvJdQnE .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vfycvJdQnE button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #212121;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vfycvJdQnE button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfycvJdQnE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfycvJdQnE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfycvJdQnE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfycvJdQnE .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-vfycvJdQnE .navbar {
    height: 70px;
  }
  .cid-vfycvJdQnE .navbar.opened {
    height: auto;
  }
  .cid-vfycvJdQnE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfycvJdQnE .navbar-nav {
  margin: 0 !important;
  justify-content: center !important;
  gap: 0;
}
.cid-vfycvJdQnE .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vfycvJdQnE .nav-item .nav-link {
  padding: 8px 16px !important;
  margin: 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vfycvJdQnE .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vfycvJdQnE .nav-item .nav-link:hover {
  background-color: transparent;
  color: #b5cbcc !important;
  box-shadow: 0 3px 5px -2px #ffffff inset;
}
.cid-vfycvJdQnE .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-vfycvJdQnE .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vfycvJdQnE .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vfycvJdQnE .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vfycvJdQnE .navbar {
    justify-content: flex-start !important;
  }
  .cid-vfycvJdQnE .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vfycvJdQnE .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vfycvJdQnE .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vfycvJdQnE .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vfycvJdQnE .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vfycvJdQnE .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
  .cid-vfycvJdQnE .navbar-buttons {
    width: 100%;
    justify-content: center !important;
    margin-left: 0 !important;
    padding-bottom: 1rem;
  }
  .cid-vfycvJdQnE .navbar-brand .navbar-logo {
    display: block !important;
    padding-left: 12px;
  }
  .cid-vfycvJdQnE .navbar-brand .navbar-logo img {
    height: 36px !important;
    width: auto;
  }
  .cid-vfycvJdQnE .logo-bar,
  .cid-vfycvJdQnE .logo-divider {
    display: none !important;
  }
}
.cid-vfycvJdQnE .content-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
}
.cid-vfycvJdQnE .navbar,
.cid-vfycvJdQnE .navbar-dropdown {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
}
.cid-vfycvJdQnE .mbr-section-btn,
.cid-vfycvJdQnE .mbr-section-title,
.cid-vfycvJdQnE .icon-wrapper {
  text-align: center;
}
.cid-vfycvJdQnE .mbr-section-title,
.cid-vfycvJdQnE .mbr-section-btn,
.cid-vfycvJdQnE .icon-wrapper {
  color: #313131;
}
.cid-vfycvJdQnE .mbr-section-btn a.btn.btn-info {
  color: #000 !important;
}
.cid-vfycvJdQnE .mbr-section-btn .btn {
  padding: 16px 22px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.cid-vfycvJdQnE .navbar-brand,
.cid-vfycvJdQnE .content-wrap {
  min-height: 55px !important;
}
.cid-vfycvJdQnE .navbar-collapse {
  justify-content: center !important;
}
.cid-vfycvJdQnE .nav-item .nav-link {
  padding: 6px 14px !important;
  margin: 2px !important;
}
.cid-vfycvJdQnE .logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 !important;
  padding: 0.6rem 0;
  background: #ffffff;
  height: 80px;
  overflow: hidden;
  transition: height 0.35s ease, padding 0.35s ease;
}
.cid-vfycvJdQnE .logo-bar img {
  width: auto;
  height: 60px;
}
.cid-vfycvJdQnE .logo-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
  width: 100%;
  opacity: 1;
  transition: opacity 0.35s ease;
}
@media (max-width: 992px) {
  .cid-vfycvJdQnE .logo-bar img {
    height: 44px;
  }
}
@media (max-width: 576px) {
  .cid-vfycvJdQnE .logo-bar img {
    height: 34px;
  }
}
@media (min-width: 992px) {
  .cid-vfycvJdQnE .navbar-brand .navbar-logo {
    display: none !important;
  }
}
.cid-vfycvJdQnE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  border-radius: 0 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  background: #f6f5f4 !important;
  padding: 4px 0 !important;
}
.cid-vfycvJdQnE .dropdown-item:hover,
.cid-vfycvJdQnE .dropdown-item:focus {
  background: #f6f5f4 !important;
}
.cid-vf5rjoSRsT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vf5rjoSRsT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf5rjoSRsT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf5rjoSRsT .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vf5rjoSRsT .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vf5rjoSRsT .content-wrap .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .label-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vf5rjoSRsT .content-wrap .title-wrapper .label-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .label-wrapper .label-wrap .line-wrap {
  height: 6px;
  width: 96px;
  background-image: linear-gradient(90deg, #004aad 0, transparent 100%);
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vf5rjoSRsT .content-wrap .title-wrapper .mbr-section-btn {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.cid-vf5rjoSRsT .content-wrap .image-wrapper img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vf5rjoSRsT .content-wrap .image-wrapper img {
    height: 300px;
  }
}
.cid-vf5rjoSRsT .mbr-label {
  color: #004aad;
}
.cid-vf5rjoSRsT .mbr-section-title {
  color: #004aad;
}
.cid-vf5rjoSRsT .mbr-text {
  color: #111111;
}
.cid-vf5rjoSRsT .mbr-section-title,
.cid-vf5rjoSRsT .mbr-section-btn {
  color: #111111;
}
.cid-vf53MSgjQo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-vf53MSgjQo .container {
    max-width: 1400px;
  }
}
.cid-vf53MSgjQo img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-vf53MSgjQo .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vf53MSgjQo .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #d58f76;
}
.cid-vf53MSgjQo .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-vf53MSgjQo .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-vf53MSgjQo .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-vf53MSgjQo .mbr-text,
.cid-vf53MSgjQo .link-align {
  color: #200960;
}
.cid-vf53MSgjQo .card-title,
.cid-vf53MSgjQo .card-box {
  color: #d58f76;
}
.cid-vf53MSgjQo .mbr-section-subtitle,
.cid-vf53MSgjQo .card-box {
  color: #d58f76;
}
.cid-vf53MSgjQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf53MSgjQo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf53MSgjQo .img-wrapper {
  width: 100%;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cid-vf53MSgjQo .coolors-wrapper {
  width: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vf53MSgjQo .coolors-wrapper > div,
.cid-vf53MSgjQo .coolors-wrapper canvas,
.cid-vf53MSgjQo .coolors-wrapper iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 160px !important;
  height: 160px !important;
}
.cid-vf53MSgjQo .palette-label {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #006665;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.cid-vf5nj3HH8r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-vf5nj3HH8r .container {
    max-width: 1400px;
  }
}
.cid-vf5nj3HH8r img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-vf5nj3HH8r .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vf5nj3HH8r .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #d58f76;
}
.cid-vf5nj3HH8r .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-vf5nj3HH8r .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-vf5nj3HH8r .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-vf5nj3HH8r .mbr-text,
.cid-vf5nj3HH8r .link-align {
  color: #200960;
}
.cid-vf5nj3HH8r .card-title,
.cid-vf5nj3HH8r .card-box {
  color: #d58f76;
}
.cid-vf5nj3HH8r .mbr-section-subtitle,
.cid-vf5nj3HH8r .card-box {
  color: #d58f76;
}
.cid-vf5nj3HH8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf5nj3HH8r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf5nj3HH8r .img-wrapper {
  width: 100%;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cid-vf5nj3HH8r .coolors-wrapper {
  width: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vf5nj3HH8r .coolors-wrapper > div,
.cid-vf5nj3HH8r .coolors-wrapper canvas,
.cid-vf5nj3HH8r .coolors-wrapper iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 160px !important;
  height: 160px !important;
}
.cid-vf5nj3HH8r .palette-label {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #006665;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.cid-vfxyYX0oTQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vfxyYX0oTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfxyYX0oTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfxyYX0oTQ .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vfxyYX0oTQ .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxyYX0oTQ .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vfxyYX0oTQ .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vfxyYX0oTQ .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vfxyYX0oTQ .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #308990, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vfxyYX0oTQ .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vfxyYX0oTQ .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vfxyYX0oTQ .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vfxyYX0oTQ .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vfxyYX0oTQ .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxyYX0oTQ .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vfxyYX0oTQ .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vfxyYX0oTQ .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfxyYX0oTQ .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vfxyYX0oTQ .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vfxyYX0oTQ .mbr-label,
.cid-vfxyYX0oTQ .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vfxyYX0oTQ .mbr-section-title,
.cid-vfxyYX0oTQ .title-wrapper {
  color: #095258;
  text-align: left;
}
.cid-vfxyYX0oTQ .mbr-text {
  color: #515151;
}
.cid-vfxyYX0oTQ .mbr-text,
.cid-vfxyYX0oTQ .mbr-section-btn {
  color: #111111;
}
.cid-vfxyYX0oTQ .testo-nero {
  color: #000000 !important;
}
.cid-vfxE1LqhyF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vfxE1LqhyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfxE1LqhyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfxE1LqhyF .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vfxE1LqhyF .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxE1LqhyF .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vfxE1LqhyF .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vfxE1LqhyF .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vfxE1LqhyF .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #308990, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vfxE1LqhyF .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vfxE1LqhyF .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vfxE1LqhyF .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vfxE1LqhyF .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vfxE1LqhyF .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxE1LqhyF .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vfxE1LqhyF .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vfxE1LqhyF .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfxE1LqhyF .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vfxE1LqhyF .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vfxE1LqhyF .mbr-label,
.cid-vfxE1LqhyF .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vfxE1LqhyF .mbr-section-title,
.cid-vfxE1LqhyF .title-wrapper {
  color: #095258;
  text-align: left;
}
.cid-vfxE1LqhyF .mbr-text {
  color: #515151;
}
.cid-vfxE1LqhyF .mbr-text,
.cid-vfxE1LqhyF .mbr-section-btn {
  color: #111111 !important;
}
.cid-vfxE1LqhyF .testo-nero {
  color: #000000 !important;
}
.cid-vfxGduow64 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vfxGduow64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfxGduow64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfxGduow64 .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vfxGduow64 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxGduow64 .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vfxGduow64 .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vfxGduow64 .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vfxGduow64 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #308990, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vfxGduow64 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vfxGduow64 .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vfxGduow64 .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vfxGduow64 .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vfxGduow64 .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxGduow64 .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vfxGduow64 .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vfxGduow64 .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfxGduow64 .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vfxGduow64 .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vfxGduow64 .mbr-label,
.cid-vfxGduow64 .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vfxGduow64 .mbr-section-title,
.cid-vfxGduow64 .title-wrapper {
  color: #095258;
  text-align: left;
}
.cid-vfxGduow64 .mbr-text {
  color: #515151;
}
.cid-vfxGduow64 .mbr-text,
.cid-vfxGduow64 .mbr-section-btn {
  color: #111111;
}
.cid-vfxGduow64 .testo-nero {
  color: #000000 !important;
}
.cid-vfxDwDTNeH {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vfxDwDTNeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfxDwDTNeH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfxDwDTNeH .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vfxDwDTNeH .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxDwDTNeH .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vfxDwDTNeH .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vfxDwDTNeH .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vfxDwDTNeH .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #308990, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vfxDwDTNeH .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vfxDwDTNeH .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vfxDwDTNeH .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vfxDwDTNeH .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vfxDwDTNeH .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxDwDTNeH .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vfxDwDTNeH .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vfxDwDTNeH .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfxDwDTNeH .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vfxDwDTNeH .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vfxDwDTNeH .mbr-label,
.cid-vfxDwDTNeH .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vfxDwDTNeH .mbr-section-title,
.cid-vfxDwDTNeH .title-wrapper {
  color: #095258;
  text-align: left;
}
.cid-vfxDwDTNeH .mbr-text {
  color: #515151;
}
.cid-vfxDwDTNeH .mbr-text,
.cid-vfxDwDTNeH .mbr-section-btn {
  color: #111111;
}
.cid-vfxDwDTNeH .testo-nero {
  color: #000000 !important;
}
.cid-vfy2volzGb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vfy2volzGb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfy2volzGb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfy2volzGb .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vfy2volzGb .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfy2volzGb .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vfy2volzGb .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vfy2volzGb .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vfy2volzGb .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #308990, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vfy2volzGb .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vfy2volzGb .items-wrapper {
  margin: 0 -18px;
  justify-content: center;
}
.cid-vfy2volzGb .items-wrapper .card {
  padding: 0 18px;
  justify-content: center;
}
.cid-vfy2volzGb .items-wrapper .card .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vfy2volzGb .items-wrapper .card .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfy2volzGb .items-wrapper .card .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vfy2volzGb .items-wrapper .card .image-wrapper img {
    height: 300px;
  }
}
.cid-vfy2volzGb .items-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfy2volzGb .items-wrapper .card .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vfy2volzGb .items-wrapper .card .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vfy2volzGb .mbr-label,
.cid-vfy2volzGb .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vfy2volzGb .mbr-section-title,
.cid-vfy2volzGb .title-wrapper {
  color: #095258;
  text-align: left;
}
.cid-vfy2volzGb .mbr-text {
  color: #515151;
}
.cid-vfy2volzGb .mbr-text,
.cid-vfy2volzGb .mbr-section-btn {
  color: #111111;
}
.cid-vfxZUFosh4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vfxZUFosh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfxZUFosh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfxZUFosh4 .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vfxZUFosh4 .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vfxZUFosh4 .content-wrap .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .label-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vfxZUFosh4 .content-wrap .title-wrapper .label-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .label-wrapper .label-wrap .line-wrap {
  height: 6px;
  width: 96px;
  background-image: linear-gradient(90deg, #004aad 0, transparent 100%);
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfxZUFosh4 .content-wrap .title-wrapper .mbr-section-btn {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.cid-vfxZUFosh4 .content-wrap .image-wrapper img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vfxZUFosh4 .content-wrap .image-wrapper img {
    height: 300px;
  }
}
.cid-vfxZUFosh4 .mbr-label {
  color: #004aad;
}
.cid-vfxZUFosh4 .mbr-section-title {
  color: #004aad;
}
.cid-vfxZUFosh4 .mbr-text {
  color: #111111;
}
.cid-vfxZUFosh4 .mbr-section-title,
.cid-vfxZUFosh4 .mbr-section-btn {
  color: #095258;
}
