.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #05386b !important;
}
.bg-info {
  background-color: #e43f3f !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-success,
.btn-success:active {
  background-color: #05386b !important;
  border-color: #05386b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #5cdb95;
  color: #5cdb95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #29b869 !important;
  background-color: transparent!important;
  border-color: #29b869 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #05386b;
  color: #05386b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #010d18 !important;
  background-color: transparent!important;
  border-color: #010d18 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #05386b !important;
  border-color: #05386b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #5cdb95 !important;
}
.text-success {
  color: #05386b !important;
}
.text-info {
  color: #e43f3f !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #26ab62 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #00050a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a61717 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e43f3f;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #0b78e5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e43f3f;
  border-bottom-color: #e43f3f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #5cdb95 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e43f3f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .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;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCAOqBTxa {
  padding-top: 15rem;
  padding-bottom: 13rem;
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sFADQxFnEn {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #05386b;
}
.cid-sFADQxFnEn .mbr-section-title {
  color: #ffffff;
}
.cid-sFADQxFnEn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vilakdyIeO {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vilakdyIeO img,
.cid-vilakdyIeO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vilakdyIeO .item:focus,
.cid-vilakdyIeO span:focus {
  outline: none;
}
.cid-vilakdyIeO .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vilakdyIeO .item {
    margin-bottom: 1rem;
  }
}
.cid-vilakdyIeO .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vilakdyIeO .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vilakdyIeO .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vilakdyIeO .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vilakdyIeO .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vilakdyIeO .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vilakdyIeO .mbr-section-title {
  color: #232323;
}
.cid-vilakdyIeO .mbr-text,
.cid-vilakdyIeO .mbr-section-btn {
  text-align: center;
}
.cid-vilakdyIeO .item-title {
  text-align: left;
}
.cid-vilakdyIeO .content-head {
  max-width: 800px;
}
.cid-vilakdyIeO .mbr-text,
.cid-vilakdyIeO .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vinsRuPjE4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-vinsRuPjE4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vinsRuPjE4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vinsRuPjE4 .mbr-section-title {
  color: #05386b;
}
.cid-vinmjIcXXg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #05386b;
}
.cid-vinmjIcXXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vinmjIcXXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vinmjIcXXg .row-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vinmjIcXXg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vinmjIcXXg .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-vinmjIcXXg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vinmjIcXXg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vinmjIcXXg .mbr-section-title {
  color: #ffffff;
}
.cid-vinmjIcXXg .mbr-text,
.cid-vinmjIcXXg .mbr-section-btn {
  color: #ffffff;
}
.cid-vinmjIcXXg img {
  width: 100%;
  height: 100%;
}
.cid-sFAQAQGsOD {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/142864.jpg");
}
.cid-sFAQAQGsOD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sFAQAQGsOD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFAQAQGsOD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sFAQAQGsOD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sFAQAQGsOD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sFAQAQGsOD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sFAQAQGsOD .carousel-control,
.cid-sFAQAQGsOD .close {
  background: #1b1b1b;
}
.cid-sFAQAQGsOD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sFAQAQGsOD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-next span {
  margin-left: 5px;
}
.cid-sFAQAQGsOD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sFAQAQGsOD .close::before {
  content: '\e91a';
}
.cid-sFAQAQGsOD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFAQAQGsOD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sFAQAQGsOD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-indicators li.active,
.cid-sFAQAQGsOD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sFAQAQGsOD .carousel-indicators li::after,
.cid-sFAQAQGsOD .carousel-indicators li::before {
  content: none;
}
.cid-sFAQAQGsOD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none;
  }
}
.cid-sFAQAQGsOD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .carousel-inner > .active {
  display: block;
}
.cid-sFAQAQGsOD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-control,
  .cid-sFAQAQGsOD .carousel-indicators,
  .cid-sFAQAQGsOD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sFAQAQGsOD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sFAQAQGsOD .carousel-indicators .active,
