body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 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: #0b0a2d !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffdc48 !important;
}
.bg-danger {
  background-color: #131694 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b0a2d !important;
  border-color: #0b0a2d !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff014e !important;
  border-color: #ff014e !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: #a90033 !important;
  border-color: #a90033 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a90033 !important;
  border-color: #a90033 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffdc48 !important;
  border-color: #ffdc48 !important;
  color: #483a00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #f0c200 !important;
  border-color: #f0c200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #483a00 !important;
  background-color: #f0c200 !important;
  border-color: #f0c200 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #131694 !important;
  border-color: #131694 !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: #090b47 !important;
  border-color: #090b47 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #090b47 !important;
  border-color: #090b47 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b0a2d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b0a2d !important;
  border-color: #0b0a2d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff014e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a90033 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff014e !important;
  border-color: #ff014e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdc48;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f0c200 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #483a00 !important;
  background-color: #ffdc48 !important;
  border-color: #ffdc48 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131694;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #090b47 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #131694 !important;
  border-color: #131694 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0b0a2d !important;
}
.text-secondary {
  color: #ff014e !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffdc48 !important;
}
.text-danger {
  color: #131694 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9a002f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #e1b600 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #07093a !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: #0b0a2d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffdc48;
}
.alert-danger {
  background-color: #131694;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0b0a2d;
  border-color: #0b0a2d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0b0a2d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b1afed;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4044e6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', 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: #0b0a2d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', 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: #0b0a2d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0b0a2d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0b0a2d;
}
.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: #0b0a2d;
  border-bottom-color: #0b0a2d;
}
.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: #0b0a2d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff014e !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='%230b0a2d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tJYxOk98SE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJYxOk98SE .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tJYxOk98SE .modal-body .close {
  background: #1b1b1b;
}
.cid-tJYxOk98SE .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-tJYxOk98SE .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-tJYxOk98SE .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-tJYxOk98SE .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-tJYxOk98SE .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-tJYxOk98SE .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-tJYxOk98SE .container {
  max-width: 100%;
  padding: 0;
}
.cid-tJYxOk98SE .content-slider-wrap {
  width: 100%;
}
.cid-tJYxOk98SE .carousel-inner > .active,
.cid-tJYxOk98SE .carousel-inner > .next,
.cid-tJYxOk98SE .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-tJYxOk98SE .carousel-control .icon-next,
.cid-tJYxOk98SE .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tJYxOk98SE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJYxOk98SE .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-tJYxOk98SE .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tJYxOk98SE .boxed-slider > div {
  position: relative;
}
.cid-tJYxOk98SE .container img {
  width: 100%;
}
.cid-tJYxOk98SE .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tJYxOk98SE .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tJYxOk98SE .mbr-table-cell {
  padding: 0;
}
.cid-tJYxOk98SE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJYxOk98SE .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tJYxOk98SE .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tJYxOk98SE .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tJYxOk98SE .carousel-item.active.right,
.cid-tJYxOk98SE .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tJYxOk98SE .carousel-item.active.left,
.cid-tJYxOk98SE .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tJYxOk98SE .carousel-item.active,
.cid-tJYxOk98SE .carousel-item.next.left,
.cid-tJYxOk98SE .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tJYxOk98SE .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-tJYxOk98SE .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-tJYxOk98SE .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJYxOk98SE .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJYxOk98SE .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tJYxOk98SE .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJYxOk98SE .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tJYxOk98SE .mbr-slider .carousel-indicators li.active,
.cid-tJYxOk98SE .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tJYxOk98SE .mbr-slider .carousel-indicators li::after,
.cid-tJYxOk98SE .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tJYxOk98SE .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tJYxOk98SE .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tJYxOk98SE .mbr-slider > .container img {
  width: 100%;
}
.cid-tJYxOk98SE .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tJYxOk98SE .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tJYxOk98SE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tJYxOk98SE .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tJYxOk98SE .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tJYxOk98SE .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tJYxOk98SE .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tJYxOk98SE .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tJYxOk98SE .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tJYxOk98SE .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tJYxOk98SE .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tJYxOk98SE .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tJYxOk98SE .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tJYxOk98SE .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tJYxOk98SE .carousel-inner {
  height: 100%;
}
.cid-tJYxOk98SE .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tJYxOk98SE .image_wrapper {
  height: 710px;
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  object-fit: contain !important;
  background-position: 50% 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.cid-tJYxOk98SE .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tJYxOk98SE .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tJYxOk98SE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJYxOk98SE .content-slider-wrap {
    width: 100%!important;
  }
  .cid-tJYxOk98SE .image_wrapper {
    height: 426px;
  }
}
.cid-tJ2AbUTQsy {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-tJ2AbUTQsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ2AbUTQsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ2AbUTQsy .row {
  justify-content: flex-end !important;
}
.cid-tJ2AbUTQsy .grid-container {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tJ2AbUTQsy .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tJ2AbUTQsy .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tJ2AbUTQsy .main-col {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 28rem;
  width: 100%;
  margin-right: auto;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
}
@media (min-width: 992px) {
  .cid-tJ2AbUTQsy .main-col {
    min-height: 28.4rem;
  }
}
.cid-tJ2AbUTQsy .main-col:hover {
  border-left: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tJ2AbUTQsy .main-col {
    max-width: 334px;
  }
}
@media (max-width: 767px) {
  .cid-tJ2AbUTQsy .main-col {
    max-width: 100%;
  }
}
.cid-tJ2AbUTQsy .item-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  bottom: auto;
  width: 100%;
  height: 100%;
  transition: all .5s  ease !important;
  position: relative;
}
.cid-tJ2AbUTQsy .img-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  flex-grow: 1;
  height: 21rem;
  position: absolute;
  bottom: 7.4rem;
  transition: all .5s  ease !important;
}
@media (max-width: 991px) {
  .cid-tJ2AbUTQsy .img-container {
    position: sticky;
    height: 240px;
  }
}
.cid-tJ2AbUTQsy .title-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(calc(100% - 7.4rem));
  transition: all .5s  ease !important;
  border-top: 1px solid #bbbbbb;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tJ2AbUTQsy .title-container {
    position: sticky;
    transform: translateY(0);
  }
}
.cid-tJ2AbUTQsy .head-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-tJ2AbUTQsy .head-content {
    min-height: 7.4rem;
  }
}
@media (max-width: 991px) {
  .cid-tJ2AbUTQsy .head-content {
    padding: 12px;
  }
}
.cid-tJ2AbUTQsy .foot-content {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  transition: all .5s  ease !important;
}
@media (max-width: 991px) {
  .cid-tJ2AbUTQsy .foot-content {
    padding: 0 12px 12px 12px;
  }
}
@media (min-width: 992px) {
  .cid-tJ2AbUTQsy .main-col:hover .img-container {
    bottom: 13.4rem;
  }
  .cid-tJ2AbUTQsy .main-col:hover .title-container {
    transform: translateY(0);
  }
}
.cid-tJ2AbUTQsy .mbr-section-title {
  color: #ff014e;
  width: 100%;
  text-align: center;
}
.cid-tJ2AbUTQsy .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-tJ2AbUTQsy .price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.cid-tJ2AbUTQsy .price-name {
  color: #727272;
}
.cid-tJ2AbUTQsy .price-number {
  color: #000000;
}
.cid-tJ2AbUTQsy .mbr-section-btn {
  margin-top: 1.4rem;
  width: 100%;
}
.cid-tJ2AbUTQsy .mbr-section-btn .btn {
  padding: 12px 36px;
}
@media (max-width: 768px) {
  .cid-tJ2AbUTQsy .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tJ2AbUTQsy .img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tJ2AbUTQsy .img-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  transition: .5s all;
  transform-style: preserve-3d;
}
.cid-tJ2AbUTQsy .mbr-text,
.cid-tJ2AbUTQsy .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tF8NdOo2Rm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tF8NdOo2Rm .line {
  background-color: #ff014e;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tF8NdOo2Rm .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tF8Nmj9UW3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tF8Nmj9UW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF8Nmj9UW3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF8Nmj9UW3 .mbr-section-subtitle {
  text-align: center;
  color: #131694;
}
.cid-tJZbilH1lF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJZbilH1lF .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tJZbilH1lF .item-content {
  background: #ececec;
  transition: all 0.3s;
  border: 2px solid #e1e1e1;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tJZbilH1lF .item-content:hover {
  background: #bbbbbb;
  border-color: #bbbbbb;
  box-shadow: 0px 16px 32px 0px #0000000a;
}
@media (max-width: 767px) {
  .cid-tJZbilH1lF .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tJZbilH1lF .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #f86969;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tJZbilH1lF .img-text {
    left: 1rem;
  }
}
.cid-tJZbilH1lF img,
.cid-tJZbilH1lF .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tJZbilH1lF .item:focus,
.cid-tJZbilH1lF span:focus {
  outline: none;
}
.cid-tJZbilH1lF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJZbilH1lF .mbr-section-title {
  color: #232323;
}
.cid-tJZbilH1lF .mbr-text,
.cid-tJZbilH1lF .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tJZbilH1lF .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-tJZbilH1lF .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tJZbilH1lF .mbr-section-subtitle {
  color: #777777;
}
.cid-tDKu1Gokqu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDKu1Gokqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDKu1Gokqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tDKu1Gokqu .container {
    padding: 0 20px;
  }
}
.cid-tDKu1Gokqu .title-wrapper {
  padding: 96px 0;
}
@media (max-width: 992px) {
  .cid-tDKu1Gokqu .title-wrapper {
    padding: 64px 0;
  }
}
.cid-tDKu1Gokqu .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tDKu1Gokqu .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tDKu1Gokqu .mbr-section-title {
  color: #1d1d1d;
}
.cid-tDKu1Gokqu .mbr-section-title,
.cid-tDKu1Gokqu .mbr-section-btn {
  text-align: center;
  color: #131694;
}
.cid-tKUkUILaqZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tKUkUILaqZ .row .slide-overlay {
  z-index: 1 !important;
}
@media (min-width: 992px) {
  .cid-tKUkUILaqZ .carousel {
    min-height: 600px;
  }
  .cid-tKUkUILaqZ .carousel img {
    max-height: 600px;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tKUkUILaqZ .carousel {
    min-height: 348px;
  }
  .cid-tKUkUILaqZ .carousel img {
    max-height: 348px;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tKUkUILaqZ .carousel {
    min-height: 270px;
  }
  .cid-tKUkUILaqZ .carousel img {
    max-height: 270px;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .cid-tKUkUILaqZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tKUkUILaqZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tKUkUILaqZ .carousel,
.cid-tKUkUILaqZ .carousel-inner {
  display: flex;
  align-items: stretch;
}
.cid-tKUkUILaqZ .item-wrapper {
  width: 100%;
  overflow: hidden;
}
.cid-tKUkUILaqZ .carousel-caption {
  z-index: 2 !important;
  left: 1rem;
  bottom: 1rem;
  width: fit-content;
  max-width: calc(68%);
  background: #33363b;
  padding: 8px;
}
.cid-tKUkUILaqZ .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 0 !important;
  text-align: left;
}
.cid-tKUkUILaqZ .mbr-section-text {
  margin-bottom: 0 !important;
  margin-top: 8px !important;
  color: #FFFFFF;
  text-align: left;
}
.cid-tKUkUILaqZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tKUkUILaqZ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-tKUkUILaqZ .carousel-control .mobi-mbri {
  color: #24262b;
  transition: all 0.3s;
}
.cid-tKUkUILaqZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .cid-tKUkUILaqZ .carousel-control.carousel-control-prev {
    margin-left: 1rem;
  }
}
.cid-tKUkUILaqZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-tKUkUILaqZ .carousel-control.carousel-control-next {
    margin-right: 1rem;
  }
}
.cid-tKUkUILaqZ .carousel-control:hover,
.cid-tKUkUILaqZ .carousel-control:focus {
  border-color: #24262b;
  opacity: 1;
}
.cid-tKUkUILaqZ .carousel-control-prev:hover .mobi-mbri,
.cid-tKUkUILaqZ .carousel-control-prev:focus .mobi-mbri {
  transform: translateX(-7px);
}
.cid-tKUkUILaqZ .carousel-control-next:hover .mobi-mbri,
.cid-tKUkUILaqZ .carousel-control-next:focus .mobi-mbri {
  transform: translateX(7px);
}
.cid-tKUkUILaqZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tKUkUILaqZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tKUkUILaqZ .carousel-indicators {
  display: none !important;
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tKUkUILaqZ .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-tKUkUILaqZ .carousel-indicators li.active,
.cid-tKUkUILaqZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tKUkUILaqZ .carousel-indicators li::after,
.cid-tKUkUILaqZ .carousel-indicators li::before {
  content: none;
}
.cid-tKUkUILaqZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tKUkUILaqZ .carousel-indicators {
    display: none !important;
  }
}
.cid-tFg0to1NYW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFg0to1NYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFg0to1NYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFg0to1NYW .mbr-section-title {
  color: #131694;
}
.cid-tFg0to1NYW .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tFhMNQSvB8 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFhMNQSvB8 img,
.cid-tFhMNQSvB8 .item-img {
  width: 100%;
}
.cid-tFhMNQSvB8 .item:focus,
.cid-tFhMNQSvB8 span:focus {
  outline: none;
}
.cid-tFhMNQSvB8 .item-wrapper {
  position: relative;
}
.cid-tFhMNQSvB8 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tFhMNQSvB8 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFhMNQSvB8 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tFhMNQSvB8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tFhMNQSvB8 .mbr-section-title {
  color: #232323;
}
.cid-tFhMNQSvB8 .mbr-text,
.cid-tFhMNQSvB8 .mbr-section-btn {
  text-align: left;
}
.cid-tFhMNQSvB8 .item-title {
  text-align: left;
}
.cid-tFhMNQSvB8 .item-subtitle {
  text-align: left;
}
.cid-tFhMNQSvB8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tFhMNQSvB8 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tFhMNQSvB8 .embla__button--next,
.cid-tFhMNQSvB8 .embla__button--prev {
  display: flex;
}
.cid-tFhMNQSvB8 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tFhMNQSvB8 .embla__button {
    display: none;
  }
}
.cid-tFhMNQSvB8 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tFhMNQSvB8 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tFhMNQSvB8 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFhMNQSvB8 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFhMNQSvB8 .embla__button {
    top: auto;
  }
}
.cid-tFhMNQSvB8 .embla {
  position: relative;
  width: 100%;
}
.cid-tFhMNQSvB8 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tFhMNQSvB8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tFhMNQSvB8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tFhMNQSvB8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tKgsggZhne {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKgsggZhne .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKgsggZhne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgsggZhne .mbr-section-title {
  color: #131694;
}
.cid-tKgsggZhne .mbr-section-subtitle {
  color: #ff014e;
}
#custom-html-e8 {
  /* Type valid CSS here */
}
.cid-tDPLumMhKF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDPLumMhKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPLumMhKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPLumMhKF .mbr-section-title {
  color: #131694;
}
.cid-tDPAOCshZh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDPAOCshZh .pad-10 {
  padding: 10px !important;
}
.cid-tDPAOCshZh .mbr-section-head {
  width: 100%;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .cid-tDPAOCshZh .mbr-section-head {
    margin-bottom: 3em;
  }
}
.cid-tDPAOCshZh .mbr-section-title {
  margin-bottom: 4px;
  color: #e43f3f;
  opacity: 0.4;
  text-align: center;
}
.cid-tDPAOCshZh .mbr-section-subtitle {
  margin-bottom: 0;
  color: #272727;
}
.cid-tDPAOCshZh .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 767px) {
  .cid-tDPAOCshZh .item-row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tDPAOCshZh .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tDPAOCshZh .item {
  padding: 0;
}
.cid-tDPAOCshZh .item:nth-child(2n) .item-wrapper {
  padding-top: 5em;
}
@media (max-width: 767px) {
  .cid-tDPAOCshZh .item:nth-child(2n) .item-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .cid-tDPAOCshZh .item:nth-child(2n) .item-wrapper {
    padding-top: 0;
  }
}
.cid-tDPAOCshZh .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-tDPAOCshZh .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  border-radius: 35%;
  overflow: hidden;
  aspect-ratio: 0.88;
  margin: 0 auto;
}
.cid-tDPAOCshZh .item-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-tDPAOCshZh .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}
.cid-tDPAOCshZh .item-title {
  color: #ff014e;
  margin-bottom: 4px;
}
.cid-tDPAOCshZh .mbr-text {
  color: #272727;
  opacity: 0.4;
}
.cid-tDPAOCshZh .mbr-text,
.cid-tDPAOCshZh .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tDQzJfK735 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDQzJfK735 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tDQzJfK735 .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #fde1e1;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-tDQzJfK735 .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tDQzJfK735 .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-tDQzJfK735 .mbr-timeline-title,
.cid-tDQzJfK735 .mbr-timeline-text {
  color: #ffffff;
}
.cid-tDQzJfK735 .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-tDQzJfK735 .timeline-element:hover .timeline-text-content {
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08) !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
}
.cid-tDQzJfK735 .timeline-element:hover .timeline-text-content h4,
.cid-tDQzJfK735 .timeline-element:hover .timeline-text-content p {
  -webkit-transition: color 1s !important;
  transition: color 1s !important;
  color: #131694 !important;
}
.cid-tDQzJfK735 .timeline-element:hover .iconsBackground span {
  -webkit-transition: color 1s !important;
  transition: color 1s !important;
  color: #131694 !important;
}
.cid-tDQzJfK735 .timeline-element:hover:before {
  -webkit-transition: background-color 1s !important;
  transition: background-color 1s !important;
  background-color: #131694 !important;
}
.cid-tDQzJfK735 .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tDQzJfK735 .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-tDQzJfK735 .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #fde1e1;
  top: 20px;
  margin-left: -30px;
}
.cid-tDQzJfK735 .iconsBackground span {
  color: #ffffff;
}
.cid-tDQzJfK735 .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-tDQzJfK735 .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fde1e1;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-tDQzJfK735 .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-tDQzJfK735 .iconsBackground {
    left: 1.5rem;
  }
  .cid-tDQzJfK735 .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-tDQzJfK735 .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-tDQzJfK735 .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tDQzJfK735 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDQzJfK735 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDQzJfK735 .mbr-timeline-title {
  color: #ff014e;
}
.cid-tDQzJfK735 .mbr-timeline-text {
  color: #131694;
}
.cid-tDQzJfK735 .mbr-section-title {
  color: #131694;
}
.cid-tKV3RBE1Jo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKV3RBE1Jo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKV3RBE1Jo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKV3RBE1Jo .mbr-section-title {
  color: #131694;
}
.cid-tF9mgCQ4Y1 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tF9mgCQ4Y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF9mgCQ4Y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF9mgCQ4Y1 .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tF9mgCQ4Y1 .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tF9mgCQ4Y1 .mbr-section-title {
  color: #131694;
}
.cid-tF9mgCQ4Y1 .mbr-section-subtitle {
  color: #ff014e;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tF9mgCQ4Y1 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tF9mgCQ4Y1 .card-row {
  align-items: stretch;
}
.cid-tF9mgCQ4Y1 .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tF9mgCQ4Y1 .card {
    flex-basis: 80% !important;
  }
}
.cid-tF9mgCQ4Y1 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #bbbbbb, -10px -10px 19px #fafafa;
}
.cid-tF9mgCQ4Y1 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tF9mgCQ4Y1 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #bbbbbb, #131694);
  opacity: 0;
  transition: .5s all;
}
.cid-tF9mgCQ4Y1 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tF9mgCQ4Y1 .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tF9mgCQ4Y1 .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tF9mgCQ4Y1 .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tF9mgCQ4Y1 .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tF9mgCQ4Y1 .card-title a {
  transition: 0.4s all;
}
.cid-tF9mgCQ4Y1 .card-title a:hover {
  color: #0b0a2d !important;
}
.cid-tGFBzzdGg4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGFBzzdGg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGFBzzdGg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGFBzzdGg4 .mbr-section-title {
  color: #131694;
}
.cid-tGFiVZAhlo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGFiVZAhlo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGFiVZAhlo .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-tGFiVZAhlo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGFiVZAhlo .row {
  flex-direction: row-reverse;
}
.cid-tGFiVZAhlo img {
  width: 100%;
}
.cid-tKV4xbvIyj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKV4xbvIyj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKV4xbvIyj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKV4xbvIyj .mbr-section-title {
  color: #131694;
}
#custom-html-he {
  /* Type valid CSS here */
}
.cid-tDVTVgifac {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDVTVgifac .row {
  justify-content: center;
}
.cid-tDVTVgifac .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-tDVTVgifac .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-tDVTVgifac .content-card {
  margin-top: 40px;
}
.cid-tDVTVgifac .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-tDVTVgifac .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-tDVTVgifac .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-tDVTVgifac .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-tDVTVgifac .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-tDVTVgifac .mbr-card-text {
  color: #353535;
  text-align: center;
}
.cid-tDVTVgifac .mbr-section-title,
.cid-tDVTVgifac .mbr-section-btn {
  color: #131694;
}
.cid-tCluRaJgqo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/image6.webp");
}
.cid-tCluRaJgqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCluRaJgqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCluRaJgqo .mbr-section-title {
  color: #ffffff;
}
.cid-tCluRaJgqo .mbr-text,
.cid-tCluRaJgqo .mbr-section-btn {
  color: #ffffff;
}
.cid-tDWhlZreVq {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tDWhlZreVq .row {
  justify-content: center;
}
.cid-tDWhlZreVq .col-title {
  margin-bottom: 2.5rem;
}
.cid-tDWhlZreVq .mbr-section-title {
  color: #131694;
}
.cid-tDWhlZreVq .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-tDWhlZreVq .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .cid-tDWhlZreVq .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .cid-tDWhlZreVq .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tDWhlZreVq .card {
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  min-height: 372px;
}
@media (max-width: 639px) {
  .cid-tDWhlZreVq .card {
    min-height: 276px;
  }
}
.cid-tDWhlZreVq .card:hover .card-img-bg img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tDWhlZreVq .card:hover .card-title {
  text-decoration: underline;
}
.cid-tDWhlZreVq .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.cid-tDWhlZreVq .card-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.cid-tDWhlZreVq .card-img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .3s;
}
.cid-tDWhlZreVq .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: 96px 16px 24px;
  position: relative;
  z-index: 5;
}
.cid-tDWhlZreVq .card-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, #000000);
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, 1, 0, 1);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cid-tDWhlZreVq .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #F6B7D2;
  position: relative;
  z-index: 11;
}
.cid-tDWhlZreVq .card-text {
  width: 100%;
  color: #FCF0D5;
  margin-bottom: 0;
  position: relative;
  z-index: 11;
}
.cid-tDWhlZreVq .card-title-1 {
  color: #ff014e;
}
.cid-tCpDYjBtoZ {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1278.webp");
}
.cid-tCpDYjBtoZ .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-tCpDYjBtoZ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tCpDYjBtoZ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tCpDYjBtoZ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tCpDYjBtoZ .mbr-section-title {
  color: #ffffff;
}
.cid-tCpDYjBtoZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFi3kDk7h2 {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #ffffff;
}
.cid-tFi3kDk7h2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tFi3kDk7h2 ul li {
  padding: 1rem 0;
}
.cid-tFi3kDk7h2 ul li:hover {
  color: #0b0a2d;
}
.cid-tFi3kDk7h2 .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-tFi3kDk7h2 .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-tFi3kDk7h2 .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-tFi3kDk7h2 .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tFi3kDk7h2 .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-tFi3kDk7h2 .map {
    height: auto;
  }
}
.cid-tFi3kDk7h2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-tFi3kDk7h2 .social-list .soc-item {
  padding: 0;
  margin: .5rem .5rem 0 0;
  display: inline-block;
}
.cid-tFi3kDk7h2 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tFi3kDk7h2 .social-list a:hover {
  opacity: 1;
}
.cid-tFi3kDk7h2 .row-element,
.cid-tFi3kDk7h2 .image-element {
  padding: 0;
}
.cid-tFi3kDk7h2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tFi3kDk7h2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0b0a2d, #ff014e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tFi3kDk7h2 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tFi3kDk7h2 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tFi3kDk7h2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-tFi3kDk7h2 .underline .line {
    height: 2px;
  }
  .cid-tFi3kDk7h2 .mbr-title,
  .cid-tFi3kDk7h2 .underline,
  .cid-tFi3kDk7h2 .mbr-text,
  .cid-tFi3kDk7h2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tFi3kDk7h2 .mbr-title,
