body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.625rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 3.28125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}
.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.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    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-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.1rem;
    font-size: calc( 1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((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.25 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #d75a35 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #fcff1e !important;
}
.btn-primary .btn-overlay {
  background-color: #905949 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d75a35 !important;
  border-color: #d75a35 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #905949 !important;
  border-color: #905949 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #c0c228 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
  color: #1e1e00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #1e1e00 !important;
  background-color: #c0c228 !important;
  border-color: #c0c228 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !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.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 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 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d75a35;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #973a1e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d75a35 !important;
  border-color: #d75a35 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcff1e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c4c600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #1e1e00 !important;
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.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: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !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: #d75a35 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #fcff1e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8b351b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b5b700 !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: #d75a35;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #fcff1e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d75a35;
  border-color: #d75a35;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d75a35;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9e5df;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #d75a35 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #d75a35;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d75a35;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d75a35;
}
.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: #d75a35;
  border-bottom-color: #d75a35;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #d75a35 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #bcd948 !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='%23d75a35' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-v3uhzLQIO9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v3uhzLQIO9 nav.navbar {
  position: fixed;
}
.cid-v3uhzLQIO9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3uhzLQIO9 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v3uhzLQIO9 .dropdown-item {
  border: none !important;
  background: #0e264c !important;
  font-weight: 300;
}
.cid-v3uhzLQIO9 .dropdown-item:hover,
.cid-v3uhzLQIO9 .dropdown-item:focus {
  background: #0e264c !important;
  color: #1a1a1a !important;
}
.cid-v3uhzLQIO9 .dropdown-item:hover span {
  color: white;
}
.cid-v3uhzLQIO9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3uhzLQIO9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3uhzLQIO9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3uhzLQIO9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
}
.cid-v3uhzLQIO9 .nav-link {
  position: relative;
}
.cid-v3uhzLQIO9 .container {
  display: flex;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3uhzLQIO9 .container {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cid-v3uhzLQIO9 .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .cid-v3uhzLQIO9 .container {
    max-width: 1484px;
  }
}
.cid-v3uhzLQIO9 .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3uhzLQIO9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v3uhzLQIO9 .dropdown-menu,
.cid-v3uhzLQIO9 .navbar.opened {
  background: #0e264c !important;
}
.cid-v3uhzLQIO9 .nav-item:focus,
.cid-v3uhzLQIO9 .nav-link:focus {
  outline: none;
}
.cid-v3uhzLQIO9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3uhzLQIO9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3uhzLQIO9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3uhzLQIO9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3uhzLQIO9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3uhzLQIO9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3uhzLQIO9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0e264c;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3uhzLQIO9 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3uhzLQIO9 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 12px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v3uhzLQIO9 .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v3uhzLQIO9 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3uhzLQIO9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3uhzLQIO9 .navbar.collapsed {
  justify-content: center;
}
.cid-v3uhzLQIO9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3uhzLQIO9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3uhzLQIO9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3uhzLQIO9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3uhzLQIO9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3uhzLQIO9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3uhzLQIO9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3uhzLQIO9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3uhzLQIO9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3uhzLQIO9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3uhzLQIO9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3uhzLQIO9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3uhzLQIO9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3uhzLQIO9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3uhzLQIO9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3uhzLQIO9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3uhzLQIO9 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v3uhzLQIO9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3uhzLQIO9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3uhzLQIO9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3uhzLQIO9 .navbar.navbar-short {
  min-height: 70px;
}
.cid-v3uhzLQIO9 .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-v3uhzLQIO9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3uhzLQIO9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v3uhzLQIO9 .navbar-brand .navbar-caption:hover,
.cid-v3uhzLQIO9 .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3uhzLQIO9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3uhzLQIO9 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3uhzLQIO9 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3uhzLQIO9 .dropdown-item.active,
.cid-v3uhzLQIO9 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3uhzLQIO9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3uhzLQIO9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3uhzLQIO9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3uhzLQIO9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e264c;
  top: 2.4rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v3uhzLQIO9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3uhzLQIO9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3uhzLQIO9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3uhzLQIO9 ul.navbar-nav {
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .cid-v3uhzLQIO9 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.cid-v3uhzLQIO9 .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v3uhzLQIO9 .navbar-buttons {
    text-align: left;
  }
}
.cid-v3uhzLQIO9 .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v3uhzLQIO9 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3uhzLQIO9 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: #0e264c !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3uhzLQIO9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #1a1a1a;
}
.cid-v3uhzLQIO9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3uhzLQIO9 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3uhzLQIO9 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3uhzLQIO9 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-v3uhzLQIO9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3uhzLQIO9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3uhzLQIO9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3uhzLQIO9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3uhzLQIO9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3uhzLQIO9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3uhzLQIO9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3uhzLQIO9 .navbar {
    height: 70px;
  }
  .cid-v3uhzLQIO9 .navbar.opened {
    height: auto;
  }
  .cid-v3uhzLQIO9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3uhzLQIO9 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3uhzLQIO9 .nav-item .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}
