body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  line-height: 92px;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Kanit', sans-serif;
  font-size: 3rem;
  line-height: 40px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.3rem;
  line-height: 1.55;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
  line-height: 39px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  line-height: 30px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #ffcc06 !important;
}
.bg-success {
  background-color: #ff773d !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #003482 !important;
}
.bg-danger {
  background-color: #ff0808 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffcc06 !important;
  border-color: #ffcc06 !important;
  color: #060500 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ae8b00 !important;
  border-color: #ae8b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #060500 !important;
  background-color: #ae8b00 !important;
  border-color: #ae8b00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff5740 !important;
  border-color: #ff5740 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e81c00 !important;
  border-color: #e81c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e81c00 !important;
  border-color: #e81c00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff773d !important;
  border-color: #ff773d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #e54500 !important;
  border-color: #e54500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e54500 !important;
  border-color: #e54500 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #003482 !important;
  border-color: #003482 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #00112b !important;
  border-color: #00112b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #00112b !important;
  border-color: #00112b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0808 !important;
  border-color: #ff0808 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b00000 !important;
  border-color: #b00000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b00000 !important;
  border-color: #b00000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcc06;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ae8b00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #060500 !important;
  background-color: #ffcc06 !important;
  border-color: #ffcc06 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff5740;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e81c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5740 !important;
  border-color: #ff5740 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff773d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e54500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff773d !important;
  border-color: #ff773d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #003482;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #00112b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #003482 !important;
  border-color: #003482 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0808;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b00000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0808 !important;
  border-color: #ff0808 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffcc06 !important;
}
.text-secondary {
  color: #ff5740 !important;
}
.text-success {
  color: #ff773d !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #003482 !important;
}
.text-danger {
  color: #ff0808 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9f7e00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d91a00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d64000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000b1c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a10000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffcc06;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #003482;
}
.alert-danger {
  background-color: #ff0808;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffcc06;
  border-color: #ffcc06;
  color: #1f1900;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffcc06;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff6d2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #0267ff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffd4d4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.3rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffcc06 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.3rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ffcc06;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffcc06;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffcc06;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffcc06;
  border-bottom-color: #ffcc06;
}
.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: #000000 !important;
  background-color: #ffcc06 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff5740 !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='%23ffcc06' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  max-height: 48px;
  box-shadow: none;
}
.cid-uJ0cd72Nbv .navbar-dropdown {
  background-color: #001b44 !important;
  padding: 0;
}
.cid-uJ0cd72Nbv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001b44 !important;
  background: #001b44;
}
.cid-uJ0cd72Nbv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uJ0cd72Nbv .menu_box .navbar.opened,
  .cid-uJ0cd72Nbv .menu_box .navbar-collapse {
    background-color: #001b44 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uJ0cd72Nbv .navbar-dropdown {
  position: relative !important;
}
.cid-uJ0cd72Nbv .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uJ0cd72Nbv .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ0cd72Nbv .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uJ0cd72Nbv .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJ0cd72Nbv .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uJ0cd72Nbv .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-uJ0cd72Nbv .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uJ0cd72Nbv .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uJ0cd72Nbv .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uJ0cd72Nbv .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uJ0cd72Nbv .offcanvas-body .mbr-text,
  .cid-uJ0cd72Nbv .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uJ0cd72Nbv .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uJ0cd72Nbv .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uJ0cd72Nbv .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-uJ0cd72Nbv .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uJ0cd72Nbv .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uJ0cd72Nbv .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uJ0cd72Nbv .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uJ0cd72Nbv ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uJ0cd72Nbv .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ0cd72Nbv .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uJ0cd72Nbv .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uJ0cd72Nbv li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uJ0cd72Nbv .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uJ0cd72Nbv .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uJ0cd72Nbv .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uJ0cd72Nbv .nav-item {
    margin: 0 !important;
  }
}
.cid-uJ0cd72Nbv .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uJ0cd72Nbv .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uJ0cd72Nbv .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ0cd72Nbv .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ0cd72Nbv .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uJ0cd72Nbv .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uJ0cd72Nbv .offcanvas_box {
    display: none;
  }
}
.cid-uJ0cd72Nbv .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uJ0cd72Nbv .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uJ0cd72Nbv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uJ0cd72Nbv .container {
  display: flex;
  margin: auto;
}
.cid-uJ0cd72Nbv .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJ0cd72Nbv .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJ0cd72Nbv .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uJ0cd72Nbv .navbar-caption {
  color: #d2d2d2;
}
.cid-uJ0cd72Nbv .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uJ0cd72Nbv .navbar-nav {
    margin: 0;
  }
}
.cid-uJ0cd72Nbv .dropdown-menu,
.cid-uJ0cd72Nbv .navbar.opened {
  background-color: false !important;
}
.cid-uJ0cd72Nbv .nav-item:focus,
.cid-uJ0cd72Nbv .nav-link:focus {
  outline: none;
}
.cid-uJ0cd72Nbv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ0cd72Nbv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ0cd72Nbv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ0cd72Nbv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ0cd72Nbv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ0cd72Nbv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ0cd72Nbv .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uJ0cd72Nbv .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uJ0cd72Nbv .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ0cd72Nbv .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uJ0cd72Nbv .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uJ0cd72Nbv .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uJ0cd72Nbv .navbar.collapsed {
  justify-content: center;
}
.cid-uJ0cd72Nbv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ0cd72Nbv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uJ0cd72Nbv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ0cd72Nbv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ0cd72Nbv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ0cd72Nbv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uJ0cd72Nbv .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uJ0cd72Nbv .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uJ0cd72Nbv .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uJ0cd72Nbv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ0cd72Nbv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ0cd72Nbv .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uJ0cd72Nbv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ0cd72Nbv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uJ0cd72Nbv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ0cd72Nbv .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uJ0cd72Nbv .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uJ0cd72Nbv .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uJ0cd72Nbv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ0cd72Nbv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ0cd72Nbv .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uJ0cd72Nbv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ0cd72Nbv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ0cd72Nbv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ0cd72Nbv .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ0cd72Nbv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ0cd72Nbv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ0cd72Nbv .dropdown-item.active,
.cid-uJ0cd72Nbv .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ0cd72Nbv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ0cd72Nbv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ0cd72Nbv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ0cd72Nbv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ0cd72Nbv ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-uJ0cd72Nbv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ0cd72Nbv button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001b44;
  background: #000000;
}
.cid-uJ0cd72Nbv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-uJ0cd72Nbv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ0cd72Nbv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ0cd72Nbv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ0cd72Nbv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ0cd72Nbv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ0cd72Nbv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ0cd72Nbv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ0cd72Nbv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ0cd72Nbv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uJ0cd72Nbv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJ0cd72Nbv .navbar {
    height: 70px;
  }
  .cid-uJ0cd72Nbv .navbar.opened {
    height: auto;
  }
  .cid-uJ0cd72Nbv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ0cd72Nbv .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uJ0cd72Nbv .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uJ0cd72Nbv .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uJ0cd72Nbv .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uJ0cd72Nbv .navbar-caption:hover {
  color: #ffcc06;
}
@media (min-width: 992px) {
  .cid-uJ0cd72Nbv .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uJ0cd72Nbv .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ0cd72Nbv .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJ0cd72Nbv .text_widget {
  color: #000000;
}
.cid-uJ0cd72Nbv .mbr-section-subtitle,
.cid-uJ0cd72Nbv .text_widget,
.cid-uJ0cd72Nbv .mbr-section-btn {
  text-align: center;
}
.cid-uJ0cd72Nbv a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ25vkGPT3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ25vkGPT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ25vkGPT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ25vkGPT3 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ25vkGPT3 .container {
    padding: 0 12px;
  }
}
.cid-uJ25vkGPT3 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ25vkGPT3 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ25vkGPT3 .row.card-wrapper {
  padding: 80px;
  border: 3px solid #b4dcfa;
  box-shadow: 4px 4px #b4dcfa;
  background-color: #c0b8a8;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uJ25vkGPT3 .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-uJ25vkGPT3 .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-uJ25vkGPT3 .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-uJ25vkGPT3 .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-uJ25vkGPT3 .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-uJ25vkGPT3 .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uJ25vkGPT3 .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uJ25vkGPT3 .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJ25vkGPT3 .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #b4dcfa;
}
.cid-uJ25vkGPT3 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uJ25vkGPT3 .mbr-section-subtitle {
  color: #222222;
}
.cid-uJ25vkGPT3 .mbr-text {
  color: #222222;
}
.cid-uJ25vkGPT3 .list {
  color: #222222;
}
.cid-uJ0TidXu3Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
}
.cid-uJ0TidXu3Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0TidXu3Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0TidXu3Q .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ0TidXu3Q .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ0TidXu3Q .content-wrapper {
    padding: 0;
  }
}
.cid-uJ0TidXu3Q .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uJ0TidXu3Q .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uJ0TidXu3Q .mbr-section-title,
.cid-uJ0TidXu3Q .title-wrapper {
  color: #ffffff;
}
.cid-uJ0TidXu3Q .mbr-section-title,
.cid-uJ0TidXu3Q .mbr-section-btn,
.cid-uJ0TidXu3Q .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uJ0T7QZdjw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ0T7QZdjw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0T7QZdjw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0T7QZdjw .google-map iframe {
  height: 500px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .cid-uJ0T7QZdjw .google-map iframe {
    height: 350px;
  }
}
.cid-uJ0cdwRVJ8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ0cdwRVJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0cdwRVJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0cdwRVJ8 .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJ0cdwRVJ8 .footer-col {
    flex-direction: column;
  }
}
.cid-uJ0cdwRVJ8 .row {
  background: #001b44;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJ0cdwRVJ8 .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJ0cdwRVJ8 .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ0cdwRVJ8 .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ0cdwRVJ8 .mbr-section-btn {
    text-align: center;
  }
}
.cid-uJ0cdwRVJ8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uJ0cdwRVJ8 .item-wrap {
  transition: all 300ms ease;
}
.cid-uJ0cdwRVJ8 .item-wrap:hover,
.cid-uJ0cdwRVJ8 .item-wrap:focus {
  cursor: pointer;
}
.cid-uJ0cdwRVJ8 .soc-item {
  margin: 8px;
}
.cid-uJ0cdwRVJ8 .soc-item a:hover .mbr-iconfont,
.cid-uJ0cdwRVJ8 .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uJ0cdwRVJ8 .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #e8c439;
  color: #001b44;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uJ0cdwRVJ8 .row {
    text-align: center;
  }
  .cid-uJ0cdwRVJ8 .social-row {
    justify-content: center;
  }
}
.cid-uJ0cdwRVJ8 .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uJ0cdwRVJ8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ0cdwRVJ8 .list {
    margin-bottom: 0rem;
  }
}
.cid-uJ0cdwRVJ8 .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uJ0cdwRVJ8 .list,
.cid-uJ0cdwRVJ8 .item-wrap {
  color: #fdfde1;
}
.cid-uJ0cdwRVJ8 .copyright {
  color: #fdfde1;
  text-align: right;
}
.cid-uJ0TOOmRCG .navbar-dropdown {
  background-color: #001b44 !important;
  padding: 0;
}
.cid-uJ0TOOmRCG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001b44 !important;
  background: #001b44;
}
.cid-uJ0TOOmRCG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uJ0TOOmRCG .menu_box .navbar.opened,
  .cid-uJ0TOOmRCG .menu_box .navbar-collapse {
    background-color: #001b44 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uJ0TOOmRCG .navbar-dropdown {
  position: relative !important;
}
.cid-uJ0TOOmRCG .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uJ0TOOmRCG .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ0TOOmRCG .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uJ0TOOmRCG .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJ0TOOmRCG .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uJ0TOOmRCG .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-uJ0TOOmRCG .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uJ0TOOmRCG .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uJ0TOOmRCG .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uJ0TOOmRCG .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uJ0TOOmRCG .offcanvas-body .mbr-text,
  .cid-uJ0TOOmRCG .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uJ0TOOmRCG .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uJ0TOOmRCG .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uJ0TOOmRCG .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-uJ0TOOmRCG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uJ0TOOmRCG .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uJ0TOOmRCG .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uJ0TOOmRCG .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uJ0TOOmRCG ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uJ0TOOmRCG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ0TOOmRCG .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uJ0TOOmRCG .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uJ0TOOmRCG li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uJ0TOOmRCG .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uJ0TOOmRCG .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uJ0TOOmRCG .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uJ0TOOmRCG .nav-item {
    margin: 0 !important;
  }
}
.cid-uJ0TOOmRCG .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uJ0TOOmRCG .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uJ0TOOmRCG .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ0TOOmRCG .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ0TOOmRCG .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uJ0TOOmRCG .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uJ0TOOmRCG .offcanvas_box {
    display: none;
  }
}
.cid-uJ0TOOmRCG .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uJ0TOOmRCG .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uJ0TOOmRCG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uJ0TOOmRCG .container {
  display: flex;
  margin: auto;
}
.cid-uJ0TOOmRCG .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJ0TOOmRCG .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJ0TOOmRCG .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uJ0TOOmRCG .navbar-caption {
  color: #d2d2d2;
}
.cid-uJ0TOOmRCG .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uJ0TOOmRCG .navbar-nav {
    margin: 0;
  }
}
.cid-uJ0TOOmRCG .dropdown-menu,
.cid-uJ0TOOmRCG .navbar.opened {
  background-color: false !important;
}
.cid-uJ0TOOmRCG .nav-item:focus,
.cid-uJ0TOOmRCG .nav-link:focus {
  outline: none;
}
.cid-uJ0TOOmRCG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ0TOOmRCG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ0TOOmRCG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ0TOOmRCG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ0TOOmRCG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ0TOOmRCG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ0TOOmRCG .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uJ0TOOmRCG .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uJ0TOOmRCG .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ0TOOmRCG .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uJ0TOOmRCG .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uJ0TOOmRCG .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uJ0TOOmRCG .navbar.collapsed {
  justify-content: center;
}
.cid-uJ0TOOmRCG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ0TOOmRCG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uJ0TOOmRCG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ0TOOmRCG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ0TOOmRCG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ0TOOmRCG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uJ0TOOmRCG .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uJ0TOOmRCG .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uJ0TOOmRCG .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uJ0TOOmRCG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ0TOOmRCG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ0TOOmRCG .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uJ0TOOmRCG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ0TOOmRCG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uJ0TOOmRCG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ0TOOmRCG .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uJ0TOOmRCG .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uJ0TOOmRCG .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uJ0TOOmRCG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ0TOOmRCG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ0TOOmRCG .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uJ0TOOmRCG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ0TOOmRCG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ0TOOmRCG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ0TOOmRCG .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ0TOOmRCG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ0TOOmRCG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ0TOOmRCG .dropdown-item.active,
.cid-uJ0TOOmRCG .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ0TOOmRCG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ0TOOmRCG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ0TOOmRCG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ0TOOmRCG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ0TOOmRCG ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-uJ0TOOmRCG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ0TOOmRCG button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001b44;
  background: #000000;
}
.cid-uJ0TOOmRCG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-uJ0TOOmRCG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ0TOOmRCG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ0TOOmRCG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ0TOOmRCG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ0TOOmRCG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ0TOOmRCG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ0TOOmRCG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ0TOOmRCG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ0TOOmRCG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uJ0TOOmRCG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJ0TOOmRCG .navbar {
    height: 70px;
  }
  .cid-uJ0TOOmRCG .navbar.opened {
    height: auto;
  }
  .cid-uJ0TOOmRCG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ0TOOmRCG .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uJ0TOOmRCG .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uJ0TOOmRCG .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uJ0TOOmRCG .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uJ0TOOmRCG .navbar-caption:hover {
  color: #ffcc06;
}
@media (min-width: 992px) {
  .cid-uJ0TOOmRCG .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uJ0TOOmRCG .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ0TOOmRCG .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJ0TOOmRCG .text_widget {
  color: #000000;
}
.cid-uJ0TOOmRCG .mbr-section-subtitle,
.cid-uJ0TOOmRCG .text_widget,
.cid-uJ0TOOmRCG .mbr-section-btn {
  text-align: center;
}
.cid-uJ0TOOmRCG a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ268m2fuK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ268m2fuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ268m2fuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ268m2fuK .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ268m2fuK .container {
    padding: 0 12px;
  }
}
.cid-uJ268m2fuK .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ268m2fuK .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ268m2fuK .row.card-wrapper {
  padding: 80px;
  border: 3px solid #b4dcfa;
  box-shadow: 4px 4px #b4dcfa;
  background-color: #c0b8a8;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uJ268m2fuK .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-uJ268m2fuK .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-uJ268m2fuK .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-uJ268m2fuK .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-uJ268m2fuK .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-uJ268m2fuK .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uJ268m2fuK .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uJ268m2fuK .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJ268m2fuK .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #b4dcfa;
}
.cid-uJ268m2fuK .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uJ268m2fuK .mbr-section-subtitle {
  color: #222222;
}
.cid-uJ268m2fuK .mbr-text {
  color: #222222;
}
.cid-uJ268m2fuK .list {
  color: #222222;
}
.cid-uJ0TOPoQYf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
}
.cid-uJ0TOPoQYf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0TOPoQYf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0TOPoQYf .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ0TOPoQYf .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ0TOPoQYf .content-wrapper {
    padding: 0;
  }
}
.cid-uJ0TOPoQYf .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uJ0TOPoQYf .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uJ0TOPoQYf .mbr-section-title,
.cid-uJ0TOPoQYf .title-wrapper {
  color: #ffffff;
}
.cid-uJ0TOPoQYf .mbr-section-title,
.cid-uJ0TOPoQYf .mbr-section-btn,
.cid-uJ0TOPoQYf .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uJ0TOPLnC7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uJ0TOPLnC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0TOPLnC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0TOPLnC7 .google-map iframe {
  height: 500px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .cid-uJ0TOPLnC7 .google-map iframe {
    height: 350px;
  }
}
.cid-uJ0TOQcJcq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ0TOQcJcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0TOQcJcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0TOQcJcq .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJ0TOQcJcq .footer-col {
    flex-direction: column;
  }
}
.cid-uJ0TOQcJcq .row {
  background: #001b44;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJ0TOQcJcq .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJ0TOQcJcq .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ0TOQcJcq .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ0TOQcJcq .mbr-section-btn {
    text-align: center;
  }
}
.cid-uJ0TOQcJcq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uJ0TOQcJcq .item-wrap {
  transition: all 300ms ease;
}
.cid-uJ0TOQcJcq .item-wrap:hover,
.cid-uJ0TOQcJcq .item-wrap:focus {
  cursor: pointer;
}
.cid-uJ0TOQcJcq .soc-item {
  margin: 8px;
}
.cid-uJ0TOQcJcq .soc-item a:hover .mbr-iconfont,
.cid-uJ0TOQcJcq .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uJ0TOQcJcq .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #e8c439;
  color: #001b44;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uJ0TOQcJcq .row {
    text-align: center;
  }
  .cid-uJ0TOQcJcq .social-row {
    justify-content: center;
  }
}
.cid-uJ0TOQcJcq .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uJ0TOQcJcq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ0TOQcJcq .list {
    margin-bottom: 0rem;
  }
}
.cid-uJ0TOQcJcq .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uJ0TOQcJcq .list,
.cid-uJ0TOQcJcq .item-wrap {
  color: #fdfde1;
}
.cid-uJ0TOQcJcq .copyright {
  color: #fdfde1;
  text-align: right;
}
.cid-tsOd88TCcZ .navbar-dropdown {
  background-color: #001b44 !important;
  padding: 0;
}
.cid-tsOd88TCcZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001b44 !important;
  background: #001b44;
}
.cid-tsOd88TCcZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tsOd88TCcZ .menu_box .navbar.opened,
  .cid-tsOd88TCcZ .menu_box .navbar-collapse {
    background-color: #001b44 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tsOd88TCcZ .navbar-dropdown {
  position: relative !important;
}
.cid-tsOd88TCcZ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tsOd88TCcZ .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsOd88TCcZ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tsOd88TCcZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tsOd88TCcZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tsOd88TCcZ .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-tsOd88TCcZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tsOd88TCcZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tsOd88TCcZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tsOd88TCcZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tsOd88TCcZ .offcanvas-body .mbr-text,
  .cid-tsOd88TCcZ .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tsOd88TCcZ .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tsOd88TCcZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tsOd88TCcZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-tsOd88TCcZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tsOd88TCcZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tsOd88TCcZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tsOd88TCcZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tsOd88TCcZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tsOd88TCcZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tsOd88TCcZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tsOd88TCcZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tsOd88TCcZ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tsOd88TCcZ .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tsOd88TCcZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tsOd88TCcZ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tsOd88TCcZ .nav-item {
    margin: 0 !important;
  }
}
.cid-tsOd88TCcZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tsOd88TCcZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tsOd88TCcZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tsOd88TCcZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tsOd88TCcZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tsOd88TCcZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tsOd88TCcZ .offcanvas_box {
    display: none;
  }
}
.cid-tsOd88TCcZ .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tsOd88TCcZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tsOd88TCcZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tsOd88TCcZ .container {
  display: flex;
  margin: auto;
}
.cid-tsOd88TCcZ .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tsOd88TCcZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tsOd88TCcZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tsOd88TCcZ .navbar-caption {
  color: #d2d2d2;
}
.cid-tsOd88TCcZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tsOd88TCcZ .navbar-nav {
    margin: 0;
  }
}
.cid-tsOd88TCcZ .dropdown-menu,
.cid-tsOd88TCcZ .navbar.opened {
  background-color: false !important;
}
.cid-tsOd88TCcZ .nav-item:focus,
.cid-tsOd88TCcZ .nav-link:focus {
  outline: none;
}
.cid-tsOd88TCcZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsOd88TCcZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsOd88TCcZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsOd88TCcZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsOd88TCcZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsOd88TCcZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsOd88TCcZ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-tsOd88TCcZ .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-tsOd88TCcZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tsOd88TCcZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tsOd88TCcZ .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tsOd88TCcZ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tsOd88TCcZ .navbar.collapsed {
  justify-content: center;
}
.cid-tsOd88TCcZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsOd88TCcZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsOd88TCcZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsOd88TCcZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsOd88TCcZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsOd88TCcZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tsOd88TCcZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tsOd88TCcZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tsOd88TCcZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tsOd88TCcZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsOd88TCcZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsOd88TCcZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tsOd88TCcZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsOd88TCcZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tsOd88TCcZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsOd88TCcZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tsOd88TCcZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsOd88TCcZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tsOd88TCcZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsOd88TCcZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsOd88TCcZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tsOd88TCcZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsOd88TCcZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsOd88TCcZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsOd88TCcZ .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsOd88TCcZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsOd88TCcZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsOd88TCcZ .dropdown-item.active,
.cid-tsOd88TCcZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tsOd88TCcZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsOd88TCcZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsOd88TCcZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsOd88TCcZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsOd88TCcZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-tsOd88TCcZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsOd88TCcZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001b44;
  background: #000000;
}
.cid-tsOd88TCcZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-tsOd88TCcZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsOd88TCcZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsOd88TCcZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsOd88TCcZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsOd88TCcZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsOd88TCcZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsOd88TCcZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsOd88TCcZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsOd88TCcZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tsOd88TCcZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsOd88TCcZ .navbar {
    height: 70px;
  }
  .cid-tsOd88TCcZ .navbar.opened {
    height: auto;
  }
  .cid-tsOd88TCcZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsOd88TCcZ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tsOd88TCcZ .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tsOd88TCcZ .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tsOd88TCcZ .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-tsOd88TCcZ .navbar-caption:hover {
  color: #ffcc06;
}
@media (min-width: 992px) {
  .cid-tsOd88TCcZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tsOd88TCcZ .mbr-section-subtitle {
  color: #000000;
}
.cid-tsOd88TCcZ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tsOd88TCcZ .text_widget {
  color: #000000;
}
.cid-tsOd88TCcZ .mbr-section-subtitle,
.cid-tsOd88TCcZ .text_widget,
.cid-tsOd88TCcZ .mbr-section-btn {
  text-align: center;
}
.cid-tsOd88TCcZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ1j0viOAm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1j0viOAm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1j0viOAm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1j0viOAm .row {
  margin: 0 -8px;
}
.cid-uJ1j0viOAm .row .card {
  padding: 0 8px;
}
.cid-uJ1j0viOAm .card-wrapper {
  padding: 75px 64px;
  background-color: #c0b8a8;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .cid-uJ1j0viOAm .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1j0viOAm .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap {
  width: 100%;
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uJ1j0viOAm .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uJ1j0viOAm .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .logo-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1j0viOAm .card-wrapper .card-wrap .logo-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .logo-wrapper .logo-wrap img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  object-fit: cover;
  border-radius: 100% !important;
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .logo-wrapper .logo-wrap .mbr-desc {
  padding: 0 20px;
  margin-bottom: 0;
}
.cid-uJ1j0viOAm .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1j0viOAm .image-wrapper {
  height: 100%;
}
.cid-uJ1j0viOAm .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJ1j0viOAm .mbr-section-title {
  color: #2c2c26;
  text-align: center;
}
.cid-uJ1j0viOAm .mbr-text,
.cid-uJ1j0viOAm .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1j0viOAm .logo-wrapper,
.cid-uJ1j0viOAm .mbr-desc {
  text-align: center;
}
.cid-uJ1j0viOAm .mbr-desc {
  color: #63635d;
}
.cid-uJ1j0viOAm .mbr-section-title,
.cid-uJ1j0viOAm .mbr-section-btn {
  color: #181818;
}
.cid-uJ1jfcneEl {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uJ1jfcneEl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1jfcneEl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1jfcneEl .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1jfcneEl .container {
    padding: 0 12px;
  }
}
.cid-uJ1jfcneEl .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uJ1jfcneEl .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uJ1jfcneEl .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uJ1jfcneEl .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uJ1jfcneEl .mbr-section-title {
  color: #ffffff;
}
.cid-uIYZszGxjZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001b44;
}
.cid-uIYZszGxjZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIYZszGxjZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIYZszGxjZ .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uIYZszGxjZ .container-fluid {
    padding: 0 12px;
  }
}
.cid-uIYZszGxjZ .container-fluid .row {
  padding: 0;
}
.cid-uIYZszGxjZ .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uIYZszGxjZ .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uIYZszGxjZ .card {
    padding: 48px 20px;
  }
}
.cid-uIYZszGxjZ .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIYZszGxjZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1DhWasqt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1DhWasqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1DhWasqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1DhWasqt .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1DhWasqt .container {
    padding: 0 12px;
  }
}
.cid-uJ1DhWasqt .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJ1DhWasqt .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-uJ1DhWasqt .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-uJ1DhWasqt .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-uJ1DhWasqt .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ1DhWasqt .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1DhWasqt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1DhWasqt .mbr-section-title {
  color: #222222;
}
.cid-uJ1DhWasqt .mbr-text {
  color: #222222;
}
.cid-uJ1lZKJlCR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1lZKJlCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1lZKJlCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1lZKJlCR .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uJ1lZKJlCR .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uJ1lZKJlCR .items-wrapper {
  margin: 0 -13px;
}
.cid-uJ1lZKJlCR .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uJ1lZKJlCR .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1lZKJlCR .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uJ1lZKJlCR .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uJ1lZKJlCR .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uJ1lZKJlCR .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e75300, #c0b8a8 85%);
}
.cid-uJ1lZKJlCR .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #ff398a, #c0b8a8 85%);
}
.cid-uJ1lZKJlCR .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e8c439, #c0b8a8 85%);
}
.cid-uJ1lZKJlCR .mbr-section-title,
.cid-uJ1lZKJlCR .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1lZKJlCR .item-title {
  color: #ffffff;
}
.cid-uJ1lZKJlCR .item-text {
  color: #ffffff;
}
.cid-uJ1lZKJlCR .item-title,
.cid-uJ1lZKJlCR .mbr-section-btn {
  color: #000000;
}
.cid-uIZqeGRyfd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uIZqeGRyfd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZqeGRyfd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZqeGRyfd .row {
  justify-content: center;
}
.cid-uIZqeGRyfd .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uIZqeGRyfd .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uIZqeGRyfd .content-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffbe0d;
}
.cid-uIZqeGRyfd .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uIZqeGRyfd .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uIZqeGRyfd .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .cid-uIZqeGRyfd .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uIZqeGRyfd .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uIZqeGRyfd .mbr-label,
.cid-uIZqeGRyfd .label-wrapper {
  color: #FFBE0D;
  text-align: center;
}
.cid-uIZqeGRyfd .mbr-section-title {
  color: #fff7ee;
}
.cid-uIZqeGRyfd .mbr-text,
.cid-uIZqeGRyfd .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uIZqeGRyfd .mbr-section-title,
.cid-uIZqeGRyfd .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uIZddvpRwx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIZddvpRwx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZddvpRwx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZddvpRwx .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uIZddvpRwx .container-fluid {
    padding: 0 12px;
  }
}
.cid-uIZddvpRwx .container-fluid .row {
  padding: 0;
}
.cid-uIZddvpRwx .row {
  border: 3px solid #f4e8da;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uIZddvpRwx .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uIZddvpRwx .card {
    border-left: 1px solid #f4e8da;
  }
}
@media (max-width: 992px) {
  .cid-uIZddvpRwx .card {
    padding: 48px 20px;
  }
}
.cid-uIZddvpRwx .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uIZddvpRwx .card:last-child {
    border-left: none;
    border-right: 2px solid #f4e8da;
  }
}
.cid-uIZddvpRwx .card .title-wrapper {
  margin-bottom: 0;
}
.cid-uIZddvpRwx .card .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uIZddvpRwx .card .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uIZddvpRwx .card .image-wrapper {
  overflow: hidden;
}
.cid-uIZddvpRwx .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIZddvpRwx .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uIZddvpRwx .mbr-section-title {
  color: #000000;
}
.cid-uIZddvpRwx .mbr-text {
  color: #000000;
}
.cid-uJ1lqGOaFO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1lqGOaFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1lqGOaFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1lqGOaFO .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uJ1lqGOaFO .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uJ1lqGOaFO .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ1lqGOaFO .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uJ1lqGOaFO .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1lqGOaFO .mbr-section-title {
  color: #000000;
}
.cid-uJ1lqGOaFO .mbr-desc {
  color: #fdfde1;
}
.cid-uJ1lqGOaFO .mbr-text {
  color: #000000;
}
.cid-uJ1lqGOaFO .mbr-text,
.cid-uJ1lqGOaFO .text-wrapper {
  color: #ffffff;
}
.cid-uJ1lqGOaFO .mbr-section-title,
.cid-uJ1lqGOaFO .mbr-section-btn {
  color: #fdfde1;
}
.cid-uJ1pkxsT8M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #001b44;
  background-color: #c0b8a8;
}
.cid-uJ1pkxsT8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1pkxsT8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1pkxsT8M .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1pkxsT8M .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1pkxsT8M .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1pkxsT8M .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1pkxsT8M .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper {
  padding: 108px;
  height: 100%;
  min-height: 570px;
  border: 2px solid #001b44;
  box-shadow: -10px 10px 0 #001b44;
}
@media (max-width: 1440px) {
  .cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper {
    padding: 20px;
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper {
    box-shadow: -5px 5px 0 #001b44;
  }
}
.cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
  border: 2px solid #001b44;
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1pkxsT8M .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 32px;
}
.cid-uJ1pkxsT8M .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1pkxsT8M .item-title {
  color: #ffffff;
}
.cid-uJ1pkxsT8M .item-text {
  color: #ffffff;
}
.cid-uJ1pkxsT8M .item-title,
.cid-uJ1pkxsT8M .mbr-section-btn {
  color: #000000;
}
.cid-uJ1BEeZhIu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJ1BEeZhIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1BEeZhIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1BEeZhIu .container {
    padding: 0 30px;
  }
}
.cid-uJ1BEeZhIu .row {
  position: relative;
}
.cid-uJ1BEeZhIu .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uJ1BEeZhIu .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uJ1BEeZhIu .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #001b44;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJ1BEeZhIu .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uJ1BEeZhIu .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uJ1BEeZhIu .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1BEeZhIu .mbr-text {
  color: #ffffff;
}
.cid-uJ1BEeZhIu .mbr-link,
.cid-uJ1BEeZhIu .mbr-iconfont {
  color: #212529;
}
.cid-uJ1BEeZhIu .mbr-section-title {
  color: #ffffff;
}
.cid-uIZcrLgufy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uIZcrLgufy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZcrLgufy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZcrLgufy .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uIZcrLgufy .container-fluid {
    padding: 0 12px;
  }
}
.cid-uIZcrLgufy .container-fluid .row {
  padding: 0;
}
.cid-uIZcrLgufy .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uIZcrLgufy .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uIZcrLgufy .card {
    padding: 48px 20px;
  }
}
.cid-uIZcrLgufy .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uIZcrLgufy .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIZcrLgufy .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-uIZcrLgufy .app-video-wrapper::before {
  color: #ffffff;
  text-shadow: none;
}
.cid-uIZcrLgufy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIZxfV3Q9f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #001b44;
}
.cid-uIZxfV3Q9f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZxfV3Q9f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZxfV3Q9f .content-wrapper {
  padding: 0 75px 0 108px;
  padding: 0 108px 0 75px;
}
@media (max-width: 1440px) {
  .cid-uIZxfV3Q9f .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uIZxfV3Q9f .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .content-wrapper {
    padding: 0;
  }
}
.cid-uIZxfV3Q9f .content-wrapper .mbr-label {
  margin-bottom: 110px;
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .content-wrapper .mbr-label {
    margin-bottom: 32px;
  }
}
.cid-uIZxfV3Q9f .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .content-wrapper .nav.nav-tabs {
    margin-bottom: 32px;
  }
}
.cid-uIZxfV3Q9f .content-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 0;
}
.cid-uIZxfV3Q9f .content-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uIZxfV3Q9f .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #fff9e7;
  padding: 20px 0;
  border: none;
  border-bottom: 2px solid #fff9e7;
  box-shadow: none;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uIZxfV3Q9f .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  padding-left: 20px;
}
.cid-uIZxfV3Q9f .tab-content {
  padding: 0 108px 0 75px;
  padding: 0 75px 0 108px;
}
@media (max-width: 1440px) {
  .cid-uIZxfV3Q9f .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .tab-content {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uIZxfV3Q9f .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .tab-content {
    padding: 0;
  }
}
.cid-uIZxfV3Q9f .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 780px;
  object-fit: cover;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .tab-content .tab-pane .content-wrap .image-wrap img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uIZxfV3Q9f .button-wrap {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uIZxfV3Q9f .button-wrap {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .button-wrap {
    padding: 0;
  }
}
.cid-uIZxfV3Q9f .button-wrap .mbr-section-btn {
  margin-top: 110px;
}
@media (max-width: 992px) {
  .cid-uIZxfV3Q9f .button-wrap .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uIZxfV3Q9f .mbr-section-title {
  color: #2C2625;
}
.cid-uIZxfV3Q9f .mbr-section-btn {
  text-align: center;
}
.cid-uIZxfV3Q9f .mbr-label,
.cid-uIZxfV3Q9f .mbr-section-btn {
  color: #ffffff;
}
.cid-uIZgzTL8kd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uIZgzTL8kd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZgzTL8kd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZgzTL8kd .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uIZgzTL8kd .container-fluid {
    padding: 0 12px;
  }
}
.cid-uIZgzTL8kd .container-fluid .row {
  padding: 0;
}
.cid-uIZgzTL8kd .row {
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uIZgzTL8kd .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uIZgzTL8kd .card {
    padding: 48px 20px;
  }
}
.cid-uIZgzTL8kd .card .tags-wrapper .tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cid-uIZgzTL8kd .card .tags-wrapper .tags .mbr-section-subtitle {
  margin: 0 28px 8px 0;
}
.cid-uIZgzTL8kd .card .tags-wrapper .tags .mbr-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  margin: 0 6px 6px 0;
  border: 1px solid #c0b8a8;
  border-radius: 30px;
}
.cid-uIZgzTL8kd .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIZgzTL8kd .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIZgzTL8kd .mbr-section-subtitle {
  color: #000000;
}
.cid-uIZgzTL8kd .mbr-tag {
  color: #000000;
}
.cid-uIZgzTL8kd .mbr-section-subtitle,
.cid-uIZgzTL8kd .tags-wrapper {
  text-align: center;
}
.cid-uIZgzTL8kd .mbr-tag,
.cid-uIZgzTL8kd .tags-wrapper {
  color: #000000;
}
.cid-uJ1sp8qCDP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1sp8qCDP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1sp8qCDP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1sp8qCDP .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1sp8qCDP .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1sp8qCDP .title .icon-wrap {
  margin-bottom: 64px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uJ1sp8qCDP .title .icon-wrap {
    margin-bottom: 32px;
    text-align: left;
  }
}
.cid-uJ1sp8qCDP .title .icon-wrap .mbr-iconfont {
  display: inline-flex;
  width: 70px;
  height: 70px;
  color: #000000;
  font-size: 70px;
}
@media (max-width: 992px) {
  .cid-uJ1sp8qCDP .title .icon-wrap .mbr-iconfont {
    width: 48px;
    height: 48px;
    font-size: 48px;
  }
}
.cid-uJ1sp8qCDP .items-wrap {
  justify-content: center;
  margin: 0 -10px;
  row-gap: 25px;
}
.cid-uJ1sp8qCDP .items-wrap .card {
  padding: 0 10px;
}
.cid-uJ1sp8qCDP .items-wrap .card_2 {
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uJ1sp8qCDP .items-wrap .card_2 {
    padding-top: 0;
  }
}
.cid-uJ1sp8qCDP .items-wrap .card_3 {
  padding-top: 400px;
}
@media (max-width: 992px) {
  .cid-uJ1sp8qCDP .items-wrap .card_3 {
    padding-top: 0;
  }
}
.cid-uJ1sp8qCDP .card .item-wrapper {
  background-color: #001b44;
  transition: all 0.3s ease;
}
.cid-uJ1sp8qCDP .card .item-wrapper .card-box {
  padding: 3rem 1.5rem;
  min-height: 500px;
}
@media (max-width: 992px) {
  .cid-uJ1sp8qCDP .card .item-wrapper .card-box {
    padding: 36px 24px;
    min-height: auto;
  }
}
.cid-uJ1sp8qCDP .card .item-wrapper .card-box .item-number {
  margin-bottom: 32px;
}
.cid-uJ1sp8qCDP .card .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
.cid-uJ1sp8qCDP .card .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  line-height: 1.66;
}
.cid-uJ1sp8qCDP .card .item-wrapper .card-box .icon-wrap {
  font-size: 3rem;
  color: #fdfde1;
}
.cid-uJ1sp8qCDP .card .item-wrapper:hover {
  box-shadow: 5px 5px 0 0 #666666;
  transform: translateY(-1.15rem);
}
.cid-uJ1sp8qCDP .mbr-section-title {
  color: #000000;
}
.cid-uJ1sp8qCDP .item-title {
  color: #fdfde1;
}
.cid-uJ1sp8qCDP .item-number {
  color: #ffffff;
}
.cid-uJ1sp8qCDP .item-text {
  color: #fdfde1;
}
.cid-uJ1yTqcVjh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1yTqcVjh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1yTqcVjh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1yTqcVjh .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uJ1yTqcVjh .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1yTqcVjh .container {
    padding: 0;
  }
}
.cid-uJ1yTqcVjh .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJ1yTqcVjh .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uJ1yTqcVjh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1yTqcVjh .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uJ1yTqcVjh .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1yTqcVjh .mbr-text {
  color: #ffffff;
}
.cid-uIZCEg0xX5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uIZCEg0xX5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZCEg0xX5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZCEg0xX5 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uIZCEg0xX5 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uIZCEg0xX5 .container-fluid .row {
  padding: 0;
}
.cid-uIZCEg0xX5 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uIZCEg0xX5 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uIZCEg0xX5 .card {
    padding: 48px 20px;
  }
}
.cid-uIZCEg0xX5 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uIZCEg0xX5 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIZCEg0xX5 .card .google-map {
  border: 5px solid #d2d2d2;
  height: 400px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uIZCEg0xX5 .card .google-map {
    height: 250px;
  }
}
.cid-uIZCEg0xX5 .card .google-map iframe {
  height: 100%;
}
.cid-uIZCEg0xX5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIZCPzmZGm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e8c439;
}
.cid-uIZCPzmZGm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZCPzmZGm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZCPzmZGm .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uIZCPzmZGm .footer-col {
    flex-direction: column;
  }
}
.cid-uIZCPzmZGm .row {
  background: #001b44;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uIZCPzmZGm .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uIZCPzmZGm .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uIZCPzmZGm .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uIZCPzmZGm .mbr-section-btn {
    text-align: center;
  }
}
.cid-uIZCPzmZGm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uIZCPzmZGm .item-wrap {
  transition: all 300ms ease;
}
.cid-uIZCPzmZGm .item-wrap:hover,
.cid-uIZCPzmZGm .item-wrap:focus {
  cursor: pointer;
}
.cid-uIZCPzmZGm .soc-item {
  margin: 8px;
}
.cid-uIZCPzmZGm .soc-item a:hover .mbr-iconfont,
.cid-uIZCPzmZGm .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uIZCPzmZGm .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #e8c439;
  color: #001b44;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIZCPzmZGm .row {
    text-align: center;
  }
  .cid-uIZCPzmZGm .social-row {
    justify-content: center;
  }
}
.cid-uIZCPzmZGm .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uIZCPzmZGm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uIZCPzmZGm .list {
    margin-bottom: 0rem;
  }
}
.cid-uIZCPzmZGm .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uIZCPzmZGm .list,
.cid-uIZCPzmZGm .item-wrap {
  color: #fdfde1;
}
.cid-uIZCPzmZGm .copyright {
  color: #fdfde1;
  text-align: right;
}
.cid-uJ1KT4H98s .navbar-dropdown {
  background-color: #001b44 !important;
  padding: 0;
}
.cid-uJ1KT4H98s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001b44 !important;
  background: #001b44;
}
.cid-uJ1KT4H98s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uJ1KT4H98s .menu_box .navbar.opened,
  .cid-uJ1KT4H98s .menu_box .navbar-collapse {
    background-color: #001b44 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uJ1KT4H98s .navbar-dropdown {
  position: relative !important;
}
.cid-uJ1KT4H98s .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uJ1KT4H98s .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ1KT4H98s .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uJ1KT4H98s .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJ1KT4H98s .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uJ1KT4H98s .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-uJ1KT4H98s .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uJ1KT4H98s .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uJ1KT4H98s .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uJ1KT4H98s .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uJ1KT4H98s .offcanvas-body .mbr-text,
  .cid-uJ1KT4H98s .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uJ1KT4H98s .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uJ1KT4H98s .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uJ1KT4H98s .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-uJ1KT4H98s .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uJ1KT4H98s .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uJ1KT4H98s .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uJ1KT4H98s .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uJ1KT4H98s ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uJ1KT4H98s .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ1KT4H98s .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uJ1KT4H98s .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uJ1KT4H98s li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uJ1KT4H98s .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uJ1KT4H98s .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uJ1KT4H98s .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uJ1KT4H98s .nav-item {
    margin: 0 !important;
  }
}
.cid-uJ1KT4H98s .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uJ1KT4H98s .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uJ1KT4H98s .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ1KT4H98s .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ1KT4H98s .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uJ1KT4H98s .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uJ1KT4H98s .offcanvas_box {
    display: none;
  }
}
.cid-uJ1KT4H98s .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uJ1KT4H98s .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uJ1KT4H98s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uJ1KT4H98s .container {
  display: flex;
  margin: auto;
}
.cid-uJ1KT4H98s .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJ1KT4H98s .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJ1KT4H98s .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uJ1KT4H98s .navbar-caption {
  color: #d2d2d2;
}
.cid-uJ1KT4H98s .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uJ1KT4H98s .navbar-nav {
    margin: 0;
  }
}
.cid-uJ1KT4H98s .dropdown-menu,
.cid-uJ1KT4H98s .navbar.opened {
  background-color: false !important;
}
.cid-uJ1KT4H98s .nav-item:focus,
.cid-uJ1KT4H98s .nav-link:focus {
  outline: none;
}
.cid-uJ1KT4H98s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ1KT4H98s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ1KT4H98s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ1KT4H98s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ1KT4H98s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ1KT4H98s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ1KT4H98s .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uJ1KT4H98s .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uJ1KT4H98s .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ1KT4H98s .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uJ1KT4H98s .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uJ1KT4H98s .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uJ1KT4H98s .navbar.collapsed {
  justify-content: center;
}
.cid-uJ1KT4H98s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ1KT4H98s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uJ1KT4H98s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ1KT4H98s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ1KT4H98s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ1KT4H98s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uJ1KT4H98s .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uJ1KT4H98s .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uJ1KT4H98s .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uJ1KT4H98s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ1KT4H98s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ1KT4H98s .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uJ1KT4H98s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ1KT4H98s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uJ1KT4H98s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ1KT4H98s .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uJ1KT4H98s .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uJ1KT4H98s .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uJ1KT4H98s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ1KT4H98s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ1KT4H98s .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uJ1KT4H98s .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ1KT4H98s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ1KT4H98s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ1KT4H98s .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ1KT4H98s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ1KT4H98s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ1KT4H98s .dropdown-item.active,
.cid-uJ1KT4H98s .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ1KT4H98s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ1KT4H98s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ1KT4H98s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ1KT4H98s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ1KT4H98s ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-uJ1KT4H98s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ1KT4H98s button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001b44;
  background: #000000;
}
.cid-uJ1KT4H98s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-uJ1KT4H98s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ1KT4H98s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ1KT4H98s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ1KT4H98s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ1KT4H98s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ1KT4H98s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ1KT4H98s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ1KT4H98s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ1KT4H98s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uJ1KT4H98s .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJ1KT4H98s .navbar {
    height: 70px;
  }
  .cid-uJ1KT4H98s .navbar.opened {
    height: auto;
  }
  .cid-uJ1KT4H98s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ1KT4H98s .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uJ1KT4H98s .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uJ1KT4H98s .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uJ1KT4H98s .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uJ1KT4H98s .navbar-caption:hover {
  color: #ffcc06;
}
@media (min-width: 992px) {
  .cid-uJ1KT4H98s .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uJ1KT4H98s .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1KT4H98s .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJ1KT4H98s .text_widget {
  color: #000000;
}
.cid-uJ1KT4H98s .mbr-section-subtitle,
.cid-uJ1KT4H98s .text_widget,
.cid-uJ1KT4H98s .mbr-section-btn {
  text-align: center;
}
.cid-uJ1KT4H98s a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ1KT6gaIv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1KT6gaIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KT6gaIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KT6gaIv .row {
  margin: 0 -8px;
}
.cid-uJ1KT6gaIv .row .card {
  padding: 0 8px;
}
.cid-uJ1KT6gaIv .card-wrapper {
  padding: 75px 64px;
  background-color: #c0b8a8;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .cid-uJ1KT6gaIv .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KT6gaIv .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap {
  width: 100%;
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uJ1KT6gaIv .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uJ1KT6gaIv .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .logo-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KT6gaIv .card-wrapper .card-wrap .logo-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .logo-wrapper .logo-wrap img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  object-fit: cover;
  border-radius: 100% !important;
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .logo-wrapper .logo-wrap .mbr-desc {
  padding: 0 20px;
  margin-bottom: 0;
}
.cid-uJ1KT6gaIv .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1KT6gaIv .image-wrapper {
  height: 100%;
}
.cid-uJ1KT6gaIv .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJ1KT6gaIv .mbr-section-title {
  color: #2c2c26;
  text-align: center;
}
.cid-uJ1KT6gaIv .mbr-text,
.cid-uJ1KT6gaIv .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1KT6gaIv .logo-wrapper,
.cid-uJ1KT6gaIv .mbr-desc {
  text-align: center;
}
.cid-uJ1KT6gaIv .mbr-desc {
  color: #63635d;
}
.cid-uJ1KT6gaIv .mbr-section-title,
.cid-uJ1KT6gaIv .mbr-section-btn {
  color: #181818;
}
.cid-uJ1KT73VDJ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uJ1KT73VDJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KT73VDJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KT73VDJ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1KT73VDJ .container {
    padding: 0 12px;
  }
}
.cid-uJ1KT73VDJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uJ1KT73VDJ .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #ffffff;
}
.cid-uJ1KT73VDJ .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uJ1KT73VDJ .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uJ1KT73VDJ .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KT7NVUc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001b44;
}
.cid-uJ1KT7NVUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KT7NVUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KT7NVUc .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KT7NVUc .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KT7NVUc .container-fluid .row {
  padding: 0;
}
.cid-uJ1KT7NVUc .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KT7NVUc .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KT7NVUc .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KT7NVUc .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KT7NVUc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1KT8tLXh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1KT8tLXh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KT8tLXh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KT8tLXh .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1KT8tLXh .container {
    padding: 0 12px;
  }
}
.cid-uJ1KT8tLXh .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJ1KT8tLXh .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-uJ1KT8tLXh .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-uJ1KT8tLXh .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-uJ1KT8tLXh .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ1KT8tLXh .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1KT8tLXh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KT8tLXh .mbr-section-title {
  color: #222222;
}
.cid-uJ1KT8tLXh .mbr-text {
  color: #222222;
}
.cid-uJ1KT9ejpL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1KT9ejpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KT9ejpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KT9ejpL .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uJ1KT9ejpL .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uJ1KT9ejpL .items-wrapper {
  margin: 0 -13px;
}
.cid-uJ1KT9ejpL .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uJ1KT9ejpL .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1KT9ejpL .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uJ1KT9ejpL .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uJ1KT9ejpL .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uJ1KT9ejpL .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e75300, #c0b8a8 85%);
}
.cid-uJ1KT9ejpL .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #ff398a, #c0b8a8 85%);
}
.cid-uJ1KT9ejpL .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e8c439, #c0b8a8 85%);
}
.cid-uJ1KT9ejpL .mbr-section-title,
.cid-uJ1KT9ejpL .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1KT9ejpL .item-title {
  color: #ffffff;
}
.cid-uJ1KT9ejpL .item-text {
  color: #ffffff;
}
.cid-uJ1KT9ejpL .item-title,
.cid-uJ1KT9ejpL .mbr-section-btn {
  color: #000000;
}
.cid-uJ1KTa2RWy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1KTa2RWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTa2RWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTa2RWy .row {
  justify-content: center;
}
.cid-uJ1KTa2RWy .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uJ1KTa2RWy .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uJ1KTa2RWy .content-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffbe0d;
}
.cid-uJ1KTa2RWy .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uJ1KTa2RWy .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uJ1KTa2RWy .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .cid-uJ1KTa2RWy .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTa2RWy .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uJ1KTa2RWy .mbr-label,
.cid-uJ1KTa2RWy .label-wrapper {
  color: #FFBE0D;
  text-align: center;
}
.cid-uJ1KTa2RWy .mbr-section-title {
  color: #fff7ee;
}
.cid-uJ1KTa2RWy .mbr-text,
.cid-uJ1KTa2RWy .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1KTa2RWy .mbr-section-title,
.cid-uJ1KTa2RWy .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uJ1KTaIEV7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ1KTaIEV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTaIEV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTaIEV7 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KTaIEV7 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KTaIEV7 .container-fluid .row {
  padding: 0;
}
.cid-uJ1KTaIEV7 .row {
  border: 3px solid #f4e8da;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KTaIEV7 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uJ1KTaIEV7 .card {
    border-left: 1px solid #f4e8da;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTaIEV7 .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KTaIEV7 .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uJ1KTaIEV7 .card:last-child {
    border-left: none;
    border-right: 2px solid #f4e8da;
  }
}
.cid-uJ1KTaIEV7 .card .title-wrapper {
  margin-bottom: 0;
}
.cid-uJ1KTaIEV7 .card .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uJ1KTaIEV7 .card .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KTaIEV7 .card .image-wrapper {
  overflow: hidden;
}
.cid-uJ1KTaIEV7 .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ1KTaIEV7 .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KTaIEV7 .mbr-section-title {
  color: #000000;
}
.cid-uJ1KTaIEV7 .mbr-text {
  color: #000000;
}
.cid-uJ1KTbpaKy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1KTbpaKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTbpaKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTbpaKy .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uJ1KTbpaKy .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uJ1KTbpaKy .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KTbpaKy .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTbpaKy .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KTbpaKy .mbr-section-title {
  color: #000000;
}
.cid-uJ1KTbpaKy .mbr-desc {
  color: #fdfde1;
}
.cid-uJ1KTbpaKy .mbr-text {
  color: #000000;
}
.cid-uJ1KTbpaKy .mbr-text,
.cid-uJ1KTbpaKy .text-wrapper {
  color: #ffffff;
}
.cid-uJ1KTbpaKy .mbr-section-title,
.cid-uJ1KTbpaKy .mbr-section-btn {
  color: #fdfde1;
}
.cid-uJ1KTc0LID {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #001b44;
  background-color: #c0b8a8;
}
.cid-uJ1KTc0LID .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTc0LID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTc0LID .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KTc0LID .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1KTc0LID .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTc0LID .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KTc0LID .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1KTc0LID .items-wrapper .item .item-wrapper {
  padding: 108px;
  height: 100%;
  min-height: 570px;
  border: 2px solid #001b44;
  box-shadow: -10px 10px 0 #001b44;
}
@media (max-width: 1440px) {
  .cid-uJ1KTc0LID .items-wrapper .item .item-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper .item .item-wrapper {
    padding: 20px;
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper .item .item-wrapper {
    box-shadow: -5px 5px 0 #001b44;
  }
}
.cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
  border: 2px solid #001b44;
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTc0LID .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 32px;
}
.cid-uJ1KTc0LID .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KTc0LID .item-title {
  color: #ffffff;
}
.cid-uJ1KTc0LID .item-text {
  color: #ffffff;
}
.cid-uJ1KTc0LID .item-title,
.cid-uJ1KTc0LID .mbr-section-btn {
  color: #000000;
}
.cid-uJ1KTcM7QM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJ1KTcM7QM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTcM7QM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KTcM7QM .container {
    padding: 0 30px;
  }
}
.cid-uJ1KTcM7QM .row {
  position: relative;
}
.cid-uJ1KTcM7QM .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uJ1KTcM7QM .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uJ1KTcM7QM .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #001b44;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJ1KTcM7QM .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uJ1KTcM7QM .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uJ1KTcM7QM .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KTcM7QM .mbr-text {
  color: #ffffff;
}
.cid-uJ1KTcM7QM .mbr-link,
.cid-uJ1KTcM7QM .mbr-iconfont {
  color: #212529;
}
.cid-uJ1KTcM7QM .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KTdvZK3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1KTdvZK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTdvZK3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTdvZK3 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KTdvZK3 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KTdvZK3 .container-fluid .row {
  padding: 0;
}
.cid-uJ1KTdvZK3 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KTdvZK3 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KTdvZK3 .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KTdvZK3 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uJ1KTdvZK3 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KTdvZK3 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-uJ1KTdvZK3 .app-video-wrapper::before {
  color: #ffffff;
  text-shadow: none;
}
.cid-uJ1KTdvZK3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1KTeaCCQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #001b44;
}
.cid-uJ1KTeaCCQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTeaCCQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTeaCCQ .content-wrapper {
  padding: 0 75px 0 108px;
  padding: 0 108px 0 75px;
}
@media (max-width: 1440px) {
  .cid-uJ1KTeaCCQ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uJ1KTeaCCQ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1KTeaCCQ .content-wrapper .mbr-label {
  margin-bottom: 110px;
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .content-wrapper .mbr-label {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTeaCCQ .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .content-wrapper .nav.nav-tabs {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTeaCCQ .content-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 0;
}
.cid-uJ1KTeaCCQ .content-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uJ1KTeaCCQ .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #fff9e7;
  padding: 20px 0;
  border: none;
  border-bottom: 2px solid #fff9e7;
  box-shadow: none;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uJ1KTeaCCQ .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  padding-left: 20px;
}
.cid-uJ1KTeaCCQ .tab-content {
  padding: 0 108px 0 75px;
  padding: 0 75px 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KTeaCCQ .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .tab-content {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uJ1KTeaCCQ .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .tab-content {
    padding: 0;
  }
}
.cid-uJ1KTeaCCQ .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 780px;
  object-fit: cover;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .tab-content .tab-pane .content-wrap .image-wrap img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uJ1KTeaCCQ .button-wrap {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KTeaCCQ .button-wrap {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .button-wrap {
    padding: 0;
  }
}
.cid-uJ1KTeaCCQ .button-wrap .mbr-section-btn {
  margin-top: 110px;
}
@media (max-width: 992px) {
  .cid-uJ1KTeaCCQ .button-wrap .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uJ1KTeaCCQ .mbr-section-title {
  color: #2C2625;
}
.cid-uJ1KTeaCCQ .mbr-section-btn {
  text-align: center;
}
.cid-uJ1KTeaCCQ .mbr-label,
.cid-uJ1KTeaCCQ .mbr-section-btn {
  color: #ffffff;
}
.cid-uJ1KTfbn3i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1KTfbn3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTfbn3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTfbn3i .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KTfbn3i .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KTfbn3i .container-fluid .row {
  padding: 0;
}
.cid-uJ1KTfbn3i .row {
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KTfbn3i .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KTfbn3i .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KTfbn3i .card .tags-wrapper .tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cid-uJ1KTfbn3i .card .tags-wrapper .tags .mbr-section-subtitle {
  margin: 0 28px 8px 0;
}
.cid-uJ1KTfbn3i .card .tags-wrapper .tags .mbr-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  margin: 0 6px 6px 0;
  border: 1px solid #c0b8a8;
  border-radius: 30px;
}
.cid-uJ1KTfbn3i .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KTfbn3i .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1KTfbn3i .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1KTfbn3i .mbr-tag {
  color: #000000;
}
.cid-uJ1KTfbn3i .mbr-section-subtitle,
.cid-uJ1KTfbn3i .tags-wrapper {
  text-align: center;
}
.cid-uJ1KTfbn3i .mbr-tag,
.cid-uJ1KTfbn3i .tags-wrapper {
  color: #000000;
}
.cid-uJ1KTg0H7D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1KTg0H7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTg0H7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTg0H7D .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KTg0H7D .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1KTg0H7D .title .icon-wrap {
  margin-bottom: 64px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uJ1KTg0H7D .title .icon-wrap {
    margin-bottom: 32px;
    text-align: left;
  }
}
.cid-uJ1KTg0H7D .title .icon-wrap .mbr-iconfont {
  display: inline-flex;
  width: 70px;
  height: 70px;
  color: #000000;
  font-size: 70px;
}
@media (max-width: 992px) {
  .cid-uJ1KTg0H7D .title .icon-wrap .mbr-iconfont {
    width: 48px;
    height: 48px;
    font-size: 48px;
  }
}
.cid-uJ1KTg0H7D .items-wrap {
  justify-content: center;
  margin: 0 -10px;
  row-gap: 25px;
}
.cid-uJ1KTg0H7D .items-wrap .card {
  padding: 0 10px;
}
.cid-uJ1KTg0H7D .items-wrap .card_2 {
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uJ1KTg0H7D .items-wrap .card_2 {
    padding-top: 0;
  }
}
.cid-uJ1KTg0H7D .items-wrap .card_3 {
  padding-top: 400px;
}
@media (max-width: 992px) {
  .cid-uJ1KTg0H7D .items-wrap .card_3 {
    padding-top: 0;
  }
}
.cid-uJ1KTg0H7D .card .item-wrapper {
  background-color: #001b44;
  transition: all 0.3s ease;
}
.cid-uJ1KTg0H7D .card .item-wrapper .card-box {
  padding: 3rem 1.5rem;
  min-height: 500px;
}
@media (max-width: 992px) {
  .cid-uJ1KTg0H7D .card .item-wrapper .card-box {
    padding: 36px 24px;
    min-height: auto;
  }
}
.cid-uJ1KTg0H7D .card .item-wrapper .card-box .item-number {
  margin-bottom: 32px;
}
.cid-uJ1KTg0H7D .card .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
.cid-uJ1KTg0H7D .card .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  line-height: 1.66;
}
.cid-uJ1KTg0H7D .card .item-wrapper .card-box .icon-wrap {
  font-size: 3rem;
  color: #fdfde1;
}
.cid-uJ1KTg0H7D .card .item-wrapper:hover {
  box-shadow: 5px 5px 0 0 #666666;
  transform: translateY(-1.15rem);
}
.cid-uJ1KTg0H7D .mbr-section-title {
  color: #000000;
}
.cid-uJ1KTg0H7D .item-title {
  color: #fdfde1;
}
.cid-uJ1KTg0H7D .item-number {
  color: #ffffff;
}
.cid-uJ1KTg0H7D .item-text {
  color: #fdfde1;
}
.cid-uJ1KTgWqav {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1KTgWqav .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTgWqav .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTgWqav .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KTgWqav .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KTgWqav .container {
    padding: 0;
  }
}
.cid-uJ1KTgWqav .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJ1KTgWqav .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uJ1KTgWqav .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KTgWqav .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uJ1KTgWqav .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KTgWqav .mbr-text {
  color: #ffffff;
}
.cid-uJ3qO6ureD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uJ3qO6ureD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ3qO6ureD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ3qO6ureD .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uJ3qO6ureD .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uJ3qO6ureD .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uJ3qO6ureD .container {
    padding: 0 16px;
  }
}
.cid-uJ3qO6ureD .row {
  justify-content: space-between;
}
.cid-uJ3qO6ureD .title-wrapper {
  position: sticky;
}
.cid-uJ3qO6ureD .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ3qO6ureD .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uJ3qO6ureD .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #001b44, #56acff 34%, #7179ef 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ3qO6ureD .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uJ3qO6ureD .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #001b44, #56acff 34%, #7179ef 67%, #e26a69);
  border-radius: 50%;
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uJ3qO6ureD .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uJ3qO6ureD .mbr-section-title {
  color: #080808;
}
.cid-uJ3qO6ureD .panel-title-edit {
  color: #080808;
}
.cid-uJ3qO6ureD .panel-text {
  color: #333333;
}
.cid-uJ1KThEugk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1KThEugk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KThEugk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KThEugk .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KThEugk .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KThEugk .container-fluid .row {
  padding: 0;
}
.cid-uJ1KThEugk .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KThEugk .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KThEugk .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KThEugk .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uJ1KThEugk .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KThEugk .card .google-map {
  border: 5px solid #d2d2d2;
  height: 400px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uJ1KThEugk .card .google-map {
    height: 250px;
  }
}
.cid-uJ1KThEugk .card .google-map iframe {
  height: 100%;
}
.cid-uJ1KThEugk .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1KTiwd6E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e8c439;
}
.cid-uJ1KTiwd6E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KTiwd6E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KTiwd6E .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJ1KTiwd6E .footer-col {
    flex-direction: column;
  }
}
.cid-uJ1KTiwd6E .row {
  background: #001b44;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJ1KTiwd6E .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJ1KTiwd6E .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ1KTiwd6E .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ1KTiwd6E .mbr-section-btn {
    text-align: center;
  }
}
.cid-uJ1KTiwd6E .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uJ1KTiwd6E .item-wrap {
  transition: all 300ms ease;
}
.cid-uJ1KTiwd6E .item-wrap:hover,
.cid-uJ1KTiwd6E .item-wrap:focus {
  cursor: pointer;
}
.cid-uJ1KTiwd6E .soc-item {
  margin: 8px;
}
.cid-uJ1KTiwd6E .soc-item a:hover .mbr-iconfont,
.cid-uJ1KTiwd6E .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uJ1KTiwd6E .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #e8c439;
  color: #001b44;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uJ1KTiwd6E .row {
    text-align: center;
  }
  .cid-uJ1KTiwd6E .social-row {
    justify-content: center;
  }
}
.cid-uJ1KTiwd6E .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uJ1KTiwd6E .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ1KTiwd6E .list {
    margin-bottom: 0rem;
  }
}
.cid-uJ1KTiwd6E .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uJ1KTiwd6E .list,
.cid-uJ1KTiwd6E .item-wrap {
  color: #fdfde1;
}
.cid-uJ1KTiwd6E .copyright {
  color: #fdfde1;
  text-align: right;
}
.cid-uJ1KUctZgq .navbar-dropdown {
  background-color: #001b44 !important;
  padding: 0;
}
.cid-uJ1KUctZgq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001b44 !important;
  background: #001b44;
}
.cid-uJ1KUctZgq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uJ1KUctZgq .menu_box .navbar.opened,
  .cid-uJ1KUctZgq .menu_box .navbar-collapse {
    background-color: #001b44 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uJ1KUctZgq .navbar-dropdown {
  position: relative !important;
}
.cid-uJ1KUctZgq .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uJ1KUctZgq .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ1KUctZgq .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uJ1KUctZgq .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJ1KUctZgq .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uJ1KUctZgq .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-uJ1KUctZgq .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uJ1KUctZgq .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uJ1KUctZgq .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uJ1KUctZgq .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uJ1KUctZgq .offcanvas-body .mbr-text,
  .cid-uJ1KUctZgq .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uJ1KUctZgq .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uJ1KUctZgq .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uJ1KUctZgq .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-uJ1KUctZgq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uJ1KUctZgq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uJ1KUctZgq .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uJ1KUctZgq .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uJ1KUctZgq ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uJ1KUctZgq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ1KUctZgq .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uJ1KUctZgq .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uJ1KUctZgq li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uJ1KUctZgq .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uJ1KUctZgq .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uJ1KUctZgq .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uJ1KUctZgq .nav-item {
    margin: 0 !important;
  }
}
.cid-uJ1KUctZgq .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uJ1KUctZgq .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uJ1KUctZgq .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ1KUctZgq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ1KUctZgq .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uJ1KUctZgq .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uJ1KUctZgq .offcanvas_box {
    display: none;
  }
}
.cid-uJ1KUctZgq .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uJ1KUctZgq .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uJ1KUctZgq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uJ1KUctZgq .container {
  display: flex;
  margin: auto;
}
.cid-uJ1KUctZgq .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJ1KUctZgq .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJ1KUctZgq .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uJ1KUctZgq .navbar-caption {
  color: #d2d2d2;
}
.cid-uJ1KUctZgq .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uJ1KUctZgq .navbar-nav {
    margin: 0;
  }
}
.cid-uJ1KUctZgq .dropdown-menu,
.cid-uJ1KUctZgq .navbar.opened {
  background-color: false !important;
}
.cid-uJ1KUctZgq .nav-item:focus,
.cid-uJ1KUctZgq .nav-link:focus {
  outline: none;
}
.cid-uJ1KUctZgq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ1KUctZgq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ1KUctZgq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ1KUctZgq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ1KUctZgq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ1KUctZgq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ1KUctZgq .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uJ1KUctZgq .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uJ1KUctZgq .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ1KUctZgq .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uJ1KUctZgq .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uJ1KUctZgq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uJ1KUctZgq .navbar.collapsed {
  justify-content: center;
}
.cid-uJ1KUctZgq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ1KUctZgq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uJ1KUctZgq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ1KUctZgq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ1KUctZgq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ1KUctZgq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uJ1KUctZgq .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uJ1KUctZgq .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uJ1KUctZgq .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uJ1KUctZgq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ1KUctZgq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ1KUctZgq .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uJ1KUctZgq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ1KUctZgq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uJ1KUctZgq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ1KUctZgq .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uJ1KUctZgq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uJ1KUctZgq .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uJ1KUctZgq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ1KUctZgq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ1KUctZgq .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uJ1KUctZgq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ1KUctZgq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ1KUctZgq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ1KUctZgq .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ1KUctZgq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ1KUctZgq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ1KUctZgq .dropdown-item.active,
.cid-uJ1KUctZgq .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ1KUctZgq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ1KUctZgq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ1KUctZgq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ1KUctZgq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ1KUctZgq ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-uJ1KUctZgq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ1KUctZgq button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001b44;
  background: #000000;
}
.cid-uJ1KUctZgq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-uJ1KUctZgq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ1KUctZgq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ1KUctZgq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ1KUctZgq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ1KUctZgq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ1KUctZgq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ1KUctZgq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ1KUctZgq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ1KUctZgq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uJ1KUctZgq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJ1KUctZgq .navbar {
    height: 70px;
  }
  .cid-uJ1KUctZgq .navbar.opened {
    height: auto;
  }
  .cid-uJ1KUctZgq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ1KUctZgq .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uJ1KUctZgq .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uJ1KUctZgq .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uJ1KUctZgq .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uJ1KUctZgq .navbar-caption:hover {
  color: #ffcc06;
}
@media (min-width: 992px) {
  .cid-uJ1KUctZgq .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uJ1KUctZgq .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1KUctZgq .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJ1KUctZgq .text_widget {
  color: #000000;
}
.cid-uJ1KUctZgq .mbr-section-subtitle,
.cid-uJ1KUctZgq .text_widget,
.cid-uJ1KUctZgq .mbr-section-btn {
  text-align: center;
}
.cid-uJ1KUctZgq a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ1KUdK9BD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1KUdK9BD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUdK9BD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUdK9BD .row {
  margin: 0 -8px;
}
.cid-uJ1KUdK9BD .row .card {
  padding: 0 8px;
}
.cid-uJ1KUdK9BD .card-wrapper {
  padding: 75px 64px;
  background-color: #c0b8a8;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .cid-uJ1KUdK9BD .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUdK9BD .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap {
  width: 100%;
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uJ1KUdK9BD .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uJ1KUdK9BD .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .logo-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KUdK9BD .card-wrapper .card-wrap .logo-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .logo-wrapper .logo-wrap img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  object-fit: cover;
  border-radius: 100% !important;
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .logo-wrapper .logo-wrap .mbr-desc {
  padding: 0 20px;
  margin-bottom: 0;
}
.cid-uJ1KUdK9BD .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1KUdK9BD .image-wrapper {
  height: 100%;
}
.cid-uJ1KUdK9BD .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJ1KUdK9BD .mbr-section-title {
  color: #2c2c26;
  text-align: center;
}
.cid-uJ1KUdK9BD .mbr-text,
.cid-uJ1KUdK9BD .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1KUdK9BD .logo-wrapper,
.cid-uJ1KUdK9BD .mbr-desc {
  text-align: center;
}
.cid-uJ1KUdK9BD .mbr-desc {
  color: #63635d;
}
.cid-uJ1KUdK9BD .mbr-section-title,
.cid-uJ1KUdK9BD .mbr-section-btn {
  color: #181818;
}
.cid-uJ1KUeL0WA {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uJ1KUeL0WA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUeL0WA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUeL0WA .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1KUeL0WA .container {
    padding: 0 12px;
  }
}
.cid-uJ1KUeL0WA .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uJ1KUeL0WA .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #ffffff;
}
.cid-uJ1KUeL0WA .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uJ1KUeL0WA .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uJ1KUeL0WA .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KUfBIz6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001b44;
}
.cid-uJ1KUfBIz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUfBIz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUfBIz6 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KUfBIz6 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KUfBIz6 .container-fluid .row {
  padding: 0;
}
.cid-uJ1KUfBIz6 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KUfBIz6 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUfBIz6 .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KUfBIz6 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KUfBIz6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1KUgqcjT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1KUgqcjT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUgqcjT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUgqcjT .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1KUgqcjT .container {
    padding: 0 12px;
  }
}
.cid-uJ1KUgqcjT .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJ1KUgqcjT .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-uJ1KUgqcjT .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-uJ1KUgqcjT .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-uJ1KUgqcjT .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ1KUgqcjT .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1KUgqcjT .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KUgqcjT .mbr-section-title {
  color: #222222;
}
.cid-uJ1KUgqcjT .mbr-text {
  color: #222222;
}
.cid-uJ1KUho9lu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1KUho9lu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUho9lu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUho9lu .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uJ1KUho9lu .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uJ1KUho9lu .items-wrapper {
  margin: 0 -13px;
}
.cid-uJ1KUho9lu .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uJ1KUho9lu .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1KUho9lu .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uJ1KUho9lu .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uJ1KUho9lu .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uJ1KUho9lu .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uJ1KUho9lu .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uJ1KUho9lu .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uJ1KUho9lu .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1KUho9lu .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uJ1KUho9lu .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uJ1KUho9lu .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uJ1KUho9lu .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e75300, #c0b8a8 85%);
}
.cid-uJ1KUho9lu .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #ff398a, #c0b8a8 85%);
}
.cid-uJ1KUho9lu .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e8c439, #c0b8a8 85%);
}
.cid-uJ1KUho9lu .mbr-section-title,
.cid-uJ1KUho9lu .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1KUho9lu .item-title {
  color: #ffffff;
}
.cid-uJ1KUho9lu .item-text {
  color: #ffffff;
}
.cid-uJ1KUho9lu .item-title,
.cid-uJ1KUho9lu .mbr-section-btn {
  color: #000000;
}
.cid-uJ1KUixfJN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1KUixfJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUixfJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUixfJN .row {
  justify-content: center;
}
.cid-uJ1KUixfJN .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uJ1KUixfJN .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uJ1KUixfJN .content-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffbe0d;
}
.cid-uJ1KUixfJN .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uJ1KUixfJN .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uJ1KUixfJN .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .cid-uJ1KUixfJN .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUixfJN .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uJ1KUixfJN .mbr-label,
.cid-uJ1KUixfJN .label-wrapper {
  color: #FFBE0D;
  text-align: center;
}
.cid-uJ1KUixfJN .mbr-section-title {
  color: #fff7ee;
}
.cid-uJ1KUixfJN .mbr-text,
.cid-uJ1KUixfJN .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1KUixfJN .mbr-section-title,
.cid-uJ1KUixfJN .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uJ1KUjzS5t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ1KUjzS5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUjzS5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUjzS5t .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KUjzS5t .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KUjzS5t .container-fluid .row {
  padding: 0;
}
.cid-uJ1KUjzS5t .row {
  border: 3px solid #f4e8da;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KUjzS5t .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uJ1KUjzS5t .card {
    border-left: 1px solid #f4e8da;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUjzS5t .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KUjzS5t .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uJ1KUjzS5t .card:last-child {
    border-left: none;
    border-right: 2px solid #f4e8da;
  }
}
.cid-uJ1KUjzS5t .card .title-wrapper {
  margin-bottom: 0;
}
.cid-uJ1KUjzS5t .card .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uJ1KUjzS5t .card .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KUjzS5t .card .image-wrapper {
  overflow: hidden;
}
.cid-uJ1KUjzS5t .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ1KUjzS5t .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KUjzS5t .mbr-section-title {
  color: #000000;
}
.cid-uJ1KUjzS5t .mbr-text {
  color: #000000;
}
.cid-uJ1KUkEDxS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1KUkEDxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUkEDxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUkEDxS .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uJ1KUkEDxS .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uJ1KUkEDxS .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUkEDxS .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUkEDxS .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KUkEDxS .mbr-section-title {
  color: #000000;
}
.cid-uJ1KUkEDxS .mbr-desc {
  color: #fdfde1;
}
.cid-uJ1KUkEDxS .mbr-text {
  color: #000000;
}
.cid-uJ1KUkEDxS .mbr-text,
.cid-uJ1KUkEDxS .text-wrapper {
  color: #ffffff;
}
.cid-uJ1KUkEDxS .mbr-section-title,
.cid-uJ1KUkEDxS .mbr-section-btn {
  color: #fdfde1;
}
.cid-uJ1KUlFrEB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #001b44;
  background-color: #c0b8a8;
}
.cid-uJ1KUlFrEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUlFrEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUlFrEB .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KUlFrEB .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1KUlFrEB .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUlFrEB .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KUlFrEB .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper {
  padding: 108px;
  height: 100%;
  min-height: 570px;
  border: 2px solid #001b44;
  box-shadow: -10px 10px 0 #001b44;
}
@media (max-width: 1440px) {
  .cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper {
    padding: 20px;
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper {
    box-shadow: -5px 5px 0 #001b44;
  }
}
.cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
  border: 2px solid #001b44;
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUlFrEB .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 32px;
}
.cid-uJ1KUlFrEB .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KUlFrEB .item-title {
  color: #ffffff;
}
.cid-uJ1KUlFrEB .item-text {
  color: #ffffff;
}
.cid-uJ1KUlFrEB .item-title,
.cid-uJ1KUlFrEB .mbr-section-btn {
  color: #000000;
}
.cid-uJ1KUmIHKl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJ1KUmIHKl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUmIHKl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUmIHKl .container {
    padding: 0 30px;
  }
}
.cid-uJ1KUmIHKl .row {
  position: relative;
}
.cid-uJ1KUmIHKl .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uJ1KUmIHKl .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uJ1KUmIHKl .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #001b44;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJ1KUmIHKl .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uJ1KUmIHKl .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uJ1KUmIHKl .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1KUmIHKl .mbr-text {
  color: #ffffff;
}
.cid-uJ1KUmIHKl .mbr-link,
.cid-uJ1KUmIHKl .mbr-iconfont {
  color: #212529;
}
.cid-uJ1KUmIHKl .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KUnAYV8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1KUnAYV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUnAYV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUnAYV8 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KUnAYV8 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KUnAYV8 .container-fluid .row {
  padding: 0;
}
.cid-uJ1KUnAYV8 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KUnAYV8 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUnAYV8 .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KUnAYV8 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uJ1KUnAYV8 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KUnAYV8 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-uJ1KUnAYV8 .app-video-wrapper::before {
  color: #ffffff;
  text-shadow: none;
}
.cid-uJ1KUnAYV8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1KUoxC0L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #001b44;
}
.cid-uJ1KUoxC0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUoxC0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUoxC0L .content-wrapper {
  padding: 0 75px 0 108px;
  padding: 0 108px 0 75px;
}
@media (max-width: 1440px) {
  .cid-uJ1KUoxC0L .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uJ1KUoxC0L .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1KUoxC0L .content-wrapper .mbr-label {
  margin-bottom: 110px;
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .content-wrapper .mbr-label {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUoxC0L .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .content-wrapper .nav.nav-tabs {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUoxC0L .content-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 0;
}
.cid-uJ1KUoxC0L .content-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uJ1KUoxC0L .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #fff9e7;
  padding: 20px 0;
  border: none;
  border-bottom: 2px solid #fff9e7;
  box-shadow: none;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uJ1KUoxC0L .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  padding-left: 20px;
}
.cid-uJ1KUoxC0L .tab-content {
  padding: 0 108px 0 75px;
  padding: 0 75px 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KUoxC0L .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .tab-content {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uJ1KUoxC0L .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .tab-content {
    padding: 0;
  }
}
.cid-uJ1KUoxC0L .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 780px;
  object-fit: cover;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .tab-content .tab-pane .content-wrap .image-wrap img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uJ1KUoxC0L .button-wrap {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1KUoxC0L .button-wrap {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .button-wrap {
    padding: 0;
  }
}
.cid-uJ1KUoxC0L .button-wrap .mbr-section-btn {
  margin-top: 110px;
}
@media (max-width: 992px) {
  .cid-uJ1KUoxC0L .button-wrap .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uJ1KUoxC0L .mbr-section-title {
  color: #2C2625;
}
.cid-uJ1KUoxC0L .mbr-section-btn {
  text-align: center;
}
.cid-uJ1KUoxC0L .mbr-label,
.cid-uJ1KUoxC0L .mbr-section-btn {
  color: #ffffff;
}
.cid-uJ1KUpD1iT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1KUpD1iT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUpD1iT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUpD1iT .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KUpD1iT .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KUpD1iT .container-fluid .row {
  padding: 0;
}
.cid-uJ1KUpD1iT .row {
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KUpD1iT .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUpD1iT .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KUpD1iT .card .tags-wrapper .tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cid-uJ1KUpD1iT .card .tags-wrapper .tags .mbr-section-subtitle {
  margin: 0 28px 8px 0;
}
.cid-uJ1KUpD1iT .card .tags-wrapper .tags .mbr-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  margin: 0 6px 6px 0;
  border: 1px solid #c0b8a8;
  border-radius: 30px;
}
.cid-uJ1KUpD1iT .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KUpD1iT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1KUpD1iT .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1KUpD1iT .mbr-tag {
  color: #000000;
}
.cid-uJ1KUpD1iT .mbr-section-subtitle,
.cid-uJ1KUpD1iT .tags-wrapper {
  text-align: center;
}
.cid-uJ1KUpD1iT .mbr-tag,
.cid-uJ1KUpD1iT .tags-wrapper {
  color: #000000;
}
.cid-uJ1KUqxE8K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1KUqxE8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUqxE8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUqxE8K .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1KUqxE8K .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1KUqxE8K .title .icon-wrap {
  margin-bottom: 64px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uJ1KUqxE8K .title .icon-wrap {
    margin-bottom: 32px;
    text-align: left;
  }
}
.cid-uJ1KUqxE8K .title .icon-wrap .mbr-iconfont {
  display: inline-flex;
  width: 70px;
  height: 70px;
  color: #000000;
  font-size: 70px;
}
@media (max-width: 992px) {
  .cid-uJ1KUqxE8K .title .icon-wrap .mbr-iconfont {
    width: 48px;
    height: 48px;
    font-size: 48px;
  }
}
.cid-uJ1KUqxE8K .items-wrap {
  justify-content: center;
  margin: 0 -10px;
  row-gap: 25px;
}
.cid-uJ1KUqxE8K .items-wrap .card {
  padding: 0 10px;
}
.cid-uJ1KUqxE8K .items-wrap .card_2 {
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uJ1KUqxE8K .items-wrap .card_2 {
    padding-top: 0;
  }
}
.cid-uJ1KUqxE8K .items-wrap .card_3 {
  padding-top: 400px;
}
@media (max-width: 992px) {
  .cid-uJ1KUqxE8K .items-wrap .card_3 {
    padding-top: 0;
  }
}
.cid-uJ1KUqxE8K .card .item-wrapper {
  background-color: #001b44;
  transition: all 0.3s ease;
}
.cid-uJ1KUqxE8K .card .item-wrapper .card-box {
  padding: 3rem 1.5rem;
  min-height: 500px;
}
@media (max-width: 992px) {
  .cid-uJ1KUqxE8K .card .item-wrapper .card-box {
    padding: 36px 24px;
    min-height: auto;
  }
}
.cid-uJ1KUqxE8K .card .item-wrapper .card-box .item-number {
  margin-bottom: 32px;
}
.cid-uJ1KUqxE8K .card .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
.cid-uJ1KUqxE8K .card .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  line-height: 1.66;
}
.cid-uJ1KUqxE8K .card .item-wrapper .card-box .icon-wrap {
  font-size: 3rem;
  color: #fdfde1;
}
.cid-uJ1KUqxE8K .card .item-wrapper:hover {
  box-shadow: 5px 5px 0 0 #666666;
  transform: translateY(-1.15rem);
}
.cid-uJ1KUqxE8K .mbr-section-title {
  color: #000000;
}
.cid-uJ1KUqxE8K .item-title {
  color: #fdfde1;
}
.cid-uJ1KUqxE8K .item-number {
  color: #ffffff;
}
.cid-uJ1KUqxE8K .item-text {
  color: #fdfde1;
}
.cid-uJ1KUrAGOj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1KUrAGOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUrAGOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUrAGOj .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUrAGOj .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1KUrAGOj .container {
    padding: 0;
  }
}
.cid-uJ1KUrAGOj .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJ1KUrAGOj .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uJ1KUrAGOj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KUrAGOj .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uJ1KUrAGOj .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1KUrAGOj .mbr-text {
  color: #ffffff;
}
.cid-uJ3qXlmk7w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uJ3qXlmk7w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ3qXlmk7w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ3qXlmk7w .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uJ3qXlmk7w .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uJ3qXlmk7w .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uJ3qXlmk7w .container {
    padding: 0 16px;
  }
}
.cid-uJ3qXlmk7w .row {
  justify-content: space-between;
}
.cid-uJ3qXlmk7w .title-wrapper {
  position: sticky;
}
.cid-uJ3qXlmk7w .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ3qXlmk7w .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uJ3qXlmk7w .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #001b44, #56acff 34%, #7179ef 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ3qXlmk7w .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uJ3qXlmk7w .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #001b44, #56acff 34%, #7179ef 67%, #e26a69);
  border-radius: 50%;
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uJ3qXlmk7w .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uJ3qXlmk7w .mbr-section-title {
  color: #080808;
}
.cid-uJ3qXlmk7w .panel-title-edit {
  color: #080808;
}
.cid-uJ3qXlmk7w .panel-text {
  color: #333333;
}
.cid-uJ1KUsso1c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1KUsso1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUsso1c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUsso1c .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1KUsso1c .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1KUsso1c .container-fluid .row {
  padding: 0;
}
.cid-uJ1KUsso1c .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1KUsso1c .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1KUsso1c .card {
    padding: 48px 20px;
  }
}
.cid-uJ1KUsso1c .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uJ1KUsso1c .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1KUsso1c .card .google-map {
  border: 5px solid #d2d2d2;
  height: 400px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uJ1KUsso1c .card .google-map {
    height: 250px;
  }
}
.cid-uJ1KUsso1c .card .google-map iframe {
  height: 100%;
}
.cid-uJ1KUsso1c .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1KUttjSA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e8c439;
}
.cid-uJ1KUttjSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1KUttjSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1KUttjSA .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJ1KUttjSA .footer-col {
    flex-direction: column;
  }
}
.cid-uJ1KUttjSA .row {
  background: #001b44;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJ1KUttjSA .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJ1KUttjSA .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ1KUttjSA .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ1KUttjSA .mbr-section-btn {
    text-align: center;
  }
}
.cid-uJ1KUttjSA .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uJ1KUttjSA .item-wrap {
  transition: all 300ms ease;
}
.cid-uJ1KUttjSA .item-wrap:hover,
.cid-uJ1KUttjSA .item-wrap:focus {
  cursor: pointer;
}
.cid-uJ1KUttjSA .soc-item {
  margin: 8px;
}
.cid-uJ1KUttjSA .soc-item a:hover .mbr-iconfont,
.cid-uJ1KUttjSA .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uJ1KUttjSA .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #e8c439;
  color: #001b44;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uJ1KUttjSA .row {
    text-align: center;
  }
  .cid-uJ1KUttjSA .social-row {
    justify-content: center;
  }
}
.cid-uJ1KUttjSA .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uJ1KUttjSA .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ1KUttjSA .list {
    margin-bottom: 0rem;
  }
}
.cid-uJ1KUttjSA .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uJ1KUttjSA .list,
.cid-uJ1KUttjSA .item-wrap {
  color: #fdfde1;
}
.cid-uJ1KUttjSA .copyright {
  color: #fdfde1;
  text-align: right;
}
.cid-uJ1ZWgMrVy .navbar-dropdown {
  background-color: #001b44 !important;
  padding: 0;
}
.cid-uJ1ZWgMrVy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001b44 !important;
  background: #001b44;
}
.cid-uJ1ZWgMrVy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uJ1ZWgMrVy .menu_box .navbar.opened,
  .cid-uJ1ZWgMrVy .menu_box .navbar-collapse {
    background-color: #001b44 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uJ1ZWgMrVy .navbar-dropdown {
  position: relative !important;
}
.cid-uJ1ZWgMrVy .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uJ1ZWgMrVy .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ1ZWgMrVy .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uJ1ZWgMrVy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uJ1ZWgMrVy .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uJ1ZWgMrVy .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #d2d2d2;
  }
  .cid-uJ1ZWgMrVy .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uJ1ZWgMrVy .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uJ1ZWgMrVy .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uJ1ZWgMrVy .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uJ1ZWgMrVy .offcanvas-body .mbr-text,
  .cid-uJ1ZWgMrVy .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uJ1ZWgMrVy .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ff5640;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uJ1ZWgMrVy ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uJ1ZWgMrVy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ1ZWgMrVy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uJ1ZWgMrVy .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uJ1ZWgMrVy li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uJ1ZWgMrVy .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uJ1ZWgMrVy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uJ1ZWgMrVy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uJ1ZWgMrVy .nav-item {
    margin: 0 !important;
  }
}
.cid-uJ1ZWgMrVy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uJ1ZWgMrVy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uJ1ZWgMrVy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ1ZWgMrVy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ1ZWgMrVy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uJ1ZWgMrVy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uJ1ZWgMrVy .offcanvas_box {
    display: none;
  }
}
.cid-uJ1ZWgMrVy .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uJ1ZWgMrVy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uJ1ZWgMrVy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uJ1ZWgMrVy .container {
  display: flex;
  margin: auto;
}
.cid-uJ1ZWgMrVy .iconfont-wrapper {
  color: #d2d2d2;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJ1ZWgMrVy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJ1ZWgMrVy .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uJ1ZWgMrVy .navbar-caption {
  color: #d2d2d2;
}
.cid-uJ1ZWgMrVy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uJ1ZWgMrVy .navbar-nav {
    margin: 0;
  }
}
.cid-uJ1ZWgMrVy .dropdown-menu,
.cid-uJ1ZWgMrVy .navbar.opened {
  background-color: false !important;
}
.cid-uJ1ZWgMrVy .nav-item:focus,
.cid-uJ1ZWgMrVy .nav-link:focus {
  outline: none;
}
.cid-uJ1ZWgMrVy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ1ZWgMrVy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ1ZWgMrVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ1ZWgMrVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ1ZWgMrVy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ1ZWgMrVy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ1ZWgMrVy .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWgMrVy .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uJ1ZWgMrVy .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ1ZWgMrVy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uJ1ZWgMrVy .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uJ1ZWgMrVy .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uJ1ZWgMrVy .navbar.collapsed {
  justify-content: center;
}
.cid-uJ1ZWgMrVy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ1ZWgMrVy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uJ1ZWgMrVy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ1ZWgMrVy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ1ZWgMrVy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ1ZWgMrVy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uJ1ZWgMrVy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uJ1ZWgMrVy .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uJ1ZWgMrVy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uJ1ZWgMrVy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ1ZWgMrVy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ1ZWgMrVy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uJ1ZWgMrVy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ1ZWgMrVy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uJ1ZWgMrVy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ1ZWgMrVy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uJ1ZWgMrVy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uJ1ZWgMrVy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uJ1ZWgMrVy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ1ZWgMrVy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ1ZWgMrVy .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uJ1ZWgMrVy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ1ZWgMrVy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ1ZWgMrVy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ1ZWgMrVy .navbar-brand {
  min-height: 130px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ1ZWgMrVy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ1ZWgMrVy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ1ZWgMrVy .dropdown-item.active,
.cid-uJ1ZWgMrVy .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ1ZWgMrVy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ1ZWgMrVy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ1ZWgMrVy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ1ZWgMrVy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ1ZWgMrVy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
}
.cid-uJ1ZWgMrVy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ1ZWgMrVy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001b44;
  background: #000000;
}
.cid-uJ1ZWgMrVy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ff5640;
}
.cid-uJ1ZWgMrVy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ1ZWgMrVy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ1ZWgMrVy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ1ZWgMrVy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ1ZWgMrVy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ1ZWgMrVy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ1ZWgMrVy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ1ZWgMrVy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ1ZWgMrVy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uJ1ZWgMrVy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJ1ZWgMrVy .navbar {
    height: 70px;
  }
  .cid-uJ1ZWgMrVy .navbar.opened {
    height: auto;
  }
  .cid-uJ1ZWgMrVy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ1ZWgMrVy .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uJ1ZWgMrVy .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uJ1ZWgMrVy .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uJ1ZWgMrVy .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uJ1ZWgMrVy .navbar-caption:hover {
  color: #ffcc06;
}
@media (min-width: 992px) {
  .cid-uJ1ZWgMrVy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uJ1ZWgMrVy .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1ZWgMrVy .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJ1ZWgMrVy .text_widget {
  color: #000000;
}
.cid-uJ1ZWgMrVy .mbr-section-subtitle,
.cid-uJ1ZWgMrVy .text_widget,
.cid-uJ1ZWgMrVy .mbr-section-btn {
  text-align: center;
}
.cid-uJ1ZWgMrVy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ1ZWhJL7M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1ZWhJL7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWhJL7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWhJL7M .row {
  margin: 0 -8px;
}
.cid-uJ1ZWhJL7M .row .card {
  padding: 0 8px;
}
.cid-uJ1ZWhJL7M .card-wrapper {
  padding: 75px 64px;
  background-color: #c0b8a8;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWhJL7M .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWhJL7M .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap {
  width: 100%;
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWhJL7M .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWhJL7M .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .logo-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWhJL7M .card-wrapper .card-wrap .logo-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .logo-wrapper .logo-wrap img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  object-fit: cover;
  border-radius: 100% !important;
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .logo-wrapper .logo-wrap .mbr-desc {
  padding: 0 20px;
  margin-bottom: 0;
}
.cid-uJ1ZWhJL7M .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1ZWhJL7M .image-wrapper {
  height: 100%;
}
.cid-uJ1ZWhJL7M .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJ1ZWhJL7M .mbr-section-title {
  color: #2c2c26;
  text-align: center;
}
.cid-uJ1ZWhJL7M .mbr-text,
.cid-uJ1ZWhJL7M .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1ZWhJL7M .logo-wrapper,
.cid-uJ1ZWhJL7M .mbr-desc {
  text-align: center;
}
.cid-uJ1ZWhJL7M .mbr-desc {
  color: #63635d;
}
.cid-uJ1ZWhJL7M .mbr-section-title,
.cid-uJ1ZWhJL7M .mbr-section-btn {
  color: #181818;
}
.cid-uJ1ZWiB7sK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uJ1ZWiB7sK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWiB7sK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWiB7sK .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1ZWiB7sK .container {
    padding: 0 12px;
  }
}
.cid-uJ1ZWiB7sK .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uJ1ZWiB7sK .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #ffffff;
}
.cid-uJ1ZWiB7sK .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uJ1ZWiB7sK .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uJ1ZWiB7sK .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1ZWje3dn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001b44;
}
.cid-uJ1ZWje3dn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWje3dn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWje3dn .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1ZWje3dn .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1ZWje3dn .container-fluid .row {
  padding: 0;
}
.cid-uJ1ZWje3dn .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1ZWje3dn .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWje3dn .card {
    padding: 48px 20px;
  }
}
.cid-uJ1ZWje3dn .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1ZWje3dn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1ZWjSvaG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1ZWjSvaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWjSvaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWjSvaG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJ1ZWjSvaG .container {
    padding: 0 12px;
  }
}
.cid-uJ1ZWjSvaG .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJ1ZWjSvaG .image-wrapper {
    margin-bottom: 24px;
    height: auto;
  }
}
.cid-uJ1ZWjSvaG .image-wrapper img {
  height: 260px;
  width: 410px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWjSvaG .image-wrapper img {
    margin-bottom: 24px;
  }
}
.cid-uJ1ZWjSvaG .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWjSvaG .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1ZWjSvaG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1ZWjSvaG .mbr-section-title {
  color: #222222;
}
.cid-uJ1ZWjSvaG .mbr-text {
  color: #222222;
}
.cid-uJ1ZWktGmm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1ZWktGmm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWktGmm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWktGmm .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWktGmm .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uJ1ZWktGmm .items-wrapper {
  margin: 0 -13px;
}
.cid-uJ1ZWktGmm .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWktGmm .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1ZWktGmm .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uJ1ZWktGmm .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uJ1ZWktGmm .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uJ1ZWktGmm .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e75300, #c0b8a8 85%);
}
.cid-uJ1ZWktGmm .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #ff398a, #c0b8a8 85%);
}
.cid-uJ1ZWktGmm .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #e8c439, #c0b8a8 85%);
}
.cid-uJ1ZWktGmm .mbr-section-title,
.cid-uJ1ZWktGmm .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uJ1ZWktGmm .item-title {
  color: #ffffff;
}
.cid-uJ1ZWktGmm .item-text {
  color: #ffffff;
}
.cid-uJ1ZWktGmm .item-title,
.cid-uJ1ZWktGmm .mbr-section-btn {
  color: #000000;
}
.cid-uJ1ZWlukdc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0b8a8;
}
.cid-uJ1ZWlukdc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWlukdc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWlukdc .row {
  justify-content: center;
}
.cid-uJ1ZWlukdc .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uJ1ZWlukdc .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uJ1ZWlukdc .content-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffbe0d;
}
.cid-uJ1ZWlukdc .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWlukdc .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uJ1ZWlukdc .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWlukdc .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWlukdc .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uJ1ZWlukdc .mbr-label,
.cid-uJ1ZWlukdc .label-wrapper {
  color: #FFBE0D;
  text-align: center;
}
.cid-uJ1ZWlukdc .mbr-section-title {
  color: #fff7ee;
}
.cid-uJ1ZWlukdc .mbr-text,
.cid-uJ1ZWlukdc .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uJ1ZWlukdc .mbr-section-title,
.cid-uJ1ZWlukdc .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uJ1ZWmbmmH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ1ZWmbmmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWmbmmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWmbmmH .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1ZWmbmmH .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1ZWmbmmH .container-fluid .row {
  padding: 0;
}
.cid-uJ1ZWmbmmH .row {
  border: 3px solid #f4e8da;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1ZWmbmmH .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uJ1ZWmbmmH .card {
    border-left: 1px solid #f4e8da;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWmbmmH .card {
    padding: 48px 20px;
  }
}
.cid-uJ1ZWmbmmH .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uJ1ZWmbmmH .card:last-child {
    border-left: none;
    border-right: 2px solid #f4e8da;
  }
}
.cid-uJ1ZWmbmmH .card .title-wrapper {
  margin-bottom: 0;
}
.cid-uJ1ZWmbmmH .card .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uJ1ZWmbmmH .card .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1ZWmbmmH .card .image-wrapper {
  overflow: hidden;
}
.cid-uJ1ZWmbmmH .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ1ZWmbmmH .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1ZWmbmmH .mbr-section-title {
  color: #000000;
}
.cid-uJ1ZWmbmmH .mbr-text {
  color: #000000;
}
.cid-uJ1ZWn0Kl3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1ZWn0Kl3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWn0Kl3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWn0Kl3 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uJ1ZWn0Kl3 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uJ1ZWn0Kl3 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWn0Kl3 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWn0Kl3 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1ZWn0Kl3 .mbr-section-title {
  color: #000000;
}
.cid-uJ1ZWn0Kl3 .mbr-desc {
  color: #fdfde1;
}
.cid-uJ1ZWn0Kl3 .mbr-text {
  color: #000000;
}
.cid-uJ1ZWn0Kl3 .mbr-text,
.cid-uJ1ZWn0Kl3 .text-wrapper {
  color: #ffffff;
}
.cid-uJ1ZWn0Kl3 .mbr-section-title,
.cid-uJ1ZWn0Kl3 .mbr-section-btn {
  color: #fdfde1;
}
.cid-uJ1ZWnJpSy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #001b44;
  background-color: #c0b8a8;
}
.cid-uJ1ZWnJpSy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWnJpSy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWnJpSy .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWnJpSy .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1ZWnJpSy .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWnJpSy .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWnJpSy .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper {
  padding: 108px;
  height: 100%;
  min-height: 570px;
  border: 2px solid #001b44;
  box-shadow: -10px 10px 0 #001b44;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper {
    padding: 20px;
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper {
    box-shadow: -5px 5px 0 #001b44;
  }
}
.cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .item-img img {
  height: 450px;
  object-fit: cover;
  border: 2px solid #001b44;
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWnJpSy .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 32px;
}
.cid-uJ1ZWnJpSy .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1ZWnJpSy .item-title {
  color: #ffffff;
}
.cid-uJ1ZWnJpSy .item-text {
  color: #ffffff;
}
.cid-uJ1ZWnJpSy .item-title,
.cid-uJ1ZWnJpSy .mbr-section-btn {
  color: #000000;
}
.cid-uJ1ZWozNZa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJ1ZWozNZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWozNZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWozNZa .container {
    padding: 0 30px;
  }
}
.cid-uJ1ZWozNZa .row {
  position: relative;
}
.cid-uJ1ZWozNZa .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uJ1ZWozNZa .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uJ1ZWozNZa .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #001b44;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uJ1ZWozNZa .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uJ1ZWozNZa .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uJ1ZWozNZa .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ1ZWozNZa .mbr-text {
  color: #ffffff;
}
.cid-uJ1ZWozNZa .mbr-link,
.cid-uJ1ZWozNZa .mbr-iconfont {
  color: #212529;
}
.cid-uJ1ZWozNZa .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1ZWplVi8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1ZWplVi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWplVi8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWplVi8 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1ZWplVi8 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1ZWplVi8 .container-fluid .row {
  padding: 0;
}
.cid-uJ1ZWplVi8 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1ZWplVi8 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWplVi8 .card {
    padding: 48px 20px;
  }
}
.cid-uJ1ZWplVi8 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uJ1ZWplVi8 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1ZWplVi8 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-uJ1ZWplVi8 .app-video-wrapper::before {
  color: #ffffff;
  text-shadow: none;
}
.cid-uJ1ZWplVi8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1ZWq60zB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #001b44;
}
.cid-uJ1ZWq60zB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWq60zB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWq60zB .content-wrapper {
  padding: 0 75px 0 108px;
  padding: 0 108px 0 75px;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWq60zB .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uJ1ZWq60zB .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .content-wrapper {
    padding: 0;
  }
}
.cid-uJ1ZWq60zB .content-wrapper .mbr-label {
  margin-bottom: 110px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .content-wrapper .mbr-label {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWq60zB .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .content-wrapper .nav.nav-tabs {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWq60zB .content-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 0;
}
.cid-uJ1ZWq60zB .content-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uJ1ZWq60zB .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #fff9e7;
  padding: 20px 0;
  border: none;
  border-bottom: 2px solid #fff9e7;
  box-shadow: none;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cid-uJ1ZWq60zB .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  padding-left: 20px;
}
.cid-uJ1ZWq60zB .tab-content {
  padding: 0 108px 0 75px;
  padding: 0 75px 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWq60zB .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .tab-content {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uJ1ZWq60zB .tab-content {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .tab-content {
    padding: 0;
  }
}
.cid-uJ1ZWq60zB .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 780px;
  object-fit: cover;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .tab-content .tab-pane .content-wrap .image-wrap img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uJ1ZWq60zB .button-wrap {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uJ1ZWq60zB .button-wrap {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .button-wrap {
    padding: 0;
  }
}
.cid-uJ1ZWq60zB .button-wrap .mbr-section-btn {
  margin-top: 110px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWq60zB .button-wrap .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uJ1ZWq60zB .mbr-section-title {
  color: #2C2625;
}
.cid-uJ1ZWq60zB .mbr-section-btn {
  text-align: center;
}
.cid-uJ1ZWq60zB .mbr-label,
.cid-uJ1ZWq60zB .mbr-section-btn {
  color: #ffffff;
}
.cid-uJ1ZWr8R7W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1ZWr8R7W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWr8R7W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWr8R7W .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1ZWr8R7W .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1ZWr8R7W .container-fluid .row {
  padding: 0;
}
.cid-uJ1ZWr8R7W .row {
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1ZWr8R7W .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWr8R7W .card {
    padding: 48px 20px;
  }
}
.cid-uJ1ZWr8R7W .card .tags-wrapper .tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cid-uJ1ZWr8R7W .card .tags-wrapper .tags .mbr-section-subtitle {
  margin: 0 28px 8px 0;
}
.cid-uJ1ZWr8R7W .card .tags-wrapper .tags .mbr-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  margin: 0 6px 6px 0;
  border: 1px solid #c0b8a8;
  border-radius: 30px;
}
.cid-uJ1ZWr8R7W .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1ZWr8R7W .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1ZWr8R7W .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1ZWr8R7W .mbr-tag {
  color: #000000;
}
.cid-uJ1ZWr8R7W .mbr-section-subtitle,
.cid-uJ1ZWr8R7W .tags-wrapper {
  text-align: center;
}
.cid-uJ1ZWr8R7W .mbr-tag,
.cid-uJ1ZWr8R7W .tags-wrapper {
  color: #000000;
}
.cid-uJ1ZWs57QG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1ZWs57QG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWs57QG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWs57QG .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWs57QG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJ1ZWs57QG .title .icon-wrap {
  margin-bottom: 64px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uJ1ZWs57QG .title .icon-wrap {
    margin-bottom: 32px;
    text-align: left;
  }
}
.cid-uJ1ZWs57QG .title .icon-wrap .mbr-iconfont {
  display: inline-flex;
  width: 70px;
  height: 70px;
  color: #000000;
  font-size: 70px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWs57QG .title .icon-wrap .mbr-iconfont {
    width: 48px;
    height: 48px;
    font-size: 48px;
  }
}
.cid-uJ1ZWs57QG .items-wrap {
  justify-content: center;
  margin: 0 -10px;
  row-gap: 25px;
}
.cid-uJ1ZWs57QG .items-wrap .card {
  padding: 0 10px;
}
.cid-uJ1ZWs57QG .items-wrap .card_2 {
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWs57QG .items-wrap .card_2 {
    padding-top: 0;
  }
}
.cid-uJ1ZWs57QG .items-wrap .card_3 {
  padding-top: 400px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWs57QG .items-wrap .card_3 {
    padding-top: 0;
  }
}
.cid-uJ1ZWs57QG .card .item-wrapper {
  background-color: #001b44;
  transition: all 0.3s ease;
}
.cid-uJ1ZWs57QG .card .item-wrapper .card-box {
  padding: 3rem 1.5rem;
  min-height: 500px;
}
@media (max-width: 992px) {
  .cid-uJ1ZWs57QG .card .item-wrapper .card-box {
    padding: 36px 24px;
    min-height: auto;
  }
}
.cid-uJ1ZWs57QG .card .item-wrapper .card-box .item-number {
  margin-bottom: 32px;
}
.cid-uJ1ZWs57QG .card .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
.cid-uJ1ZWs57QG .card .item-wrapper .card-box .item-text {
  margin-bottom: 0;
  line-height: 1.66;
}
.cid-uJ1ZWs57QG .card .item-wrapper .card-box .icon-wrap {
  font-size: 3rem;
  color: #fdfde1;
}
.cid-uJ1ZWs57QG .card .item-wrapper:hover {
  box-shadow: 5px 5px 0 0 #666666;
  transform: translateY(-1.15rem);
}
.cid-uJ1ZWs57QG .mbr-section-title {
  color: #000000;
}
.cid-uJ1ZWs57QG .item-title {
  color: #fdfde1;
}
.cid-uJ1ZWs57QG .item-number {
  color: #ffffff;
}
.cid-uJ1ZWs57QG .item-text {
  color: #fdfde1;
}
.cid-uJ1ZWt9anO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001b44;
}
.cid-uJ1ZWt9anO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWt9anO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWt9anO .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWt9anO .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ1ZWt9anO .container {
    padding: 0;
  }
}
.cid-uJ1ZWt9anO .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJ1ZWt9anO .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uJ1ZWt9anO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1ZWt9anO .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uJ1ZWt9anO .mbr-section-title {
  color: #ffffff;
}
.cid-uJ1ZWt9anO .mbr-text {
  color: #ffffff;
}
.cid-uJ3qB0ji4K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uJ3qB0ji4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ3qB0ji4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ3qB0ji4K .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uJ3qB0ji4K .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uJ3qB0ji4K .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uJ3qB0ji4K .container {
    padding: 0 16px;
  }
}
.cid-uJ3qB0ji4K .row {
  justify-content: space-between;
}
.cid-uJ3qB0ji4K .title-wrapper {
  position: sticky;
}
.cid-uJ3qB0ji4K .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ3qB0ji4K .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uJ3qB0ji4K .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #001b44, #56acff 34%, #7179ef 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ3qB0ji4K .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uJ3qB0ji4K .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #001b44, #56acff 34%, #7179ef 67%, #e26a69);
  border-radius: 50%;
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uJ3qB0ji4K .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uJ3qB0ji4K .mbr-section-title {
  color: #080808;
}
.cid-uJ3qB0ji4K .panel-title-edit {
  color: #080808;
}
.cid-uJ3qB0ji4K .panel-text {
  color: #333333;
}
.cid-uJ1ZWtVFg9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c0b8a8;
}
.cid-uJ1ZWtVFg9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWtVFg9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWtVFg9 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uJ1ZWtVFg9 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uJ1ZWtVFg9 .container-fluid .row {
  padding: 0;
}
.cid-uJ1ZWtVFg9 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uJ1ZWtVFg9 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uJ1ZWtVFg9 .card {
    padding: 48px 20px;
  }
}
.cid-uJ1ZWtVFg9 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-uJ1ZWtVFg9 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ1ZWtVFg9 .card .google-map {
  border: 5px solid #d2d2d2;
  height: 400px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uJ1ZWtVFg9 .card .google-map {
    height: 250px;
  }
}
.cid-uJ1ZWtVFg9 .card .google-map iframe {
  height: 100%;
}
.cid-uJ1ZWtVFg9 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ1ZWuRHxP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e8c439;
}
.cid-uJ1ZWuRHxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZWuRHxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1ZWuRHxP .footer-col {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uJ1ZWuRHxP .footer-col {
    flex-direction: column;
  }
}
.cid-uJ1ZWuRHxP .row {
  background: #001b44;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJ1ZWuRHxP .row {
    padding: 2rem 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJ1ZWuRHxP .row {
    padding: 2.25rem 1.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ1ZWuRHxP .row {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ1ZWuRHxP .mbr-section-btn {
    text-align: center;
  }
}
.cid-uJ1ZWuRHxP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uJ1ZWuRHxP .item-wrap {
  transition: all 300ms ease;
}
.cid-uJ1ZWuRHxP .item-wrap:hover,
.cid-uJ1ZWuRHxP .item-wrap:focus {
  cursor: pointer;
}
.cid-uJ1ZWuRHxP .soc-item {
  margin: 8px;
}
.cid-uJ1ZWuRHxP .soc-item a:hover .mbr-iconfont,
.cid-uJ1ZWuRHxP .soc-item a:focus .mbr-iconfont {
  background-color: #bff747;
}
.cid-uJ1ZWuRHxP .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  background-color: #e8c439;
  color: #001b44;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uJ1ZWuRHxP .row {
    text-align: center;
  }
  .cid-uJ1ZWuRHxP .social-row {
    justify-content: center;
  }
}
.cid-uJ1ZWuRHxP .list {
  list-style: none;
  padding-left: 0;
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-uJ1ZWuRHxP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ1ZWuRHxP .list {
    margin-bottom: 0rem;
  }
}
.cid-uJ1ZWuRHxP .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uJ1ZWuRHxP .list,
.cid-uJ1ZWuRHxP .item-wrap {
  color: #fdfde1;
}
.cid-uJ1ZWuRHxP .copyright {
  color: #fdfde1;
  text-align: right;
}