.cid-tFi3kDk7h2 .underline {
  color: #000000;
}
.cid-tFi3kDk7h2 .mbr-text,
.cid-tFi3kDk7h2 .mbr-section-btn {
  color: #ffffff;
}
.cid-tFi3kDk7h2 mbr-list LI {
  color: #ffffff;
}
.cid-tFi3kDk7h2 mbr-list {
  text-align: center;
}
.cid-tFi3kDk7h2 .mbr-list,
.cid-tFi3kDk7h2 .social-list mbr-list {
  color: #ffffff;
}
.cid-tFi3kDk7h2 .mbr-text {
  color: #000000;
}
.cid-tFi3kDk7h2 .social-list,
.cid-tFi3kDk7h2 .mbr-list {
  color: #000000;
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDbr4LLPFU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/11-1640x924.webp");
}
.cid-tDbr4LLPFU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDbr4LLPFU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDbr4LLPFU .mbr-title {
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tDbr4LLPFU .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-tDbr4LLPFU .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-tDbr4LLPFU .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-tDbr4LLPFU .mbr-section-btn {
  padding-top: 40px;
}
.cid-tCAwLpKTHM {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCAwLpKTHM .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tCAwLpKTHM .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tCAwLpKTHM .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tCAwLpKTHM .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tCAwLpKTHM .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tCAwLpKTHM .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tCAwLpKTHM .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tCAwLpKTHM .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tCAwLpKTHM .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tCAwLpKTHM .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tCAwLpKTHM .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tCAwLpKTHM .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tCAwLpKTHM .mbr-text {
  color: #000000;
}
.cid-tCAxrcqyyI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f1ec;
}
.cid-tCAxrcqyyI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCAxrcqyyI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCAxrcqyyI .row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cid-tCAxrcqyyI .item-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: wrap;
}
.cid-tCAxrcqyyI .image-wrapper {
  width: 100%;
  height: 34.7vw;
  max-height: 490px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tCAxrcqyyI .image-wrapper {
    border-radius: 5px;
  }
}
@media (max-width: 575px) {
  .cid-tCAxrcqyyI .image-wrapper {
    height: 41vw;
  }
}
.cid-tCAxrcqyyI .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCAxrcqyyI .col-text {
  flex-grow: 1;
}
.cid-tCAxrcqyyI .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 0 7% 32px 7%;
}
@media (max-width: 575px) {
  .cid-tCAxrcqyyI .text-wrapper {
    padding: 0 0 32px 0;
  }
}
.cid-tCAxrcqyyI .title-container {
  margin-bottom: 140px;
}
@media (max-width: 991px) {
  .cid-tCAxrcqyyI .title-container {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .cid-tCAxrcqyyI .title-container {
    margin-bottom: 32px;
  }
}
.cid-tCAxrcqyyI .mbr-section-title {
  color: #272727;
  margin-bottom: 0;
  text-align: center;
}
.cid-tCAxrcqyyI .mbr-text {
  color: #272727;
  opacity: 0.7;
  margin-bottom: 0;
  margin-top: 20px;
}
.cid-tCAxrcqyyI .mbr-section-btn {
  margin-top: 20px;
}
.cid-tCAxrcqyyI .author-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tCAxrcqyyI .author-container {
    flex-wrap: wrap;
  }
}
.cid-tCAxrcqyyI .item-name-wrap {
  display: flex;
  align-items: center;
  width: 45%;
}
@media (max-width: 767px) {
  .cid-tCAxrcqyyI .item-name-wrap {
    width: 100%;
  }
}
.cid-tCAxrcqyyI .author-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}
.cid-tCAxrcqyyI .author-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCAxrcqyyI .name-text {
  color: #272727;
}
.cid-tCAxrcqyyI .text-item-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  width: 45%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tCAxrcqyyI .text-item-container {
    width: 100%;
    margin-top: 1rem;
    justify-content: flex-start;
  }
}
.cid-tCAxrcqyyI .text-item {
  display: flex;
  margin-bottom: 6px;
  margin-right: 6px;
  padding: 5px 4px;
  border-radius: 5px;
  background-color: #ffb5b5;
}
.cid-tCAxrcqyyI .label-text {
  color: #131694;
  line-height: 1 !important;
}
.cid-tFEjQghq0u {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFEjQghq0u .pad-10 {
  padding: 10px !important;
}
.cid-tFEjQghq0u .mbr-section-head {
  width: 100%;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .cid-tFEjQghq0u .mbr-section-head {
    margin-bottom: 3em;
  }
}
.cid-tFEjQghq0u .mbr-section-title {
  margin-bottom: 4px;
  color: #e43f3f;
  opacity: 0.4;
  text-align: center;
}
.cid-tFEjQghq0u .mbr-section-subtitle {
  margin-bottom: 0;
  color: #272727;
}
.cid-tFEjQghq0u .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 767px) {
  .cid-tFEjQghq0u .item-row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tFEjQghq0u .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tFEjQghq0u .item {
  padding: 0;
}
.cid-tFEjQghq0u .item:nth-child(2n) .item-wrapper {
  padding-top: 5em;
}
@media (max-width: 767px) {
  .cid-tFEjQghq0u .item:nth-child(2n) .item-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .cid-tFEjQghq0u .item:nth-child(2n) .item-wrapper {
    padding-top: 0;
  }
}
.cid-tFEjQghq0u .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-tFEjQghq0u .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  border-radius: 35%;
  overflow: hidden;
  aspect-ratio: 0.88;
  margin: 0 auto;
}
.cid-tFEjQghq0u .item-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-tFEjQghq0u .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}
.cid-tFEjQghq0u .item-title {
  color: #ff014e;
  margin-bottom: 4px;
}
.cid-tFEjQghq0u .mbr-text {
  color: #272727;
  opacity: 0.4;
}
.cid-tFEjQghq0u .mbr-text,
.cid-tFEjQghq0u .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tCAyQcYXpS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tCAyQcYXpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCAyQcYXpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tCAyQcYXpS .container {
    padding: 0 30px;
  }
}
.cid-tCAyQcYXpS .row {
  justify-content: center;
}
.cid-tCAyQcYXpS .title-wrapper {
  margin-bottom: 55px;
}
.cid-tCAyQcYXpS .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tCAyQcYXpS .title-wrapper .link-wrapper:hover .mbr-link {
  color: #ff6839;
}
.cid-tCAyQcYXpS .title-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-tCAyQcYXpS .card {
  padding: 0 8px;
}
.cid-tCAyQcYXpS .card:nth-child(2n) {
  padding: 80px 8px 0;
}
@media (max-width: 992px) {
  .cid-tCAyQcYXpS .card:nth-child(2n) {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tCAyQcYXpS .card {
    padding: 0 12px;
  }
}
.cid-tCAyQcYXpS .card a {
  display: block;
}
.cid-tCAyQcYXpS .card a:hover .image-wrapper .mbr-iconfont {
  opacity: 1;
}
.cid-tCAyQcYXpS .card a:hover .image-wrapper::before {
  opacity: .5;
}
.cid-tCAyQcYXpS .card a .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cid-tCAyQcYXpS .card a .image-wrapper img {
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tCAyQcYXpS .card a .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
  }
}
.cid-tCAyQcYXpS .card a .image-wrapper .mbr-iconfont {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-tCAyQcYXpS .card a .image-wrapper:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-tCAyQcYXpS .text-wrapper {
  margin-top: 44px;
}
.cid-tCAyQcYXpS .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCAyQcYXpS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tCAyQcYXpS .mbr-link {
  color: #000000;
  text-align: center;
}
.cid-tCAyQcYXpS .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tJ1PA5sELd {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJ1PA5sELd .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tJ1PA5sELd .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tJ1PA5sELd img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tJ1PA5sELd .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tJ1PA5sELd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ1PA5sELd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ1QeFeHR1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJ1QeFeHR1 .line {
  background-color: #ff014e;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJ1QeFeHR1 .mbr-text {
  text-align: center;
}
.cid-tKqL7IO3Zy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKqL7IO3Zy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKqL7IO3Zy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKqL7IO3Zy .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tKqIfYhLtH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKqIfYhLtH .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKqIfYhLtH .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKqIfYhLtH img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKqIfYhLtH .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKqIfYhLtH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKqIfYhLtH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKr3OgkjXq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKr3OgkjXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKr3OgkjXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKr3OgkjXq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKqMzz3FbP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKqMzz3FbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKqMzz3FbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKqMzz3FbP .mbr-section-title {
  color: #131694;
  text-align: left;
}
.cid-tKqMbt6wgw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKqMbt6wgw .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKqMbt6wgw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKqMbt6wgw img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKqMbt6wgw .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKqMbt6wgw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKqMbt6wgw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKqX5S5CPF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKqX5S5CPF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKqX5S5CPF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKqX5S5CPF .mbr-section-title {
  color: #131694;
  text-align: left;
}
.cid-tKqOC9Mo78 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKqOC9Mo78 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKqOC9Mo78 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKqOC9Mo78 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKqOC9Mo78 .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKqOC9Mo78 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKqOC9Mo78 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKr5h4Hk2n {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKr5h4Hk2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKr5h4Hk2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKr5h4Hk2n .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKr5iv8lJ4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKr5iv8lJ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKr5iv8lJ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKr5iv8lJ4 .mbr-section-title {
  color: #131694;
  text-align: left;
}
.cid-tKr70R4JHg {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKr70R4JHg .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKr70R4JHg .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKr70R4JHg img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKr70R4JHg .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKr70R4JHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKr70R4JHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tJ33lLPdgn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ33lLPdgn blockquote {
  border-color: #131694;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tKra3yZ9Vl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKra3yZ9Vl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKra3yZ9Vl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKra3yZ9Vl .mbr-section-title {
  color: #131694;
  text-align: left;
}
.cid-tKr9K87qJV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKr9K87qJV .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKr9K87qJV .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKr9K87qJV img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKr9K87qJV .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKr9K87qJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKr9K87qJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ3492ReBB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ3492ReBB .mbr-text {
  text-align: left;
  color: #151515;
}
.cid-tJ3492ReBB .mbr-section-subtitle {
  text-align: center;
}
.cid-tJ3492ReBB .mbr-section-title {
  color: #131694;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tJ35MlV5z9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ35MlV5z9 blockquote {
  border-color: #131694;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tKrqif4aEV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKrqif4aEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKrqif4aEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKrqif4aEV .mbr-section-title {
  color: #131694;
  text-align: left;
}
.cid-tKrqpQ1FBk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKrqpQ1FBk .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKrqpQ1FBk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKrqpQ1FBk img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKrqpQ1FBk .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKrqpQ1FBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKrqpQ1FBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ36GnOugU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKrrE6t8iE {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKrrE6t8iE .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKrrE6t8iE .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKrrE6t8iE img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKrrE6t8iE .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKrrE6t8iE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKrrE6t8iE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKrrSwRjsd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tKrstiEoi0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKrstiEoi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKrstiEoi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKrstiEoi0 .mbr-section-title {
  color: #131694;
  text-align: left;
}
.cid-tKrt1yQjoE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKrt1yQjoE .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKrt1yQjoE .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKrt1yQjoE img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKrt1yQjoE .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKrt1yQjoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKrt1yQjoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKrtBWov4c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ2NYiOqPy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJ2NYiOqPy nav.navbar {
  position: fixed;
}
.cid-tJ2NYiOqPy .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-tJ2NYiOqPy .dropdown-menu {
  padding: 0;
}
.cid-tJ2NYiOqPy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ2NYiOqPy .dropdown-item:hover,
.cid-tJ2NYiOqPy .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-tJ2NYiOqPy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tJ2NYiOqPy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJ2NYiOqPy .nav-link {
  position: relative;
}
.cid-tJ2NYiOqPy .container {
  display: flex;
  margin: auto;
}
.cid-tJ2NYiOqPy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tJ2NYiOqPy .navbar-caption {
  padding-right: 4rem;
}
.cid-tJ2NYiOqPy .dropdown-menu,
.cid-tJ2NYiOqPy .navbar.opened {
  background: #ffffff !important;
}
.cid-tJ2NYiOqPy .nav-item:focus,
.cid-tJ2NYiOqPy .nav-link:focus {
  outline: none;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ2NYiOqPy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJ2NYiOqPy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJ2NYiOqPy .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tJ2NYiOqPy .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ2NYiOqPy .navbar.opened {
  transition: all .3s;
}
.cid-tJ2NYiOqPy .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tJ2NYiOqPy .navbar .navbar-logo img {
  width: auto;
}
.cid-tJ2NYiOqPy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJ2NYiOqPy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJ2NYiOqPy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJ2NYiOqPy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tJ2NYiOqPy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJ2NYiOqPy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJ2NYiOqPy .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: 55%;
}
.cid-tJ2NYiOqPy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJ2NYiOqPy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tJ2NYiOqPy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tJ2NYiOqPy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJ2NYiOqPy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJ2NYiOqPy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJ2NYiOqPy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJ2NYiOqPy .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: 55%;
  }
  .cid-tJ2NYiOqPy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tJ2NYiOqPy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJ2NYiOqPy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJ2NYiOqPy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJ2NYiOqPy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJ2NYiOqPy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tJ2NYiOqPy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJ2NYiOqPy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tJ2NYiOqPy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tJ2NYiOqPy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJ2NYiOqPy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJ2NYiOqPy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJ2NYiOqPy .dropdown-item.active,
.cid-tJ2NYiOqPy .dropdown-item:active {
  background-color: transparent;
}
.cid-tJ2NYiOqPy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJ2NYiOqPy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJ2NYiOqPy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJ2NYiOqPy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJ2NYiOqPy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJ2NYiOqPy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJ2NYiOqPy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJ2NYiOqPy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJ2NYiOqPy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJ2NYiOqPy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tJ2NYiOqPy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJ2NYiOqPy .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-tJ2NYiOqPy .navbar {
    height: 77px;
  }
  .cid-tJ2NYiOqPy .navbar.opened {
    height: auto;
  }
  .cid-tJ2NYiOqPy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tJ38n86HQr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ38n86HQr blockquote {
  border-color: #131694;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tKruoZrZMv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKruoZrZMv .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tKruoZrZMv .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tKruoZrZMv img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tKruoZrZMv .mbr-image-title {
  text-align: left;
  color: #000000;
}
.cid-tKruoZrZMv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKruoZrZMv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ38nTKy4R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ2O7tm9M6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJ2O7tm9M6 nav.navbar {
  position: fixed;
}
.cid-tJ2O7tm9M6 .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-tJ2O7tm9M6 .dropdown-menu {
  padding: 0;
}
.cid-tJ2O7tm9M6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ2O7tm9M6 .dropdown-item:hover,
.cid-tJ2O7tm9M6 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-tJ2O7tm9M6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tJ2O7tm9M6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJ2O7tm9M6 .nav-link {
  position: relative;
}
.cid-tJ2O7tm9M6 .container {
  display: flex;
  margin: auto;
}
.cid-tJ2O7tm9M6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tJ2O7tm9M6 .navbar-caption {
  padding-right: 4rem;
}
.cid-tJ2O7tm9M6 .dropdown-menu,
.cid-tJ2O7tm9M6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tJ2O7tm9M6 .nav-item:focus,
.cid-tJ2O7tm9M6 .nav-link:focus {
  outline: none;
}
.cid-tJ2O7tm9M6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJ2O7tm9M6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJ2O7tm9M6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tJ2O7tm9M6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ2O7tm9M6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJ2O7tm9M6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJ2O7tm9M6 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tJ2O7tm9M6 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ2O7tm9M6 .navbar.opened {
  transition: all .3s;
}
.cid-tJ2O7tm9M6 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tJ2O7tm9M6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJ2O7tm9M6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJ2O7tm9M6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJ2O7tm9M6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJ2O7tm9M6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tJ2O7tm9M6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJ2O7tm9M6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJ2O7tm9M6 .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: 55%;
}
.cid-tJ2O7tm9M6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJ2O7tm9M6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tJ2O7tm9M6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tJ2O7tm9M6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJ2O7tm9M6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJ2O7tm9M6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJ2O7tm9M6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJ2O7tm9M6 .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: 55%;
  }
  .cid-tJ2O7tm9M6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tJ2O7tm9M6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJ2O7tm9M6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJ2O7tm9M6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJ2O7tm9M6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJ2O7tm9M6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tJ2O7tm9M6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJ2O7tm9M6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tJ2O7tm9M6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tJ2O7tm9M6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJ2O7tm9M6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJ2O7tm9M6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJ2O7tm9M6 .dropdown-item.active,
.cid-tJ2O7tm9M6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJ2O7tm9M6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJ2O7tm9M6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJ2O7tm9M6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJ2O7tm9M6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJ2O7tm9M6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJ2O7tm9M6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJ2O7tm9M6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJ2O7tm9M6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJ2O7tm9M6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tJ2O7tm9M6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tJ2O7tm9M6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tJ2O7tm9M6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tJ2O7tm9M6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tJ2O7tm9M6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tJ2O7tm9M6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJ2O7tm9M6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tJ2O7tm9M6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tJ2O7tm9M6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJ2O7tm9M6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tJ2O7tm9M6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJ2O7tm9M6 .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-tJ2O7tm9M6 .navbar {
    height: 77px;
  }
  .cid-tJ2O7tm9M6 .navbar.opened {
    height: auto;
  }
  .cid-tJ2O7tm9M6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tJ2NYiOqPy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJ2NYiOqPy nav.navbar {
  position: fixed;
}
.cid-tJ2NYiOqPy .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-tJ2NYiOqPy .dropdown-menu {
  padding: 0;
}
.cid-tJ2NYiOqPy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ2NYiOqPy .dropdown-item:hover,
.cid-tJ2NYiOqPy .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-tJ2NYiOqPy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tJ2NYiOqPy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJ2NYiOqPy .nav-link {
  position: relative;
}
.cid-tJ2NYiOqPy .container {
  display: flex;
  margin: auto;
}
.cid-tJ2NYiOqPy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tJ2NYiOqPy .navbar-caption {
  padding-right: 4rem;
}
.cid-tJ2NYiOqPy .dropdown-menu,
.cid-tJ2NYiOqPy .navbar.opened {
  background: #ffffff !important;
}
.cid-tJ2NYiOqPy .nav-item:focus,
.cid-tJ2NYiOqPy .nav-link:focus {
  outline: none;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tJ2NYiOqPy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ2NYiOqPy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJ2NYiOqPy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJ2NYiOqPy .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tJ2NYiOqPy .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ2NYiOqPy .navbar.opened {
  transition: all .3s;
}
.cid-tJ2NYiOqPy .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tJ2NYiOqPy .navbar .navbar-logo img {
  width: auto;
}
.cid-tJ2NYiOqPy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJ2NYiOqPy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJ2NYiOqPy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJ2NYiOqPy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tJ2NYiOqPy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJ2NYiOqPy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJ2NYiOqPy .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: 55%;
}
.cid-tJ2NYiOqPy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJ2NYiOqPy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tJ2NYiOqPy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tJ2NYiOqPy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJ2NYiOqPy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJ2NYiOqPy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJ2NYiOqPy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJ2NYiOqPy .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: 55%;
  }
  .cid-tJ2NYiOqPy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tJ2NYiOqPy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJ2NYiOqPy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJ2NYiOqPy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJ2NYiOqPy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJ2NYiOqPy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tJ2NYiOqPy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJ2NYiOqPy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tJ2NYiOqPy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tJ2NYiOqPy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJ2NYiOqPy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJ2NYiOqPy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJ2NYiOqPy .dropdown-item.active,
.cid-tJ2NYiOqPy .dropdown-item:active {
  background-color: transparent;
}
.cid-tJ2NYiOqPy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJ2NYiOqPy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJ2NYiOqPy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJ2NYiOqPy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJ2NYiOqPy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJ2NYiOqPy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJ2NYiOqPy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJ2NYiOqPy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJ2NYiOqPy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tJ2NYiOqPy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tJ2NYiOqPy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJ2NYiOqPy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tJ2NYiOqPy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJ2NYiOqPy .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-tJ2NYiOqPy .navbar {
    height: 77px;
  }
  .cid-tJ2NYiOqPy .navbar.opened {
    height: auto;
  }
  .cid-tJ2NYiOqPy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-h6 {
  /* Type valid CSS here */
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
#custom-html-e7 {
  /* Type valid CSS here */
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tFaszEPyIF {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/16-1640x924.webp");
}
.cid-tFaszEPyIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFaszEPyIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFaszEPyIF .mbr-title {
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tFaszEPyIF .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-tFaszEPyIF .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-tFaszEPyIF .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-tFaszEPyIF .mbr-section-btn {
  padding-top: 40px;
}
.cid-tFaszLQ52M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFaszLQ52M nav.navbar {
  position: fixed;
}
.cid-tFaszLQ52M .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-tFaszLQ52M .dropdown-menu {
  padding: 0;
}
.cid-tFaszLQ52M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFaszLQ52M .dropdown-item:hover,
.cid-tFaszLQ52M .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-tFaszLQ52M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tFaszLQ52M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFaszLQ52M .nav-link {
  position: relative;
}
.cid-tFaszLQ52M .container {
  display: flex;
  margin: auto;
}
.cid-tFaszLQ52M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tFaszLQ52M .navbar-caption {
  padding-right: 4rem;
}
.cid-tFaszLQ52M .dropdown-menu,
.cid-tFaszLQ52M .navbar.opened {
  background: #ffffff !important;
}
.cid-tFaszLQ52M .nav-item:focus,
.cid-tFaszLQ52M .nav-link:focus {
  outline: none;
}
.cid-tFaszLQ52M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFaszLQ52M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFaszLQ52M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tFaszLQ52M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFaszLQ52M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFaszLQ52M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFaszLQ52M .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tFaszLQ52M .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFaszLQ52M .navbar.opened {
  transition: all .3s;
}
.cid-tFaszLQ52M .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tFaszLQ52M .navbar .navbar-logo img {
  width: auto;
}
.cid-tFaszLQ52M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFaszLQ52M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFaszLQ52M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFaszLQ52M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tFaszLQ52M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFaszLQ52M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFaszLQ52M .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: 55%;
}
.cid-tFaszLQ52M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFaszLQ52M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tFaszLQ52M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tFaszLQ52M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFaszLQ52M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFaszLQ52M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFaszLQ52M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFaszLQ52M .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: 55%;
  }
  .cid-tFaszLQ52M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tFaszLQ52M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFaszLQ52M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFaszLQ52M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFaszLQ52M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFaszLQ52M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tFaszLQ52M .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFaszLQ52M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tFaszLQ52M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tFaszLQ52M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFaszLQ52M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFaszLQ52M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFaszLQ52M .dropdown-item.active,
.cid-tFaszLQ52M .dropdown-item:active {
  background-color: transparent;
}
.cid-tFaszLQ52M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFaszLQ52M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFaszLQ52M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFaszLQ52M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFaszLQ52M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFaszLQ52M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFaszLQ52M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFaszLQ52M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFaszLQ52M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tFaszLQ52M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tFaszLQ52M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tFaszLQ52M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tFaszLQ52M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tFaszLQ52M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tFaszLQ52M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tFaszLQ52M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tFaszLQ52M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tFaszLQ52M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tFaszLQ52M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tFaszLQ52M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFaszLQ52M .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-tFaszLQ52M .navbar {
    height: 77px;
  }
  .cid-tFaszLQ52M .navbar.opened {
    height: auto;
  }
  .cid-tFaszLQ52M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFavivrU0o {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFavivrU0o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFavivrU0o .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-tFavivrU0o .row {
    padding: 0;
  }
  .cid-tFavivrU0o .container-fluid {
    padding: 0;
  }
}
.cid-tFavivrU0o .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 10px;
  max-height: 1000px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .cid-tFavivrU0o .items {
    grid-template-columns: 1fr 1fr;
    max-height: 1500px;
  }
}
@media (max-width: 425px) {
  .cid-tFavivrU0o .items {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .cid-tFavivrU0o .items-card {
    padding-top: 100px;
  }
}
.cid-tFavivrU0o .items-card .item {
  margin-bottom: 14px;
  height: 380px;
}
@media (max-width: 768px) {
  .cid-tFavivrU0o .items-card .item {
    margin-bottom: 5px;
  }
}
.cid-tFavivrU0o .items-card .item .item-wrapper {
  height: 100%;
  border-radius: 20px;
}
.cid-tFavivrU0o .items-card .item .item-wrapper .item-img {
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.cid-tFavivrU0o .items-card .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tFavivrU0o .items-card:nth-child(2n) {
  padding-top: 0;
}
.cid-tFUktyioYD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fde1e1;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tFUktyioYD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFUktyioYD .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tFUktyioYD .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tFUktyioYD .btn-primary-outline:active {
  color: gray;
}
.cid-tFUktyioYD .btn-primary-outline:hover {
  color: white;
}
.cid-tFUktyioYD .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tFUktyioYD div {
  overflow: hidden;
}
.cid-tFUktyioYD li.active .btn-primary-outline {
  color: white;
}
.cid-tFUktyioYD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFUktyioYD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFUktyioYD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFUktyioYD .mbr-gallery-item {
  overflow: hidden;
}
.cid-tFUktyioYD .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tFUktyioYD .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tFUktyioYD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tFUktyioYD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tFUktyioYD .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tFUktyioYD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tFUktyioYD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tFawUnZkpQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFawUnZkpQ .tile {
  width: 100%;
  margin-bottom: 16px;
  margin-bottom: 2rem;
}
.cid-tFawUnZkpQ .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tFawUnZkpQ .image-wrap {
  border-radius: 15px;
  overflow: hidden;
}
.cid-tFawUnZkpQ .image-container .row div[class*="col"]:first-child,
.cid-tFawUnZkpQ .image-container .row div[class*="col"]:last-child {
  padding-top: 1.5rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tFawUnZkpQ .image-container .row div[class*="col"]:first-child,
  .cid-tFawUnZkpQ .image-container .row div[class*="col"]:last-child {
    padding-top: 0.5rem;
  }
}
.cid-tFawUnZkpQ .image-container .row div[class*="col"]:first-child .image-wrap,
.cid-tFawUnZkpQ .image-container .row div[class*="col"]:last-child .image-wrap {
  aspect-ratio: 0.88235294;
}
.cid-tFawUnZkpQ .image-container .row div[class*="col"]:nth-child(2) .image-wrap {
  aspect-ratio: 1.76470588;
}
@media (min-width: 541px) and (max-width: 767px) {
  .cid-tFawUnZkpQ .image-container .col-12:first-child,
  .cid-tFawUnZkpQ .image-container .col-12:last-child {
    width: 25%;
  }
  .cid-tFawUnZkpQ .image-container .col-12:nth-child(2) {
    width: 50%;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFlf5bqj3A {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/31-1640x924.webp");
}
.cid-tFlf5bqj3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFlf5bqj3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFlf5bqj3A .mbr-title {
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tFlf5bqj3A .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-tFlf5bqj3A .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-tFlf5bqj3A .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-tFlf5bqj3A .mbr-section-btn {
  padding-top: 40px;
}
.cid-tFlhZtqVKZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFlhZtqVKZ .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFlhZtqVKZ .mbr-text {
  text-align: left;
}
.cid-tFlivnTdkq {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFliPz7qdh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFliPz7qdh .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFliPz7qdh .mbr-text {
  text-align: left;
}
.cid-tFliQqVXFb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFliR6bao2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFliR6bao2 .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFliR6bao2 .mbr-text {
  text-align: left;
}
.cid-tFliRTPmKN {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFliRTPmKN .mbr-text {
  text-align: left;
}
.cid-tFlD0g1W99 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFlD0g1W99 .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFlD0g1W99 .mbr-text {
  text-align: left;
}
.cid-tFlD2qctuh {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFlD2qctuh .mbr-text {
  text-align: left;
}
.cid-tFlDTwqkec {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFlDTwqkec .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFlDTwqkec .mbr-text {
  text-align: left;
}
.cid-tFlDUgax83 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFlDUgax83 .mbr-text {
  text-align: left;
}
.cid-tFlDVa4onw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFlDVa4onw .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFlDVa4onw .mbr-text {
  text-align: left;
}
.cid-tFlDWaZjNU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFlDWaZjNU .mbr-text {
  text-align: left;
}
.cid-tFlEJ11LWb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFlEJ11LWb .line {
  background-color: #030552;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tFlEJ11LWb .mbr-text {
  text-align: left;
}
.cid-tFlELdTYYk {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFlELdTYYk .mbr-text {
  text-align: left;
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
.cid-tFazQnccXZ {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/24-1640x924.webp");
}
.cid-tFazQnccXZ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tFazQnccXZ .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-tFazQnccXZ .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-tFazQnccXZ .form-group {
  margin-bottom: 1rem;
}
.cid-tFazQnccXZ .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-tFazQnccXZ textarea.form-control {
  min-height: 96px;
}
.cid-tFazQnccXZ .input-group-btn {
  width: 100%;
}
.cid-tFazQnccXZ .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-tFazQnccXZ .form-control-label {
  color: #000000;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-tFazQnccXZ .form1 {
    padding: 1.5rem;
  }
}
.cid-tFazQnccXZ .form-subtitle {
  color: #131694;
}
.cid-tFazQnccXZ .form-title {
  color: #131694;
}
.cid-tFazQnccXZ LABEL {
  color: #030552;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #0b0a2d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cR0csnAH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cR0csnAH .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-u8cR0csnAH .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u8cR0csnAH .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u8cR0csnAH .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u8cR0csnAH .social_icons {
  text-align: center;
}
.cid-u8cR0csnAH .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u8cR0csnAH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8cR0csnAH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8cR0csnAH .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u8cR0csnAH .footer_timework {
    margin-top: 50px;
  }
  .cid-u8cR0csnAH .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u8cR0csnAH .mbr-text,
.cid-u8cR0csnAH .footer_logo,
.cid-u8cR0csnAH .social_icons {
  text-align: center;
  color: #030552;
}