.cid-v3uhzLQIO9 .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3uhzLQIO9 .nav-item .nav-link:hover {
  background-color: transparent;
  opacity: .5;
}
.cid-v3uhzLQIO9 .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v3uhzLQIO9 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3uhzLQIO9 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3uhzLQIO9 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v3uhzLQIO9 .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3uhzLQIO9 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3uhzLQIO9 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3uhzLQIO9 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3uhzLQIO9 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3uhzLQIO9 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v3uhzLQIO9 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v3uhGrzYMk {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}
.cid-v3uhGrzYMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uhGrzYMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uhGrzYMk::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3uhGrzYMk .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v3uhGrzYMk .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3uhGrzYMk .content-wrapper .border_1 {
  left: 0;
}
.cid-v3uhGrzYMk .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .border_2 {
    display: none;
  }
}
.cid-v3uhGrzYMk .content-wrapper .border_3 {
  left: 50%;
}
.cid-v3uhGrzYMk .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .border_4 {
    display: none;
  }
}
.cid-v3uhGrzYMk .content-wrapper .border_5 {
  left: 100%;
}
.cid-v3uhGrzYMk .content-wrapper .content-wrap {
  margin: 0;
}
.cid-v3uhGrzYMk .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
}
.cid-v3uhGrzYMk .content-wrapper .title-wrapper {
  margin-bottom: 32px;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .title-wrapper {
    padding: 0 16px;
  }
}
.cid-v3uhGrzYMk .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3uhGrzYMk .content-wrapper .text-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .text-wrapper {
    padding: 0 16px;
  }
}
.cid-v3uhGrzYMk .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 0;
  }
}
.cid-v3uhGrzYMk .content-wrapper .card-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .card-wrap {
    padding: 0 16px;
  }
}
.cid-v3uhGrzYMk .content-wrapper .card-wrap .mbr-section-btn {
  margin-top: 16px;
}
.cid-v3uhGrzYMk .content-wrapper .image-wrapper {
  position: relative;
  animation: none;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  margin-left: 1px;
}
.cid-v3uhGrzYMk .content-wrapper .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 60%;
  height: 20%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(3px);
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .image-wrapper::before {
    width: 100%;
  }
}
.cid-v3uhGrzYMk .content-wrapper .image-wrapper img {
  width: 50%;
  margin: 0 auto;
  height: 450px;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-v3uhGrzYMk .content-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
  }
}
.cid-v3uhGrzYMk .mbr-section-title {
  color: #1a1a1a;
}
.cid-v3uhGrzYMk .mbr-text,
.cid-v3uhGrzYMk .text-wrapper {
  color: #010101;
  text-align: center;
}
.cid-v3uhGrzYMk .mbr-section-title,
.cid-v3uhGrzYMk .mbr-section-btn {
  text-align: center;
}
.cid-v3xWieX90w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: linear-gradient(0deg, #e1e7f2 -70%, #ffffff 100%);
}
.cid-v3xWieX90w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3xWieX90w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3xWieX90w .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v3xWieX90w .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3xWieX90w .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-v3xWieX90w .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3xWieX90w .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3xWieX90w .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3xWieX90w .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3xWieX90w .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v3xWieX90w .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
}
.cid-v3xWieX90w .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #ff6d99;
  color: #ff6d99;
  font-size: 11px;
}
.cid-v3xWieX90w .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3xWieX90w .list_2 {
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-v3xWieX90w .list_2 {
    padding-left: 0;
  }
}
.cid-v3xWieX90w .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-v3xWieX90w .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-v3xWieX90w .mbr-text,
.cid-v3xWieX90w .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-v3xWieX90w .list {
  color: #666666;
}
.cid-v3yi0yGxOo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yi0yGxOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yi0yGxOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yi0yGxOo .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yi0yGxOo .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yi0yGxOo .container {
    padding: 0 12px;
  }
}
.cid-v3yi0yGxOo .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yi0yGxOo .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yi0yGxOo .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yi0yGxOo .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-v3yi0yGxOo .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v3yi0yGxOo .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-v3yi0yGxOo .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-v3yi0yGxOo .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-v3yi0yGxOo .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-v3yi0yGxOo .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-v3yi0yGxOo .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v3yi0yGxOo .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yi0yGxOo .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yi0yGxOo .mbr-text {
  color: #222222;
}
.cid-v3yi0yGxOo .list {
  color: #222222;
}
.cid-v3yhU1OlR1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yhU1OlR1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yhU1OlR1 .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-v3yhU1OlR1 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yhU1OlR1 .container {
    padding: 0 12px;
  }
}
.cid-v3yhU1OlR1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yhU1OlR1 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yhU1OlR1 .row.card-wrapper {
  padding: 80px;
  border: 3px solid #fcff1b;
  box-shadow: 4px 4px #fcff1b;
  background-color: #0e264c;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3yhU1OlR1 .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-v3yhU1OlR1 .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-v3yhU1OlR1 .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-v3yhU1OlR1 .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-v3yhU1OlR1 .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-v3yhU1OlR1 .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v3yhU1OlR1 .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3yhU1OlR1 .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yhU1OlR1 .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #fcff1b;
}
.cid-v3yhU1OlR1 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yhU1OlR1 .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yhU1OlR1 .mbr-text {
  color: #ffffff;
}
.cid-v3yhU1OlR1 .list {
  color: #222222;
}
.cid-v3ugv8hzTg {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: #0e264c;
}
.cid-v3ugv8hzTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ugv8hzTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ugv8hzTg .card-wrapper {
  background-color: #ffffff;
  padding: 56px 32px;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper {
    padding: 24px;
  }
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper {
  position: sticky;
  top: 56px;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .title-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .title-wrapper .tabs-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  color: #0e264c;
  padding: 18px 28px;
  border: 1px solid #0027ba;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  background-color: #0027ba;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 14px 20px;
  }
}
.cid-v3ugv8hzTg .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #0027ba;
  border: 1px solid #0027ba;
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap {
  padding: 40px 32px;
  background-color: #0e264c;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
    height: 300px;
  }
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-v3ugv8hzTg .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3ugv8hzTg .mbr-label {
  color: #0027ba;
}
.cid-v3ugv8hzTg .mbr-section-title {
  color: #0027ba;
}
.cid-v3ugv8hzTg .item-title {
  color: #ffb3c1;
}
.cid-v3ugv8hzTg .item-text {
  color: #ffb3c1;
}
.cid-v3yhG04Nxc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yhG04Nxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yhG04Nxc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yhG04Nxc .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .container {
    padding: 0 30px;
  }
}
.cid-v3yhG04Nxc .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .card-wrapper {
    display: block;
  }
}
.cid-v3yhG04Nxc .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-v3yhG04Nxc .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v3yhG04Nxc .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v3yhG04Nxc .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v3yhG04Nxc .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3yhG04Nxc .mbr-section-title {
  color: #ffffff;
}
.cid-v3yhG04Nxc .mbr-text {
  color: #ffffff;
}
.cid-v3yhpT11Jq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3yhpT11Jq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yhpT11Jq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yhpT11Jq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v3yhpT11Jq .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yhpT11Jq .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-v3yhpT11Jq .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yhpT11Jq .container {
    padding: 0 12px;
  }
}
.cid-v3yhpT11Jq .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yhpT11Jq .content-wrapper {
    padding: 0 24px;
  }
}
.cid-v3yhpT11Jq .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v3yhpT11Jq .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-v3yhpT11Jq .mbr-section-title {
  color: #1D1D1F;
}
.cid-v3yhpT11Jq .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-v3yhpT11Jq .mbr-section-title,
.cid-v3yhpT11Jq .mbr-section-btn {
  text-align: center;
}
.cid-t2YVqbwMGe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-t2YVqbwMGe .row {
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YVqbwMGe .mbr-section-title {
  color: #000000;
}
.cid-t2YVqbwMGe .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-t2YVqbwMGe .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YVqbwMGe .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YVqbwMGe .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-t2YVqbwMGe .text-container {
    padding: 24px;
  }
}
.cid-t2YVqbwMGe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YVqbwMGe .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YVqbwMGe .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-t2YVqbwMGe .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YVqbwMGe .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3yh94iFvx {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-v3yh94iFvx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yh94iFvx .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v3yh94iFvx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yh94iFvx h1 {
  max-width: 800px;
}
.cid-v3yh94iFvx p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v3yh94iFvx {
    align-items: center;
  }
  .cid-v3yh94iFvx .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v3yh94iFvx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yh94iFvx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v3yh94iFvx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v3yh94iFvx .content-wrap {
    width: 100%;
  }
}
.cid-v3yh94iFvx .mbr-section-subtitle,
.cid-v3yh94iFvx .line {
  color: #291f1e;
}
.cid-v3yh94iFvx .mbr-text,
.cid-v3yh94iFvx .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-v3yh94iFvx .mbr-section-title {
  color: #291f1e;
}
.cid-v3uesdSsiY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3uesdSsiY .row {
  align-items: center;
  margin: 0;
}
.cid-v3uesdSsiY .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-v3uesdSsiY .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-v3uesdSsiY .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-v3uesdSsiY .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v3uesdSsiY .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3uesdSsiY .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-v3uesdSsiY .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-v3uesdSsiY .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-v3uesdSsiY .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-v3uesdSsiY .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3uesdSsiY .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3uesdSsiY .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-v3uesdSsiY .btn-container {
  width: 100%;
}
.cid-v3uesdSsiY .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-v3uesdSsiY .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-v3uesdSsiY .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-v3uesdSsiY .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-v3yy1KFczm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-v3yy1KFczm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yy1KFczm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yy1KFczm .container {
  max-width: 1280px;
}
.cid-v3yy1KFczm .row {
  justify-content: center;
}
.cid-v3yy1KFczm .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-v3yy1KFczm .col-title {
    margin-bottom: 50px;
  }
}
.cid-v3yy1KFczm .mbr-section-title {
  color: #FFDD65;
}
.cid-v3yy1KFczm .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-v3yy1KFczm .col-video {
  display: flex;
}
@media (max-width: 767px) {
  .cid-v3yy1KFczm .col-video {
    height: 350px;
  }
}
.cid-v3yy1KFczm .col-video .mbr-figure {
  width: 100%;
  border-radius: 4.17rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-v3yy1KFczm .col-video .mbr-figure .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-v3yy1KFczm .col-video .mbr-figure iframe {
  border-radius: 3.85rem;
}
.cid-v3yy1KFczm .col-video .mbr-figure .app-video-wrapper {
  overflow: hidden;
}
.cid-v3yy1KFczm .col-video .mbr-figure .app-video-wrapper img {
  border-radius: 4.85rem;
}
.cid-v3yh0AzgUL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yh0AzgUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yh0AzgUL .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-v3yh0AzgUL .container {
    padding: 0 15px;
  }
}
.cid-v3yh0AzgUL .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-v3yh0AzgUL .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-v3yh0AzgUL .content-wrapper {
    padding-right: 0;
  }
}
.cid-v3yh0AzgUL .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3yh0AzgUL .content-wrap {
    display: block;
  }
}
.cid-v3yh0AzgUL .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yh0AzgUL .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yh0AzgUL .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yh0AzgUL .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yh0AzgUL .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-v3yh0AzgUL .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-v3yh0AzgUL .mbr-section-title {
  color: #000000;
}
.cid-v3yh0AzgUL .mbr-desc,
.cid-v3yh0AzgUL .desc-wrapper {
  color: #3f1819;
}
.cid-v3uf3D0JKy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3uf3D0JKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uf3D0JKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uf3D0JKy .row {
  margin: 0 -15px;
}
.cid-v3uf3D0JKy .row .card {
  padding: 0 15px;
}
@media (max-width: 992px) {
  .cid-v3uf3D0JKy .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3uf3D0JKy .title-wrapper .title-wrap {
  margin-bottom: 30px;
}
.cid-v3uf3D0JKy .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3uf3D0JKy .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3uf3D0JKy .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3uf3D0JKy .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3uf3D0JKy .panel-group .card {
  position: relative;
  padding: 0;
  background-color: transparent;
  border: 1px solid #fefff5;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}
.cid-v3uf3D0JKy .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v3uf3D0JKy .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3uf3D0JKy .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.cid-v3uf3D0JKy .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3uf3D0JKy .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #3a392d;
}
.cid-v3uf3D0JKy .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #fefff5;
}
.cid-v3uf3D0JKy .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
  background-color: #994412;
}
.cid-v3uf3D0JKy .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #fefff5;
}
.cid-v3uf3D0JKy .panel-group .card .panel-collapse .panel-body {
  padding: 0 20px 20px 20px;
}
.cid-v3uf3D0JKy .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v3uf3D0JKy .mbr-section-title {
  color: #fefff5;
}
.cid-v3uf3D0JKy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3uf3D0JKy .mbr-text {
  color: #fefff5;
}
.cid-v3uf3D0JKy .panel-title-edit {
  color: #fefff5;
}
.cid-v3uf3D0JKy .panel-text {
  color: #fefff5;
}
.cid-v3ubiBWmL4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3ubiBWmL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ubiBWmL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ubiBWmL4 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3ubiBWmL4 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3ubiBWmL4 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap:hover,
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap:focus {
  color: #d75a35;
}
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3ubiBWmL4 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .social-wrapper {
    text-align: left;
  }
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #d75a35;
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3ubiBWmL4 .list,
.cid-v3ubiBWmL4 .item-wrap,
.cid-v3ubiBWmL4 .social-wrapper {
  color: #fdfde1;
}
.cid-v3uaiJbBZR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uaiJbBZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uaiJbBZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uaiJbBZR .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3uaiJbBZR .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3uaiJbBZR .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3uaiJbBZR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3uaiJbBZR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3uaiJbBZR .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3uaiJbBZR .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3uaiJbBZR .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3uaiJbBZR .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3uaiJbBZR .list li {
  transition: 0.5s all;
}
.cid-v3uaiJbBZR .list li:hover {
  opacity: 0.6;
}
.cid-v3uaiJbBZR .item-wrap {
  margin-bottom: 12px;
}
.cid-v3uaiJbBZR .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3uaiJbBZR .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3uaiJbBZR .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3uaiJbBZR .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .copyright-col {
    text-align: center;
  }
}
.cid-v3uaiJbBZR .copyright {
  text-align: justify;
}
.cid-v3yqqm7KHE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v3yqqm7KHE nav.navbar {
  position: fixed;
}
.cid-v3yqqm7KHE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yqqm7KHE .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v3yqqm7KHE .dropdown-item {
  border: none !important;
  background: #0e264c !important;
  font-weight: 300;
}
.cid-v3yqqm7KHE .dropdown-item:hover,
.cid-v3yqqm7KHE .dropdown-item:focus {
  background: #0e264c !important;
  color: #1a1a1a !important;
}
.cid-v3yqqm7KHE .dropdown-item:hover span {
  color: white;
}
.cid-v3yqqm7KHE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3yqqm7KHE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3yqqm7KHE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3yqqm7KHE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
}
.cid-v3yqqm7KHE .nav-link {
  position: relative;
}
.cid-v3yqqm7KHE .container {
  display: flex;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqqm7KHE .container {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cid-v3yqqm7KHE .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .cid-v3yqqm7KHE .container {
    max-width: 1484px;
  }
}
.cid-v3yqqm7KHE .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3yqqm7KHE .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v3yqqm7KHE .dropdown-menu,
.cid-v3yqqm7KHE .navbar.opened {
  background: #0e264c !important;
}
.cid-v3yqqm7KHE .nav-item:focus,
.cid-v3yqqm7KHE .nav-link:focus {
  outline: none;
}
.cid-v3yqqm7KHE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3yqqm7KHE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3yqqm7KHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3yqqm7KHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yqqm7KHE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3yqqm7KHE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3yqqm7KHE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0e264c;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yqqm7KHE .navbar.opened {
  transition: all 0.3s;
}
.cid-v3yqqm7KHE .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 12px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v3yqqm7KHE .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v3yqqm7KHE .navbar .navbar-logo img {
  width: auto;
}
.cid-v3yqqm7KHE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3yqqm7KHE .navbar.collapsed {
  justify-content: center;
}
.cid-v3yqqm7KHE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3yqqm7KHE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3yqqm7KHE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3yqqm7KHE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3yqqm7KHE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3yqqm7KHE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3yqqm7KHE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3yqqm7KHE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3yqqm7KHE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3yqqm7KHE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3yqqm7KHE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3yqqm7KHE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3yqqm7KHE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3yqqm7KHE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3yqqm7KHE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3yqqm7KHE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3yqqm7KHE .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v3yqqm7KHE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3yqqm7KHE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3yqqm7KHE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3yqqm7KHE .navbar.navbar-short {
  min-height: 70px;
}
.cid-v3yqqm7KHE .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-v3yqqm7KHE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3yqqm7KHE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v3yqqm7KHE .navbar-brand .navbar-caption:hover,
.cid-v3yqqm7KHE .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yqqm7KHE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yqqm7KHE .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3yqqm7KHE .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yqqm7KHE .dropdown-item.active,
.cid-v3yqqm7KHE .dropdown-item:active {
  background-color: transparent;
}
.cid-v3yqqm7KHE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3yqqm7KHE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3yqqm7KHE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3yqqm7KHE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e264c;
  top: 2.4rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v3yqqm7KHE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3yqqm7KHE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3yqqm7KHE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3yqqm7KHE ul.navbar-nav {
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .cid-v3yqqm7KHE ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.cid-v3yqqm7KHE .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v3yqqm7KHE .navbar-buttons {
    text-align: left;
  }
}
.cid-v3yqqm7KHE .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v3yqqm7KHE .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3yqqm7KHE button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: #0e264c !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yqqm7KHE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #1a1a1a;
}
.cid-v3yqqm7KHE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3yqqm7KHE button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yqqm7KHE button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yqqm7KHE button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-v3yqqm7KHE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yqqm7KHE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3yqqm7KHE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3yqqm7KHE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yqqm7KHE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3yqqm7KHE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3yqqm7KHE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3yqqm7KHE .navbar {
    height: 70px;
  }
  .cid-v3yqqm7KHE .navbar.opened {
    height: auto;
  }
  .cid-v3yqqm7KHE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3yqqm7KHE .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3yqqm7KHE .nav-item .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}