.cid-sFAQAQGsOD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sFAQAQGsOD .carousel-indicators .active {
  background: #fff;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sFAQAQGsOD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sFAQAQGsOD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sFAQAQGsOD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sFAQAQGsOD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sFAQAQGsOD .carousel {
  width: 100%;
}
.cid-sFAQAQGsOD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog,
.cid-sFAQAQGsOD .modal.in .modal-dialog {
  transform: none;
}
.cid-sFAQAQGsOD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sFAQAQGsOD H6 {
  text-align: center;
}
.cid-sFAQAQGsOD H3 {
  color: #05386b;
}
.cid-viln1FkMNk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-viln1FkMNk h6 {
  line-height: 1.2;
}
.cid-viln1FkMNk img,
.cid-viln1FkMNk .item-img {
  width: 100%;
}
.cid-viln1FkMNk .item:focus,
.cid-viln1FkMNk span:focus {
  outline: none;
}
.cid-viln1FkMNk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-viln1FkMNk .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-viln1FkMNk .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-viln1FkMNk .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-viln1FkMNk .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-viln1FkMNk .mbr-section-title {
  color: #05386b;
}
.cid-viln1FkMNk .mbr-text,
.cid-viln1FkMNk .mbr-section-btn {
  color: #000000;
}
.cid-viln1FkMNk .item-title {
  color: #000000;
  text-align: center;
}
.cid-viln1FkMNk .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-viln1FkMNk .item-text {
  color: #000000;
  text-align: center;
}
.cid-viln1FkMNk .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjhkcd9oEw {
  z-index: 1000;
  width: 100%;
}
.cid-vjhkcd9oEw nav.navbar {
  position: fixed;
}
.cid-vjhkcd9oEw .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-vjhkcd9oEw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjhkcd9oEw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjhkcd9oEw .dropdown-item:hover,
.cid-vjhkcd9oEw .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjhkcd9oEw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjhkcd9oEw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjhkcd9oEw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjhkcd9oEw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjhkcd9oEw .nav-link {
  position: relative;
}
.cid-vjhkcd9oEw .container {
  display: flex;
  margin: auto;
}
.cid-vjhkcd9oEw .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjhkcd9oEw .dropdown-menu,
.cid-vjhkcd9oEw .navbar.opened {
  background: #ffffff !important;
}
.cid-vjhkcd9oEw .nav-item:focus,
.cid-vjhkcd9oEw .nav-link:focus {
  outline: none;
}
.cid-vjhkcd9oEw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjhkcd9oEw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjhkcd9oEw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjhkcd9oEw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjhkcd9oEw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjhkcd9oEw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjhkcd9oEw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjhkcd9oEw .navbar.opened {
  transition: all 0.3s;
}
.cid-vjhkcd9oEw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjhkcd9oEw .navbar .navbar-logo img {
  width: auto;
}
.cid-vjhkcd9oEw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjhkcd9oEw .navbar.collapsed {
  justify-content: center;
}
.cid-vjhkcd9oEw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjhkcd9oEw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjhkcd9oEw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjhkcd9oEw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjhkcd9oEw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjhkcd9oEw .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-vjhkcd9oEw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjhkcd9oEw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjhkcd9oEw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjhkcd9oEw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjhkcd9oEw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjhkcd9oEw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjhkcd9oEw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjhkcd9oEw .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-vjhkcd9oEw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjhkcd9oEw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjhkcd9oEw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjhkcd9oEw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjhkcd9oEw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjhkcd9oEw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjhkcd9oEw .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjhkcd9oEw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjhkcd9oEw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjhkcd9oEw .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;
  z-index: 1;
}
.cid-vjhkcd9oEw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjhkcd9oEw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjhkcd9oEw .dropdown-item.active,
.cid-vjhkcd9oEw .dropdown-item:active {
  background-color: transparent;
}
.cid-vjhkcd9oEw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjhkcd9oEw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjhkcd9oEw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjhkcd9oEw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjhkcd9oEw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjhkcd9oEw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjhkcd9oEw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjhkcd9oEw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjhkcd9oEw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjhkcd9oEw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjhkcd9oEw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjhkcd9oEw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjhkcd9oEw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjhkcd9oEw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjhkcd9oEw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjhkcd9oEw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjhkcd9oEw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjhkcd9oEw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjhkcd9oEw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjhkcd9oEw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjhkcd9oEw .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-vjhkcd9oEw .navbar {
    height: 70px;
  }
  .cid-vjhkcd9oEw .navbar.opened {
    height: auto;
  }
  .cid-vjhkcd9oEw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjhkFuTElM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-vjhkFuTElM .container {
  max-width: 1500px;
}
.cid-vjhkFuTElM img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjhkFuTElM img:hover {
  transform: scale(1.1);
}
.cid-vjhkFuTElM .row {
  background: #ffffff;
}
.cid-vjhkFuTElM .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjhkFuTElM h2 {
  padding: 0;
  margin: 0;
}
.cid-vjhkFuTElM .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjhkFuTElM .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjhkFuTElM .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjhkFuTElM .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjhkFuTElM .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjhkFuTElM .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjhkFuTElM .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjhkFuTElM .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjhkFuTElM .row {
    margin: 0rem;
  }
  .cid-vjhkFuTElM .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjhkFuTElM .number {
    margin-right: 2rem;
  }
  .cid-vjhkFuTElM .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjhkFuTElM H2 {
  color: #333333;
}
.cid-vjhkFuTElM .mbr-text {
  color: #767676;
}
.cid-vjhqJplT5k {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #edefeb;
}
@media (max-width: 767px) {
  .cid-vjhqJplT5k {
    padding-bottom: 5rem;
  }
}
.cid-vjhqJplT5k img,
.cid-vjhqJplT5k .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vjhqJplT5k img,
  .cid-vjhqJplT5k .item-img {
    height: 300px;
    object-fit: cover;
  }
}
.cid-vjhqJplT5k .mbr-text {
  color: #000000;
}
.cid-vjhqJplT5k .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjhqJplT5k .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhqJplT5k .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjhqJplT5k .mbr-text UL {
  text-align: left;
}
.cid-vjhqJplT5k .mbr-section-subtitle,
.cid-vjhqJplT5k .main-button {
  color: #000000;
}
.cid-vjhqJplT5k .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-vjhqJplT5k .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-vjhqJplT5k .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhqJplT5k .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjhqJplT5k .item-title {
  text-align: center;
}
.cid-vjhqJplT5k .item-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjhqJplT5k .main-text {
    padding-left: 0;
    padding-right: 32px;
  }
}
.cid-vjhrJdCTXp {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #edefeb;
}
@media (max-width: 767px) {
  .cid-vjhrJdCTXp {
    padding-bottom: 5rem;
  }
}
.cid-vjhrJdCTXp img,
.cid-vjhrJdCTXp .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vjhrJdCTXp img,
  .cid-vjhrJdCTXp .item-img {
    height: 300px;
    object-fit: cover;
  }
}
.cid-vjhrJdCTXp .mbr-text {
  color: #000000;
}
.cid-vjhrJdCTXp .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjhrJdCTXp .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhrJdCTXp .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjhrJdCTXp .mbr-text UL {
  text-align: left;
}
.cid-vjhrJdCTXp .mbr-section-subtitle,
.cid-vjhrJdCTXp .main-button {
  color: #000000;
}
.cid-vjhrJdCTXp .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-vjhrJdCTXp .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-vjhrJdCTXp .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhrJdCTXp .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjhrJdCTXp .item-title {
  text-align: center;
}
.cid-vjhrJdCTXp .item-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjhrJdCTXp .main-text {
    padding-left: 0;
    padding-right: 32px;
  }
}
.cid-vjinbVXpyC {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #edefeb;
}
@media (max-width: 767px) {
  .cid-vjinbVXpyC {
    padding-bottom: 5rem;
  }
}
.cid-vjinbVXpyC img,
.cid-vjinbVXpyC .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vjinbVXpyC img,
  .cid-vjinbVXpyC .item-img {
    height: 300px;
    object-fit: cover;
  }
}
.cid-vjinbVXpyC .mbr-text {
  color: #000000;
}
.cid-vjinbVXpyC .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjinbVXpyC .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjinbVXpyC .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjinbVXpyC .mbr-text UL {
  text-align: left;
}
.cid-vjinbVXpyC .mbr-section-subtitle,
.cid-vjinbVXpyC .main-button {
  color: #000000;
}
.cid-vjinbVXpyC .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-vjinbVXpyC .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-vjinbVXpyC .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjinbVXpyC .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjinbVXpyC .item-title {
  text-align: center;
}
.cid-vjinbVXpyC .item-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjinbVXpyC .main-text {
    padding-left: 0;
    padding-right: 32px;
  }
}
.cid-vjitvkuWF6 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #edefeb;
}
@media (max-width: 767px) {
  .cid-vjitvkuWF6 {
    padding-bottom: 5rem;
  }
}
.cid-vjitvkuWF6 img,
.cid-vjitvkuWF6 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vjitvkuWF6 img,
  .cid-vjitvkuWF6 .item-img {
    height: 300px;
    object-fit: cover;
  }
}
.cid-vjitvkuWF6 .mbr-text {
  color: #000000;
}
.cid-vjitvkuWF6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjitvkuWF6 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjitvkuWF6 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjitvkuWF6 .mbr-text UL {
  text-align: left;
}
.cid-vjitvkuWF6 .mbr-section-subtitle,
.cid-vjitvkuWF6 .main-button {
  color: #000000;
}
.cid-vjitvkuWF6 .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-vjitvkuWF6 .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-vjitvkuWF6 .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjitvkuWF6 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjitvkuWF6 .item-title {
  text-align: center;
}
.cid-vjitvkuWF6 .item-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjitvkuWF6 .main-text {
    padding-left: 0;
    padding-right: 32px;
  }
}
.cid-vjiuaKtk5X {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #edefeb;
}
@media (max-width: 767px) {
  .cid-vjiuaKtk5X {
    padding-bottom: 5rem;
  }
}
.cid-vjiuaKtk5X img,
.cid-vjiuaKtk5X .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vjiuaKtk5X img,
  .cid-vjiuaKtk5X .item-img {
    height: 300px;
    object-fit: cover;
  }
}
.cid-vjiuaKtk5X .mbr-text {
  color: #000000;
}
.cid-vjiuaKtk5X .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjiuaKtk5X .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjiuaKtk5X .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjiuaKtk5X .mbr-text UL {
  text-align: left;
}
.cid-vjiuaKtk5X .mbr-section-subtitle,
.cid-vjiuaKtk5X .main-button {
  color: #000000;
}
.cid-vjiuaKtk5X .side-features {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-vjiuaKtk5X .side-features .item {
  padding-left: 16px;
  padding-right: 16px;
}
.cid-vjiuaKtk5X .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjiuaKtk5X .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjiuaKtk5X .item-title {
  text-align: center;
}
.cid-vjiuaKtk5X .item-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjiuaKtk5X .main-text {
    padding-left: 0;
    padding-right: 32px;
  }
}
.cid-vjhkceksJq {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjhkceksJq img,
.cid-vjhkceksJq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjhkceksJq .item:focus,
.cid-vjhkceksJq span:focus {
  outline: none;
}
.cid-vjhkceksJq .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhkceksJq .item {
    margin-bottom: 1rem;
  }
}
.cid-vjhkceksJq .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjhkceksJq .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjhkceksJq .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjhkceksJq .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjhkceksJq .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjhkceksJq .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjhkceksJq .mbr-section-title {
  color: #232323;
}
.cid-vjhkceksJq .mbr-text,
.cid-vjhkceksJq .mbr-section-btn {
  text-align: center;
}
.cid-vjhkceksJq .item-title {
  text-align: left;
}
.cid-vjhkceksJq .content-head {
  max-width: 800px;
}
.cid-vjhkceksJq .mbr-text,
.cid-vjhkceksJq .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjhkceTQ5N {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjhkceTQ5N h6 {
  line-height: 1.2;
}
.cid-vjhkceTQ5N img,
.cid-vjhkceTQ5N .item-img {
  width: 100%;
}
.cid-vjhkceTQ5N .item:focus,
.cid-vjhkceTQ5N span:focus {
  outline: none;
}
.cid-vjhkceTQ5N .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhkceTQ5N .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjhkceTQ5N .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjhkceTQ5N .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjhkceTQ5N .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjhkceTQ5N .mbr-section-title {
  color: #05386b;
}
.cid-vjhkceTQ5N .mbr-text,
.cid-vjhkceTQ5N .mbr-section-btn {
  color: #000000;
}
.cid-vjhkceTQ5N .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjhkceTQ5N .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjhkceTQ5N .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjhkceTQ5N .content-head {
  max-width: 800px;
}
.cid-vjhkcftBj5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-vjhkcftBj5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjhkcftBj5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjhkcftBj5 .mbr-section-title {
  color: #05386b;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjiCROUaUB {
  z-index: 1000;
  width: 100%;
}
.cid-vjiCROUaUB nav.navbar {
  position: fixed;
}
.cid-vjiCROUaUB .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-vjiCROUaUB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjiCROUaUB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjiCROUaUB .dropdown-item:hover,
.cid-vjiCROUaUB .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjiCROUaUB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjiCROUaUB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjiCROUaUB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjiCROUaUB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjiCROUaUB .nav-link {
  position: relative;
}
.cid-vjiCROUaUB .container {
  display: flex;
  margin: auto;
}
.cid-vjiCROUaUB .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjiCROUaUB .dropdown-menu,
.cid-vjiCROUaUB .navbar.opened {
  background: #ffffff !important;
}
.cid-vjiCROUaUB .nav-item:focus,
.cid-vjiCROUaUB .nav-link:focus {
  outline: none;
}
.cid-vjiCROUaUB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjiCROUaUB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjiCROUaUB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjiCROUaUB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjiCROUaUB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjiCROUaUB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjiCROUaUB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjiCROUaUB .navbar.opened {
  transition: all 0.3s;
}
.cid-vjiCROUaUB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjiCROUaUB .navbar .navbar-logo img {
  width: auto;
}
.cid-vjiCROUaUB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjiCROUaUB .navbar.collapsed {
  justify-content: center;
}
.cid-vjiCROUaUB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjiCROUaUB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjiCROUaUB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjiCROUaUB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjiCROUaUB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjiCROUaUB .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-vjiCROUaUB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjiCROUaUB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjiCROUaUB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjiCROUaUB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjiCROUaUB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjiCROUaUB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjiCROUaUB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjiCROUaUB .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-vjiCROUaUB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjiCROUaUB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjiCROUaUB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjiCROUaUB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjiCROUaUB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjiCROUaUB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjiCROUaUB .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjiCROUaUB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjiCROUaUB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjiCROUaUB .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;
  z-index: 1;
}
.cid-vjiCROUaUB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjiCROUaUB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjiCROUaUB .dropdown-item.active,
.cid-vjiCROUaUB .dropdown-item:active {
  background-color: transparent;
}
.cid-vjiCROUaUB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjiCROUaUB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjiCROUaUB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjiCROUaUB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjiCROUaUB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjiCROUaUB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjiCROUaUB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjiCROUaUB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjiCROUaUB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjiCROUaUB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjiCROUaUB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjiCROUaUB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjiCROUaUB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjiCROUaUB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjiCROUaUB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjiCROUaUB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjiCROUaUB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjiCROUaUB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjiCROUaUB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjiCROUaUB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjiCROUaUB .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-vjiCROUaUB .navbar {
    height: 70px;
  }
  .cid-vjiCROUaUB .navbar.opened {
    height: auto;
  }
  .cid-vjiCROUaUB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjiD39UgxS {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjiD39UgxS .container {
  max-width: 1500px;
}
.cid-vjiD39UgxS img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjiD39UgxS img:hover {
  transform: scale(1.1);
}
.cid-vjiD39UgxS .row {
  background: #ffffff;
}
.cid-vjiD39UgxS .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjiD39UgxS h2 {
  padding: 0;
  margin: 0;
}
.cid-vjiD39UgxS .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjiD39UgxS .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjiD39UgxS .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjiD39UgxS .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjiD39UgxS .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjiD39UgxS .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjiD39UgxS .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjiD39UgxS .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjiD39UgxS .row {
    margin: 0rem;
  }
  .cid-vjiD39UgxS .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjiD39UgxS .number {
    margin-right: 2rem;
  }
  .cid-vjiD39UgxS .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjiD39UgxS H2 {
  color: #333333;
}
.cid-vjiD39UgxS .mbr-text {
  color: #767676;
}
.cid-vjLccV5Q7y {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vjLccV5Q7y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLccV5Q7y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vjLccV5Q7y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjLccV5Q7y .row {
  flex-direction: row-reverse;
}
.cid-vjLccV5Q7y .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjLccV5Q7y .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjLccV5Q7y .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vjLccV5Q7y .mbr-section-title {
  color: #000000;
}
.cid-vjLccV5Q7y .mbr-text,
.cid-vjLccV5Q7y .mbr-section-btn {
  color: #000000;
}
.cid-vjLcP2gMvU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vjLcP2gMvU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLcP2gMvU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vjLcP2gMvU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjLcP2gMvU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjLcP2gMvU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjLcP2gMvU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vjLcP2gMvU .mbr-section-title {
  color: #000000;
}
.cid-vjLcP2gMvU .mbr-text,
.cid-vjLcP2gMvU .mbr-section-btn {
  color: #000000;
}
.cid-vjLefJVPQK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/142864.jpg");
}
.cid-vjLefJVPQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLefJVPQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjLefJVPQK .row {
  flex-direction: row-reverse;
}
.cid-vjLefJVPQK .mbr-description {
  text-align: left;
}
.cid-vjLefJVPQK .item-wrapper {
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 2.25rem;
}
@media (max-width: 767px) {
  .cid-vjLefJVPQK .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjLefJVPQK .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-vjLefJVPQK .card-title,
.cid-vjLefJVPQK .iconfont-wrapper {
  color: #000000;
}
.cid-vjLefJVPQK .card-text {
  color: #000000;
}
.cid-vjLefJVPQK .mbr-section-title {
  color: #000000;
  text-align: justify;
}
.cid-vjLefJVPQK .mbr-number {
  color: #05386b;
}
.cid-vjLefJVPQK .mbr-text,
.cid-vjLefJVPQK .mbr-section-btn {
  text-align: center;
}
.cid-vjLefJVPQK .card-text,
.cid-vjLefJVPQK .item .mbr-section-btn {
  text-align: left;
}
.cid-vjLefJVPQK .image-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjLefJVPQK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjiCRQAsyN {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjiCRQAsyN img,
.cid-vjiCRQAsyN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjiCRQAsyN .item:focus,
.cid-vjiCRQAsyN span:focus {
  outline: none;
}
.cid-vjiCRQAsyN .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjiCRQAsyN .item {
    margin-bottom: 1rem;
  }
}
.cid-vjiCRQAsyN .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjiCRQAsyN .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjiCRQAsyN .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjiCRQAsyN .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjiCRQAsyN .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjiCRQAsyN .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjiCRQAsyN .mbr-section-title {
  color: #232323;
}
.cid-vjiCRQAsyN .mbr-text,
.cid-vjiCRQAsyN .mbr-section-btn {
  text-align: center;
}
.cid-vjiCRQAsyN .item-title {
  text-align: left;
}
.cid-vjiCRQAsyN .content-head {
  max-width: 800px;
}
.cid-vjiCRQAsyN .mbr-text,
.cid-vjiCRQAsyN .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjiCRQRqzJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjiCRQRqzJ h6 {
  line-height: 1.2;
}
.cid-vjiCRQRqzJ img,
.cid-vjiCRQRqzJ .item-img {
  width: 100%;
}
.cid-vjiCRQRqzJ .item:focus,
.cid-vjiCRQRqzJ span:focus {
  outline: none;
}
.cid-vjiCRQRqzJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjiCRQRqzJ .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjiCRQRqzJ .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjiCRQRqzJ .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjiCRQRqzJ .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjiCRQRqzJ .mbr-section-title {
  color: #05386b;
}
.cid-vjiCRQRqzJ .mbr-text,
.cid-vjiCRQRqzJ .mbr-section-btn {
  color: #000000;
}
.cid-vjiCRQRqzJ .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjiCRQRqzJ .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjiCRQRqzJ .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjiCRQRqzJ .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjLhhqqGTv {
  z-index: 1000;
  width: 100%;
}
.cid-vjLhhqqGTv nav.navbar {
  position: fixed;
}
.cid-vjLhhqqGTv .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-vjLhhqqGTv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjLhhqqGTv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjLhhqqGTv .dropdown-item:hover,
.cid-vjLhhqqGTv .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjLhhqqGTv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjLhhqqGTv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjLhhqqGTv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjLhhqqGTv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjLhhqqGTv .nav-link {
  position: relative;
}
.cid-vjLhhqqGTv .container {
  display: flex;
  margin: auto;
}
.cid-vjLhhqqGTv .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjLhhqqGTv .dropdown-menu,
.cid-vjLhhqqGTv .navbar.opened {
  background: #ffffff !important;
}
.cid-vjLhhqqGTv .nav-item:focus,
.cid-vjLhhqqGTv .nav-link:focus {
  outline: none;
}
.cid-vjLhhqqGTv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjLhhqqGTv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjLhhqqGTv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjLhhqqGTv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjLhhqqGTv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjLhhqqGTv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjLhhqqGTv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjLhhqqGTv .navbar.opened {
  transition: all 0.3s;
}
.cid-vjLhhqqGTv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjLhhqqGTv .navbar .navbar-logo img {
  width: auto;
}
.cid-vjLhhqqGTv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjLhhqqGTv .navbar.collapsed {
  justify-content: center;
}
.cid-vjLhhqqGTv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjLhhqqGTv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjLhhqqGTv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjLhhqqGTv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjLhhqqGTv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjLhhqqGTv .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-vjLhhqqGTv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjLhhqqGTv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjLhhqqGTv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjLhhqqGTv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjLhhqqGTv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjLhhqqGTv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjLhhqqGTv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjLhhqqGTv .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-vjLhhqqGTv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjLhhqqGTv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjLhhqqGTv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjLhhqqGTv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjLhhqqGTv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjLhhqqGTv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjLhhqqGTv .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjLhhqqGTv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjLhhqqGTv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjLhhqqGTv .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;
  z-index: 1;
}
.cid-vjLhhqqGTv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjLhhqqGTv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjLhhqqGTv .dropdown-item.active,
.cid-vjLhhqqGTv .dropdown-item:active {
  background-color: transparent;
}
.cid-vjLhhqqGTv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjLhhqqGTv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjLhhqqGTv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjLhhqqGTv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjLhhqqGTv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjLhhqqGTv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjLhhqqGTv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjLhhqqGTv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjLhhqqGTv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjLhhqqGTv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjLhhqqGTv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjLhhqqGTv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjLhhqqGTv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjLhhqqGTv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjLhhqqGTv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjLhhqqGTv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjLhhqqGTv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjLhhqqGTv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjLhhqqGTv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjLhhqqGTv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjLhhqqGTv .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-vjLhhqqGTv .navbar {
    height: 70px;
  }
  .cid-vjLhhqqGTv .navbar.opened {
    height: auto;
  }
  .cid-vjLhhqqGTv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjLhhqLHRI {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjLhhqLHRI .container {
  max-width: 1500px;
}
.cid-vjLhhqLHRI img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjLhhqLHRI img:hover {
  transform: scale(1.1);
}
.cid-vjLhhqLHRI .row {
  background: #ffffff;
}
.cid-vjLhhqLHRI .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjLhhqLHRI h2 {
  padding: 0;
  margin: 0;
}
.cid-vjLhhqLHRI .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjLhhqLHRI .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjLhhqLHRI .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjLhhqLHRI .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjLhhqLHRI .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjLhhqLHRI .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjLhhqLHRI .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjLhhqLHRI .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjLhhqLHRI .row {
    margin: 0rem;
  }
  .cid-vjLhhqLHRI .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjLhhqLHRI .number {
    margin-right: 2rem;
  }
  .cid-vjLhhqLHRI .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjLhhqLHRI H2 {
  color: #333333;
}
.cid-vjLhhqLHRI .mbr-text {
  color: #767676;
}
.cid-vjN39nkwcL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjN39nkwcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjN39nkwcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjN39nkwcL .text-wrapper {
    padding: 2rem;
  }
}
.cid-vjN39nkwcL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vjN39nkwcL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vjN39nkwcL .position {
  text-align: justify;
}
.cid-vjN6p0HSXM {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-vjN6p0HSXM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjN6p0HSXM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjN6p0HSXM .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vjN6p0HSXM .team-card:hover {
  transform: translateY(-10px);
}
.cid-vjN6p0HSXM .item-wrapper {
  background: #05386b;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vjN6p0HSXM .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vjN6p0HSXM .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-vjN6p0HSXM .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vjN6p0HSXM .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-vjN6p0HSXM .social-row {
  text-align: center;
}
.cid-vjN6p0HSXM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vjN6p0HSXM .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-vjN6p0HSXM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vjN6p0HSXM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-vjN6p0HSXM .card-title,
.cid-vjN6p0HSXM .social-row {
  color: #efefef;
}
.cid-vjN6p0HSXM .mbr-role,
.cid-vjN6p0HSXM .social-row {
  color: #efefef;
}
.cid-vjLhhrLGrQ {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjLhhrLGrQ img,
.cid-vjLhhrLGrQ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjLhhrLGrQ .item:focus,
.cid-vjLhhrLGrQ span:focus {
  outline: none;
}
.cid-vjLhhrLGrQ .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjLhhrLGrQ .item {
    margin-bottom: 1rem;
  }
}
.cid-vjLhhrLGrQ .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjLhhrLGrQ .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjLhhrLGrQ .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjLhhrLGrQ .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjLhhrLGrQ .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjLhhrLGrQ .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjLhhrLGrQ .mbr-section-title {
  color: #232323;
}
.cid-vjLhhrLGrQ .mbr-text,
.cid-vjLhhrLGrQ .mbr-section-btn {
  text-align: center;
}
.cid-vjLhhrLGrQ .item-title {
  text-align: left;
}
.cid-vjLhhrLGrQ .content-head {
  max-width: 800px;
}
.cid-vjLhhrLGrQ .mbr-text,
.cid-vjLhhrLGrQ .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjLhhs7YWS {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjLhhs7YWS h6 {
  line-height: 1.2;
}
.cid-vjLhhs7YWS img,
.cid-vjLhhs7YWS .item-img {
  width: 100%;
}
.cid-vjLhhs7YWS .item:focus,
.cid-vjLhhs7YWS span:focus {
  outline: none;
}
.cid-vjLhhs7YWS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjLhhs7YWS .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjLhhs7YWS .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjLhhs7YWS .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjLhhs7YWS .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjLhhs7YWS .mbr-section-title {
  color: #05386b;
}
.cid-vjLhhs7YWS .mbr-text,
.cid-vjLhhs7YWS .mbr-section-btn {
  color: #000000;
}
.cid-vjLhhs7YWS .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjLhhs7YWS .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjLhhs7YWS .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjLhhs7YWS .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjNbFri2wE {
  z-index: 1000;
  width: 100%;
}
.cid-vjNbFri2wE nav.navbar {
  position: fixed;
}
.cid-vjNbFri2wE .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-vjNbFri2wE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjNbFri2wE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjNbFri2wE .dropdown-item:hover,
.cid-vjNbFri2wE .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjNbFri2wE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjNbFri2wE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjNbFri2wE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjNbFri2wE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjNbFri2wE .nav-link {
  position: relative;
}
.cid-vjNbFri2wE .container {
  display: flex;
  margin: auto;
}
.cid-vjNbFri2wE .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjNbFri2wE .dropdown-menu,
.cid-vjNbFri2wE .navbar.opened {
  background: #ffffff !important;
}
.cid-vjNbFri2wE .nav-item:focus,
.cid-vjNbFri2wE .nav-link:focus {
  outline: none;
}
.cid-vjNbFri2wE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjNbFri2wE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjNbFri2wE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjNbFri2wE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNbFri2wE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjNbFri2wE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjNbFri2wE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjNbFri2wE .navbar.opened {
  transition: all 0.3s;
}
.cid-vjNbFri2wE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjNbFri2wE .navbar .navbar-logo img {
  width: auto;
}
.cid-vjNbFri2wE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjNbFri2wE .navbar.collapsed {
  justify-content: center;
}
.cid-vjNbFri2wE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjNbFri2wE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjNbFri2wE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjNbFri2wE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjNbFri2wE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjNbFri2wE .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-vjNbFri2wE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjNbFri2wE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjNbFri2wE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjNbFri2wE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjNbFri2wE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjNbFri2wE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjNbFri2wE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjNbFri2wE .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-vjNbFri2wE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjNbFri2wE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjNbFri2wE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjNbFri2wE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjNbFri2wE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjNbFri2wE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjNbFri2wE .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjNbFri2wE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjNbFri2wE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjNbFri2wE .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;
  z-index: 1;
}
.cid-vjNbFri2wE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjNbFri2wE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjNbFri2wE .dropdown-item.active,
.cid-vjNbFri2wE .dropdown-item:active {
  background-color: transparent;
}
.cid-vjNbFri2wE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjNbFri2wE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjNbFri2wE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjNbFri2wE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjNbFri2wE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjNbFri2wE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjNbFri2wE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjNbFri2wE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjNbFri2wE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjNbFri2wE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjNbFri2wE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjNbFri2wE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjNbFri2wE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjNbFri2wE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjNbFri2wE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjNbFri2wE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjNbFri2wE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjNbFri2wE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjNbFri2wE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjNbFri2wE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjNbFri2wE .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-vjNbFri2wE .navbar {
    height: 70px;
  }
  .cid-vjNbFri2wE .navbar.opened {
    height: auto;
  }
  .cid-vjNbFri2wE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjNbFrzVJi {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjNbFrzVJi .container {
  max-width: 1500px;
}
.cid-vjNbFrzVJi img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjNbFrzVJi img:hover {
  transform: scale(1.1);
}
.cid-vjNbFrzVJi .row {
  background: #ffffff;
}
.cid-vjNbFrzVJi .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjNbFrzVJi h2 {
  padding: 0;
  margin: 0;
}
.cid-vjNbFrzVJi .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjNbFrzVJi .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjNbFrzVJi .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjNbFrzVJi .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjNbFrzVJi .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjNbFrzVJi .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjNbFrzVJi .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNbFrzVJi .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjNbFrzVJi .row {
    margin: 0rem;
  }
  .cid-vjNbFrzVJi .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjNbFrzVJi .number {
    margin-right: 2rem;
  }
  .cid-vjNbFrzVJi .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjNbFrzVJi H2 {
  color: #333333;
}
.cid-vjNbFrzVJi .mbr-text {
  color: #767676;
}
.cid-vjNntLX8NA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-vjNntLX8NA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNntLX8NA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNntLX8NA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vjNntLX8NA .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-vjNntLX8NA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vjNntLX8NA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vjNntLX8NA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vjNntLX8NA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vjNntLX8NA .carousel-control,
.cid-vjNntLX8NA .close {
  background: #1b1b1b;
}
.cid-vjNntLX8NA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vjNntLX8NA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vjNntLX8NA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vjNntLX8NA .carousel-control-next span {
  margin-left: 5px;
}
.cid-vjNntLX8NA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vjNntLX8NA .close::before {
  content: '\e91a';
}
.cid-vjNntLX8NA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vjNntLX8NA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjNntLX8NA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjNntLX8NA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vjNntLX8NA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vjNntLX8NA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vjNntLX8NA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vjNntLX8NA .carousel-indicators li.active,
.cid-vjNntLX8NA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vjNntLX8NA .carousel-indicators li::after,
.cid-vjNntLX8NA .carousel-indicators li::before {
  content: none;
}
.cid-vjNntLX8NA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vjNntLX8NA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vjNntLX8NA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNntLX8NA .carousel-indicators {
    display: none;
  }
}
.cid-vjNntLX8NA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vjNntLX8NA .carousel-inner > .active {
  display: block;
}
.cid-vjNntLX8NA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjNntLX8NA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vjNntLX8NA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vjNntLX8NA .carousel-control,
  .cid-vjNntLX8NA .carousel-indicators,
  .cid-vjNntLX8NA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vjNntLX8NA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vjNntLX8NA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vjNntLX8NA .carousel-indicators .active,
.cid-vjNntLX8NA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vjNntLX8NA .carousel-indicators .active {
  background: #fff;
}
.cid-vjNntLX8NA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vjNntLX8NA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vjNntLX8NA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vjNntLX8NA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vjNntLX8NA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vjNntLX8NA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vjNntLX8NA .carousel {
  width: 100%;
}
.cid-vjNntLX8NA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vjNntLX8NA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vjNntLX8NA .modal.fade .modal-dialog,
.cid-vjNntLX8NA .modal.in .modal-dialog {
  transform: none;
}
.cid-vjNntLX8NA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vjNntLX8NA H6 {
  text-align: center;
}
.cid-vlGFqMP6HT {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-vlGFqMP6HT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlGFqMP6HT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlGFqMP6HT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vlGFqMP6HT .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-vlGFqMP6HT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vlGFqMP6HT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vlGFqMP6HT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vlGFqMP6HT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vlGFqMP6HT .carousel-control,
.cid-vlGFqMP6HT .close {
  background: #1b1b1b;
}
.cid-vlGFqMP6HT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vlGFqMP6HT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vlGFqMP6HT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vlGFqMP6HT .carousel-control-next span {
  margin-left: 5px;
}
.cid-vlGFqMP6HT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vlGFqMP6HT .close::before {
  content: '\e91a';
}
.cid-vlGFqMP6HT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vlGFqMP6HT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vlGFqMP6HT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlGFqMP6HT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vlGFqMP6HT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vlGFqMP6HT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vlGFqMP6HT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vlGFqMP6HT .carousel-indicators li.active,
.cid-vlGFqMP6HT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vlGFqMP6HT .carousel-indicators li::after,
.cid-vlGFqMP6HT .carousel-indicators li::before {
  content: none;
}
.cid-vlGFqMP6HT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vlGFqMP6HT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vlGFqMP6HT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vlGFqMP6HT .carousel-indicators {
    display: none;
  }
}
.cid-vlGFqMP6HT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vlGFqMP6HT .carousel-inner > .active {
  display: block;
}
.cid-vlGFqMP6HT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlGFqMP6HT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vlGFqMP6HT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vlGFqMP6HT .carousel-control,
  .cid-vlGFqMP6HT .carousel-indicators,
  .cid-vlGFqMP6HT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vlGFqMP6HT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vlGFqMP6HT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vlGFqMP6HT .carousel-indicators .active,
.cid-vlGFqMP6HT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vlGFqMP6HT .carousel-indicators .active {
  background: #fff;
}
.cid-vlGFqMP6HT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vlGFqMP6HT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vlGFqMP6HT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vlGFqMP6HT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vlGFqMP6HT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vlGFqMP6HT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vlGFqMP6HT .carousel {
  width: 100%;
}
.cid-vlGFqMP6HT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vlGFqMP6HT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vlGFqMP6HT .modal.fade .modal-dialog,
.cid-vlGFqMP6HT .modal.in .modal-dialog {
  transform: none;
}
.cid-vlGFqMP6HT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vlGFqMP6HT H6 {
  text-align: center;
}
.cid-vjYILf2otr {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vjYILf2otr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjYILf2otr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjYILf2otr .video-wrapper iframe {
  width: 100%;
}
.cid-vjYILf2otr .mbr-section-title,
.cid-vjYILf2otr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjYILf2otr .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkCwowT1TJ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vkCwowT1TJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkCwowT1TJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkCwowT1TJ .video-wrapper iframe {
  width: 100%;
}
.cid-vkCwowT1TJ .mbr-section-title,
.cid-vkCwowT1TJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkCwowT1TJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-vlGKgOfRJP {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vlGKgOfRJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlGKgOfRJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlGKgOfRJP .video-wrapper iframe {
  width: 100%;
}
.cid-vlGKgOfRJP .mbr-section-title,
.cid-vlGKgOfRJP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vlGKgOfRJP .text-wrapper {
    padding: 2rem;
  }
}
.cid-vlGQ9ZVDKL {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vlGQ9ZVDKL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlGQ9ZVDKL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlGQ9ZVDKL .video-wrapper iframe {
  width: 100%;
}
.cid-vlGQ9ZVDKL .mbr-section-title,
.cid-vlGQ9ZVDKL .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vlGQ9ZVDKL .text-wrapper {
    padding: 2rem;
  }
}
.cid-vm24UHaAhq {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vm24UHaAhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vm24UHaAhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vm24UHaAhq .video-wrapper iframe {
  width: 100%;
}
.cid-vm24UHaAhq .mbr-section-title,
.cid-vm24UHaAhq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vm24UHaAhq .text-wrapper {
    padding: 2rem;
  }
}
.cid-vjNphRyzSa {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjNphRyzSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNphRyzSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNphRyzSa .mbr-text {
  color: #000000;
}
.cid-vjNphRyzSa .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjNphRyzSa .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjNphRyzSa .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjNphRyzSa .mbr-section-subtitle,
.cid-vjNphRyzSa .main-button {
  color: #ffffff;
}
.cid-vjNphRyzSa .mbr-section-title {
  color: #ffffff;
}
.cid-vjNbFsulnx {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjNbFsulnx img,
.cid-vjNbFsulnx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjNbFsulnx .item:focus,
.cid-vjNbFsulnx span:focus {
  outline: none;
}
.cid-vjNbFsulnx .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjNbFsulnx .item {
    margin-bottom: 1rem;
  }
}
.cid-vjNbFsulnx .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjNbFsulnx .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjNbFsulnx .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjNbFsulnx .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjNbFsulnx .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNbFsulnx .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjNbFsulnx .mbr-section-title {
  color: #232323;
}
.cid-vjNbFsulnx .mbr-text,
.cid-vjNbFsulnx .mbr-section-btn {
  text-align: center;
}
.cid-vjNbFsulnx .item-title {
  text-align: left;
}
.cid-vjNbFsulnx .content-head {
  max-width: 800px;
}
.cid-vjNbFsulnx .mbr-text,
.cid-vjNbFsulnx .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjNbFsMbVd {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjNbFsMbVd h6 {
  line-height: 1.2;
}
.cid-vjNbFsMbVd img,
.cid-vjNbFsMbVd .item-img {
  width: 100%;
}
.cid-vjNbFsMbVd .item:focus,
.cid-vjNbFsMbVd span:focus {
  outline: none;
}
.cid-vjNbFsMbVd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjNbFsMbVd .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNbFsMbVd .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjNbFsMbVd .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjNbFsMbVd .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjNbFsMbVd .mbr-section-title {
  color: #05386b;
}
.cid-vjNbFsMbVd .mbr-text,
.cid-vjNbFsMbVd .mbr-section-btn {
  color: #000000;
}
.cid-vjNbFsMbVd .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjNbFsMbVd .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjNbFsMbVd .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjNbFsMbVd .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjNth02044 {
  z-index: 1000;
  width: 100%;
}
.cid-vjNth02044 nav.navbar {
  position: fixed;
}
.cid-vjNth02044 .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-vjNth02044 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjNth02044 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjNth02044 .dropdown-item:hover,
.cid-vjNth02044 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjNth02044 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjNth02044 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjNth02044 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjNth02044 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjNth02044 .nav-link {
  position: relative;
}
.cid-vjNth02044 .container {
  display: flex;
  margin: auto;
}
.cid-vjNth02044 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjNth02044 .dropdown-menu,
.cid-vjNth02044 .navbar.opened {
  background: #ffffff !important;
}
.cid-vjNth02044 .nav-item:focus,
.cid-vjNth02044 .nav-link:focus {
  outline: none;
}
.cid-vjNth02044 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjNth02044 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjNth02044 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjNth02044 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNth02044 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjNth02044 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjNth02044 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjNth02044 .navbar.opened {
  transition: all 0.3s;
}
.cid-vjNth02044 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjNth02044 .navbar .navbar-logo img {
  width: auto;
}
.cid-vjNth02044 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjNth02044 .navbar.collapsed {
  justify-content: center;
}
.cid-vjNth02044 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjNth02044 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjNth02044 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjNth02044 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjNth02044 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjNth02044 .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-vjNth02044 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjNth02044 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjNth02044 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjNth02044 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjNth02044 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjNth02044 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjNth02044 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjNth02044 .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-vjNth02044 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjNth02044 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjNth02044 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjNth02044 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjNth02044 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjNth02044 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjNth02044 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjNth02044 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjNth02044 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjNth02044 .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;
  z-index: 1;
}
.cid-vjNth02044 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjNth02044 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjNth02044 .dropdown-item.active,
.cid-vjNth02044 .dropdown-item:active {
  background-color: transparent;
}
.cid-vjNth02044 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjNth02044 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjNth02044 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjNth02044 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjNth02044 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjNth02044 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjNth02044 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjNth02044 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjNth02044 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjNth02044 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjNth02044 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjNth02044 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjNth02044 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjNth02044 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjNth02044 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjNth02044 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjNth02044 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjNth02044 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjNth02044 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjNth02044 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjNth02044 .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-vjNth02044 .navbar {
    height: 70px;
  }
  .cid-vjNth02044 .navbar.opened {
    height: auto;
  }
  .cid-vjNth02044 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjNth0l52S {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjNth0l52S .container {
  max-width: 1500px;
}
.cid-vjNth0l52S img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjNth0l52S img:hover {
  transform: scale(1.1);
}
.cid-vjNth0l52S .row {
  background: #ffffff;
}
.cid-vjNth0l52S .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjNth0l52S h2 {
  padding: 0;
  margin: 0;
}
.cid-vjNth0l52S .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjNth0l52S .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjNth0l52S .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjNth0l52S .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjNth0l52S .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjNth0l52S .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjNth0l52S .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNth0l52S .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjNth0l52S .row {
    margin: 0rem;
  }
  .cid-vjNth0l52S .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjNth0l52S .number {
    margin-right: 2rem;
  }
  .cid-vjNth0l52S .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjNth0l52S H2 {
  color: #333333;
}
.cid-vjNth0l52S .mbr-text {
  color: #767676;
}
.cid-vjNth0zkNk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjNth0zkNk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNth0zkNk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNth0zkNk .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vjNth0zkNk .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-vjNth0zkNk .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vjNth0zkNk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vjNth0zkNk .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vjNth0zkNk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vjNth0zkNk .carousel-control,
.cid-vjNth0zkNk .close {
  background: #1b1b1b;
}
.cid-vjNth0zkNk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vjNth0zkNk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vjNth0zkNk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vjNth0zkNk .carousel-control-next span {
  margin-left: 5px;
}
.cid-vjNth0zkNk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vjNth0zkNk .close::before {
  content: '\e91a';
}
.cid-vjNth0zkNk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vjNth0zkNk .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjNth0zkNk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjNth0zkNk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vjNth0zkNk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vjNth0zkNk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vjNth0zkNk .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vjNth0zkNk .carousel-indicators li.active,
.cid-vjNth0zkNk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vjNth0zkNk .carousel-indicators li::after,
.cid-vjNth0zkNk .carousel-indicators li::before {
  content: none;
}
.cid-vjNth0zkNk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vjNth0zkNk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vjNth0zkNk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNth0zkNk .carousel-indicators {
    display: none;
  }
}
.cid-vjNth0zkNk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vjNth0zkNk .carousel-inner > .active {
  display: block;
}
.cid-vjNth0zkNk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjNth0zkNk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vjNth0zkNk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vjNth0zkNk .carousel-control,
  .cid-vjNth0zkNk .carousel-indicators,
  .cid-vjNth0zkNk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vjNth0zkNk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vjNth0zkNk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vjNth0zkNk .carousel-indicators .active,
.cid-vjNth0zkNk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vjNth0zkNk .carousel-indicators .active {
  background: #fff;
}
.cid-vjNth0zkNk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vjNth0zkNk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vjNth0zkNk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vjNth0zkNk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vjNth0zkNk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vjNth0zkNk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vjNth0zkNk .carousel {
  width: 100%;
}
.cid-vjNth0zkNk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vjNth0zkNk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vjNth0zkNk .modal.fade .modal-dialog,
.cid-vjNth0zkNk .modal.in .modal-dialog {
  transform: none;
}
.cid-vjNth0zkNk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vjNth0zkNk H6 {
  text-align: center;
}
.cid-vjNth11Ggk {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjNth11Ggk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNth11Ggk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNth11Ggk .mbr-text {
  color: #000000;
}
.cid-vjNth11Ggk .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjNth11Ggk .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjNth11Ggk .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjNth11Ggk .mbr-section-subtitle,
.cid-vjNth11Ggk .main-button {
  color: #ffffff;
}
.cid-vjNth11Ggk .mbr-section-title {
  color: #ffffff;
}
.cid-vjNth1eTJv {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjNth1eTJv img,
.cid-vjNth1eTJv .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjNth1eTJv .item:focus,
.cid-vjNth1eTJv span:focus {
  outline: none;
}
.cid-vjNth1eTJv .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjNth1eTJv .item {
    margin-bottom: 1rem;
  }
}
.cid-vjNth1eTJv .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjNth1eTJv .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjNth1eTJv .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjNth1eTJv .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjNth1eTJv .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNth1eTJv .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjNth1eTJv .mbr-section-title {
  color: #232323;
}
.cid-vjNth1eTJv .mbr-text,
.cid-vjNth1eTJv .mbr-section-btn {
  text-align: center;
}
.cid-vjNth1eTJv .item-title {
  text-align: left;
}
.cid-vjNth1eTJv .content-head {
  max-width: 800px;
}
.cid-vjNth1eTJv .mbr-text,
.cid-vjNth1eTJv .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjNth1w9Dg {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjNth1w9Dg h6 {
  line-height: 1.2;
}
.cid-vjNth1w9Dg img,
.cid-vjNth1w9Dg .item-img {
  width: 100%;
}
.cid-vjNth1w9Dg .item:focus,
.cid-vjNth1w9Dg span:focus {
  outline: none;
}
.cid-vjNth1w9Dg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjNth1w9Dg .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjNth1w9Dg .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjNth1w9Dg .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjNth1w9Dg .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjNth1w9Dg .mbr-section-title {
  color: #05386b;
}
.cid-vjNth1w9Dg .mbr-text,
.cid-vjNth1w9Dg .mbr-section-btn {
  color: #000000;
}
.cid-vjNth1w9Dg .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjNth1w9Dg .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjNth1w9Dg .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjNth1w9Dg .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjQ3Zd5Qjf {
  z-index: 1000;
  width: 100%;
}
.cid-vjQ3Zd5Qjf nav.navbar {
  position: fixed;
}
.cid-vjQ3Zd5Qjf .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-vjQ3Zd5Qjf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjQ3Zd5Qjf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjQ3Zd5Qjf .dropdown-item:hover,
.cid-vjQ3Zd5Qjf .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjQ3Zd5Qjf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjQ3Zd5Qjf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjQ3Zd5Qjf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjQ3Zd5Qjf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjQ3Zd5Qjf .nav-link {
  position: relative;
}
.cid-vjQ3Zd5Qjf .container {
  display: flex;
  margin: auto;
}
.cid-vjQ3Zd5Qjf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjQ3Zd5Qjf .dropdown-menu,
.cid-vjQ3Zd5Qjf .navbar.opened {
  background: #ffffff !important;
}
.cid-vjQ3Zd5Qjf .nav-item:focus,
.cid-vjQ3Zd5Qjf .nav-link:focus {
  outline: none;
}
.cid-vjQ3Zd5Qjf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjQ3Zd5Qjf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjQ3Zd5Qjf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjQ3Zd5Qjf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjQ3Zd5Qjf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjQ3Zd5Qjf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjQ3Zd5Qjf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjQ3Zd5Qjf .navbar.opened {
  transition: all 0.3s;
}
.cid-vjQ3Zd5Qjf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjQ3Zd5Qjf .navbar .navbar-logo img {
  width: auto;
}
.cid-vjQ3Zd5Qjf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjQ3Zd5Qjf .navbar.collapsed {
  justify-content: center;
}
.cid-vjQ3Zd5Qjf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjQ3Zd5Qjf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjQ3Zd5Qjf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjQ3Zd5Qjf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjQ3Zd5Qjf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjQ3Zd5Qjf .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-vjQ3Zd5Qjf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjQ3Zd5Qjf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjQ3Zd5Qjf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjQ3Zd5Qjf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjQ3Zd5Qjf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjQ3Zd5Qjf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjQ3Zd5Qjf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjQ3Zd5Qjf .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-vjQ3Zd5Qjf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjQ3Zd5Qjf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjQ3Zd5Qjf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjQ3Zd5Qjf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjQ3Zd5Qjf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjQ3Zd5Qjf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjQ3Zd5Qjf .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjQ3Zd5Qjf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjQ3Zd5Qjf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjQ3Zd5Qjf .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;
  z-index: 1;
}
.cid-vjQ3Zd5Qjf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjQ3Zd5Qjf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjQ3Zd5Qjf .dropdown-item.active,
.cid-vjQ3Zd5Qjf .dropdown-item:active {
  background-color: transparent;
}
.cid-vjQ3Zd5Qjf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjQ3Zd5Qjf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjQ3Zd5Qjf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjQ3Zd5Qjf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjQ3Zd5Qjf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjQ3Zd5Qjf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjQ3Zd5Qjf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjQ3Zd5Qjf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjQ3Zd5Qjf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjQ3Zd5Qjf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjQ3Zd5Qjf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjQ3Zd5Qjf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQ3Zd5Qjf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQ3Zd5Qjf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjQ3Zd5Qjf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQ3Zd5Qjf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjQ3Zd5Qjf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjQ3Zd5Qjf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQ3Zd5Qjf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjQ3Zd5Qjf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQ3Zd5Qjf .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-vjQ3Zd5Qjf .navbar {
    height: 70px;
  }
  .cid-vjQ3Zd5Qjf .navbar.opened {
    height: auto;
  }
  .cid-vjQ3Zd5Qjf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjQ3Zdlgpm {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjQ3Zdlgpm .container {
  max-width: 1500px;
}
.cid-vjQ3Zdlgpm img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjQ3Zdlgpm img:hover {
  transform: scale(1.1);
}
.cid-vjQ3Zdlgpm .row {
  background: #ffffff;
}
.cid-vjQ3Zdlgpm .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjQ3Zdlgpm h2 {
  padding: 0;
  margin: 0;
}
.cid-vjQ3Zdlgpm .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQ3Zdlgpm .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjQ3Zdlgpm .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjQ3Zdlgpm .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjQ3Zdlgpm .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjQ3Zdlgpm .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjQ3Zdlgpm .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ3Zdlgpm .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjQ3Zdlgpm .row {
    margin: 0rem;
  }
  .cid-vjQ3Zdlgpm .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjQ3Zdlgpm .number {
    margin-right: 2rem;
  }
  .cid-vjQ3Zdlgpm .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjQ3Zdlgpm H2 {
  color: #333333;
  text-align: justify;
}
.cid-vjQ3Zdlgpm .mbr-text {
  color: #767676;
}
.cid-vjQ3ZdwwYa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQ3ZdwwYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQ3ZdwwYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQ3ZdwwYa .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vjQ3ZdwwYa .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-vjQ3ZdwwYa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vjQ3ZdwwYa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vjQ3ZdwwYa .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vjQ3ZdwwYa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vjQ3ZdwwYa .carousel-control,
.cid-vjQ3ZdwwYa .close {
  background: #1b1b1b;
}
.cid-vjQ3ZdwwYa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vjQ3ZdwwYa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vjQ3ZdwwYa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vjQ3ZdwwYa .carousel-control-next span {
  margin-left: 5px;
}
.cid-vjQ3ZdwwYa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vjQ3ZdwwYa .close::before {
  content: '\e91a';
}
.cid-vjQ3ZdwwYa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vjQ3ZdwwYa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjQ3ZdwwYa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjQ3ZdwwYa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vjQ3ZdwwYa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vjQ3ZdwwYa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vjQ3ZdwwYa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vjQ3ZdwwYa .carousel-indicators li.active,
.cid-vjQ3ZdwwYa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vjQ3ZdwwYa .carousel-indicators li::after,
.cid-vjQ3ZdwwYa .carousel-indicators li::before {
  content: none;
}
.cid-vjQ3ZdwwYa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vjQ3ZdwwYa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vjQ3ZdwwYa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ3ZdwwYa .carousel-indicators {
    display: none;
  }
}
.cid-vjQ3ZdwwYa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vjQ3ZdwwYa .carousel-inner > .active {
  display: block;
}
.cid-vjQ3ZdwwYa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjQ3ZdwwYa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vjQ3ZdwwYa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vjQ3ZdwwYa .carousel-control,
  .cid-vjQ3ZdwwYa .carousel-indicators,
  .cid-vjQ3ZdwwYa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vjQ3ZdwwYa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vjQ3ZdwwYa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vjQ3ZdwwYa .carousel-indicators .active,
.cid-vjQ3ZdwwYa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vjQ3ZdwwYa .carousel-indicators .active {
  background: #fff;
}
.cid-vjQ3ZdwwYa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vjQ3ZdwwYa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vjQ3ZdwwYa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vjQ3ZdwwYa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vjQ3ZdwwYa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vjQ3ZdwwYa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vjQ3ZdwwYa .carousel {
  width: 100%;
}
.cid-vjQ3ZdwwYa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vjQ3ZdwwYa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vjQ3ZdwwYa .modal.fade .modal-dialog,
.cid-vjQ3ZdwwYa .modal.in .modal-dialog {
  transform: none;
}
.cid-vjQ3ZdwwYa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vjQ3ZdwwYa H6 {
  text-align: center;
}
.cid-vjQ3ZdV86L {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjQ3ZdV86L .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQ3ZdV86L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQ3ZdV86L .mbr-text {
  color: #000000;
}
.cid-vjQ3ZdV86L .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjQ3ZdV86L .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ3ZdV86L .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjQ3ZdV86L .mbr-section-subtitle,
.cid-vjQ3ZdV86L .main-button {
  color: #ffffff;
}
.cid-vjQ3ZdV86L .mbr-section-title {
  color: #ffffff;
}
.cid-vjQ3Ze5xDs {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQ3Ze5xDs img,
.cid-vjQ3Ze5xDs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjQ3Ze5xDs .item:focus,
.cid-vjQ3Ze5xDs span:focus {
  outline: none;
}
.cid-vjQ3Ze5xDs .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ3Ze5xDs .item {
    margin-bottom: 1rem;
  }
}
.cid-vjQ3Ze5xDs .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQ3Ze5xDs .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjQ3Ze5xDs .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjQ3Ze5xDs .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjQ3Ze5xDs .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ3Ze5xDs .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjQ3Ze5xDs .mbr-section-title {
  color: #232323;
}
.cid-vjQ3Ze5xDs .mbr-text,
.cid-vjQ3Ze5xDs .mbr-section-btn {
  text-align: center;
}
.cid-vjQ3Ze5xDs .item-title {
  text-align: left;
}
.cid-vjQ3Ze5xDs .content-head {
  max-width: 800px;
}
.cid-vjQ3Ze5xDs .mbr-text,
.cid-vjQ3Ze5xDs .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjQ3ZeCVa2 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjQ3ZeCVa2 h6 {
  line-height: 1.2;
}
.cid-vjQ3ZeCVa2 img,
.cid-vjQ3ZeCVa2 .item-img {
  width: 100%;
}
.cid-vjQ3ZeCVa2 .item:focus,
.cid-vjQ3ZeCVa2 span:focus {
  outline: none;
}
.cid-vjQ3ZeCVa2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ3ZeCVa2 .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ3ZeCVa2 .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjQ3ZeCVa2 .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQ3ZeCVa2 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjQ3ZeCVa2 .mbr-section-title {
  color: #05386b;
}
.cid-vjQ3ZeCVa2 .mbr-text,
.cid-vjQ3ZeCVa2 .mbr-section-btn {
  color: #000000;
}
.cid-vjQ3ZeCVa2 .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjQ3ZeCVa2 .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjQ3ZeCVa2 .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjQ3ZeCVa2 .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjQ6QUIWxf {
  z-index: 1000;
  width: 100%;
}
.cid-vjQ6QUIWxf nav.navbar {
  position: fixed;
}
.cid-vjQ6QUIWxf .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-vjQ6QUIWxf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjQ6QUIWxf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjQ6QUIWxf .dropdown-item:hover,
.cid-vjQ6QUIWxf .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjQ6QUIWxf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjQ6QUIWxf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjQ6QUIWxf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjQ6QUIWxf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjQ6QUIWxf .nav-link {
  position: relative;
}
.cid-vjQ6QUIWxf .container {
  display: flex;
  margin: auto;
}
.cid-vjQ6QUIWxf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjQ6QUIWxf .dropdown-menu,
.cid-vjQ6QUIWxf .navbar.opened {
  background: #ffffff !important;
}
.cid-vjQ6QUIWxf .nav-item:focus,
.cid-vjQ6QUIWxf .nav-link:focus {
  outline: none;
}
.cid-vjQ6QUIWxf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjQ6QUIWxf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjQ6QUIWxf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjQ6QUIWxf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjQ6QUIWxf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjQ6QUIWxf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjQ6QUIWxf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjQ6QUIWxf .navbar.opened {
  transition: all 0.3s;
}
.cid-vjQ6QUIWxf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjQ6QUIWxf .navbar .navbar-logo img {
  width: auto;
}
.cid-vjQ6QUIWxf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjQ6QUIWxf .navbar.collapsed {
  justify-content: center;
}
.cid-vjQ6QUIWxf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjQ6QUIWxf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjQ6QUIWxf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjQ6QUIWxf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjQ6QUIWxf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjQ6QUIWxf .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-vjQ6QUIWxf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjQ6QUIWxf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjQ6QUIWxf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjQ6QUIWxf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjQ6QUIWxf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjQ6QUIWxf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjQ6QUIWxf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjQ6QUIWxf .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-vjQ6QUIWxf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjQ6QUIWxf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjQ6QUIWxf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjQ6QUIWxf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjQ6QUIWxf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjQ6QUIWxf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjQ6QUIWxf .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjQ6QUIWxf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjQ6QUIWxf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjQ6QUIWxf .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;
  z-index: 1;
}
.cid-vjQ6QUIWxf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjQ6QUIWxf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjQ6QUIWxf .dropdown-item.active,
.cid-vjQ6QUIWxf .dropdown-item:active {
  background-color: transparent;
}
.cid-vjQ6QUIWxf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjQ6QUIWxf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjQ6QUIWxf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjQ6QUIWxf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjQ6QUIWxf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjQ6QUIWxf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjQ6QUIWxf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjQ6QUIWxf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjQ6QUIWxf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjQ6QUIWxf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjQ6QUIWxf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjQ6QUIWxf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQ6QUIWxf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQ6QUIWxf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjQ6QUIWxf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQ6QUIWxf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjQ6QUIWxf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjQ6QUIWxf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQ6QUIWxf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjQ6QUIWxf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQ6QUIWxf .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-vjQ6QUIWxf .navbar {
    height: 70px;
  }
  .cid-vjQ6QUIWxf .navbar.opened {
    height: auto;
  }
  .cid-vjQ6QUIWxf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjQ6QUZSfa {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjQ6QUZSfa .container {
  max-width: 1500px;
}
.cid-vjQ6QUZSfa img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjQ6QUZSfa img:hover {
  transform: scale(1.1);
}
.cid-vjQ6QUZSfa .row {
  background: #ffffff;
}
.cid-vjQ6QUZSfa .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjQ6QUZSfa h2 {
  padding: 0;
  margin: 0;
}
.cid-vjQ6QUZSfa .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQ6QUZSfa .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjQ6QUZSfa .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjQ6QUZSfa .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjQ6QUZSfa .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjQ6QUZSfa .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjQ6QUZSfa .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ6QUZSfa .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjQ6QUZSfa .row {
    margin: 0rem;
  }
  .cid-vjQ6QUZSfa .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjQ6QUZSfa .number {
    margin-right: 2rem;
  }
  .cid-vjQ6QUZSfa .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjQ6QUZSfa H2 {
  color: #333333;
  text-align: justify;
}
.cid-vjQ6QUZSfa .mbr-text {
  color: #767676;
}
.cid-vjQ6QVdJ2I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQ6QVdJ2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQ6QVdJ2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQ6QVdJ2I .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vjQ6QVdJ2I .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-vjQ6QVdJ2I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vjQ6QVdJ2I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vjQ6QVdJ2I .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vjQ6QVdJ2I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vjQ6QVdJ2I .carousel-control,
.cid-vjQ6QVdJ2I .close {
  background: #1b1b1b;
}
.cid-vjQ6QVdJ2I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vjQ6QVdJ2I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vjQ6QVdJ2I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vjQ6QVdJ2I .carousel-control-next span {
  margin-left: 5px;
}
.cid-vjQ6QVdJ2I .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vjQ6QVdJ2I .close::before {
  content: '\e91a';
}
.cid-vjQ6QVdJ2I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vjQ6QVdJ2I .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjQ6QVdJ2I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjQ6QVdJ2I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vjQ6QVdJ2I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vjQ6QVdJ2I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vjQ6QVdJ2I .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vjQ6QVdJ2I .carousel-indicators li.active,
.cid-vjQ6QVdJ2I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vjQ6QVdJ2I .carousel-indicators li::after,
.cid-vjQ6QVdJ2I .carousel-indicators li::before {
  content: none;
}
.cid-vjQ6QVdJ2I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vjQ6QVdJ2I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vjQ6QVdJ2I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ6QVdJ2I .carousel-indicators {
    display: none;
  }
}
.cid-vjQ6QVdJ2I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vjQ6QVdJ2I .carousel-inner > .active {
  display: block;
}
.cid-vjQ6QVdJ2I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjQ6QVdJ2I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vjQ6QVdJ2I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vjQ6QVdJ2I .carousel-control,
  .cid-vjQ6QVdJ2I .carousel-indicators,
  .cid-vjQ6QVdJ2I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vjQ6QVdJ2I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vjQ6QVdJ2I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vjQ6QVdJ2I .carousel-indicators .active,
.cid-vjQ6QVdJ2I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vjQ6QVdJ2I .carousel-indicators .active {
  background: #fff;
}
.cid-vjQ6QVdJ2I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vjQ6QVdJ2I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vjQ6QVdJ2I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vjQ6QVdJ2I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vjQ6QVdJ2I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vjQ6QVdJ2I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vjQ6QVdJ2I .carousel {
  width: 100%;
}
.cid-vjQ6QVdJ2I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vjQ6QVdJ2I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vjQ6QVdJ2I .modal.fade .modal-dialog,
.cid-vjQ6QVdJ2I .modal.in .modal-dialog {
  transform: none;
}
.cid-vjQ6QVdJ2I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vjQ6QVdJ2I H6 {
  text-align: center;
}
.cid-vjQ6QVBfFw {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjQ6QVBfFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQ6QVBfFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQ6QVBfFw .mbr-text {
  color: #000000;
}
.cid-vjQ6QVBfFw .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjQ6QVBfFw .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ6QVBfFw .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjQ6QVBfFw .mbr-section-subtitle,
.cid-vjQ6QVBfFw .main-button {
  color: #ffffff;
}
.cid-vjQ6QVBfFw .mbr-section-title {
  color: #ffffff;
}
.cid-vjQ6QVLpJV {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQ6QVLpJV img,
.cid-vjQ6QVLpJV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjQ6QVLpJV .item:focus,
.cid-vjQ6QVLpJV span:focus {
  outline: none;
}
.cid-vjQ6QVLpJV .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ6QVLpJV .item {
    margin-bottom: 1rem;
  }
}
.cid-vjQ6QVLpJV .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQ6QVLpJV .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjQ6QVLpJV .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjQ6QVLpJV .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjQ6QVLpJV .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ6QVLpJV .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjQ6QVLpJV .mbr-section-title {
  color: #232323;
}
.cid-vjQ6QVLpJV .mbr-text,
.cid-vjQ6QVLpJV .mbr-section-btn {
  text-align: center;
}
.cid-vjQ6QVLpJV .item-title {
  text-align: left;
}
.cid-vjQ6QVLpJV .content-head {
  max-width: 800px;
}
.cid-vjQ6QVLpJV .mbr-text,
.cid-vjQ6QVLpJV .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjQ6QW12c4 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjQ6QW12c4 h6 {
  line-height: 1.2;
}
.cid-vjQ6QW12c4 img,
.cid-vjQ6QW12c4 .item-img {
  width: 100%;
}
.cid-vjQ6QW12c4 .item:focus,
.cid-vjQ6QW12c4 span:focus {
  outline: none;
}
.cid-vjQ6QW12c4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ6QW12c4 .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ6QW12c4 .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjQ6QW12c4 .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQ6QW12c4 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjQ6QW12c4 .mbr-section-title {
  color: #05386b;
}
.cid-vjQ6QW12c4 .mbr-text,
.cid-vjQ6QW12c4 .mbr-section-btn {
  color: #000000;
}
.cid-vjQ6QW12c4 .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjQ6QW12c4 .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjQ6QW12c4 .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjQ6QW12c4 .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjQ97Gt5vs {
  z-index: 1000;
  width: 100%;
}
.cid-vjQ97Gt5vs nav.navbar {
  position: fixed;
}
.cid-vjQ97Gt5vs .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-vjQ97Gt5vs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjQ97Gt5vs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjQ97Gt5vs .dropdown-item:hover,
.cid-vjQ97Gt5vs .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjQ97Gt5vs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjQ97Gt5vs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjQ97Gt5vs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjQ97Gt5vs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjQ97Gt5vs .nav-link {
  position: relative;
}
.cid-vjQ97Gt5vs .container {
  display: flex;
  margin: auto;
}
.cid-vjQ97Gt5vs .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjQ97Gt5vs .dropdown-menu,
.cid-vjQ97Gt5vs .navbar.opened {
  background: #ffffff !important;
}
.cid-vjQ97Gt5vs .nav-item:focus,
.cid-vjQ97Gt5vs .nav-link:focus {
  outline: none;
}
.cid-vjQ97Gt5vs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjQ97Gt5vs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjQ97Gt5vs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjQ97Gt5vs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjQ97Gt5vs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjQ97Gt5vs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjQ97Gt5vs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjQ97Gt5vs .navbar.opened {
  transition: all 0.3s;
}
.cid-vjQ97Gt5vs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjQ97Gt5vs .navbar .navbar-logo img {
  width: auto;
}
.cid-vjQ97Gt5vs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjQ97Gt5vs .navbar.collapsed {
  justify-content: center;
}
.cid-vjQ97Gt5vs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjQ97Gt5vs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjQ97Gt5vs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjQ97Gt5vs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjQ97Gt5vs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjQ97Gt5vs .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-vjQ97Gt5vs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjQ97Gt5vs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjQ97Gt5vs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjQ97Gt5vs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjQ97Gt5vs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjQ97Gt5vs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjQ97Gt5vs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjQ97Gt5vs .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-vjQ97Gt5vs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjQ97Gt5vs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjQ97Gt5vs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjQ97Gt5vs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjQ97Gt5vs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjQ97Gt5vs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjQ97Gt5vs .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjQ97Gt5vs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjQ97Gt5vs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjQ97Gt5vs .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;
  z-index: 1;
}
.cid-vjQ97Gt5vs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjQ97Gt5vs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjQ97Gt5vs .dropdown-item.active,
.cid-vjQ97Gt5vs .dropdown-item:active {
  background-color: transparent;
}
.cid-vjQ97Gt5vs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjQ97Gt5vs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjQ97Gt5vs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjQ97Gt5vs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjQ97Gt5vs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjQ97Gt5vs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjQ97Gt5vs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjQ97Gt5vs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjQ97Gt5vs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjQ97Gt5vs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjQ97Gt5vs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjQ97Gt5vs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQ97Gt5vs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQ97Gt5vs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjQ97Gt5vs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQ97Gt5vs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjQ97Gt5vs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjQ97Gt5vs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQ97Gt5vs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjQ97Gt5vs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQ97Gt5vs .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-vjQ97Gt5vs .navbar {
    height: 70px;
  }
  .cid-vjQ97Gt5vs .navbar.opened {
    height: auto;
  }
  .cid-vjQ97Gt5vs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjQ97GLMsK {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjQ97GLMsK .container {
  max-width: 1500px;
}
.cid-vjQ97GLMsK img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjQ97GLMsK img:hover {
  transform: scale(1.1);
}
.cid-vjQ97GLMsK .row {
  background: #ffffff;
}
.cid-vjQ97GLMsK .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjQ97GLMsK h2 {
  padding: 0;
  margin: 0;
}
.cid-vjQ97GLMsK .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQ97GLMsK .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjQ97GLMsK .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjQ97GLMsK .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjQ97GLMsK .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjQ97GLMsK .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjQ97GLMsK .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ97GLMsK .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjQ97GLMsK .row {
    margin: 0rem;
  }
  .cid-vjQ97GLMsK .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjQ97GLMsK .number {
    margin-right: 2rem;
  }
  .cid-vjQ97GLMsK .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjQ97GLMsK H2 {
  color: #333333;
  text-align: justify;
}
.cid-vjQ97GLMsK .mbr-text {
  color: #767676;
}
.cid-vjQ97HmjLe {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjQ97HmjLe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQ97HmjLe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQ97HmjLe .mbr-text {
  color: #000000;
}
.cid-vjQ97HmjLe .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjQ97HmjLe .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ97HmjLe .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjQ97HmjLe .mbr-section-subtitle,
.cid-vjQ97HmjLe .main-button {
  color: #ffffff;
}
.cid-vjQ97HmjLe .mbr-section-title {
  color: #ffffff;
}
.cid-vjQ97HwnYh {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQ97HwnYh img,
.cid-vjQ97HwnYh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjQ97HwnYh .item:focus,
.cid-vjQ97HwnYh span:focus {
  outline: none;
}
.cid-vjQ97HwnYh .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ97HwnYh .item {
    margin-bottom: 1rem;
  }
}
.cid-vjQ97HwnYh .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQ97HwnYh .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjQ97HwnYh .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjQ97HwnYh .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjQ97HwnYh .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ97HwnYh .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjQ97HwnYh .mbr-section-title {
  color: #232323;
}
.cid-vjQ97HwnYh .mbr-text,
.cid-vjQ97HwnYh .mbr-section-btn {
  text-align: center;
}
.cid-vjQ97HwnYh .item-title {
  text-align: left;
}
.cid-vjQ97HwnYh .content-head {
  max-width: 800px;
}
.cid-vjQ97HwnYh .mbr-text,
.cid-vjQ97HwnYh .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjQ97HMJUW {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjQ97HMJUW h6 {
  line-height: 1.2;
}
.cid-vjQ97HMJUW img,
.cid-vjQ97HMJUW .item-img {
  width: 100%;
}
.cid-vjQ97HMJUW .item:focus,
.cid-vjQ97HMJUW span:focus {
  outline: none;
}
.cid-vjQ97HMJUW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQ97HMJUW .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQ97HMJUW .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjQ97HMJUW .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQ97HMJUW .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjQ97HMJUW .mbr-section-title {
  color: #05386b;
}
.cid-vjQ97HMJUW .mbr-text,
.cid-vjQ97HMJUW .mbr-section-btn {
  color: #000000;
}
.cid-vjQ97HMJUW .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjQ97HMJUW .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjQ97HMJUW .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjQ97HMJUW .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjQii6oV96 {
  z-index: 1000;
  width: 100%;
}
.cid-vjQii6oV96 nav.navbar {
  position: fixed;
}
.cid-vjQii6oV96 .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-vjQii6oV96 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjQii6oV96 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjQii6oV96 .dropdown-item:hover,
.cid-vjQii6oV96 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjQii6oV96 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjQii6oV96 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjQii6oV96 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjQii6oV96 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjQii6oV96 .nav-link {
  position: relative;
}
.cid-vjQii6oV96 .container {
  display: flex;
  margin: auto;
}
.cid-vjQii6oV96 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjQii6oV96 .dropdown-menu,
.cid-vjQii6oV96 .navbar.opened {
  background: #ffffff !important;
}
.cid-vjQii6oV96 .nav-item:focus,
.cid-vjQii6oV96 .nav-link:focus {
  outline: none;
}
.cid-vjQii6oV96 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjQii6oV96 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjQii6oV96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjQii6oV96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjQii6oV96 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjQii6oV96 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjQii6oV96 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjQii6oV96 .navbar.opened {
  transition: all 0.3s;
}
.cid-vjQii6oV96 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjQii6oV96 .navbar .navbar-logo img {
  width: auto;
}
.cid-vjQii6oV96 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjQii6oV96 .navbar.collapsed {
  justify-content: center;
}
.cid-vjQii6oV96 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjQii6oV96 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjQii6oV96 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjQii6oV96 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjQii6oV96 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjQii6oV96 .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-vjQii6oV96 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjQii6oV96 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjQii6oV96 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjQii6oV96 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjQii6oV96 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjQii6oV96 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjQii6oV96 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjQii6oV96 .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-vjQii6oV96 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjQii6oV96 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjQii6oV96 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjQii6oV96 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjQii6oV96 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjQii6oV96 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjQii6oV96 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjQii6oV96 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjQii6oV96 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjQii6oV96 .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;
  z-index: 1;
}
.cid-vjQii6oV96 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjQii6oV96 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjQii6oV96 .dropdown-item.active,
.cid-vjQii6oV96 .dropdown-item:active {
  background-color: transparent;
}
.cid-vjQii6oV96 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjQii6oV96 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjQii6oV96 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjQii6oV96 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjQii6oV96 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjQii6oV96 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjQii6oV96 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjQii6oV96 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjQii6oV96 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjQii6oV96 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjQii6oV96 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjQii6oV96 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQii6oV96 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQii6oV96 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjQii6oV96 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQii6oV96 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjQii6oV96 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjQii6oV96 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQii6oV96 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjQii6oV96 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQii6oV96 .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-vjQii6oV96 .navbar {
    height: 70px;
  }
  .cid-vjQii6oV96 .navbar.opened {
    height: auto;
  }
  .cid-vjQii6oV96 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjQii6DmxR {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-vjQii6DmxR .container {
  max-width: 1500px;
}
.cid-vjQii6DmxR img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjQii6DmxR img:hover {
  transform: scale(1.1);
}
.cid-vjQii6DmxR .row {
  background: #ffffff;
}
.cid-vjQii6DmxR .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjQii6DmxR h2 {
  padding: 0;
  margin: 0;
}
.cid-vjQii6DmxR .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQii6DmxR .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjQii6DmxR .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjQii6DmxR .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjQii6DmxR .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjQii6DmxR .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjQii6DmxR .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQii6DmxR .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjQii6DmxR .row {
    margin: 0rem;
  }
  .cid-vjQii6DmxR .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjQii6DmxR .number {
    margin-right: 2rem;
  }
  .cid-vjQii6DmxR .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjQii6DmxR H2 {
  color: #333333;
  text-align: justify;
}
.cid-vjQii6DmxR .mbr-text {
  color: #767676;
}
.cid-vjQii6Ox8O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQii6Ox8O .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQii6Ox8O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQii6Ox8O .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vjQii6Ox8O .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-vjQii6Ox8O .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vjQii6Ox8O .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vjQii6Ox8O .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vjQii6Ox8O .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vjQii6Ox8O .carousel-control,
.cid-vjQii6Ox8O .close {
  background: #1b1b1b;
}
.cid-vjQii6Ox8O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vjQii6Ox8O .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vjQii6Ox8O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vjQii6Ox8O .carousel-control-next span {
  margin-left: 5px;
}
.cid-vjQii6Ox8O .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vjQii6Ox8O .close::before {
  content: '\e91a';
}
.cid-vjQii6Ox8O .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vjQii6Ox8O .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjQii6Ox8O .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjQii6Ox8O .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vjQii6Ox8O .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vjQii6Ox8O .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vjQii6Ox8O .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vjQii6Ox8O .carousel-indicators li.active,
.cid-vjQii6Ox8O .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vjQii6Ox8O .carousel-indicators li::after,
.cid-vjQii6Ox8O .carousel-indicators li::before {
  content: none;
}
.cid-vjQii6Ox8O .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vjQii6Ox8O .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vjQii6Ox8O .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQii6Ox8O .carousel-indicators {
    display: none;
  }
}
.cid-vjQii6Ox8O .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vjQii6Ox8O .carousel-inner > .active {
  display: block;
}
.cid-vjQii6Ox8O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vjQii6Ox8O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vjQii6Ox8O .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vjQii6Ox8O .carousel-control,
  .cid-vjQii6Ox8O .carousel-indicators,
  .cid-vjQii6Ox8O .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vjQii6Ox8O .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vjQii6Ox8O .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vjQii6Ox8O .carousel-indicators .active,
.cid-vjQii6Ox8O .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vjQii6Ox8O .carousel-indicators .active {
  background: #fff;
}
.cid-vjQii6Ox8O .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vjQii6Ox8O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vjQii6Ox8O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vjQii6Ox8O .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vjQii6Ox8O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vjQii6Ox8O .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vjQii6Ox8O .carousel {
  width: 100%;
}
.cid-vjQii6Ox8O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vjQii6Ox8O .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vjQii6Ox8O .modal.fade .modal-dialog,
.cid-vjQii6Ox8O .modal.in .modal-dialog {
  transform: none;
}
.cid-vjQii6Ox8O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vjQii6Ox8O H6 {
  text-align: center;
}
.cid-vjQii7eWZv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjQii7eWZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQii7eWZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQii7eWZv .mbr-text {
  color: #000000;
}
.cid-vjQii7eWZv .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjQii7eWZv .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQii7eWZv .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjQii7eWZv .mbr-section-subtitle,
.cid-vjQii7eWZv .main-button {
  color: #ffffff;
}
.cid-vjQii7eWZv .mbr-section-title {
  color: #ffffff;
}
.cid-vjQii7pwKO {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-vjQii7pwKO img,
.cid-vjQii7pwKO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjQii7pwKO .item:focus,
.cid-vjQii7pwKO span:focus {
  outline: none;
}
.cid-vjQii7pwKO .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQii7pwKO .item {
    margin-bottom: 1rem;
  }
}
.cid-vjQii7pwKO .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQii7pwKO .item-wrapper .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vjQii7pwKO .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vjQii7pwKO .item-wrapper .item-content {
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vjQii7pwKO .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQii7pwKO .item-wrapper .item-content {
    padding: 1.5rem;
  }
}
.cid-vjQii7pwKO .mbr-section-title {
  color: #232323;
}
.cid-vjQii7pwKO .mbr-text,
.cid-vjQii7pwKO .mbr-section-btn {
  text-align: center;
}
.cid-vjQii7pwKO .item-title {
  text-align: left;
}
.cid-vjQii7pwKO .content-head {
  max-width: 800px;
}
.cid-vjQii7pwKO .mbr-text,
.cid-vjQii7pwKO .item-wrapper .mbr-section-btn {
  text-align: left;
}
.cid-vjQii7Ekyh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjQii7Ekyh h6 {
  line-height: 1.2;
}
.cid-vjQii7Ekyh img,
.cid-vjQii7Ekyh .item-img {
  width: 100%;
}
.cid-vjQii7Ekyh .item:focus,
.cid-vjQii7Ekyh span:focus {
  outline: none;
}
.cid-vjQii7Ekyh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQii7Ekyh .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQii7Ekyh .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjQii7Ekyh .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQii7Ekyh .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjQii7Ekyh .mbr-section-title {
  color: #05386b;
}
.cid-vjQii7Ekyh .mbr-text,
.cid-vjQii7Ekyh .mbr-section-btn {
  color: #000000;
}
.cid-vjQii7Ekyh .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjQii7Ekyh .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjQii7Ekyh .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjQii7Ekyh .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjQl1uZJfp {
  z-index: 1000;
  width: 100%;
}
.cid-vjQl1uZJfp nav.navbar {
  position: fixed;
}
.cid-vjQl1uZJfp .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-vjQl1uZJfp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjQl1uZJfp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjQl1uZJfp .dropdown-item:hover,
.cid-vjQl1uZJfp .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjQl1uZJfp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjQl1uZJfp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjQl1uZJfp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjQl1uZJfp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjQl1uZJfp .nav-link {
  position: relative;
}
.cid-vjQl1uZJfp .container {
  display: flex;
  margin: auto;
}
.cid-vjQl1uZJfp .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjQl1uZJfp .dropdown-menu,
.cid-vjQl1uZJfp .navbar.opened {
  background: #ffffff !important;
}
.cid-vjQl1uZJfp .nav-item:focus,
.cid-vjQl1uZJfp .nav-link:focus {
  outline: none;
}
.cid-vjQl1uZJfp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjQl1uZJfp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjQl1uZJfp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjQl1uZJfp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjQl1uZJfp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjQl1uZJfp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjQl1uZJfp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjQl1uZJfp .navbar.opened {
  transition: all 0.3s;
}
.cid-vjQl1uZJfp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjQl1uZJfp .navbar .navbar-logo img {
  width: auto;
}
.cid-vjQl1uZJfp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjQl1uZJfp .navbar.collapsed {
  justify-content: center;
}
.cid-vjQl1uZJfp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjQl1uZJfp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjQl1uZJfp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjQl1uZJfp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjQl1uZJfp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjQl1uZJfp .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-vjQl1uZJfp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjQl1uZJfp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjQl1uZJfp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjQl1uZJfp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjQl1uZJfp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjQl1uZJfp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjQl1uZJfp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjQl1uZJfp .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-vjQl1uZJfp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjQl1uZJfp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjQl1uZJfp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjQl1uZJfp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjQl1uZJfp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjQl1uZJfp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjQl1uZJfp .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjQl1uZJfp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjQl1uZJfp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjQl1uZJfp .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;
  z-index: 1;
}
.cid-vjQl1uZJfp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjQl1uZJfp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjQl1uZJfp .dropdown-item.active,
.cid-vjQl1uZJfp .dropdown-item:active {
  background-color: transparent;
}
.cid-vjQl1uZJfp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjQl1uZJfp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjQl1uZJfp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjQl1uZJfp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjQl1uZJfp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjQl1uZJfp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjQl1uZJfp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjQl1uZJfp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjQl1uZJfp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjQl1uZJfp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjQl1uZJfp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjQl1uZJfp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQl1uZJfp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQl1uZJfp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjQl1uZJfp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQl1uZJfp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjQl1uZJfp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjQl1uZJfp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQl1uZJfp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjQl1uZJfp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQl1uZJfp .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-vjQl1uZJfp .navbar {
    height: 70px;
  }
  .cid-vjQl1uZJfp .navbar.opened {
    height: auto;
  }
  .cid-vjQl1uZJfp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjQlj9V8p3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-vjQlj9V8p3 .container {
  max-width: 1500px;
}
.cid-vjQlj9V8p3 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-vjQlj9V8p3 img:hover {
  transform: scale(1.1);
}
.cid-vjQlj9V8p3 .row {
  background: #ffffff;
}
.cid-vjQlj9V8p3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-vjQlj9V8p3 h2 {
  padding: 0;
  margin: 0;
}
.cid-vjQlj9V8p3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQlj9V8p3 .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-vjQlj9V8p3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-vjQlj9V8p3 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-vjQlj9V8p3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-vjQlj9V8p3 .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjQlj9V8p3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQlj9V8p3 .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-vjQlj9V8p3 .row {
    margin: 0rem;
  }
  .cid-vjQlj9V8p3 .text-col {
    padding: 2rem 1rem;
  }
  .cid-vjQlj9V8p3 .number {
    margin-right: 2rem;
  }
  .cid-vjQlj9V8p3 .img-col {
    margin-bottom: 3rem;
  }
}
.cid-vjQlj9V8p3 H2 {
  color: #333333;
}
.cid-vjQlj9V8p3 .mbr-text {
  color: #767676;
}
.cid-vjQsbvciPD {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vjQsbvciPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQsbvciPD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQsbvciPD .row-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vjQsbvciPD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjQsbvciPD .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-vjQsbvciPD .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjQsbvciPD .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vjQsbvciPD .mbr-section-title {
  color: #004f9e;
}
.cid-vjQsbvciPD .mbr-text,
.cid-vjQsbvciPD .mbr-section-btn {
  color: #000000;
}
.cid-vjQsbvciPD img {
  width: 100%;
  height: 100%;
}
.cid-vjQyzp3c4e {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vjQyzp3c4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQyzp3c4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQyzp3c4e .row-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vjQyzp3c4e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vjQyzp3c4e .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-vjQyzp3c4e .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjQyzp3c4e .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vjQyzp3c4e .mbr-section-title {
  color: #004f9e;
}
.cid-vjQyzp3c4e .mbr-text,
.cid-vjQyzp3c4e .mbr-section-btn {
  color: #000000;
}
.cid-vjQyzp3c4e img {
  width: 100%;
  height: 100%;
}
.cid-vjQl1waGEn {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vjQl1waGEn h6 {
  line-height: 1.2;
}
.cid-vjQl1waGEn img,
.cid-vjQl1waGEn .item-img {
  width: 100%;
}
.cid-vjQl1waGEn .item:focus,
.cid-vjQl1waGEn span:focus {
  outline: none;
}
.cid-vjQl1waGEn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQl1waGEn .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQl1waGEn .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjQl1waGEn .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQl1waGEn .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjQl1waGEn .mbr-section-title {
  color: #05386b;
}
.cid-vjQl1waGEn .mbr-text,
.cid-vjQl1waGEn .mbr-section-btn {
  color: #000000;
}
.cid-vjQl1waGEn .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjQl1waGEn .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjQl1waGEn .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjQl1waGEn .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vjQz0dD7WW {
  z-index: 1000;
  width: 100%;
}
.cid-vjQz0dD7WW nav.navbar {
  position: fixed;
}
.cid-vjQz0dD7WW .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-vjQz0dD7WW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vjQz0dD7WW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjQz0dD7WW .dropdown-item:hover,
.cid-vjQz0dD7WW .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vjQz0dD7WW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjQz0dD7WW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjQz0dD7WW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjQz0dD7WW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjQz0dD7WW .nav-link {
  position: relative;
}
.cid-vjQz0dD7WW .container {
  display: flex;
  margin: auto;
}
.cid-vjQz0dD7WW .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjQz0dD7WW .dropdown-menu,
.cid-vjQz0dD7WW .navbar.opened {
  background: #ffffff !important;
}
.cid-vjQz0dD7WW .nav-item:focus,
.cid-vjQz0dD7WW .nav-link:focus {
  outline: none;
}
.cid-vjQz0dD7WW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjQz0dD7WW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjQz0dD7WW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjQz0dD7WW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjQz0dD7WW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjQz0dD7WW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjQz0dD7WW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-vjQz0dD7WW .navbar.opened {
  transition: all 0.3s;
}
.cid-vjQz0dD7WW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjQz0dD7WW .navbar .navbar-logo img {
  width: auto;
}
.cid-vjQz0dD7WW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjQz0dD7WW .navbar.collapsed {
  justify-content: center;
}
.cid-vjQz0dD7WW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjQz0dD7WW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjQz0dD7WW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-vjQz0dD7WW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjQz0dD7WW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjQz0dD7WW .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-vjQz0dD7WW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjQz0dD7WW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjQz0dD7WW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjQz0dD7WW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjQz0dD7WW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjQz0dD7WW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjQz0dD7WW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjQz0dD7WW .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-vjQz0dD7WW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjQz0dD7WW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjQz0dD7WW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjQz0dD7WW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjQz0dD7WW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjQz0dD7WW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vjQz0dD7WW .navbar.navbar-short {
  min-height: 60px;
}
.cid-vjQz0dD7WW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjQz0dD7WW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjQz0dD7WW .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;
  z-index: 1;
}
.cid-vjQz0dD7WW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjQz0dD7WW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjQz0dD7WW .dropdown-item.active,
.cid-vjQz0dD7WW .dropdown-item:active {
  background-color: transparent;
}
.cid-vjQz0dD7WW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjQz0dD7WW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjQz0dD7WW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjQz0dD7WW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjQz0dD7WW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjQz0dD7WW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjQz0dD7WW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjQz0dD7WW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjQz0dD7WW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjQz0dD7WW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vjQz0dD7WW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjQz0dD7WW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQz0dD7WW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjQz0dD7WW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjQz0dD7WW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQz0dD7WW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjQz0dD7WW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjQz0dD7WW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjQz0dD7WW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjQz0dD7WW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjQz0dD7WW .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-vjQz0dD7WW .navbar {
    height: 70px;
  }
  .cid-vjQz0dD7WW .navbar.opened {
    height: auto;
  }
  .cid-vjQz0dD7WW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjQzki87oE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/reach-us-banner-1.jpg");
}
.cid-vjQzki87oE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQzki87oE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQzki87oE .mbr-section-title {
  text-align: justify;
  color: #ffffff;
}
.cid-vjQzki87oE .mbr-section-subtitle {
  text-align: justify;
}
.cid-vjYzXyn906 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vjYzXyn906 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjYzXyn906 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjYwMqjLqE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjYwMqjLqE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjYwMqjLqE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjYwMqjLqE .google-map {
  height: 350px;
  position: relative;
}
.cid-vjYwMqjLqE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vjYwMqjLqE .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vjYwMqjLqE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vjYwMqjLqE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vjQFCF1K7g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/142864.jpg");
}
.cid-vjQFCF1K7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQFCF1K7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQFCF1K7g .title .num {
  width: 100%;
  display: block;
}
.cid-vjQFCF1K7g .title .card-title {
  z-index: 1;
}
.cid-vjQFCF1K7g .num {
  color: #05386b;
}
.cid-vjQFCF1K7g .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQFCF1K7g .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQFCF1K7g * {
    text-align: center !important;
  }
  .cid-vjQFCF1K7g .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vjQFCF1K7g .content-head {
  max-width: 800px;
}
.cid-vjQHiPQ72y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5780.jpg");
}
.cid-vjQHiPQ72y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjQHiPQ72y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjQHiPQ72y .mbr-text {
  color: #000000;
}
.cid-vjQHiPQ72y .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vjQHiPQ72y .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQHiPQ72y .main-button {
    margin-bottom: 2rem;
  }
}
.cid-vjQHiPQ72y .mbr-section-subtitle,
.cid-vjQHiPQ72y .main-button {
  color: #ffffff;
}
.cid-vjQHiPQ72y .mbr-section-title {
  color: #ffffff;
}
.cid-vjQz0ezgmV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vjQz0ezgmV h6 {
  line-height: 1.2;
}
.cid-vjQz0ezgmV img,
.cid-vjQz0ezgmV .item-img {
  width: 100%;
}
.cid-vjQz0ezgmV .item:focus,
.cid-vjQz0ezgmV span:focus {
  outline: none;
}
.cid-vjQz0ezgmV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjQz0ezgmV .item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vjQz0ezgmV .mbr-section-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.cid-vjQz0ezgmV .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.cid-vjQz0ezgmV .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vjQz0ezgmV .mbr-section-title {
  color: #05386b;
}
.cid-vjQz0ezgmV .mbr-text,
.cid-vjQz0ezgmV .mbr-section-btn {
  color: #000000;
}
.cid-vjQz0ezgmV .item-title {
  color: #000000;
  text-align: center;
}
.cid-vjQz0ezgmV .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vjQz0ezgmV .item-text {
  color: #000000;
  text-align: center;
}
.cid-vjQz0ezgmV .content-head {
  max-width: 800px;
}
.cid-vqhy4boSAs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vqhy4boSAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhy4boSAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqhy4boSAs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vqhy4boSAs .row {
    text-align: center;
  }
  .cid-vqhy4boSAs .row > div {
    margin: auto;
  }
  .cid-vqhy4boSAs .social-row {
    justify-content: center;
  }
}
.cid-vqhy4boSAs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqhy4boSAs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqhy4boSAs .list {
    margin-bottom: 0rem;
  }
}
.cid-vqhy4boSAs .mbr-text {
  color: #bbbbbb;
}
.cid-vqhy4boSAs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vqhy4boSAs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vqhy4boSAs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqhy4boSAs H5 {
  color: #e43f3f;
}
.cid-vqhy4boSAs .mbr-section-subtitle {
  color: #e43f3f;
}