.cid-v3yqqm7KHE .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3yqqm7KHE .nav-item .nav-link:hover {
  background-color: transparent;
  opacity: .5;
}
.cid-v3yqqm7KHE .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v3yqqm7KHE .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3yqqm7KHE .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3yqqm7KHE .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v3yqqm7KHE .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3yqqm7KHE .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3yqqm7KHE .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3yqqm7KHE .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3yqqm7KHE .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3yqqm7KHE .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v3yqqm7KHE .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v3yqqnIxqi {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}
.cid-v3yqqnIxqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqnIxqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqnIxqi::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3yqqnIxqi .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v3yqqnIxqi .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3yqqnIxqi .content-wrapper .border_1 {
  left: 0;
}
.cid-v3yqqnIxqi .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .border_2 {
    display: none;
  }
}
.cid-v3yqqnIxqi .content-wrapper .border_3 {
  left: 50%;
}
.cid-v3yqqnIxqi .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .border_4 {
    display: none;
  }
}
.cid-v3yqqnIxqi .content-wrapper .border_5 {
  left: 100%;
}
.cid-v3yqqnIxqi .content-wrapper .content-wrap {
  margin: 0;
}
.cid-v3yqqnIxqi .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
}
.cid-v3yqqnIxqi .content-wrapper .title-wrapper {
  margin-bottom: 32px;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .title-wrapper {
    padding: 0 16px;
  }
}
.cid-v3yqqnIxqi .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yqqnIxqi .content-wrapper .text-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .text-wrapper {
    padding: 0 16px;
  }
}
.cid-v3yqqnIxqi .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 0;
  }
}
.cid-v3yqqnIxqi .content-wrapper .card-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .card-wrap {
    padding: 0 16px;
  }
}
.cid-v3yqqnIxqi .content-wrapper .card-wrap .mbr-section-btn {
  margin-top: 16px;
}
.cid-v3yqqnIxqi .content-wrapper .image-wrapper {
  position: relative;
  animation: none;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  margin-left: 1px;
}
.cid-v3yqqnIxqi .content-wrapper .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 60%;
  height: 20%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(3px);
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .image-wrapper::before {
    width: 100%;
  }
}
.cid-v3yqqnIxqi .content-wrapper .image-wrapper img {
  width: 50%;
  margin: 0 auto;
  height: 450px;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-v3yqqnIxqi .content-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
  }
}
.cid-v3yqqnIxqi .mbr-section-title {
  color: #1a1a1a;
}
.cid-v3yqqnIxqi .mbr-text,
.cid-v3yqqnIxqi .text-wrapper {
  color: #010101;
  text-align: center;
}
.cid-v3yqqnIxqi .mbr-section-title,
.cid-v3yqqnIxqi .mbr-section-btn {
  text-align: center;
}
.cid-v3yqqoC0kt {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: linear-gradient(0deg, #e1e7f2 -70%, #ffffff 100%);
}
.cid-v3yqqoC0kt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqoC0kt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqoC0kt .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v3yqqoC0kt .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3yqqoC0kt .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-v3yqqoC0kt .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yqqoC0kt .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3yqqoC0kt .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqqoC0kt .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3yqqoC0kt .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v3yqqoC0kt .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
}
.cid-v3yqqoC0kt .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #ff6d99;
  color: #ff6d99;
  font-size: 11px;
}
.cid-v3yqqoC0kt .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3yqqoC0kt .list_2 {
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-v3yqqoC0kt .list_2 {
    padding-left: 0;
  }
}
.cid-v3yqqoC0kt .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-v3yqqoC0kt .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-v3yqqoC0kt .mbr-text,
.cid-v3yqqoC0kt .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-v3yqqoC0kt .list {
  color: #666666;
}
.cid-v3yqqppGJP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqqppGJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqppGJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqppGJP .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yqqppGJP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqqppGJP .container {
    padding: 0 12px;
  }
}
.cid-v3yqqppGJP .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqqppGJP .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yqqppGJP .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yqqppGJP .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-v3yqqppGJP .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v3yqqppGJP .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-v3yqqppGJP .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqqppGJP .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-v3yqqppGJP .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-v3yqqppGJP .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-v3yqqppGJP .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v3yqqppGJP .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yqqppGJP .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yqqppGJP .mbr-text {
  color: #222222;
}
.cid-v3yqqppGJP .list {
  color: #222222;
}
.cid-v3yqqqiOwk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqqqiOwk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqqiOwk .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-v3yqqqiOwk .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqqqiOwk .container {
    padding: 0 12px;
  }
}
.cid-v3yqqqiOwk .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqqqiOwk .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yqqqiOwk .row.card-wrapper {
  padding: 80px;
  border: 3px solid #fcff1b;
  box-shadow: 4px 4px #fcff1b;
  background-color: #0e264c;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3yqqqiOwk .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-v3yqqqiOwk .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-v3yqqqiOwk .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-v3yqqqiOwk .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqqqiOwk .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-v3yqqqiOwk .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v3yqqqiOwk .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3yqqqiOwk .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yqqqiOwk .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #fcff1b;
}
.cid-v3yqqqiOwk .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yqqqiOwk .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yqqqiOwk .mbr-text {
  color: #ffffff;
}
.cid-v3yqqqiOwk .list {
  color: #222222;
}
.cid-v3yqqqVLOx {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: #0e264c;
}
.cid-v3yqqqVLOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqqVLOx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqqVLOx .card-wrapper {
  background-color: #ffffff;
  padding: 56px 32px;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper {
    padding: 24px;
  }
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper {
  position: sticky;
  top: 56px;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .title-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .title-wrapper .tabs-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  color: #0e264c;
  padding: 18px 28px;
  border: 1px solid #0027ba;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  background-color: #0027ba;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 14px 20px;
  }
}
.cid-v3yqqqVLOx .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #0027ba;
  border: 1px solid #0027ba;
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap {
  padding: 40px 32px;
  background-color: #0e264c;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
    height: 300px;
  }
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-v3yqqqVLOx .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3yqqqVLOx .mbr-label {
  color: #0027ba;
}
.cid-v3yqqqVLOx .mbr-section-title {
  color: #0027ba;
}
.cid-v3yqqqVLOx .item-title {
  color: #ffb3c1;
}
.cid-v3yqqqVLOx .item-text {
  color: #ffb3c1;
}
.cid-v3yqqrW4u8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqqrW4u8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqrW4u8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqrW4u8 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .container {
    padding: 0 30px;
  }
}
.cid-v3yqqrW4u8 .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .card-wrapper {
    display: block;
  }
}
.cid-v3yqqrW4u8 .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-v3yqqrW4u8 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v3yqqrW4u8 .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v3yqqrW4u8 .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v3yqqrW4u8 .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3yqqrW4u8 .mbr-section-title {
  color: #ffffff;
}
.cid-v3yqqrW4u8 .mbr-text {
  color: #ffffff;
}
.cid-v3yqqsy9CS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3yqqsy9CS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqsy9CS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqsy9CS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v3yqqsy9CS .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqqsy9CS .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqqsy9CS .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqqsy9CS .container {
    padding: 0 12px;
  }
}
.cid-v3yqqsy9CS .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yqqsy9CS .content-wrapper {
    padding: 0 24px;
  }
}
.cid-v3yqqsy9CS .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v3yqqsy9CS .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-v3yqqsy9CS .mbr-section-title {
  color: #1D1D1F;
}
.cid-v3yqqsy9CS .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-v3yqqsy9CS .mbr-section-title,
.cid-v3yqqsy9CS .mbr-section-btn {
  text-align: center;
}
.cid-v3yqqth351 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqqth351 .row {
  align-items: center;
  width: 100%;
}
.cid-v3yqqth351 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3yqqth351 .mbr-section-title {
  color: #000000;
}
.cid-v3yqqth351 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-v3yqqth351 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3yqqth351 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-v3yqqth351 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3yqqth351 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-v3yqqth351 .text-container {
    padding: 24px;
  }
}
.cid-v3yqqth351 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3yqqth351 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-v3yqqth351 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-v3yqqth351 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-v3yqqth351 .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3yqqunajq {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-v3yqqunajq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqunajq .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v3yqqunajq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqunajq h1 {
  max-width: 800px;
}
.cid-v3yqqunajq p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v3yqqunajq {
    align-items: center;
  }
  .cid-v3yqqunajq .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v3yqqunajq .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yqqunajq {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v3yqqunajq .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v3yqqunajq .content-wrap {
    width: 100%;
  }
}
.cid-v3yqqunajq .mbr-section-subtitle,
.cid-v3yqqunajq .line {
  color: #291f1e;
}
.cid-v3yqqunajq .mbr-text,
.cid-v3yqqunajq .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-v3yqqunajq .mbr-section-title {
  color: #291f1e;
}
.cid-v3yqqvlYbe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqqvlYbe .row {
  align-items: center;
  margin: 0;
}
.cid-v3yqqvlYbe .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-v3yqqvlYbe .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-v3yqqvlYbe .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-v3yqqvlYbe .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v3yqqvlYbe .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3yqqvlYbe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-v3yqqvlYbe .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-v3yqqvlYbe .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-v3yqqvlYbe .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-v3yqqvlYbe .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3yqqvlYbe .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3yqqvlYbe .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-v3yqqvlYbe .btn-container {
  width: 100%;
}
.cid-v3yqqvlYbe .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-v3yqqvlYbe .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-v3yqqvlYbe .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-v3yqqvlYbe .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-v3yxND6wiO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-v3yxND6wiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yxND6wiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yxND6wiO .container {
  max-width: 1280px;
}
.cid-v3yxND6wiO .row {
  justify-content: center;
}
.cid-v3yxND6wiO .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-v3yxND6wiO .col-title {
    margin-bottom: 50px;
  }
}
.cid-v3yxND6wiO .mbr-section-title {
  color: #FFDD65;
}
.cid-v3yxND6wiO .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-v3yxND6wiO .col-video {
  display: flex;
}
@media (max-width: 767px) {
  .cid-v3yxND6wiO .col-video {
    height: 350px;
  }
}
.cid-v3yxND6wiO .col-video .mbr-figure {
  width: 100%;
  border-radius: 4.17rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-v3yxND6wiO .col-video .mbr-figure .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-v3yxND6wiO .col-video .mbr-figure iframe {
  border-radius: 3.85rem;
}
.cid-v3yxND6wiO .col-video .mbr-figure .app-video-wrapper {
  overflow: hidden;
}
.cid-v3yxND6wiO .col-video .mbr-figure .app-video-wrapper img {
  border-radius: 4.85rem;
}
.cid-v3yqqwLFfw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqqwLFfw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqwLFfw .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-v3yqqwLFfw .container {
    padding: 0 15px;
  }
}
.cid-v3yqqwLFfw .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-v3yqqwLFfw .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-v3yqqwLFfw .content-wrapper {
    padding-right: 0;
  }
}
.cid-v3yqqwLFfw .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3yqqwLFfw .content-wrap {
    display: block;
  }
}
.cid-v3yqqwLFfw .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yqqwLFfw .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yqqwLFfw .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yqqwLFfw .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yqqwLFfw .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-v3yqqwLFfw .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-v3yqqwLFfw .mbr-section-title {
  color: #000000;
}
.cid-v3yqqwLFfw .mbr-desc,
.cid-v3yqqwLFfw .desc-wrapper {
  color: #3f1819;
}
.cid-v3yqqxJPmE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqqxJPmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqxJPmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqxJPmE .row {
  margin: 0 -15px;
}
.cid-v3yqqxJPmE .row .card {
  padding: 0 15px;
}
@media (max-width: 992px) {
  .cid-v3yqqxJPmE .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3yqqxJPmE .title-wrapper .title-wrap {
  margin-bottom: 30px;
}
.cid-v3yqqxJPmE .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yqqxJPmE .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3yqqxJPmE .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqqxJPmE .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3yqqxJPmE .panel-group .card {
  position: relative;
  padding: 0;
  background-color: transparent;
  border: 1px solid #fefff5;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}
.cid-v3yqqxJPmE .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v3yqqxJPmE .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3yqqxJPmE .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.cid-v3yqqxJPmE .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3yqqxJPmE .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #3a392d;
}
.cid-v3yqqxJPmE .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #fefff5;
}
.cid-v3yqqxJPmE .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
  background-color: #994412;
}
.cid-v3yqqxJPmE .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #fefff5;
}
.cid-v3yqqxJPmE .panel-group .card .panel-collapse .panel-body {
  padding: 0 20px 20px 20px;
}
.cid-v3yqqxJPmE .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v3yqqxJPmE .mbr-section-title {
  color: #fefff5;
}
.cid-v3yqqxJPmE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3yqqxJPmE .mbr-text {
  color: #fefff5;
}
.cid-v3yqqxJPmE .panel-title-edit {
  color: #fefff5;
}
.cid-v3yqqxJPmE .panel-text {
  color: #fefff5;
}
.cid-v3znvTr7fQ {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #f8f8f8;
}
.cid-v3znvTr7fQ .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v3znvTr7fQ .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v3znvTr7fQ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d75a35;
}
.cid-v3znvTr7fQ .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-v3znvTr7fQ .svg-top {
    width: 1000px;
  }
}
.cid-v3znvTr7fQ .card-header {
  border-bottom: 2px solid #d75a35;
  margin-bottom: 0px!important;
}
.cid-v3znvTr7fQ .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-v3znvTr7fQ span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-v3znvTr7fQ .collapsed span {
  transform: rotate(0deg);
}
.cid-v3znvTr7fQ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-v3znvTr7fQ .panel-group {
  width: 100%;
}
.cid-v3znvTr7fQ .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-v3znvTr7fQ .card {
  border-radius: 0px;
}
.cid-v3znvTr7fQ .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-v3znvTr7fQ .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v3znvTr7fQ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v3znvTr7fQ .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-v3znvTr7fQ .panel-text {
  color: #000000;
}
.cid-v3znvTr7fQ .header-text,
.cid-v3znvTr7fQ .sign {
  color: #263d5a;
}
.cid-v3znvTr7fQ .mbr-section-title {
  color: #000000;
}
.cid-v3znvTr7fQ .header-text,
.cid-v3znvTr7fQ .sign,
.cid-v3znvTr7fQ .card-header {
  color: #000000;
}
.cid-v3znvTr7fQ .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v3yqqArX18 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqqArX18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqArX18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqArX18 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yqqArX18 .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3yqqArX18 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3yqqArX18 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqqArX18 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3yqqArX18 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yqqArX18 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3yqqArX18 .list-wrapper .list .item-wrap:hover,
.cid-v3yqqArX18 .list-wrapper .list .item-wrap:focus {
  color: #d75a35;
}
.cid-v3yqqArX18 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3yqqArX18 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3yqqArX18 .social-wrapper {
    text-align: left;
  }
}
.cid-v3yqqArX18 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3yqqArX18 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3yqqArX18 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3yqqArX18 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #d75a35;
}
.cid-v3yqqArX18 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3yqqArX18 .list,
.cid-v3yqqArX18 .item-wrap,
.cid-v3yqqArX18 .social-wrapper {
  color: #fdfde1;
}
.cid-v3yqqC70Qb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqqC70Qb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqqC70Qb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqqC70Qb .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3yqqC70Qb .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3yqqC70Qb .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3yqqC70Qb .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3yqqC70Qb .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3yqqC70Qb .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3yqqC70Qb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yqqC70Qb .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3yqqC70Qb .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3yqqC70Qb .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3yqqC70Qb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3yqqC70Qb .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3yqqC70Qb .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yqqC70Qb .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3yqqC70Qb .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3yqqC70Qb .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3yqqC70Qb .list li {
  transition: 0.5s all;
}
.cid-v3yqqC70Qb .list li:hover {
  opacity: 0.6;
}
.cid-v3yqqC70Qb .item-wrap {
  margin-bottom: 12px;
}
.cid-v3yqqC70Qb .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3yqqC70Qb .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3yqqC70Qb .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3yqqC70Qb .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3yqqC70Qb .copyright-col {
    text-align: center;
  }
}
.cid-v3yqqC70Qb .copyright {
  text-align: justify;
}
.cid-v3yqrZMrz7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v3yqrZMrz7 nav.navbar {
  position: fixed;
}
.cid-v3yqrZMrz7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yqrZMrz7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v3yqrZMrz7 .dropdown-item {
  border: none !important;
  background: #0e264c !important;
  font-weight: 300;
}
.cid-v3yqrZMrz7 .dropdown-item:hover,
.cid-v3yqrZMrz7 .dropdown-item:focus {
  background: #0e264c !important;
  color: #1a1a1a !important;
}
.cid-v3yqrZMrz7 .dropdown-item:hover span {
  color: white;
}
.cid-v3yqrZMrz7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3yqrZMrz7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3yqrZMrz7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3yqrZMrz7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
}
.cid-v3yqrZMrz7 .nav-link {
  position: relative;
}
.cid-v3yqrZMrz7 .container {
  display: flex;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqrZMrz7 .container {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cid-v3yqrZMrz7 .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .cid-v3yqrZMrz7 .container {
    max-width: 1484px;
  }
}
.cid-v3yqrZMrz7 .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3yqrZMrz7 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v3yqrZMrz7 .dropdown-menu,
.cid-v3yqrZMrz7 .navbar.opened {
  background: #0e264c !important;
}
.cid-v3yqrZMrz7 .nav-item:focus,
.cid-v3yqrZMrz7 .nav-link:focus {
  outline: none;
}
.cid-v3yqrZMrz7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3yqrZMrz7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3yqrZMrz7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3yqrZMrz7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yqrZMrz7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3yqrZMrz7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3yqrZMrz7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0e264c;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yqrZMrz7 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3yqrZMrz7 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 12px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v3yqrZMrz7 .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v3yqrZMrz7 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3yqrZMrz7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3yqrZMrz7 .navbar.collapsed {
  justify-content: center;
}
.cid-v3yqrZMrz7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3yqrZMrz7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3yqrZMrz7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3yqrZMrz7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3yqrZMrz7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3yqrZMrz7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3yqrZMrz7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3yqrZMrz7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3yqrZMrz7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3yqrZMrz7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3yqrZMrz7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3yqrZMrz7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3yqrZMrz7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3yqrZMrz7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3yqrZMrz7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3yqrZMrz7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3yqrZMrz7 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v3yqrZMrz7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3yqrZMrz7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3yqrZMrz7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3yqrZMrz7 .navbar.navbar-short {
  min-height: 70px;
}
.cid-v3yqrZMrz7 .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-v3yqrZMrz7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3yqrZMrz7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v3yqrZMrz7 .navbar-brand .navbar-caption:hover,
.cid-v3yqrZMrz7 .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yqrZMrz7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yqrZMrz7 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3yqrZMrz7 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yqrZMrz7 .dropdown-item.active,
.cid-v3yqrZMrz7 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3yqrZMrz7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3yqrZMrz7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3yqrZMrz7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3yqrZMrz7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e264c;
  top: 2.4rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v3yqrZMrz7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3yqrZMrz7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3yqrZMrz7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3yqrZMrz7 ul.navbar-nav {
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .cid-v3yqrZMrz7 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.cid-v3yqrZMrz7 .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v3yqrZMrz7 .navbar-buttons {
    text-align: left;
  }
}
.cid-v3yqrZMrz7 .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v3yqrZMrz7 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3yqrZMrz7 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: #0e264c !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yqrZMrz7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #1a1a1a;
}
.cid-v3yqrZMrz7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3yqrZMrz7 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yqrZMrz7 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yqrZMrz7 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-v3yqrZMrz7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yqrZMrz7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3yqrZMrz7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3yqrZMrz7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yqrZMrz7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3yqrZMrz7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3yqrZMrz7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3yqrZMrz7 .navbar {
    height: 70px;
  }
  .cid-v3yqrZMrz7 .navbar.opened {
    height: auto;
  }
  .cid-v3yqrZMrz7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3yqrZMrz7 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3yqrZMrz7 .nav-item .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}
.cid-v3yqrZMrz7 .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3yqrZMrz7 .nav-item .nav-link:hover {
  background-color: transparent;
  opacity: .5;
}
.cid-v3yqrZMrz7 .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v3yqrZMrz7 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3yqrZMrz7 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3yqrZMrz7 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v3yqrZMrz7 .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3yqrZMrz7 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3yqrZMrz7 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3yqrZMrz7 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3yqrZMrz7 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3yqrZMrz7 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v3yqrZMrz7 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v3yqs10yMP {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}
.cid-v3yqs10yMP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs10yMP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqs10yMP::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3yqs10yMP .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v3yqs10yMP .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3yqs10yMP .content-wrapper .border_1 {
  left: 0;
}
.cid-v3yqs10yMP .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .border_2 {
    display: none;
  }
}
.cid-v3yqs10yMP .content-wrapper .border_3 {
  left: 50%;
}
.cid-v3yqs10yMP .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .border_4 {
    display: none;
  }
}
.cid-v3yqs10yMP .content-wrapper .border_5 {
  left: 100%;
}
.cid-v3yqs10yMP .content-wrapper .content-wrap {
  margin: 0;
}
.cid-v3yqs10yMP .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
}
.cid-v3yqs10yMP .content-wrapper .title-wrapper {
  margin-bottom: 32px;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .title-wrapper {
    padding: 0 16px;
  }
}
.cid-v3yqs10yMP .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yqs10yMP .content-wrapper .text-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .text-wrapper {
    padding: 0 16px;
  }
}
.cid-v3yqs10yMP .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 0;
  }
}
.cid-v3yqs10yMP .content-wrapper .card-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .card-wrap {
    padding: 0 16px;
  }
}
.cid-v3yqs10yMP .content-wrapper .card-wrap .mbr-section-btn {
  margin-top: 16px;
}
.cid-v3yqs10yMP .content-wrapper .image-wrapper {
  position: relative;
  animation: none;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  margin-left: 1px;
}
.cid-v3yqs10yMP .content-wrapper .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 60%;
  height: 20%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(3px);
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .image-wrapper::before {
    width: 100%;
  }
}
.cid-v3yqs10yMP .content-wrapper .image-wrapper img {
  width: 50%;
  margin: 0 auto;
  height: 450px;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-v3yqs10yMP .content-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
  }
}
.cid-v3yqs10yMP .mbr-section-title {
  color: #1a1a1a;
}
.cid-v3yqs10yMP .mbr-text,
.cid-v3yqs10yMP .text-wrapper {
  color: #010101;
  text-align: center;
}
.cid-v3yqs10yMP .mbr-section-title,
.cid-v3yqs10yMP .mbr-section-btn {
  text-align: center;
}
.cid-v3yqs2ePxH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: linear-gradient(0deg, #e1e7f2 -70%, #ffffff 100%);
}
.cid-v3yqs2ePxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs2ePxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqs2ePxH .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v3yqs2ePxH .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3yqs2ePxH .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-v3yqs2ePxH .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yqs2ePxH .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3yqs2ePxH .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqs2ePxH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3yqs2ePxH .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v3yqs2ePxH .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
}
.cid-v3yqs2ePxH .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #ff6d99;
  color: #ff6d99;
  font-size: 11px;
}
.cid-v3yqs2ePxH .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3yqs2ePxH .list_2 {
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-v3yqs2ePxH .list_2 {
    padding-left: 0;
  }
}
.cid-v3yqs2ePxH .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-v3yqs2ePxH .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-v3yqs2ePxH .mbr-text,
.cid-v3yqs2ePxH .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-v3yqs2ePxH .list {
  color: #666666;
}
.cid-v3yqs3jPBz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqs3jPBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs3jPBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqs3jPBz .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yqs3jPBz .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqs3jPBz .container {
    padding: 0 12px;
  }
}
.cid-v3yqs3jPBz .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqs3jPBz .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yqs3jPBz .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yqs3jPBz .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-v3yqs3jPBz .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v3yqs3jPBz .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-v3yqs3jPBz .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqs3jPBz .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-v3yqs3jPBz .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-v3yqs3jPBz .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-v3yqs3jPBz .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v3yqs3jPBz .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yqs3jPBz .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yqs3jPBz .mbr-text {
  color: #222222;
}
.cid-v3yqs3jPBz .list {
  color: #222222;
}
.cid-v3yqs4oD7D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqs4oD7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs4oD7D .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-v3yqs4oD7D .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqs4oD7D .container {
    padding: 0 12px;
  }
}
.cid-v3yqs4oD7D .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqs4oD7D .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yqs4oD7D .row.card-wrapper {
  padding: 80px;
  border: 3px solid #fcff1b;
  box-shadow: 4px 4px #fcff1b;
  background-color: #0e264c;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3yqs4oD7D .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-v3yqs4oD7D .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-v3yqs4oD7D .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-v3yqs4oD7D .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqs4oD7D .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-v3yqs4oD7D .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v3yqs4oD7D .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3yqs4oD7D .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yqs4oD7D .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #fcff1b;
}
.cid-v3yqs4oD7D .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yqs4oD7D .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yqs4oD7D .mbr-text {
  color: #ffffff;
}
.cid-v3yqs4oD7D .list {
  color: #222222;
}
.cid-v3yqs5zMIq {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: #0e264c;
}
.cid-v3yqs5zMIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs5zMIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqs5zMIq .card-wrapper {
  background-color: #ffffff;
  padding: 56px 32px;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper {
    padding: 24px;
  }
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper {
  position: sticky;
  top: 56px;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .title-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .title-wrapper .tabs-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  color: #0e264c;
  padding: 18px 28px;
  border: 1px solid #0027ba;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  background-color: #0027ba;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 14px 20px;
  }
}
.cid-v3yqs5zMIq .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #0027ba;
  border: 1px solid #0027ba;
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap {
  padding: 40px 32px;
  background-color: #0e264c;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
    height: 300px;
  }
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-v3yqs5zMIq .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3yqs5zMIq .mbr-label {
  color: #0027ba;
}
.cid-v3yqs5zMIq .mbr-section-title {
  color: #0027ba;
}
.cid-v3yqs5zMIq .item-title {
  color: #ffb3c1;
}
.cid-v3yqs5zMIq .item-text {
  color: #ffb3c1;
}
.cid-v3yqs7bksw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqs7bksw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs7bksw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqs7bksw .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .container {
    padding: 0 30px;
  }
}
.cid-v3yqs7bksw .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .card-wrapper {
    display: block;
  }
}
.cid-v3yqs7bksw .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-v3yqs7bksw .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v3yqs7bksw .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v3yqs7bksw .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v3yqs7bksw .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3yqs7bksw .mbr-section-title {
  color: #ffffff;
}
.cid-v3yqs7bksw .mbr-text {
  color: #ffffff;
}
.cid-v3yqs8r5IG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3yqs8r5IG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqs8r5IG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqs8r5IG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v3yqs8r5IG .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqs8r5IG .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqs8r5IG .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yqs8r5IG .container {
    padding: 0 12px;
  }
}
.cid-v3yqs8r5IG .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yqs8r5IG .content-wrapper {
    padding: 0 24px;
  }
}
.cid-v3yqs8r5IG .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v3yqs8r5IG .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-v3yqs8r5IG .mbr-section-title {
  color: #1D1D1F;
}
.cid-v3yqs8r5IG .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-v3yqs8r5IG .mbr-section-title,
.cid-v3yqs8r5IG .mbr-section-btn {
  text-align: center;
}
.cid-v3yqs9AFa3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqs9AFa3 .row {
  align-items: center;
  width: 100%;
}
.cid-v3yqs9AFa3 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3yqs9AFa3 .mbr-section-title {
  color: #000000;
}
.cid-v3yqs9AFa3 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-v3yqs9AFa3 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3yqs9AFa3 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-v3yqs9AFa3 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3yqs9AFa3 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-v3yqs9AFa3 .text-container {
    padding: 24px;
  }
}
.cid-v3yqs9AFa3 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3yqs9AFa3 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-v3yqs9AFa3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-v3yqs9AFa3 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-v3yqs9AFa3 .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3yzvYOK7M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-v3yzvYOK7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yzvYOK7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yzvYOK7M .container {
  max-width: 1280px;
}
.cid-v3yzvYOK7M .row {
  justify-content: center;
}
.cid-v3yzvYOK7M .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-v3yzvYOK7M .col-title {
    margin-bottom: 50px;
  }
}
.cid-v3yzvYOK7M .mbr-section-title {
  color: #FFDD65;
}
.cid-v3yzvYOK7M .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-v3yzvYOK7M .col-video {
  display: flex;
}
@media (max-width: 767px) {
  .cid-v3yzvYOK7M .col-video {
    height: 350px;
  }
}
.cid-v3yzvYOK7M .col-video .mbr-figure {
  width: 100%;
  border-radius: 4.17rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-v3yzvYOK7M .col-video .mbr-figure .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-v3yzvYOK7M .col-video .mbr-figure iframe {
  border-radius: 3.85rem;
}
.cid-v3yzvYOK7M .col-video .mbr-figure .app-video-wrapper {
  overflow: hidden;
}
.cid-v3yzvYOK7M .col-video .mbr-figure .app-video-wrapper img {
  border-radius: 4.85rem;
}
.cid-v3yqsbnyY1 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-v3yqsbnyY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqsbnyY1 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v3yqsbnyY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqsbnyY1 h1 {
  max-width: 800px;
}
.cid-v3yqsbnyY1 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v3yqsbnyY1 {
    align-items: center;
  }
  .cid-v3yqsbnyY1 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v3yqsbnyY1 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yqsbnyY1 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v3yqsbnyY1 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v3yqsbnyY1 .content-wrap {
    width: 100%;
  }
}
.cid-v3yqsbnyY1 .mbr-section-subtitle,
.cid-v3yqsbnyY1 .line {
  color: #291f1e;
}
.cid-v3yqsbnyY1 .mbr-text,
.cid-v3yqsbnyY1 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-v3yqsbnyY1 .mbr-section-title {
  color: #291f1e;
}
.cid-v3yqsd156V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqsd156V .row {
  align-items: center;
  margin: 0;
}
.cid-v3yqsd156V .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-v3yqsd156V .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-v3yqsd156V .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-v3yqsd156V .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v3yqsd156V .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3yqsd156V .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-v3yqsd156V .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-v3yqsd156V .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-v3yqsd156V .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-v3yqsd156V .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3yqsd156V .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3yqsd156V .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-v3yqsd156V .btn-container {
  width: 100%;
}
.cid-v3yqsd156V .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-v3yqsd156V .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-v3yqsd156V .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-v3yqsd156V .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-v3yqseYGHt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqseYGHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqseYGHt .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-v3yqseYGHt .container {
    padding: 0 15px;
  }
}
.cid-v3yqseYGHt .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-v3yqseYGHt .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-v3yqseYGHt .content-wrapper {
    padding-right: 0;
  }
}
.cid-v3yqseYGHt .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3yqseYGHt .content-wrap {
    display: block;
  }
}
.cid-v3yqseYGHt .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yqseYGHt .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yqseYGHt .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yqseYGHt .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yqseYGHt .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-v3yqseYGHt .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-v3yqseYGHt .mbr-section-title {
  color: #000000;
}
.cid-v3yqseYGHt .mbr-desc,
.cid-v3yqseYGHt .desc-wrapper {
  color: #3f1819;
}
.cid-v3yqsgrPGZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqsgrPGZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqsgrPGZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqsgrPGZ .row {
  margin: 0 -15px;
}
.cid-v3yqsgrPGZ .row .card {
  padding: 0 15px;
}
@media (max-width: 992px) {
  .cid-v3yqsgrPGZ .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3yqsgrPGZ .title-wrapper .title-wrap {
  margin-bottom: 30px;
}
.cid-v3yqsgrPGZ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yqsgrPGZ .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3yqsgrPGZ .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yqsgrPGZ .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3yqsgrPGZ .panel-group .card {
  position: relative;
  padding: 0;
  background-color: transparent;
  border: 1px solid #fefff5;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}
.cid-v3yqsgrPGZ .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #3a392d;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #fefff5;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
  background-color: #994412;
}
.cid-v3yqsgrPGZ .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #fefff5;
}
.cid-v3yqsgrPGZ .panel-group .card .panel-collapse .panel-body {
  padding: 0 20px 20px 20px;
}
.cid-v3yqsgrPGZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v3yqsgrPGZ .mbr-section-title {
  color: #fefff5;
}
.cid-v3yqsgrPGZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3yqsgrPGZ .mbr-text {
  color: #fefff5;
}
.cid-v3yqsgrPGZ .panel-title-edit {
  color: #fefff5;
}
.cid-v3yqsgrPGZ .panel-text {
  color: #fefff5;
}
.cid-v3zouQLypE {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #f8f8f8;
}
.cid-v3zouQLypE .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v3zouQLypE .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v3zouQLypE .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d75a35;
}
.cid-v3zouQLypE .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-v3zouQLypE .svg-top {
    width: 1000px;
  }
}
.cid-v3zouQLypE .card-header {
  border-bottom: 2px solid #d75a35;
  margin-bottom: 0px!important;
}
.cid-v3zouQLypE .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-v3zouQLypE span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-v3zouQLypE .collapsed span {
  transform: rotate(0deg);
}
.cid-v3zouQLypE .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-v3zouQLypE .panel-group {
  width: 100%;
}
.cid-v3zouQLypE .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-v3zouQLypE .card {
  border-radius: 0px;
}
.cid-v3zouQLypE .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-v3zouQLypE .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v3zouQLypE .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v3zouQLypE .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-v3zouQLypE .panel-text {
  color: #000000;
}
.cid-v3zouQLypE .header-text,
.cid-v3zouQLypE .sign {
  color: #263d5a;
}
.cid-v3zouQLypE .mbr-section-title {
  color: #000000;
}
.cid-v3zouQLypE .header-text,
.cid-v3zouQLypE .sign,
.cid-v3zouQLypE .card-header {
  color: #000000;
}
.cid-v3zouQLypE .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v3yqsjy30n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yqsjy30n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqsjy30n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqsjy30n .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yqsjy30n .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3yqsjy30n .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3yqsjy30n .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3yqsjy30n .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3yqsjy30n .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yqsjy30n .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3yqsjy30n .list-wrapper .list .item-wrap:hover,
.cid-v3yqsjy30n .list-wrapper .list .item-wrap:focus {
  color: #d75a35;
}
.cid-v3yqsjy30n .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3yqsjy30n .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3yqsjy30n .social-wrapper {
    text-align: left;
  }
}
.cid-v3yqsjy30n .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3yqsjy30n .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3yqsjy30n .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3yqsjy30n .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #d75a35;
}
.cid-v3yqsjy30n .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3yqsjy30n .list,
.cid-v3yqsjy30n .item-wrap,
.cid-v3yqsjy30n .social-wrapper {
  color: #fdfde1;
}
.cid-v3yqsljuxG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yqsljuxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yqsljuxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yqsljuxG .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3yqsljuxG .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3yqsljuxG .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3yqsljuxG .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3yqsljuxG .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3yqsljuxG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3yqsljuxG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yqsljuxG .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3yqsljuxG .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3yqsljuxG .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3yqsljuxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3yqsljuxG .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3yqsljuxG .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yqsljuxG .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3yqsljuxG .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3yqsljuxG .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3yqsljuxG .list li {
  transition: 0.5s all;
}
.cid-v3yqsljuxG .list li:hover {
  opacity: 0.6;
}
.cid-v3yqsljuxG .item-wrap {
  margin-bottom: 12px;
}
.cid-v3yqsljuxG .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3yqsljuxG .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3yqsljuxG .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3yqsljuxG .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3yqsljuxG .copyright-col {
    text-align: center;
  }
}
.cid-v3yqsljuxG .copyright {
  text-align: justify;
}
.cid-v3yquHuKiw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v3yquHuKiw nav.navbar {
  position: fixed;
}
.cid-v3yquHuKiw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yquHuKiw .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v3yquHuKiw .dropdown-item {
  border: none !important;
  background: #0e264c !important;
  font-weight: 300;
}
.cid-v3yquHuKiw .dropdown-item:hover,
.cid-v3yquHuKiw .dropdown-item:focus {
  background: #0e264c !important;
  color: #1a1a1a !important;
}
.cid-v3yquHuKiw .dropdown-item:hover span {
  color: white;
}
.cid-v3yquHuKiw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3yquHuKiw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3yquHuKiw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3yquHuKiw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
}
.cid-v3yquHuKiw .nav-link {
  position: relative;
}
.cid-v3yquHuKiw .container {
  display: flex;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yquHuKiw .container {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cid-v3yquHuKiw .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .cid-v3yquHuKiw .container {
    max-width: 1484px;
  }
}
.cid-v3yquHuKiw .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3yquHuKiw .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v3yquHuKiw .dropdown-menu,
.cid-v3yquHuKiw .navbar.opened {
  background: #0e264c !important;
}
.cid-v3yquHuKiw .nav-item:focus,
.cid-v3yquHuKiw .nav-link:focus {
  outline: none;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yquHuKiw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3yquHuKiw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3yquHuKiw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0e264c;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yquHuKiw .navbar.opened {
  transition: all 0.3s;
}
.cid-v3yquHuKiw .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 12px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v3yquHuKiw .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v3yquHuKiw .navbar .navbar-logo img {
  width: auto;
}
.cid-v3yquHuKiw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3yquHuKiw .navbar.collapsed {
  justify-content: center;
}
.cid-v3yquHuKiw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3yquHuKiw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3yquHuKiw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3yquHuKiw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3yquHuKiw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3yquHuKiw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3yquHuKiw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3yquHuKiw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3yquHuKiw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v3yquHuKiw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3yquHuKiw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3yquHuKiw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3yquHuKiw .navbar.navbar-short {
  min-height: 70px;
}
.cid-v3yquHuKiw .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-v3yquHuKiw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3yquHuKiw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v3yquHuKiw .navbar-brand .navbar-caption:hover,
.cid-v3yquHuKiw .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yquHuKiw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yquHuKiw .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3yquHuKiw .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yquHuKiw .dropdown-item.active,
.cid-v3yquHuKiw .dropdown-item:active {
  background-color: transparent;
}
.cid-v3yquHuKiw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3yquHuKiw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3yquHuKiw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3yquHuKiw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e264c;
  top: 2.4rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v3yquHuKiw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3yquHuKiw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3yquHuKiw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3yquHuKiw ul.navbar-nav {
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .cid-v3yquHuKiw ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.cid-v3yquHuKiw .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v3yquHuKiw .navbar-buttons {
    text-align: left;
  }
}
.cid-v3yquHuKiw .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v3yquHuKiw .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3yquHuKiw button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: #0e264c !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #1a1a1a;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yquHuKiw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3yquHuKiw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3yquHuKiw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3yquHuKiw .navbar {
    height: 70px;
  }
  .cid-v3yquHuKiw .navbar.opened {
    height: auto;
  }
  .cid-v3yquHuKiw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3yquHuKiw .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3yquHuKiw .nav-item .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}
.cid-v3yquHuKiw .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3yquHuKiw .nav-item .nav-link:hover {
  background-color: transparent;
  opacity: .5;
}
.cid-v3yquHuKiw .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v3yquHuKiw .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3yquHuKiw .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3yquHuKiw .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v3yquHuKiw .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3yquHuKiw .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3yquHuKiw .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3yquHuKiw .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3yquHuKiw .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3yquHuKiw .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v3yquHuKiw .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v3yquIr6bw {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}
.cid-v3yquIr6bw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquIr6bw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquIr6bw::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3yquIr6bw .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-v3yquIr6bw .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-v3yquIr6bw .content-wrapper .border_1 {
  left: 0;
}
.cid-v3yquIr6bw .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .border_2 {
    display: none;
  }
}
.cid-v3yquIr6bw .content-wrapper .border_3 {
  left: 50%;
}
.cid-v3yquIr6bw .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .border_4 {
    display: none;
  }
}
.cid-v3yquIr6bw .content-wrapper .border_5 {
  left: 100%;
}
.cid-v3yquIr6bw .content-wrapper .content-wrap {
  margin: 0;
}
.cid-v3yquIr6bw .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
}
.cid-v3yquIr6bw .content-wrapper .title-wrapper {
  margin-bottom: 32px;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .title-wrapper {
    padding: 0 16px;
  }
}
.cid-v3yquIr6bw .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yquIr6bw .content-wrapper .text-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .text-wrapper {
    padding: 0 16px;
  }
}
.cid-v3yquIr6bw .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 0;
  }
}
.cid-v3yquIr6bw .content-wrapper .card-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .card-wrap {
    padding: 0 16px;
  }
}
.cid-v3yquIr6bw .content-wrapper .card-wrap .mbr-section-btn {
  margin-top: 16px;
}
.cid-v3yquIr6bw .content-wrapper .image-wrapper {
  position: relative;
  animation: none;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  margin-left: 1px;
}
.cid-v3yquIr6bw .content-wrapper .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 60%;
  height: 20%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(3px);
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .image-wrapper::before {
    width: 100%;
  }
}
.cid-v3yquIr6bw .content-wrapper .image-wrapper img {
  width: 50%;
  margin: 0 auto;
  height: 450px;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-v3yquIr6bw .content-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
  }
}
.cid-v3yquIr6bw .mbr-section-title {
  color: #1a1a1a;
}
.cid-v3yquIr6bw .mbr-text,
.cid-v3yquIr6bw .text-wrapper {
  color: #010101;
  text-align: center;
}
.cid-v3yquIr6bw .mbr-section-title,
.cid-v3yquIr6bw .mbr-section-btn {
  text-align: center;
}
.cid-v3yquJaPc0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: linear-gradient(0deg, #e1e7f2 -70%, #ffffff 100%);
}
.cid-v3yquJaPc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquJaPc0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquJaPc0 .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v3yquJaPc0 .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3yquJaPc0 .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-v3yquJaPc0 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yquJaPc0 .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3yquJaPc0 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yquJaPc0 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3yquJaPc0 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v3yquJaPc0 .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
}
.cid-v3yquJaPc0 .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #ff6d99;
  color: #ff6d99;
  font-size: 11px;
}
.cid-v3yquJaPc0 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3yquJaPc0 .list_2 {
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-v3yquJaPc0 .list_2 {
    padding-left: 0;
  }
}
.cid-v3yquJaPc0 .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-v3yquJaPc0 .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-v3yquJaPc0 .mbr-text,
.cid-v3yquJaPc0 .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-v3yquJaPc0 .list {
  color: #666666;
}
.cid-v3yquJRvNU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yquJRvNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquJRvNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquJRvNU .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yquJRvNU .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yquJRvNU .container {
    padding: 0 12px;
  }
}
.cid-v3yquJRvNU .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yquJRvNU .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yquJRvNU .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yquJRvNU .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-v3yquJRvNU .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v3yquJRvNU .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-v3yquJRvNU .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-v3yquJRvNU .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-v3yquJRvNU .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-v3yquJRvNU .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-v3yquJRvNU .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v3yquJRvNU .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yquJRvNU .mbr-section-subtitle {
  color: #222222;
}
.cid-v3yquJRvNU .mbr-text {
  color: #222222;
}
.cid-v3yquJRvNU .list {
  color: #222222;
}
.cid-v3yquKKT5V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yquKKT5V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquKKT5V .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-v3yquKKT5V .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3yquKKT5V .container {
    padding: 0 12px;
  }
}
.cid-v3yquKKT5V .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yquKKT5V .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v3yquKKT5V .row.card-wrapper {
  padding: 80px;
  border: 3px solid #fcff1b;
  box-shadow: 4px 4px #fcff1b;
  background-color: #0e264c;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3yquKKT5V .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-v3yquKKT5V .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-v3yquKKT5V .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-v3yquKKT5V .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-v3yquKKT5V .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-v3yquKKT5V .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v3yquKKT5V .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3yquKKT5V .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yquKKT5V .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #fcff1b;
}
.cid-v3yquKKT5V .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-v3yquKKT5V .mbr-section-subtitle {
  color: #fafafa;
}
.cid-v3yquKKT5V .mbr-text {
  color: #ffffff;
}
.cid-v3yquKKT5V .list {
  color: #222222;
}
.cid-v3yquLyY9C {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: #0e264c;
}
.cid-v3yquLyY9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquLyY9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquLyY9C .card-wrapper {
  background-color: #ffffff;
  padding: 56px 32px;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper {
    padding: 24px;
  }
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper {
  position: sticky;
  top: 56px;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .title-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .title-wrapper .tabs-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  color: #0e264c;
  padding: 18px 28px;
  border: 1px solid #0027ba;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  background-color: #0027ba;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 14px 20px;
  }
}
.cid-v3yquLyY9C .card-wrapper .title-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #0027ba;
  border: 1px solid #0027ba;
}
.cid-v3yquLyY9C .card-wrapper .card-wrap {
  padding: 40px 32px;
  background-color: #0e264c;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap {
    margin-bottom: 20px;
  }
}
.cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .image-wrap img {
    height: 300px;
  }
}
.cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-v3yquLyY9C .card-wrapper .card-wrap .tab-content .tab-pane .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3yquLyY9C .mbr-label {
  color: #0027ba;
}
.cid-v3yquLyY9C .mbr-section-title {
  color: #0027ba;
}
.cid-v3yquLyY9C .item-title {
  color: #ffb3c1;
}
.cid-v3yquLyY9C .item-text {
  color: #ffb3c1;
}
.cid-v3yquMLNfF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yquMLNfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquMLNfF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquMLNfF .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .container {
    padding: 0 30px;
  }
}
.cid-v3yquMLNfF .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .card-wrapper {
    display: block;
  }
}
.cid-v3yquMLNfF .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-v3yquMLNfF .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v3yquMLNfF .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v3yquMLNfF .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v3yquMLNfF .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3yquMLNfF .mbr-section-title {
  color: #ffffff;
}
.cid-v3yquMLNfF .mbr-text {
  color: #ffffff;
}
.cid-v3yquNEgJI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3yquNEgJI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquNEgJI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquNEgJI .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v3yquNEgJI .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yquNEgJI .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-v3yquNEgJI .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-v3yquNEgJI .container {
    padding: 0 12px;
  }
}
.cid-v3yquNEgJI .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yquNEgJI .content-wrapper {
    padding: 0 24px;
  }
}
.cid-v3yquNEgJI .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v3yquNEgJI .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-v3yquNEgJI .mbr-section-title {
  color: #1D1D1F;
}
.cid-v3yquNEgJI .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-v3yquNEgJI .mbr-section-title,
.cid-v3yquNEgJI .mbr-section-btn {
  text-align: center;
}
.cid-v3yquOtIF8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yquOtIF8 .row {
  align-items: center;
  width: 100%;
}
.cid-v3yquOtIF8 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3yquOtIF8 .mbr-section-title {
  color: #000000;
}
.cid-v3yquOtIF8 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-v3yquOtIF8 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3yquOtIF8 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-v3yquOtIF8 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3yquOtIF8 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-v3yquOtIF8 .text-container {
    padding: 24px;
  }
}
.cid-v3yquOtIF8 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3yquOtIF8 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-v3yquOtIF8 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-v3yquOtIF8 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-v3yquOtIF8 .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3yquPshX8 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-v3yquPshX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquPshX8 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v3yquPshX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquPshX8 h1 {
  max-width: 800px;
}
.cid-v3yquPshX8 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v3yquPshX8 {
    align-items: center;
  }
  .cid-v3yquPshX8 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v3yquPshX8 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yquPshX8 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v3yquPshX8 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v3yquPshX8 .content-wrap {
    width: 100%;
  }
}
.cid-v3yquPshX8 .mbr-section-subtitle,
.cid-v3yquPshX8 .line {
  color: #291f1e;
}
.cid-v3yquPshX8 .mbr-text,
.cid-v3yquPshX8 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-v3yquPshX8 .mbr-section-title {
  color: #291f1e;
}
.cid-v3yquQlrFh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yquQlrFh .row {
  align-items: center;
  margin: 0;
}
.cid-v3yquQlrFh .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-v3yquQlrFh .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-v3yquQlrFh .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-v3yquQlrFh .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v3yquQlrFh .text-container {
  padding: 32px 32px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3yquQlrFh .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cid-v3yquQlrFh .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cid-v3yquQlrFh .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-v3yquQlrFh .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-v3yquQlrFh .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3yquQlrFh .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3yquQlrFh .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-v3yquQlrFh .btn-container {
  width: 100%;
}
.cid-v3yquQlrFh .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-v3yquQlrFh .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-v3yquQlrFh .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-v3yquQlrFh .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-v3yquRxGAY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yquRxGAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquRxGAY .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-v3yquRxGAY .container {
    padding: 0 15px;
  }
}
.cid-v3yquRxGAY .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-v3yquRxGAY .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-v3yquRxGAY .content-wrapper {
    padding-right: 0;
  }
}
.cid-v3yquRxGAY .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3yquRxGAY .content-wrap {
    display: block;
  }
}
.cid-v3yquRxGAY .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yquRxGAY .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yquRxGAY .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yquRxGAY .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-v3yquRxGAY .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-v3yquRxGAY .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-v3yquRxGAY .mbr-section-title {
  color: #000000;
}
.cid-v3yquRxGAY .mbr-desc,
.cid-v3yquRxGAY .desc-wrapper {
  color: #3f1819;
}
.cid-v3yquSooyX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yquSooyX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquSooyX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquSooyX .row {
  margin: 0 -15px;
}
.cid-v3yquSooyX .row .card {
  padding: 0 15px;
}
@media (max-width: 992px) {
  .cid-v3yquSooyX .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v3yquSooyX .title-wrapper .title-wrap {
  margin-bottom: 30px;
}
.cid-v3yquSooyX .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yquSooyX .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3yquSooyX .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3yquSooyX .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v3yquSooyX .panel-group .card {
  position: relative;
  padding: 0;
  background-color: transparent;
  border: 1px solid #fefff5;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}
.cid-v3yquSooyX .panel-group .card:first-child {
  margin-top: 0;
}
.cid-v3yquSooyX .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3yquSooyX .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.cid-v3yquSooyX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3yquSooyX .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #3a392d;
}
.cid-v3yquSooyX .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #fefff5;
}
.cid-v3yquSooyX .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
  background-color: #994412;
}
.cid-v3yquSooyX .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #fefff5;
}
.cid-v3yquSooyX .panel-group .card .panel-collapse .panel-body {
  padding: 0 20px 20px 20px;
}
.cid-v3yquSooyX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v3yquSooyX .mbr-section-title {
  color: #fefff5;
}
.cid-v3yquSooyX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3yquSooyX .mbr-text {
  color: #fefff5;
}
.cid-v3yquSooyX .panel-title-edit {
  color: #fefff5;
}
.cid-v3yquSooyX .panel-text {
  color: #fefff5;
}
.cid-v3zpQTP3c5 {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #f8f8f8;
}
.cid-v3zpQTP3c5 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v3zpQTP3c5 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v3zpQTP3c5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d75a35;
}
.cid-v3zpQTP3c5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-v3zpQTP3c5 .svg-top {
    width: 1000px;
  }
}
.cid-v3zpQTP3c5 .card-header {
  border-bottom: 2px solid #d75a35;
  margin-bottom: 0px!important;
}
.cid-v3zpQTP3c5 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-v3zpQTP3c5 span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-v3zpQTP3c5 .collapsed span {
  transform: rotate(0deg);
}
.cid-v3zpQTP3c5 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-v3zpQTP3c5 .panel-group {
  width: 100%;
}
.cid-v3zpQTP3c5 .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-v3zpQTP3c5 .card {
  border-radius: 0px;
}
.cid-v3zpQTP3c5 .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-v3zpQTP3c5 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v3zpQTP3c5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v3zpQTP3c5 .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-v3zpQTP3c5 .panel-text {
  color: #000000;
}
.cid-v3zpQTP3c5 .header-text,
.cid-v3zpQTP3c5 .sign {
  color: #263d5a;
}
.cid-v3zpQTP3c5 .mbr-section-title {
  color: #000000;
}
.cid-v3zpQTP3c5 .header-text,
.cid-v3zpQTP3c5 .sign,
.cid-v3zpQTP3c5 .card-header {
  color: #000000;
}
.cid-v3zpQTP3c5 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v3yquUxCOE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yquUxCOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquUxCOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquUxCOE .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3yquUxCOE .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3yquUxCOE .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3yquUxCOE .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3yquUxCOE .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3yquUxCOE .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3yquUxCOE .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3yquUxCOE .list-wrapper .list .item-wrap:hover,
.cid-v3yquUxCOE .list-wrapper .list .item-wrap:focus {
  color: #d75a35;
}
.cid-v3yquUxCOE .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3yquUxCOE .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3yquUxCOE .social-wrapper {
    text-align: left;
  }
}
.cid-v3yquUxCOE .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3yquUxCOE .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3yquUxCOE .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3yquUxCOE .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #d75a35;
}
.cid-v3yquUxCOE .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3yquUxCOE .list,
.cid-v3yquUxCOE .item-wrap,
.cid-v3yquUxCOE .social-wrapper {
  color: #fdfde1;
}
.cid-v3yquVOSOw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yquVOSOw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquVOSOw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquVOSOw .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3yquVOSOw .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3yquVOSOw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3yquVOSOw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3yquVOSOw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3yquVOSOw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yquVOSOw .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3yquVOSOw .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3yquVOSOw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3yquVOSOw .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3yquVOSOw .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3yquVOSOw .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3yquVOSOw .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3yquVOSOw .list li {
  transition: 0.5s all;
}
.cid-v3yquVOSOw .list li:hover {
  opacity: 0.6;
}
.cid-v3yquVOSOw .item-wrap {
  margin-bottom: 12px;
}
.cid-v3yquVOSOw .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3yquVOSOw .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3yquVOSOw .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3yquVOSOw .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .copyright-col {
    text-align: center;
  }
}
.cid-v3yquVOSOw .copyright {
  text-align: justify;
}
.cid-v3yquHuKiw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v3yquHuKiw nav.navbar {
  position: fixed;
}
.cid-v3yquHuKiw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yquHuKiw .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v3yquHuKiw .dropdown-item {
  border: none !important;
  background: #0e264c !important;
  font-weight: 300;
}
.cid-v3yquHuKiw .dropdown-item:hover,
.cid-v3yquHuKiw .dropdown-item:focus {
  background: #0e264c !important;
  color: #1a1a1a !important;
}
.cid-v3yquHuKiw .dropdown-item:hover span {
  color: white;
}
.cid-v3yquHuKiw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3yquHuKiw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3yquHuKiw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3yquHuKiw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
}
.cid-v3yquHuKiw .nav-link {
  position: relative;
}
.cid-v3yquHuKiw .container {
  display: flex;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yquHuKiw .container {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cid-v3yquHuKiw .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .cid-v3yquHuKiw .container {
    max-width: 1484px;
  }
}
.cid-v3yquHuKiw .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3yquHuKiw .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v3yquHuKiw .dropdown-menu,
.cid-v3yquHuKiw .navbar.opened {
  background: #0e264c !important;
}
.cid-v3yquHuKiw .nav-item:focus,
.cid-v3yquHuKiw .nav-link:focus {
  outline: none;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3yquHuKiw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yquHuKiw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3yquHuKiw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3yquHuKiw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0e264c;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yquHuKiw .navbar.opened {
  transition: all 0.3s;
}
.cid-v3yquHuKiw .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 12px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v3yquHuKiw .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v3yquHuKiw .navbar .navbar-logo img {
  width: auto;
}
.cid-v3yquHuKiw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3yquHuKiw .navbar.collapsed {
  justify-content: center;
}
.cid-v3yquHuKiw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3yquHuKiw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3yquHuKiw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3yquHuKiw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3yquHuKiw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3yquHuKiw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3yquHuKiw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3yquHuKiw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3yquHuKiw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3yquHuKiw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3yquHuKiw .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v3yquHuKiw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3yquHuKiw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3yquHuKiw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3yquHuKiw .navbar.navbar-short {
  min-height: 70px;
}
.cid-v3yquHuKiw .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-v3yquHuKiw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3yquHuKiw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v3yquHuKiw .navbar-brand .navbar-caption:hover,
.cid-v3yquHuKiw .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yquHuKiw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yquHuKiw .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3yquHuKiw .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yquHuKiw .dropdown-item.active,
.cid-v3yquHuKiw .dropdown-item:active {
  background-color: transparent;
}
.cid-v3yquHuKiw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3yquHuKiw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3yquHuKiw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3yquHuKiw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e264c;
  top: 2.4rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v3yquHuKiw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3yquHuKiw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3yquHuKiw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3yquHuKiw ul.navbar-nav {
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .cid-v3yquHuKiw ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.cid-v3yquHuKiw .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v3yquHuKiw .navbar-buttons {
    text-align: left;
  }
}
.cid-v3yquHuKiw .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v3yquHuKiw .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3yquHuKiw button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: #0e264c !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #1a1a1a;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yquHuKiw button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3yquHuKiw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yquHuKiw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3yquHuKiw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3yquHuKiw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3yquHuKiw .navbar {
    height: 70px;
  }
  .cid-v3yquHuKiw .navbar.opened {
    height: auto;
  }
  .cid-v3yquHuKiw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3yquHuKiw .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3yquHuKiw .nav-item .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}
.cid-v3yquHuKiw .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3yquHuKiw .nav-item .nav-link:hover {
  background-color: transparent;
  opacity: .5;
}
.cid-v3yquHuKiw .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v3yquHuKiw .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3yquHuKiw .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3yquHuKiw .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v3yquHuKiw .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3yquHuKiw .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3yquHuKiw .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3yquHuKiw .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3yquHuKiw .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3yquHuKiw .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v3yquHuKiw .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v3yAP4qbo2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yAP4qbo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yAP4qbo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yAP4qbo2 .items-wrapper {
  justify-content: flex-end;
}
.cid-v3yAP4qbo2 .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yAP4qbo2 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v3yAP4qbo2 .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-v3yAP4qbo2 .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-v3yAP4qbo2 .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-v3yAP4qbo2 .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-v3yAP4qbo2 .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-v3yAP4qbo2 .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-v3yAP4qbo2 .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v3yAP4qbo2 .content-wrapper {
    padding-left: 0;
  }
}
.cid-v3yAP4qbo2 .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-v3yAP4qbo2 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v3yAP4qbo2 .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-v3yAP4qbo2 .mbr-desc {
  color: #272b2e;
}
.cid-v3yAP4qbo2 .mbr-section-title {
  color: #272b2e;
}
.cid-v3yAP4qbo2 .mbr-text,
.cid-v3yAP4qbo2 .text-wrapper {
  color: #272b2e;
}
.cid-v3yAZyqSsY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yAZyqSsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yAZyqSsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yAZyqSsY .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v3yAZyqSsY .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-v3yAZyqSsY .content-wrapper {
    width: 100%;
  }
}
.cid-v3yAZyqSsY .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-v3yAZyqSsY .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 24px;
}
.cid-v3yAZyqSsY .content-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-v3yAZyqSsY .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yAZyqSsY .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v3yAZyqSsY .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-v3yAZyqSsY .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-v3yAZyqSsY .mbr-section-title {
  color: #181824;
}
.cid-v3yAZyqSsY .mbr-section-title,
.cid-v3yAZyqSsY .mbr-section-btn,
.cid-v3yAZyqSsY .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3JZtPHLg1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3JZtPHLg1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3JZtPHLg1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3JZtPHLg1 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3JZtPHLg1 .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3JZtPHLg1 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3JZtPHLg1 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3JZtPHLg1 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3JZtPHLg1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3JZtPHLg1 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3JZtPHLg1 .list-wrapper .list .item-wrap:hover,
.cid-v3JZtPHLg1 .list-wrapper .list .item-wrap:focus {
  color: #d75a35;
}
.cid-v3JZtPHLg1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3JZtPHLg1 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3JZtPHLg1 .social-wrapper {
    text-align: left;
  }
}
.cid-v3JZtPHLg1 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3JZtPHLg1 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3JZtPHLg1 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3JZtPHLg1 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #d75a35;
}
.cid-v3JZtPHLg1 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3JZtPHLg1 .list,
.cid-v3JZtPHLg1 .item-wrap,
.cid-v3JZtPHLg1 .social-wrapper {
  color: #fdfde1;
}
.cid-v3yquVOSOw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yquVOSOw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yquVOSOw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yquVOSOw .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3yquVOSOw .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3yquVOSOw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3yquVOSOw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3yquVOSOw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3yquVOSOw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yquVOSOw .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3yquVOSOw .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3yquVOSOw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3yquVOSOw .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3yquVOSOw .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3yquVOSOw .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3yquVOSOw .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3yquVOSOw .list li {
  transition: 0.5s all;
}
.cid-v3yquVOSOw .list li:hover {
  opacity: 0.6;
}
.cid-v3yquVOSOw .item-wrap {
  margin-bottom: 12px;
}
.cid-v3yquVOSOw .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3yquVOSOw .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3yquVOSOw .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3yquVOSOw .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3yquVOSOw .copyright-col {
    text-align: center;
  }
}
.cid-v3yquVOSOw .copyright {
  text-align: justify;
}
.cid-v3yBkJz1bE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v3yBkJz1bE nav.navbar {
  position: fixed;
}
.cid-v3yBkJz1bE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yBkJz1bE .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v3yBkJz1bE .dropdown-item {
  border: none !important;
  background: #0e264c !important;
  font-weight: 300;
}
.cid-v3yBkJz1bE .dropdown-item:hover,
.cid-v3yBkJz1bE .dropdown-item:focus {
  background: #0e264c !important;
  color: #1a1a1a !important;
}
.cid-v3yBkJz1bE .dropdown-item:hover span {
  color: white;
}
.cid-v3yBkJz1bE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3yBkJz1bE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3yBkJz1bE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3yBkJz1bE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
}
.cid-v3yBkJz1bE .nav-link {
  position: relative;
}
.cid-v3yBkJz1bE .container {
  display: flex;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-v3yBkJz1bE .container {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cid-v3yBkJz1bE .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .cid-v3yBkJz1bE .container {
    max-width: 1484px;
  }
}
.cid-v3yBkJz1bE .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v3yBkJz1bE .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v3yBkJz1bE .dropdown-menu,
.cid-v3yBkJz1bE .navbar.opened {
  background: #0e264c !important;
}
.cid-v3yBkJz1bE .nav-item:focus,
.cid-v3yBkJz1bE .nav-link:focus {
  outline: none;
}
.cid-v3yBkJz1bE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3yBkJz1bE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v3yBkJz1bE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3yBkJz1bE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3yBkJz1bE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3yBkJz1bE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3yBkJz1bE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0e264c;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yBkJz1bE .navbar.opened {
  transition: all 0.3s;
}
.cid-v3yBkJz1bE .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 12px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v3yBkJz1bE .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v3yBkJz1bE .navbar .navbar-logo img {
  width: auto;
}
.cid-v3yBkJz1bE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3yBkJz1bE .navbar.collapsed {
  justify-content: center;
}
.cid-v3yBkJz1bE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3yBkJz1bE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3yBkJz1bE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3yBkJz1bE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3yBkJz1bE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3yBkJz1bE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3yBkJz1bE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3yBkJz1bE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3yBkJz1bE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3yBkJz1bE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3yBkJz1bE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3yBkJz1bE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3yBkJz1bE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3yBkJz1bE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3yBkJz1bE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3yBkJz1bE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3yBkJz1bE .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v3yBkJz1bE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v3yBkJz1bE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3yBkJz1bE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3yBkJz1bE .navbar.navbar-short {
  min-height: 70px;
}
.cid-v3yBkJz1bE .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-v3yBkJz1bE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v3yBkJz1bE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v3yBkJz1bE .navbar-brand .navbar-caption:hover,
.cid-v3yBkJz1bE .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yBkJz1bE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yBkJz1bE .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v3yBkJz1bE .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #1a1a1a !important;
}
.cid-v3yBkJz1bE .dropdown-item.active,
.cid-v3yBkJz1bE .dropdown-item:active {
  background-color: transparent;
}
.cid-v3yBkJz1bE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3yBkJz1bE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3yBkJz1bE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3yBkJz1bE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e264c;
  top: 2.4rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v3yBkJz1bE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v3yBkJz1bE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v3yBkJz1bE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3yBkJz1bE ul.navbar-nav {
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .cid-v3yBkJz1bE ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.cid-v3yBkJz1bE .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v3yBkJz1bE .navbar-buttons {
    text-align: left;
  }
}
.cid-v3yBkJz1bE .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v3yBkJz1bE .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v3yBkJz1bE button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 70px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: #0e264c !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v3yBkJz1bE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #1a1a1a;
}
.cid-v3yBkJz1bE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v3yBkJz1bE button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yBkJz1bE button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-v3yBkJz1bE button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-v3yBkJz1bE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yBkJz1bE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3yBkJz1bE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3yBkJz1bE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3yBkJz1bE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3yBkJz1bE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3yBkJz1bE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3yBkJz1bE .navbar {
    height: 70px;
  }
  .cid-v3yBkJz1bE .navbar.opened {
    height: auto;
  }
  .cid-v3yBkJz1bE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3yBkJz1bE .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v3yBkJz1bE .nav-item .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}
.cid-v3yBkJz1bE .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v3yBkJz1bE .nav-item .nav-link:hover {
  background-color: transparent;
  opacity: .5;
}
.cid-v3yBkJz1bE .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v3yBkJz1bE .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v3yBkJz1bE .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v3yBkJz1bE .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v3yBkJz1bE .navbar {
    justify-content: flex-start !important;
  }
  .cid-v3yBkJz1bE .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v3yBkJz1bE .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v3yBkJz1bE .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3yBkJz1bE .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v3yBkJz1bE .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v3yBkJz1bE .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v3yBkKkAbk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yBkKkAbk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yBkKkAbk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yBkKkAbk .items-wrapper {
  justify-content: flex-end;
}
.cid-v3yBkKkAbk .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3yBkKkAbk .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v3yBkKkAbk .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-v3yBkKkAbk .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-v3yBkKkAbk .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-v3yBkKkAbk .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-v3yBkKkAbk .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-v3yBkKkAbk .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .cid-v3yBkKkAbk .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v3yBkKkAbk .content-wrapper {
    padding-left: 0;
  }
}
.cid-v3yBkKkAbk .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-v3yBkKkAbk .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v3yBkKkAbk .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-v3yBkKkAbk .mbr-desc {
  color: #272b2e;
}
.cid-v3yBkKkAbk .mbr-section-title {
  color: #272b2e;
}
.cid-v3yBkKkAbk .mbr-text,
.cid-v3yBkKkAbk .text-wrapper {
  color: #272b2e;
}
.cid-v3yBkKQe8b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e264c;
}
.cid-v3yBkKQe8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yBkKQe8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yBkKQe8b .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v3yBkKQe8b .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-v3yBkKQe8b .content-wrapper {
    width: 100%;
  }
}
.cid-v3yBkKQe8b .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-v3yBkKQe8b .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 24px;
}
.cid-v3yBkKQe8b .content-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-v3yBkKQe8b .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3yBkKQe8b .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v3yBkKQe8b .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-v3yBkKQe8b .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-v3yBkKQe8b .mbr-section-title {
  color: #181824;
}
.cid-v3yBkKQe8b .mbr-section-title,
.cid-v3yBkKQe8b .mbr-section-btn,
.cid-v3yBkKQe8b .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3yBkLpR4i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf0;
}
.cid-v3yBkLpR4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yBkLpR4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yBkLpR4i .card-wrapper {
  position: relative;
  z-index: 1;
  border: 2px solid #000000 !important;
  background-color: #000000;
}
.cid-v3yBkLpR4i .card-wrapper .google-map iframe {
  height: 650px;
}
@media (max-width: 1440px) {
  .cid-v3yBkLpR4i .card-wrapper .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-v3yBkLpR4i .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-v3yBkLpR4i .decoration-wrapper {
  position: relative;
  width: 100%;
  height: 150px;
}
.cid-v3yBkLpR4i .decoration-wrapper .card-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #000000;
}
.cid-v3yBkLpR4i .decoration-wrapper .decor_1 {
  background-color: #ff6f89;
  bottom: 0;
}
.cid-v3yBkLpR4i .decoration-wrapper .decor_2 {
  background-color: #ea3d5b;
  bottom: 70px;
}
.cid-v3yBkLpR4i .decoration-wrapper .decor_3 {
  background-color: #9a1436;
  bottom: 120px;
}
.cid-v3yBkM5mhU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3yBkM5mhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yBkM5mhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yBkM5mhU .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3yBkM5mhU .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3yBkM5mhU .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3yBkM5mhU .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3yBkM5mhU .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3yBkM5mhU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3yBkM5mhU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3yBkM5mhU .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3yBkM5mhU .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3yBkM5mhU .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3yBkM5mhU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3yBkM5mhU .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3yBkM5mhU .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3yBkM5mhU .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3yBkM5mhU .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3yBkM5mhU .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3yBkM5mhU .list li {
  transition: 0.5s all;
}
.cid-v3yBkM5mhU .list li:hover {
  opacity: 0.6;
}
.cid-v3yBkM5mhU .item-wrap {
  margin-bottom: 12px;
}
.cid-v3yBkM5mhU .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3yBkM5mhU .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3yBkM5mhU .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3yBkM5mhU .mbr-iconfont {
  color: #1b1f0a;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3yBkM5mhU .copyright-col {
    text-align: center;
  }
}
.cid-v3yBkM5mhU .copyright {
  text-align: justify;
}
