body {
  font-family: 'Blinker-Regular';
}
.display-1 {
  font-family: 'Blinker-Bold';
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Blinker-Bold';
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Blinker-Regular';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Blinker-Bold';
  font-size: 1.75rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Blinker-Regular';
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #1e69aa !important;
}
.bg-success {
  background-color: #f9da1b !important;
}
.bg-info {
  background-color: #00983a !important;
}
.bg-warning {
  background-color: #1e69aa !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #be1622 !important;
  border-color: #be1622 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #be1622 !important;
  border-color: #be1622 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be1622 !important;
  border-color: #be1622 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #00983a !important;
  border-color: #00983a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #00983a !important;
  border-color: #00983a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #00983a !important;
  border-color: #00983a !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #f9da1b !important;
  border-color: #f9da1b !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #f9da1b !important;
  border-color: #f9da1b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #f9da1b !important;
  border-color: #f9da1b !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #1e69aa;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e69aa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #113b60 !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: #1e69aa !important;
  border-color: #1e69aa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #be1622;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #700d14 !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: #be1622 !important;
  border-color: #be1622 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00983a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #004119 !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: #00983a !important;
  border-color: #00983a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9da1b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b89f05 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #141201 !important;
  background-color: #f9da1b !important;
  border-color: #f9da1b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e69aa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #113b60 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1e69aa !important;
  border-color: #1e69aa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.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: #272727 !important;
  border-color: #272727 !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: #1e69aa !important;
}
.text-secondary {
  color: #be1622 !important;
}
.text-success {
  color: #f9da1b !important;
}
.text-info {
  color: #00983a !important;
}
.text-warning {
  color: #1e69aa !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1e69aa !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #630b12 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #aa9204 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #003213 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #0f3353 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #1e69aa;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #00983a;
}
.alert-warning {
  background-color: #1e69aa;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1e69aa;
  border-color: #1e69aa;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1e69aa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #64a8e4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefae2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #19ff70;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #64a8e4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Blinker-Regular';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #1e69aa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Blinker-Regular';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #1e69aa;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1e69aa;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1e69aa;
}
.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: #1e69aa;
  border-bottom-color: #1e69aa;
}
.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: #1e69aa !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: #be1622 !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='%231e69aa' %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-tdWp0PfoLt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdWp0PfoLt .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tdWp0PfoLt .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tdWp0PfoLt .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tdWp0PfoLt .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tdWp0PfoLt .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tdWp0PfoLt nav.navbar {
  position: fixed;
}
.cid-tdWp0PfoLt .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tdWp0PfoLt .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tdWp0PfoLt .nav-item {
    border: 0;
  }
}
.cid-tdWp0PfoLt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tdWp0PfoLt .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tdWp0PfoLt .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tdWp0PfoLt .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tdWp0PfoLt .title-wrap:hover span {
  color: white;
}
.cid-tdWp0PfoLt .title-wrap:hover:before {
  height: 100%;
}
.cid-tdWp0PfoLt .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-tdWp0PfoLt .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tdWp0PfoLt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdWp0PfoLt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdWp0PfoLt .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tdWp0PfoLt .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tdWp0PfoLt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdWp0PfoLt .nav-link {
  position: relative;
}
.cid-tdWp0PfoLt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tdWp0PfoLt .container {
    flex-wrap: nowrap;
  }
}
.cid-tdWp0PfoLt .dropdown-menu,
.cid-tdWp0PfoLt .navbar.opened {
  background: #ffffff !important;
}
.cid-tdWp0PfoLt .nav-item:focus,
.cid-tdWp0PfoLt .nav-link:focus {
  outline: none;
}
.cid-tdWp0PfoLt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdWp0PfoLt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdWp0PfoLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdWp0PfoLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdWp0PfoLt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdWp0PfoLt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdWp0PfoLt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tdWp0PfoLt .navbar.opened {
  transition: all 0.3s;
}
.cid-tdWp0PfoLt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdWp0PfoLt .navbar .navbar-logo img {
  width: auto;
}
.cid-tdWp0PfoLt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdWp0PfoLt .navbar.collapsed {
  justify-content: center;
}
.cid-tdWp0PfoLt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdWp0PfoLt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdWp0PfoLt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tdWp0PfoLt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdWp0PfoLt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdWp0PfoLt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tdWp0PfoLt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdWp0PfoLt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdWp0PfoLt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdWp0PfoLt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdWp0PfoLt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdWp0PfoLt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdWp0PfoLt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdWp0PfoLt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tdWp0PfoLt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdWp0PfoLt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdWp0PfoLt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdWp0PfoLt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdWp0PfoLt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdWp0PfoLt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tdWp0PfoLt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdWp0PfoLt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdWp0PfoLt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdWp0PfoLt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdWp0PfoLt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdWp0PfoLt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdWp0PfoLt .dropdown-item.active,
.cid-tdWp0PfoLt .dropdown-item:active {
  background-color: transparent;
}
.cid-tdWp0PfoLt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdWp0PfoLt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdWp0PfoLt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdWp0PfoLt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdWp0PfoLt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdWp0PfoLt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdWp0PfoLt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdWp0PfoLt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdWp0PfoLt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdWp0PfoLt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tdWp0PfoLt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdWp0PfoLt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdWp0PfoLt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdWp0PfoLt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdWp0PfoLt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdWp0PfoLt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdWp0PfoLt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdWp0PfoLt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdWp0PfoLt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tdWp0PfoLt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdWp0PfoLt .navbar {
    height: 70px;
  }
  .cid-tdWp0PfoLt .navbar.opened {
    height: auto;
  }
  .cid-tdWp0PfoLt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdWp0PfoLt .navbar-caption-wrap,
.cid-tdWp0PfoLt .title-wrap {
  color: #272727;
}
.cid-tdWp0PfoLt .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tdWunQUysD .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #1e69aa;
}
.cid-tdWunQUysD .card-wrapper {
  min-height: 300px;
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-tdWunQUysD .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-tdWunQUysD .icon1 {
  color: #ffffff;
}
.cid-tdWunQUysD .icon2 {
  color: #ffffff;
}
.cid-tdWunQUysD .icon3 {
  color: #ffffff;
}
.cid-tdWunQUysD .icon4 {
  color: #ffffff;
}
.cid-tdWunQUysD .big {
  min-height: 100%;
}
.cid-tdWunQUysD .mbr-section-btn {
  max-width: 200px;
}
.cid-tdWunQUysD .mbr-section-btn .btn {
  margin: 2px;
}
@media (max-width: 992px) {
  .cid-tdWunQUysD .mbr-section-btn {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }
}
.cid-tdWunQUysD .card1 {
  background-image: url("../../../assets/images/mbr-1.jpg");
  background-size: cover;
  background-position: center;
  padding: 6rem;
}
.cid-tdWunQUysD .card1 .mbr-iconfont {
  font-size: 16.5rem;
}
@media (max-width: 767px) {
  .cid-tdWunQUysD .card1 {
    padding: 3rem 1rem;
  }
}
.cid-tdWunQUysD .card-box {
  z-index: 2;
}
.cid-tdWunQUysD .card2 {
  background-image: url("../../../assets/images/startseite-ernaehrung.jpg");
  background-size: auto 140%;
  position: relative;
  background-position: center;
}
.cid-tdWunQUysD .card2 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-tdWunQUysD .card2:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #be1622;
  z-index: 1;
  opacity: 1;
}
.cid-tdWunQUysD .card2:hover {
  background-size: auto 115%;
}
.cid-tdWunQUysD .card2:hover:before {
  opacity: 0.3;
}
.cid-tdWunQUysD .card3 {
  background-image: url("../../../assets/images/taichi.jpg");
  background-size: auto 140%;
  position: relative;
  background-position: center;
}
.cid-tdWunQUysD .card3 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-tdWunQUysD .card3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e69aa;
  transition: all 0.3s;
  z-index: 1;
  opacity: 1;
}
.cid-tdWunQUysD .card3:hover {
  background-size: auto 115%;
}
.cid-tdWunQUysD .card3:hover:before {
  opacity: 0.3;
}
.cid-tdWunQUysD .card4 {
  background-image: url("../../../assets/images/naturheilkunde-4.jpg");
  background-size: auto 140%;
  position: relative;
  background-position: center;
}
.cid-tdWunQUysD .card4:hover {
  background-size: auto 115%;
}
.cid-tdWunQUysD .card4:hover:before {
  opacity: 0;
}
.cid-tdWunQUysD .card4 .mbr-iconfont {
  background: #00983a;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-tdWunQUysD .card-title,
.cid-tdWunQUysD .card-box {
  color: #ffffff;
}
.cid-tdWunQUysD .card2-title {
  color: #ffffff;
}
.cid-tdWunQUysD .card3-title {
  color: #ffffff;
}
.cid-tdWunQUysD .card4-title {
  color: #ffffff;
}
.cid-tdWunQUysD .card1-title {
  color: #ffffff;
  text-align: left;
}
.cid-tdWunQUysD .card2-text {
  color: #ffffff;
}
.cid-tdWunQUysD .card4-text {
  color: #ffffff;
}
.cid-tdWunQUysD .card3-text {
  color: #ffffff;
}
.cid-tdWClY6pa9 {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-tdWClY6pa9 .container {
    max-width: 1200px;
  }
}
.cid-tdWClY6pa9 .row {
  justify-content: space-between;
}
.cid-tdWClY6pa9 .text-wrapper {
  border-left: 4px solid #1e69aa;
  padding-left: 2rem;
}
.cid-tdWClY6pa9 .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tdWClY6pa9 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #1e69aa;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tdWClY6pa9 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tdWClY6pa9 .image-wrap {
  overflow: hidden;
}
.cid-tdWClY6pa9 .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tdWClY6pa9 .card-wrap:hover img {
  transform: scale(1.15);
}
@media (max-width: 991px) {
  .cid-tdWClY6pa9 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tdWClY6pa9 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tdWClY6pa9 .card-text,
.cid-tdWClY6pa9 .mbr-section-btn,
.cid-tdWClY6pa9 .social-row {
  color: #353535;
  text-align: right;
}
.cid-tdWClY6pa9 .card1-text {
  color: #353535;
}
.cid-tdWClY6pa9 .card-title,
.cid-tdWClY6pa9 .social-row {
  color: #000000;
}
.cid-tdWClY6pa9 .mbr-section-title {
  color: #1e69aa;
}
.cid-tdWClY6pa9 .card1-text,
.cid-tdWClY6pa9 .mbr-section-btn {
  color: #1e69aa;
}
.cid-tdWFIaUEFp {
  background-color: #1e69aa;
}
.cid-tdWFIaUEFp .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tdWFIaUEFp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tdWFIaUEFp .text-wrapper {
  padding: 2rem 1rem;
}
.cid-tdWFIaUEFp img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-tdWFIaUEFp .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-tdWFIaUEFp .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tdWFIaUEFp .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tdWFIaUEFp .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tuJALve8SN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tuJALve8SN .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tuJALve8SN .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tuJALve8SN .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tuJALve8SN .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tuJALve8SN .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tuJALve8SN nav.navbar {
  position: fixed;
}
.cid-tuJALve8SN .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tuJALve8SN .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tuJALve8SN .nav-item {
    border: 0;
  }
}
.cid-tuJALve8SN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tuJALve8SN .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tuJALve8SN .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tuJALve8SN .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tuJALve8SN .title-wrap:hover span {
  color: white;
}
.cid-tuJALve8SN .title-wrap:hover:before {
  height: 100%;
}
.cid-tuJALve8SN .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-tuJALve8SN .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tuJALve8SN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuJALve8SN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuJALve8SN .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tuJALve8SN .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tuJALve8SN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJALve8SN .nav-link {
  position: relative;
}
.cid-tuJALve8SN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuJALve8SN .container {
    flex-wrap: nowrap;
  }
}
.cid-tuJALve8SN .dropdown-menu,
.cid-tuJALve8SN .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJALve8SN .nav-item:focus,
.cid-tuJALve8SN .nav-link:focus {
  outline: none;
}
.cid-tuJALve8SN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuJALve8SN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJALve8SN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuJALve8SN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuJALve8SN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJALve8SN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJALve8SN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tuJALve8SN .navbar.opened {
  transition: all 0.3s;
}
.cid-tuJALve8SN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuJALve8SN .navbar .navbar-logo img {
  width: auto;
}
.cid-tuJALve8SN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuJALve8SN .navbar.collapsed {
  justify-content: center;
}
.cid-tuJALve8SN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJALve8SN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJALve8SN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tuJALve8SN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJALve8SN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJALve8SN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tuJALve8SN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJALve8SN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuJALve8SN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuJALve8SN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJALve8SN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJALve8SN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJALve8SN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJALve8SN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tuJALve8SN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuJALve8SN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJALve8SN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJALve8SN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJALve8SN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuJALve8SN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tuJALve8SN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuJALve8SN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuJALve8SN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuJALve8SN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJALve8SN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJALve8SN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJALve8SN .dropdown-item.active,
.cid-tuJALve8SN .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJALve8SN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJALve8SN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJALve8SN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJALve8SN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tuJALve8SN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJALve8SN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJALve8SN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuJALve8SN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJALve8SN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuJALve8SN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tuJALve8SN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuJALve8SN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuJALve8SN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuJALve8SN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuJALve8SN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuJALve8SN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuJALve8SN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuJALve8SN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuJALve8SN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tuJALve8SN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJALve8SN .navbar {
    height: 70px;
  }
  .cid-tuJALve8SN .navbar.opened {
    height: auto;
  }
  .cid-tuJALve8SN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuJALve8SN .navbar-caption-wrap,
.cid-tuJALve8SN .title-wrap {
  color: #272727;
}
.cid-tuJALve8SN .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tuJALvMyop {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tuJALvMyop .container {
    max-width: 1200px;
  }
}
.cid-tuJALvMyop .row {
  justify-content: space-between;
}
.cid-tuJALvMyop .text-wrapper {
  border-left: 4px solid #1e69aa;
  padding-left: 2rem;
}
.cid-tuJALvMyop .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tuJALvMyop .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #1e69aa;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tuJALvMyop .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tuJALvMyop .image-wrap {
  overflow: hidden;
}
.cid-tuJALvMyop .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tuJALvMyop .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tuJALvMyop .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuJALvMyop .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tuJALvMyop .card-text,
.cid-tuJALvMyop .mbr-section-btn,
.cid-tuJALvMyop .social-row {
  color: #353535;
}
.cid-tuJALvMyop .card1-text {
  color: #353535;
}
.cid-tuJALvMyop .card-title,
.cid-tuJALvMyop .social-row {
  color: #000000;
}
.cid-tuJALvMyop .mbr-section-title {
  color: #1e69aa;
}
.cid-tuJALvMyop .card1-text,
.cid-tuJALvMyop .mbr-section-btn {
  color: #000000;
}
.cid-tuJDWIFT0R {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-tuJDWIFT0R .container {
    max-width: 1200px;
  }
}
.cid-tuJDWIFT0R .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-tuJDWIFT0R .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-tuJDWIFT0R .row {
  justify-content: center;
}
.cid-tuJDWIFT0R .card-text {
  color: #000000;
}
.cid-tuJDWIFT0R .card-title,
.cid-tuJDWIFT0R .iconfont-wrapper {
  color: #1e69aa;
}
.cid-tuJDWIFT0R text {
  color: #000000;
}
.cid-tuJDWIFT0R .title {
  color: #1e69aa;
}
.cid-tuJEUsovLL {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-tuJEUsovLL .container {
    max-width: 1200px;
  }
}
.cid-tuJEUsovLL .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-tuJEUsovLL .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-tuJEUsovLL .row {
  justify-content: center;
}
.cid-tuJEUsovLL .card-text {
  color: #000000;
}
.cid-tuJEUsovLL .card-title,
.cid-tuJEUsovLL .iconfont-wrapper {
  color: #000000;
}
.cid-tuJEUsovLL text {
  color: #000000;
}
.cid-tuJEUsovLL .title {
  color: #000000;
}
.cid-uPrNATCGA2 {
  background-color: #1e69aa;
}
.cid-uPrNATCGA2 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrNATCGA2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrNATCGA2 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrNATCGA2 img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrNATCGA2 .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrNATCGA2 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNATCGA2 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNATCGA2 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tuJOrlEj2E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tuJOrlEj2E .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tuJOrlEj2E .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tuJOrlEj2E .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tuJOrlEj2E .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tuJOrlEj2E .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tuJOrlEj2E nav.navbar {
  position: fixed;
}
.cid-tuJOrlEj2E .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tuJOrlEj2E .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tuJOrlEj2E .nav-item {
    border: 0;
  }
}
.cid-tuJOrlEj2E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tuJOrlEj2E .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tuJOrlEj2E .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tuJOrlEj2E .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tuJOrlEj2E .title-wrap:hover span {
  color: white;
}
.cid-tuJOrlEj2E .title-wrap:hover:before {
  height: 100%;
}
.cid-tuJOrlEj2E .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-tuJOrlEj2E .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tuJOrlEj2E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuJOrlEj2E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuJOrlEj2E .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tuJOrlEj2E .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tuJOrlEj2E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJOrlEj2E .nav-link {
  position: relative;
}
.cid-tuJOrlEj2E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuJOrlEj2E .container {
    flex-wrap: nowrap;
  }
}
.cid-tuJOrlEj2E .dropdown-menu,
.cid-tuJOrlEj2E .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJOrlEj2E .nav-item:focus,
.cid-tuJOrlEj2E .nav-link:focus {
  outline: none;
}
.cid-tuJOrlEj2E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuJOrlEj2E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJOrlEj2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuJOrlEj2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuJOrlEj2E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJOrlEj2E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJOrlEj2E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tuJOrlEj2E .navbar.opened {
  transition: all 0.3s;
}
.cid-tuJOrlEj2E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuJOrlEj2E .navbar .navbar-logo img {
  width: auto;
}
.cid-tuJOrlEj2E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuJOrlEj2E .navbar.collapsed {
  justify-content: center;
}
.cid-tuJOrlEj2E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJOrlEj2E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJOrlEj2E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tuJOrlEj2E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJOrlEj2E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJOrlEj2E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tuJOrlEj2E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJOrlEj2E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuJOrlEj2E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuJOrlEj2E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJOrlEj2E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJOrlEj2E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJOrlEj2E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJOrlEj2E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tuJOrlEj2E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuJOrlEj2E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJOrlEj2E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJOrlEj2E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJOrlEj2E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuJOrlEj2E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tuJOrlEj2E .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuJOrlEj2E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuJOrlEj2E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuJOrlEj2E .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJOrlEj2E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJOrlEj2E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJOrlEj2E .dropdown-item.active,
.cid-tuJOrlEj2E .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJOrlEj2E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJOrlEj2E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJOrlEj2E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJOrlEj2E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tuJOrlEj2E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJOrlEj2E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJOrlEj2E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuJOrlEj2E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJOrlEj2E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuJOrlEj2E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tuJOrlEj2E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuJOrlEj2E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuJOrlEj2E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuJOrlEj2E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuJOrlEj2E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuJOrlEj2E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuJOrlEj2E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuJOrlEj2E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuJOrlEj2E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tuJOrlEj2E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJOrlEj2E .navbar {
    height: 70px;
  }
  .cid-tuJOrlEj2E .navbar.opened {
    height: auto;
  }
  .cid-tuJOrlEj2E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuJOrlEj2E .navbar-caption-wrap,
.cid-tuJOrlEj2E .title-wrap {
  color: #272727;
}
.cid-tuJOrlEj2E .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tuJOrnvYg7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tuJOrnvYg7 .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-tuJOrnvYg7 .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-tuJOrnvYg7 .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tuJOrnvYg7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tuJOrnvYg7 .item {
    padding: 0 3rem;
  }
}
.cid-tuJOrnvYg7 img,
.cid-tuJOrnvYg7 .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tuJOrnvYg7 .item:focus,
.cid-tuJOrnvYg7 span:focus {
  outline: none;
}
.cid-tuJOrnvYg7 .mbr-section-title {
  color: #be1622;
}
.cid-tuJOrnvYg7 .mbr-text,
.cid-tuJOrnvYg7 .mbr-section-btn {
  color: #000000;
}
.cid-tuJOrnvYg7 .mbr-section-subtitle {
  color: #353535;
}
.cid-tuJOrnvYg7 .mbr-section-subtitle,
.cid-tuJOrnvYg7 .main-btn {
  color: #1e69aa;
}
.cid-tuJOrnvYg7 .item-title {
  color: #be1622;
}
.cid-tuJU0C9Lr0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tuJU0C9Lr0 .image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-tuJU0C9Lr0 .content-wrap {
  z-index: 1;
  position: relative;
  max-width: 1100px;
  margin-top: 15rem;
}
.cid-tuJU0C9Lr0 .card-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
  padding-top: 5rem !important;
}
@media (max-width: 991px) {
  .cid-tuJU0C9Lr0 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuJU0C9Lr0 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tuJU0C9Lr0 .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-tuJU0C9Lr0 .card-wrap .content-wrap {
    padding: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tuJU0C9Lr0 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tuJU0C9Lr0 .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-tuJU0C9Lr0 .icons-menu {
    justify-content: center;
  }
}
.cid-tuJU0C9Lr0 .iconfont-wrapper {
  font-size: 1.5rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}
.cid-tuJU0C9Lr0 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: 0;
}
.cid-tuJU0C9Lr0 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tuJU0C9Lr0 .iconfont-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-tuJU0C9Lr0 .mbr-iconfont {
  position: relative;
  transition: all 0.3s;
  color: #ffffff;
}
.cid-tuJU0C9Lr0 .mbr-role,
.cid-tuJU0C9Lr0 .social-row {
  color: #ffffff;
}
.cid-tuJU0C9Lr0 .mbr-section-title {
  color: #be1622;
  text-align: left;
}
.cid-tuJU0C9Lr0 .card-title {
  color: #000000;
}
.cid-tuJU0C9Lr0 .card-text,
.cid-tuJU0C9Lr0 .mbr-section-btn,
.cid-tuJU0C9Lr0 .social-row {
  color: #000000;
}
.cid-tuJU0C9Lr0 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uPrNIOiwnk {
  background-color: #1e69aa;
}
.cid-uPrNIOiwnk .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrNIOiwnk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrNIOiwnk .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrNIOiwnk img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrNIOiwnk .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrNIOiwnk .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNIOiwnk .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNIOiwnk .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tuJYmZxQSX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tuJYmZxQSX .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tuJYmZxQSX .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tuJYmZxQSX .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tuJYmZxQSX .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tuJYmZxQSX .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tuJYmZxQSX nav.navbar {
  position: fixed;
}
.cid-tuJYmZxQSX .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tuJYmZxQSX .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tuJYmZxQSX .nav-item {
    border: 0;
  }
}
.cid-tuJYmZxQSX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tuJYmZxQSX .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tuJYmZxQSX .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tuJYmZxQSX .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tuJYmZxQSX .title-wrap:hover span {
  color: white;
}
.cid-tuJYmZxQSX .title-wrap:hover:before {
  height: 100%;
}
.cid-tuJYmZxQSX .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-tuJYmZxQSX .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tuJYmZxQSX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuJYmZxQSX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuJYmZxQSX .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tuJYmZxQSX .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tuJYmZxQSX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJYmZxQSX .nav-link {
  position: relative;
}
.cid-tuJYmZxQSX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuJYmZxQSX .container {
    flex-wrap: nowrap;
  }
}
.cid-tuJYmZxQSX .dropdown-menu,
.cid-tuJYmZxQSX .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJYmZxQSX .nav-item:focus,
.cid-tuJYmZxQSX .nav-link:focus {
  outline: none;
}
.cid-tuJYmZxQSX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuJYmZxQSX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJYmZxQSX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuJYmZxQSX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuJYmZxQSX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJYmZxQSX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJYmZxQSX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tuJYmZxQSX .navbar.opened {
  transition: all 0.3s;
}
.cid-tuJYmZxQSX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuJYmZxQSX .navbar .navbar-logo img {
  width: auto;
}
.cid-tuJYmZxQSX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuJYmZxQSX .navbar.collapsed {
  justify-content: center;
}
.cid-tuJYmZxQSX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJYmZxQSX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJYmZxQSX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tuJYmZxQSX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJYmZxQSX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJYmZxQSX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tuJYmZxQSX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJYmZxQSX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuJYmZxQSX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuJYmZxQSX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJYmZxQSX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJYmZxQSX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJYmZxQSX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJYmZxQSX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tuJYmZxQSX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuJYmZxQSX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJYmZxQSX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJYmZxQSX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJYmZxQSX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuJYmZxQSX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tuJYmZxQSX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuJYmZxQSX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuJYmZxQSX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuJYmZxQSX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJYmZxQSX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJYmZxQSX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJYmZxQSX .dropdown-item.active,
.cid-tuJYmZxQSX .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJYmZxQSX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJYmZxQSX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJYmZxQSX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJYmZxQSX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tuJYmZxQSX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJYmZxQSX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJYmZxQSX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuJYmZxQSX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJYmZxQSX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuJYmZxQSX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tuJYmZxQSX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuJYmZxQSX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuJYmZxQSX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuJYmZxQSX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuJYmZxQSX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuJYmZxQSX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuJYmZxQSX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuJYmZxQSX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuJYmZxQSX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tuJYmZxQSX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJYmZxQSX .navbar {
    height: 70px;
  }
  .cid-tuJYmZxQSX .navbar.opened {
    height: auto;
  }
  .cid-tuJYmZxQSX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuJYmZxQSX .navbar-caption-wrap,
.cid-tuJYmZxQSX .title-wrap {
  color: #272727;
}
.cid-tuJYmZxQSX .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tuJYmZW5n0 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tuJYmZW5n0 .container {
    max-width: 1200px;
  }
}
.cid-tuJYmZW5n0 .row {
  justify-content: space-between;
}
.cid-tuJYmZW5n0 .text-wrapper {
  border-left: 4px solid #00983a;
  padding-left: 2rem;
}
.cid-tuJYmZW5n0 .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tuJYmZW5n0 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tuJYmZW5n0 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tuJYmZW5n0 .image-wrap {
  overflow: hidden;
}
.cid-tuJYmZW5n0 .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tuJYmZW5n0 .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tuJYmZW5n0 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuJYmZW5n0 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tuJYmZW5n0 .card-text,
.cid-tuJYmZW5n0 .mbr-section-btn,
.cid-tuJYmZW5n0 .social-row {
  color: #353535;
}
.cid-tuJYmZW5n0 .card1-text {
  color: #353535;
}
.cid-tuJYmZW5n0 .card-title,
.cid-tuJYmZW5n0 .social-row {
  color: #000000;
}
.cid-tuJYmZW5n0 .mbr-section-title {
  color: #00983a;
}
.cid-tuJYmZW5n0 .card1-text,
.cid-tuJYmZW5n0 .mbr-section-btn {
  color: #000000;
}
.cid-vaEdoLXZdH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vaEdoLXZdH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaEdoLXZdH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaEdoLXZdH .row {
  justify-content: flex-start;
}
.cid-vaEdoLXZdH .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaEdoLXZdH .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaEdoLXZdH .mbr-section-subtitle,
.cid-vaEdoLXZdH .mbr-section-btn {
  color: #000000;
}
.cid-vaEdSYDdWs {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-vaEdSYDdWs .container {
    max-width: 1200px;
  }
}
.cid-vaEdSYDdWs .row {
  justify-content: space-between;
}
.cid-vaEdSYDdWs .text-wrapper {
  border-left: 4px solid #be1622;
  padding-left: 2rem;
}
.cid-vaEdSYDdWs .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaEdSYDdWs .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaEdSYDdWs .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaEdSYDdWs .image-wrap {
  overflow: hidden;
}
.cid-vaEdSYDdWs .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaEdSYDdWs .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaEdSYDdWs .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaEdSYDdWs .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaEdSYDdWs .card-text,
.cid-vaEdSYDdWs .mbr-section-btn,
.cid-vaEdSYDdWs .social-row {
  color: #353535;
}
.cid-vaEdSYDdWs .card1-text {
  color: #353535;
}
.cid-vaEdSYDdWs .card-title,
.cid-vaEdSYDdWs .social-row {
  color: #000000;
}
.cid-vaEdSYDdWs .mbr-section-title {
  color: #be1622;
}
.cid-vaEdSYDdWs .card1-text,
.cid-vaEdSYDdWs .mbr-section-btn {
  color: #000000;
}
.cid-vaEekmwUHU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vaEekmwUHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaEekmwUHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaEekmwUHU .row {
  justify-content: flex-start;
}
.cid-vaEekmwUHU .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaEekmwUHU .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaEekmwUHU .mbr-section-subtitle,
.cid-vaEekmwUHU .mbr-section-btn {
  color: #000000;
}
.cid-vaF5uLyGrG {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaF5uLyGrG .container {
    max-width: 1200px;
  }
}
.cid-vaF5uLyGrG .row {
  justify-content: space-between;
}
.cid-vaF5uLyGrG .text-wrapper {
  border-left: 4px solid #1e69aa;
  padding-left: 2rem;
}
.cid-vaF5uLyGrG .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaF5uLyGrG .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaF5uLyGrG .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaF5uLyGrG .image-wrap {
  overflow: hidden;
}
.cid-vaF5uLyGrG .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaF5uLyGrG .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaF5uLyGrG .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaF5uLyGrG .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaF5uLyGrG .card-text,
.cid-vaF5uLyGrG .mbr-section-btn,
.cid-vaF5uLyGrG .social-row {
  color: #353535;
}
.cid-vaF5uLyGrG .card1-text {
  color: #353535;
}
.cid-vaF5uLyGrG .card-title,
.cid-vaF5uLyGrG .social-row {
  color: #000000;
}
.cid-vaF5uLyGrG .mbr-section-title {
  color: #1e69aa;
}
.cid-vaF5uLyGrG .card1-text,
.cid-vaF5uLyGrG .mbr-section-btn {
  color: #000000;
}
.cid-vaF5UOU8VC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vaF5UOU8VC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaF5UOU8VC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaF5UOU8VC .row {
  justify-content: flex-start;
}
.cid-vaF5UOU8VC .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaF5UOU8VC .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaF5UOU8VC .mbr-section-subtitle,
.cid-vaF5UOU8VC .mbr-section-btn {
  color: #000000;
}
.cid-vaFbHGaeYB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-vaFbHGaeYB .container {
    max-width: 1200px;
  }
}
.cid-vaFbHGaeYB .row {
  justify-content: space-between;
}
.cid-vaFbHGaeYB .text-wrapper {
  border-left: 4px solid #f9da1b;
  padding-left: 2rem;
}
.cid-vaFbHGaeYB .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaFbHGaeYB .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaFbHGaeYB .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaFbHGaeYB .image-wrap {
  overflow: hidden;
}
.cid-vaFbHGaeYB .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaFbHGaeYB .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaFbHGaeYB .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaFbHGaeYB .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaFbHGaeYB .card-text,
.cid-vaFbHGaeYB .mbr-section-btn,
.cid-vaFbHGaeYB .social-row {
  color: #353535;
}
.cid-vaFbHGaeYB .card1-text {
  color: #353535;
}
.cid-vaFbHGaeYB .card-title,
.cid-vaFbHGaeYB .social-row {
  color: #000000;
}
.cid-vaFbHGaeYB .mbr-section-title {
  color: #f9da1b;
}
.cid-vaFbHGaeYB .card1-text,
.cid-vaFbHGaeYB .mbr-section-btn {
  color: #000000;
}
.cid-tuK3Ho4Ntw {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuK3Ho4Ntw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuK3Ho4Ntw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuK3Ho4Ntw .row {
  justify-content: flex-start;
}
.cid-tuK3Ho4Ntw .mbr-section-title {
  color: #f9da1b;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tuK3Ho4Ntw .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tuK3Ho4Ntw .mbr-section-subtitle,
.cid-tuK3Ho4Ntw .mbr-section-btn {
  color: #000000;
}
.cid-vaFngNbhto {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaFngNbhto .container {
    max-width: 1200px;
  }
}
.cid-vaFngNbhto .row {
  justify-content: space-between;
}
.cid-vaFngNbhto .text-wrapper {
  border-left: 4px solid #00983a;
  padding-left: 2rem;
}
.cid-vaFngNbhto .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaFngNbhto .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaFngNbhto .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaFngNbhto .image-wrap {
  overflow: hidden;
}
.cid-vaFngNbhto .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaFngNbhto .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaFngNbhto .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaFngNbhto .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaFngNbhto .card-text,
.cid-vaFngNbhto .mbr-section-btn,
.cid-vaFngNbhto .social-row {
  color: #353535;
}
.cid-vaFngNbhto .card1-text {
  color: #353535;
}
.cid-vaFngNbhto .card-title,
.cid-vaFngNbhto .social-row {
  color: #000000;
}
.cid-vaFngNbhto .mbr-section-title {
  color: #00983a;
}
.cid-vaFngNbhto .card1-text,
.cid-vaFngNbhto .mbr-section-btn {
  color: #000000;
}
.cid-tuK4cSasC0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tuK4cSasC0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuK4cSasC0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuK4cSasC0 .row {
  justify-content: flex-start;
}
.cid-tuK4cSasC0 .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tuK4cSasC0 .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tuK4cSasC0 .mbr-section-subtitle,
.cid-tuK4cSasC0 .mbr-section-btn {
  color: #000000;
}
.cid-vaFlr7XKMl {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-vaFlr7XKMl .container {
    max-width: 1200px;
  }
}
.cid-vaFlr7XKMl .row {
  justify-content: space-between;
}
.cid-vaFlr7XKMl .text-wrapper {
  border-left: 4px solid #be1622;
  padding-left: 2rem;
}
.cid-vaFlr7XKMl .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaFlr7XKMl .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaFlr7XKMl .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaFlr7XKMl .image-wrap {
  overflow: hidden;
}
.cid-vaFlr7XKMl .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaFlr7XKMl .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaFlr7XKMl .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaFlr7XKMl .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaFlr7XKMl .card-text,
.cid-vaFlr7XKMl .mbr-section-btn,
.cid-vaFlr7XKMl .social-row {
  color: #353535;
}
.cid-vaFlr7XKMl .card1-text {
  color: #353535;
}
.cid-vaFlr7XKMl .card-title,
.cid-vaFlr7XKMl .social-row {
  color: #000000;
}
.cid-vaFlr7XKMl .mbr-section-title {
  color: #be1622;
}
.cid-vaFlr7XKMl .card1-text,
.cid-vaFlr7XKMl .mbr-section-btn {
  color: #000000;
}
.cid-vaEhgzlVVy {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vaEhgzlVVy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaEhgzlVVy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaEhgzlVVy .row {
  justify-content: flex-start;
}
.cid-vaEhgzlVVy .mbr-section-title {
  color: #be1622;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaEhgzlVVy .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaEhgzlVVy .mbr-section-subtitle,
.cid-vaEhgzlVVy .mbr-section-btn {
  color: #000000;
}
.cid-uPrNMW8JQz {
  background-color: #1e69aa;
}
.cid-uPrNMW8JQz .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrNMW8JQz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrNMW8JQz .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrNMW8JQz img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrNMW8JQz .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrNMW8JQz .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNMW8JQz .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNMW8JQz .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tv76Peoy0p {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tv76Peoy0p .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tv76Peoy0p .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tv76Peoy0p .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tv76Peoy0p .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tv76Peoy0p .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tv76Peoy0p nav.navbar {
  position: fixed;
}
.cid-tv76Peoy0p .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tv76Peoy0p .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tv76Peoy0p .nav-item {
    border: 0;
  }
}
.cid-tv76Peoy0p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tv76Peoy0p .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tv76Peoy0p .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tv76Peoy0p .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tv76Peoy0p .title-wrap:hover span {
  color: white;
}
.cid-tv76Peoy0p .title-wrap:hover:before {
  height: 100%;
}
.cid-tv76Peoy0p .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-tv76Peoy0p .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tv76Peoy0p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tv76Peoy0p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tv76Peoy0p .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tv76Peoy0p .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tv76Peoy0p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tv76Peoy0p .nav-link {
  position: relative;
}
.cid-tv76Peoy0p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tv76Peoy0p .container {
    flex-wrap: nowrap;
  }
}
.cid-tv76Peoy0p .dropdown-menu,
.cid-tv76Peoy0p .navbar.opened {
  background: #ffffff !important;
}
.cid-tv76Peoy0p .nav-item:focus,
.cid-tv76Peoy0p .nav-link:focus {
  outline: none;
}
.cid-tv76Peoy0p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tv76Peoy0p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tv76Peoy0p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tv76Peoy0p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tv76Peoy0p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tv76Peoy0p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tv76Peoy0p .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tv76Peoy0p .navbar.opened {
  transition: all 0.3s;
}
.cid-tv76Peoy0p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tv76Peoy0p .navbar .navbar-logo img {
  width: auto;
}
.cid-tv76Peoy0p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tv76Peoy0p .navbar.collapsed {
  justify-content: center;
}
.cid-tv76Peoy0p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tv76Peoy0p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tv76Peoy0p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tv76Peoy0p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tv76Peoy0p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tv76Peoy0p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tv76Peoy0p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tv76Peoy0p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tv76Peoy0p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tv76Peoy0p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tv76Peoy0p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tv76Peoy0p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tv76Peoy0p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tv76Peoy0p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tv76Peoy0p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tv76Peoy0p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tv76Peoy0p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tv76Peoy0p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tv76Peoy0p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tv76Peoy0p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tv76Peoy0p .navbar.navbar-short {
  min-height: 60px;
}
.cid-tv76Peoy0p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tv76Peoy0p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tv76Peoy0p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tv76Peoy0p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tv76Peoy0p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tv76Peoy0p .dropdown-item.active,
.cid-tv76Peoy0p .dropdown-item:active {
  background-color: transparent;
}
.cid-tv76Peoy0p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tv76Peoy0p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tv76Peoy0p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tv76Peoy0p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tv76Peoy0p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tv76Peoy0p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tv76Peoy0p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tv76Peoy0p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tv76Peoy0p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tv76Peoy0p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tv76Peoy0p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tv76Peoy0p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv76Peoy0p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv76Peoy0p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tv76Peoy0p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv76Peoy0p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tv76Peoy0p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tv76Peoy0p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv76Peoy0p .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tv76Peoy0p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tv76Peoy0p .navbar {
    height: 70px;
  }
  .cid-tv76Peoy0p .navbar.opened {
    height: auto;
  }
  .cid-tv76Peoy0p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tv76Peoy0p .navbar-caption-wrap,
.cid-tv76Peoy0p .title-wrap {
  color: #272727;
}
.cid-tv76Peoy0p .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tv77xRs49c {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tv77xRs49c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv77xRs49c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv77xRs49c .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tv77xRs49c .container {
    padding: 0 50px !important;
  }
}
.cid-tv77xRs49c .row {
  align-items: stretch;
}
.cid-tv77xRs49c .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tv77xRs49c .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tv77xRs49c .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tv77xRs49c .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tv77xRs49c .card-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tv77xRs49c .card-title {
    text-align: center;
  }
}
.cid-tv77xRs49c .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tv77xRs49c .mbr-text {
    text-align: center;
  }
}
.cid-tv77xRs49c .col-img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-tv77xRs49c .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tv77xRs49c .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tv77xRs49c .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tv77xRs49c .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tv77xRs49c .image-wrapper {
    padding-right: 0;
  }
}
.cid-tv77xRs49c .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #f9da1b;
  border-radius: 100%;
  height: 75%;
  width: 100%;
}
.cid-tv77xRs49c .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tv77xRs49c .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tv77xRs49c .mbr-text,
.cid-tv77xRs49c .mbr-section-btn {
  color: #1e69aa;
}
.cid-tv7a315Nt4 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tv7a315Nt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7a315Nt4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7a315Nt4 .row {
  justify-content: flex-start;
}
.cid-tv7a315Nt4 .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tv7a315Nt4 .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tv7a315Nt4 .mbr-section-subtitle,
.cid-tv7a315Nt4 .mbr-section-btn {
  color: #000000;
}
.cid-tv7a2GKR5H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tv7a2GKR5H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7a2GKR5H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7a2GKR5H .container-fluid {
  padding: 0;
}
.cid-tv7a2GKR5H .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tv7a2GKR5H .row {
    padding: 0 12px;
  }
}
.cid-tv7a2GKR5H .row {
  justify-content: center;
}
.cid-tv7a2GKR5H .container-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 0;
}
.cid-tv7a2GKR5H .container-wrapper .cont-wrap {
  width: 100%;
  height: 360px;
  background-color: #00983a;
}
@media (max-width: 992px) {
  .cid-tv7a2GKR5H .container-wrapper .cont-wrap {
    display: none;
  }
}
.cid-tv7a2GKR5H .list-wrapper {
  padding: 0;
}
.cid-tv7a2GKR5H .title-wrapper {
  padding: 0 15rem 0 6rem;
}
.cid-tv7a2GKR5H .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-tv7a2GKR5H .title-wrapper {
    padding: 0 1rem;
  }
}
.cid-tv7a2GKR5H .panel-group {
  padding: 0 15rem 0 6rem;
}
@media (max-width: 992px) {
  .cid-tv7a2GKR5H .panel-group {
    padding: 0 1rem;
  }
}
.cid-tv7a2GKR5H .panel-group .card {
  border-bottom: 1px solid #00983a;
  border-radius: 0;
}
.cid-tv7a2GKR5H .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 29px 0;
}
.cid-tv7a2GKR5H .panel-group .card .card-header .panel-title {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
.cid-tv7a2GKR5H .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0 0 0 30px;
  transition: all .3s ease;
}
.cid-tv7a2GKR5H .panel-group .card .card-header .panel-title .mbr-iconfont {
  opacity: .5;
  transition: all .3s ease;
}
.cid-tv7a2GKR5H .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 50px 50px;
}
.cid-tv7a2GKR5H .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: 1.0;
}
.cid-tv7a2GKR5H .panel-title:not(.collapsed) .panel-title-edit {
  color: #1e69aa;
}
.cid-tv7a2GKR5H .panel-title:not(.collapsed) .mbr-iconfont {
  color: #1e69aa;
  opacity: 1;
}
.cid-tv7a2GKR5H .mbr-section-title {
  color: #00983a;
}
.cid-tv7a2GKR5H .panel-title-edit,
.cid-tv7a2GKR5H .mbr-iconfont {
  color: #000000;
}
.cid-tv7a2GKR5H .panel-text {
  color: #000000;
}
.cid-uPrNRpfuYa {
  background-color: #1e69aa;
}
.cid-uPrNRpfuYa .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrNRpfuYa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrNRpfuYa .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrNRpfuYa img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrNRpfuYa .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrNRpfuYa .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNRpfuYa .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNRpfuYa .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tv7bBVOjrA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tv7bBVOjrA .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tv7bBVOjrA .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tv7bBVOjrA .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tv7bBVOjrA .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tv7bBVOjrA .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tv7bBVOjrA nav.navbar {
  position: fixed;
}
.cid-tv7bBVOjrA .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tv7bBVOjrA .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tv7bBVOjrA .nav-item {
    border: 0;
  }
}
.cid-tv7bBVOjrA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tv7bBVOjrA .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tv7bBVOjrA .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tv7bBVOjrA .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tv7bBVOjrA .title-wrap:hover span {
  color: white;
}
.cid-tv7bBVOjrA .title-wrap:hover:before {
  height: 100%;
}
.cid-tv7bBVOjrA .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-tv7bBVOjrA .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tv7bBVOjrA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tv7bBVOjrA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tv7bBVOjrA .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tv7bBVOjrA .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tv7bBVOjrA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tv7bBVOjrA .nav-link {
  position: relative;
}
.cid-tv7bBVOjrA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tv7bBVOjrA .container {
    flex-wrap: nowrap;
  }
}
.cid-tv7bBVOjrA .dropdown-menu,
.cid-tv7bBVOjrA .navbar.opened {
  background: #ffffff !important;
}
.cid-tv7bBVOjrA .nav-item:focus,
.cid-tv7bBVOjrA .nav-link:focus {
  outline: none;
}
.cid-tv7bBVOjrA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tv7bBVOjrA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tv7bBVOjrA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tv7bBVOjrA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tv7bBVOjrA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tv7bBVOjrA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tv7bBVOjrA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tv7bBVOjrA .navbar.opened {
  transition: all 0.3s;
}
.cid-tv7bBVOjrA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tv7bBVOjrA .navbar .navbar-logo img {
  width: auto;
}
.cid-tv7bBVOjrA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tv7bBVOjrA .navbar.collapsed {
  justify-content: center;
}
.cid-tv7bBVOjrA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tv7bBVOjrA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tv7bBVOjrA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tv7bBVOjrA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tv7bBVOjrA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tv7bBVOjrA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tv7bBVOjrA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tv7bBVOjrA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tv7bBVOjrA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tv7bBVOjrA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tv7bBVOjrA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tv7bBVOjrA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tv7bBVOjrA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tv7bBVOjrA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tv7bBVOjrA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tv7bBVOjrA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tv7bBVOjrA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tv7bBVOjrA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tv7bBVOjrA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tv7bBVOjrA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tv7bBVOjrA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tv7bBVOjrA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tv7bBVOjrA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tv7bBVOjrA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tv7bBVOjrA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tv7bBVOjrA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tv7bBVOjrA .dropdown-item.active,
.cid-tv7bBVOjrA .dropdown-item:active {
  background-color: transparent;
}
.cid-tv7bBVOjrA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tv7bBVOjrA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tv7bBVOjrA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tv7bBVOjrA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tv7bBVOjrA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tv7bBVOjrA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tv7bBVOjrA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tv7bBVOjrA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tv7bBVOjrA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tv7bBVOjrA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tv7bBVOjrA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tv7bBVOjrA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv7bBVOjrA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv7bBVOjrA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tv7bBVOjrA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv7bBVOjrA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tv7bBVOjrA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tv7bBVOjrA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv7bBVOjrA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tv7bBVOjrA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tv7bBVOjrA .navbar {
    height: 70px;
  }
  .cid-tv7bBVOjrA .navbar.opened {
    height: auto;
  }
  .cid-tv7bBVOjrA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tv7bBVOjrA .navbar-caption-wrap,
.cid-tv7bBVOjrA .title-wrap {
  color: #272727;
}
.cid-tv7bBVOjrA .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tv7bBWisZ6 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tv7bBWisZ6 .container {
    max-width: 1200px;
  }
}
.cid-tv7bBWisZ6 .row {
  justify-content: space-between;
}
.cid-tv7bBWisZ6 .text-wrapper {
  border-left: 4px solid #00983a;
  padding-left: 2rem;
}
.cid-tv7bBWisZ6 .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tv7bBWisZ6 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tv7bBWisZ6 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tv7bBWisZ6 .image-wrap {
  overflow: hidden;
}
.cid-tv7bBWisZ6 .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tv7bBWisZ6 .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tv7bBWisZ6 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tv7bBWisZ6 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tv7bBWisZ6 .card-text,
.cid-tv7bBWisZ6 .mbr-section-btn,
.cid-tv7bBWisZ6 .social-row {
  color: #353535;
}
.cid-tv7bBWisZ6 .card1-text {
  color: #353535;
}
.cid-tv7bBWisZ6 .card-title,
.cid-tv7bBWisZ6 .social-row {
  color: #000000;
}
.cid-tv7bBWisZ6 .mbr-section-title {
  color: #00983a;
}
.cid-tv7bBWisZ6 .card1-text,
.cid-tv7bBWisZ6 .mbr-section-btn {
  color: #000000;
}
.cid-vaE18qU9BM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-vaE18qU9BM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaE18qU9BM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaE18qU9BM .row {
  justify-content: flex-start;
}
.cid-vaE18qU9BM .mbr-section-title {
  color: #00983a;
  margin-bottom: 0 !important;
}
.cid-vaE18qU9BM .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaE18qU9BM .mbr-section-subtitle,
.cid-vaE18qU9BM .mbr-section-btn {
  color: #000000;
}
.cid-vaDZD5puBU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaDZD5puBU .container {
    max-width: 1200px;
  }
}
.cid-vaDZD5puBU .row {
  justify-content: space-between;
}
.cid-vaDZD5puBU .text-wrapper {
  border-left: 4px solid #00983a;
  padding-left: 2rem;
}
.cid-vaDZD5puBU .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaDZD5puBU .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaDZD5puBU .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaDZD5puBU .image-wrap {
  overflow: hidden;
}
.cid-vaDZD5puBU .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaDZD5puBU .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaDZD5puBU .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaDZD5puBU .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaDZD5puBU .card-text,
.cid-vaDZD5puBU .mbr-section-btn,
.cid-vaDZD5puBU .social-row {
  color: #353535;
}
.cid-vaDZD5puBU .card1-text {
  color: #353535;
}
.cid-vaDZD5puBU .card-title,
.cid-vaDZD5puBU .social-row {
  color: #000000;
}
.cid-vaDZD5puBU .mbr-section-title {
  color: #00983a;
}
.cid-vaDZD5puBU .card1-text,
.cid-vaDZD5puBU .mbr-section-btn {
  color: #000000;
}
.cid-vaDPjqSTxU {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-vaDPjqSTxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaDPjqSTxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaDPjqSTxU .row {
  justify-content: flex-start;
}
.cid-vaDPjqSTxU .mbr-section-title {
  color: #00983a;
  margin-bottom: 0 !important;
}
.cid-vaDPjqSTxU .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaDPjqSTxU .mbr-section-subtitle,
.cid-vaDPjqSTxU .mbr-section-btn {
  color: #000000;
}
.cid-vaE0aTQbKW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-vaE0aTQbKW .container {
    max-width: 1200px;
  }
}
.cid-vaE0aTQbKW .row {
  justify-content: space-between;
}
.cid-vaE0aTQbKW .text-wrapper {
  border-left: 4px solid #be1622;
  padding-left: 2rem;
}
.cid-vaE0aTQbKW .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaE0aTQbKW .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaE0aTQbKW .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaE0aTQbKW .image-wrap {
  overflow: hidden;
}
.cid-vaE0aTQbKW .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaE0aTQbKW .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaE0aTQbKW .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaE0aTQbKW .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaE0aTQbKW .card-text,
.cid-vaE0aTQbKW .mbr-section-btn,
.cid-vaE0aTQbKW .social-row {
  color: #353535;
}
.cid-vaE0aTQbKW .card1-text {
  color: #353535;
}
.cid-vaE0aTQbKW .card-title,
.cid-vaE0aTQbKW .social-row {
  color: #000000;
}
.cid-vaE0aTQbKW .mbr-section-title {
  color: #be1622;
}
.cid-vaE0aTQbKW .card1-text,
.cid-vaE0aTQbKW .mbr-section-btn {
  color: #000000;
}
.cid-vaF9of3C4Q {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vaF9of3C4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaF9of3C4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaF9of3C4Q .row {
  justify-content: flex-start;
}
.cid-vaF9of3C4Q .mbr-section-title {
  color: #00983a;
  margin-bottom: 0 !important;
}
.cid-vaF9of3C4Q .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaF9of3C4Q .mbr-section-subtitle,
.cid-vaF9of3C4Q .mbr-section-btn {
  color: #000000;
}
.cid-vaDXvjMYjT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaDXvjMYjT .container {
    max-width: 1200px;
  }
}
.cid-vaDXvjMYjT .row {
  justify-content: space-between;
}
.cid-vaDXvjMYjT .text-wrapper {
  border-left: 4px solid #1e69aa;
  padding-left: 2rem;
}
.cid-vaDXvjMYjT .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaDXvjMYjT .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #1e69aa;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaDXvjMYjT .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaDXvjMYjT .image-wrap {
  overflow: hidden;
}
.cid-vaDXvjMYjT .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaDXvjMYjT .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaDXvjMYjT .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaDXvjMYjT .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaDXvjMYjT .card-text,
.cid-vaDXvjMYjT .mbr-section-btn,
.cid-vaDXvjMYjT .social-row {
  color: #353535;
}
.cid-vaDXvjMYjT .card1-text {
  color: #353535;
}
.cid-vaDXvjMYjT .card-title,
.cid-vaDXvjMYjT .social-row {
  color: #000000;
}
.cid-vaDXvjMYjT .mbr-section-title {
  color: #1e69aa;
}
.cid-vaDXvjMYjT .card1-text,
.cid-vaDXvjMYjT .mbr-section-btn {
  color: #000000;
}
.cid-vaDY7mMM2c {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-vaDY7mMM2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaDY7mMM2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaDY7mMM2c .row {
  justify-content: flex-start;
}
.cid-vaDY7mMM2c .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaDY7mMM2c .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaDY7mMM2c .mbr-section-subtitle,
.cid-vaDY7mMM2c .mbr-section-btn {
  color: #000000;
}
.cid-vaDH4z00MV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaDH4z00MV .container {
    max-width: 1200px;
  }
}
.cid-vaDH4z00MV .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-vaDH4z00MV .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-vaDH4z00MV .row {
  justify-content: center;
}
.cid-vaDH4z00MV .card-text {
  color: #000000;
}
.cid-vaDH4z00MV .card-title,
.cid-vaDH4z00MV .iconfont-wrapper {
  color: #1e69aa;
}
.cid-vaDH4z00MV text {
  color: #000000;
}
.cid-vaDH4z00MV .title {
  color: #1e69aa;
}
.cid-vaDQV6AfHb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaDQV6AfHb .container {
    max-width: 1200px;
  }
}
.cid-vaDQV6AfHb .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-vaDQV6AfHb .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-vaDQV6AfHb .row {
  justify-content: center;
}
.cid-vaDQV6AfHb .card-text {
  color: #000000;
}
.cid-vaDQV6AfHb .card-title,
.cid-vaDQV6AfHb .iconfont-wrapper {
  color: #1e69aa;
}
.cid-vaDQV6AfHb text {
  color: #000000;
}
.cid-vaDQV6AfHb .title {
  color: #1e69aa;
}
.cid-vaDHcvlolq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-vaDHcvlolq .container {
    max-width: 1200px;
  }
}
.cid-vaDHcvlolq .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-vaDHcvlolq .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-vaDHcvlolq .row {
  justify-content: center;
}
.cid-vaDHcvlolq .card-text {
  color: #000000;
}
.cid-vaDHcvlolq .card-title,
.cid-vaDHcvlolq .iconfont-wrapper {
  color: #1e69aa;
}
.cid-vaDHcvlolq text {
  color: #000000;
}
.cid-vaDHcvlolq .title {
  color: #000000;
}
.cid-vaE4ANshBx {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-vaE4ANshBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaE4ANshBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaE4ANshBx .row {
  justify-content: flex-start;
}
.cid-vaE4ANshBx .mbr-section-title {
  color: #1e69aa;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaE4ANshBx .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaE4ANshBx .mbr-section-subtitle,
.cid-vaE4ANshBx .mbr-section-btn {
  color: #000000;
}
.cid-vaE5kPa1ud {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
@media (min-width: 1400px) {
  .cid-vaE5kPa1ud .container {
    max-width: 1200px;
  }
}
.cid-vaE5kPa1ud .row {
  justify-content: space-between;
}
.cid-vaE5kPa1ud .text-wrapper {
  border-left: 4px solid #f9da1b;
  padding-left: 2rem;
}
.cid-vaE5kPa1ud .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-vaE5kPa1ud .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #1e69aa;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vaE5kPa1ud .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vaE5kPa1ud .image-wrap {
  overflow: hidden;
}
.cid-vaE5kPa1ud .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-vaE5kPa1ud .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-vaE5kPa1ud .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vaE5kPa1ud .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-vaE5kPa1ud .card-text,
.cid-vaE5kPa1ud .mbr-section-btn,
.cid-vaE5kPa1ud .social-row {
  color: #353535;
}
.cid-vaE5kPa1ud .card1-text {
  color: #353535;
}
.cid-vaE5kPa1ud .card-title,
.cid-vaE5kPa1ud .social-row {
  color: #000000;
}
.cid-vaE5kPa1ud .mbr-section-title {
  color: #f9da1b;
}
.cid-vaE5kPa1ud .card1-text,
.cid-vaE5kPa1ud .mbr-section-btn {
  color: #000000;
}
.cid-vaE5IJ0STu {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vaE5IJ0STu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaE5IJ0STu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaE5IJ0STu .row {
  justify-content: flex-start;
}
.cid-vaE5IJ0STu .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-vaE5IJ0STu .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-vaE5IJ0STu .mbr-section-subtitle,
.cid-vaE5IJ0STu .mbr-section-btn {
  color: #000000;
}
.cid-uPrNVZuAnv {
  background-color: #1e69aa;
}
.cid-uPrNVZuAnv .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrNVZuAnv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrNVZuAnv .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrNVZuAnv img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrNVZuAnv .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrNVZuAnv .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNVZuAnv .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrNVZuAnv .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tv7ovqIU1A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tv7ovqIU1A .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tv7ovqIU1A .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tv7ovqIU1A .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tv7ovqIU1A .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tv7ovqIU1A .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tv7ovqIU1A nav.navbar {
  position: fixed;
}
.cid-tv7ovqIU1A .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tv7ovqIU1A .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tv7ovqIU1A .nav-item {
    border: 0;
  }
}
.cid-tv7ovqIU1A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tv7ovqIU1A .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tv7ovqIU1A .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tv7ovqIU1A .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tv7ovqIU1A .title-wrap:hover span {
  color: white;
}
.cid-tv7ovqIU1A .title-wrap:hover:before {
  height: 100%;
}
.cid-tv7ovqIU1A .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-tv7ovqIU1A .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tv7ovqIU1A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tv7ovqIU1A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tv7ovqIU1A .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tv7ovqIU1A .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tv7ovqIU1A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tv7ovqIU1A .nav-link {
  position: relative;
}
.cid-tv7ovqIU1A .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tv7ovqIU1A .container {
    flex-wrap: nowrap;
  }
}
.cid-tv7ovqIU1A .dropdown-menu,
.cid-tv7ovqIU1A .navbar.opened {
  background: #ffffff !important;
}
.cid-tv7ovqIU1A .nav-item:focus,
.cid-tv7ovqIU1A .nav-link:focus {
  outline: none;
}
.cid-tv7ovqIU1A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tv7ovqIU1A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tv7ovqIU1A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tv7ovqIU1A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tv7ovqIU1A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tv7ovqIU1A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tv7ovqIU1A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tv7ovqIU1A .navbar.opened {
  transition: all 0.3s;
}
.cid-tv7ovqIU1A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tv7ovqIU1A .navbar .navbar-logo img {
  width: auto;
}
.cid-tv7ovqIU1A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tv7ovqIU1A .navbar.collapsed {
  justify-content: center;
}
.cid-tv7ovqIU1A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tv7ovqIU1A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tv7ovqIU1A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tv7ovqIU1A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tv7ovqIU1A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tv7ovqIU1A .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tv7ovqIU1A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tv7ovqIU1A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tv7ovqIU1A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tv7ovqIU1A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tv7ovqIU1A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tv7ovqIU1A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tv7ovqIU1A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tv7ovqIU1A .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tv7ovqIU1A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tv7ovqIU1A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tv7ovqIU1A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tv7ovqIU1A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tv7ovqIU1A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tv7ovqIU1A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tv7ovqIU1A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tv7ovqIU1A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tv7ovqIU1A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tv7ovqIU1A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tv7ovqIU1A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tv7ovqIU1A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tv7ovqIU1A .dropdown-item.active,
.cid-tv7ovqIU1A .dropdown-item:active {
  background-color: transparent;
}
.cid-tv7ovqIU1A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tv7ovqIU1A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tv7ovqIU1A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tv7ovqIU1A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tv7ovqIU1A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tv7ovqIU1A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tv7ovqIU1A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tv7ovqIU1A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tv7ovqIU1A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tv7ovqIU1A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tv7ovqIU1A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tv7ovqIU1A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv7ovqIU1A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv7ovqIU1A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tv7ovqIU1A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv7ovqIU1A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tv7ovqIU1A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tv7ovqIU1A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv7ovqIU1A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tv7ovqIU1A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tv7ovqIU1A .navbar {
    height: 70px;
  }
  .cid-tv7ovqIU1A .navbar.opened {
    height: auto;
  }
  .cid-tv7ovqIU1A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tv7ovqIU1A .navbar-caption-wrap,
.cid-tv7ovqIU1A .title-wrap {
  color: #272727;
}
.cid-tv7ovqIU1A .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tv7ovrhqwJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tv7ovrhqwJ .container {
    max-width: 1200px;
  }
}
.cid-tv7ovrhqwJ .row {
  justify-content: space-between;
}
.cid-tv7ovrhqwJ .text-wrapper {
  border-left: 4px solid #00983a;
  padding-left: 2rem;
}
.cid-tv7ovrhqwJ .mbr-main-subtitle {
  background: #1e69aa;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tv7ovrhqwJ .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #00983a;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tv7ovrhqwJ .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tv7ovrhqwJ .image-wrap {
  overflow: hidden;
}
.cid-tv7ovrhqwJ .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tv7ovrhqwJ .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tv7ovrhqwJ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tv7ovrhqwJ .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tv7ovrhqwJ .card-text,
.cid-tv7ovrhqwJ .mbr-section-btn,
.cid-tv7ovrhqwJ .social-row {
  color: #353535;
}
.cid-tv7ovrhqwJ .card1-text {
  color: #353535;
}
.cid-tv7ovrhqwJ .card-title,
.cid-tv7ovrhqwJ .social-row {
  color: #000000;
}
.cid-tv7ovrhqwJ .mbr-section-title {
  color: #00983a;
}
.cid-tv7ovrhqwJ .card1-text,
.cid-tv7ovrhqwJ .mbr-section-btn {
  color: #000000;
}
.cid-tv7p0VdZSu {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tv7p0VdZSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7p0VdZSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7p0VdZSu .row {
  justify-content: flex-start;
}
.cid-tv7p0VdZSu .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tv7p0VdZSu .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tv7p0VdZSu .mbr-section-subtitle,
.cid-tv7p0VdZSu .mbr-section-btn {
  color: #000000;
}
.cid-tv7pmdj3fA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tv7pmdj3fA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7pmdj3fA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7pmdj3fA .main-wrap {
  display: grid;
  max-width: 80%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tv7pmdj3fA .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
@media (max-width: 575px) {
  .cid-tv7pmdj3fA .main-wrap {
    max-width: 100%;
  }
}
.cid-tv7pmdj3fA .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tv7pmdj3fA .card-col {
    padding: 20px 0 0;
  }
}
.cid-tv7pmdj3fA .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-tv7pmdj3fA .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 90%;
  }
}
@media (max-width: 575px) {
  .cid-tv7pmdj3fA .card-wrapper {
    max-width: 70%;
  }
}
.cid-tv7pmdj3fA .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-tv7pmdj3fA .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-tv7pmdj3fA .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tv7pmdj3fA .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-tv7pmdj3fA .image-wrapper {
    max-width: 100%;
  }
}
.cid-tv7pmdj3fA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tv7pmdj3fA .mbr-text,
.cid-tv7pmdj3fA .mbr-section-btn {
  color: #000000;
}
.cid-tv7r4hLbWc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tv7r4hLbWc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7r4hLbWc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7r4hLbWc .main-wrap {
  display: grid;
  max-width: 80%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tv7r4hLbWc .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
@media (max-width: 575px) {
  .cid-tv7r4hLbWc .main-wrap {
    max-width: 100%;
  }
}
.cid-tv7r4hLbWc .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tv7r4hLbWc .card-col {
    padding: 20px 0 0;
  }
}
.cid-tv7r4hLbWc .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-tv7r4hLbWc .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-tv7r4hLbWc .card-wrapper {
    max-width: 100%;
  }
}
.cid-tv7r4hLbWc .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-tv7r4hLbWc .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-tv7r4hLbWc .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tv7r4hLbWc .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-tv7r4hLbWc .image-wrapper {
    max-width: 100%;
  }
}
.cid-tv7r4hLbWc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tv7r4hLbWc .mbr-text,
.cid-tv7r4hLbWc .mbr-section-btn {
  color: #000000;
}
.cid-tv7tomgMD7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tv7tomgMD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7tomgMD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7tomgMD7 .row {
  justify-content: flex-start;
}
.cid-tv7tomgMD7 .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tv7tomgMD7 .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tv7tomgMD7 .mbr-section-subtitle,
.cid-tv7tomgMD7 .mbr-section-btn {
  color: #000000;
}
.cid-tv7tpfEJWl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tv7tpfEJWl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7tpfEJWl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7tpfEJWl .row {
  justify-content: flex-start;
}
.cid-tv7tpfEJWl .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tv7tpfEJWl .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tv7tpfEJWl .mbr-section-subtitle,
.cid-tv7tpfEJWl .mbr-section-btn {
  color: #000000;
}
.cid-tv7w0Me7G1 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tv7w0Me7G1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv7w0Me7G1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv7w0Me7G1 .row {
  justify-content: flex-start;
}
.cid-tv7w0Me7G1 .mbr-section-title {
  color: #00983a;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tv7w0Me7G1 .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tv7w0Me7G1 .mbr-section-subtitle,
.cid-tv7w0Me7G1 .mbr-section-btn {
  color: #000000;
}
.cid-tv7vtFInwI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-tv7vtFInwI .mbr-text {
  color: #767676;
}
.cid-tv7vtFInwI .mbr-iconfont {
  color: #00983a !important;
  font-size: 3.5rem !important;
}
.cid-tv7vtFInwI .link {
  margin: 0;
  color: #00983a;
}
.cid-tv7vtFInwI .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-tv7vtFInwI .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-tv7vtFInwI .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tv7vtFInwI .card {
    margin-bottom: 3rem;
  }
}
.cid-tv7vtFInwI .mbr-text,
.cid-tv7vtFInwI .link {
  color: #000000;
  text-align: left;
}
.cid-tv7vtFInwI .card-title,
.cid-tv7vtFInwI .card-img {
  color: #00983a;
  text-align: left;
}
.cid-tv7xuOqJkn {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-tv7xuOqJkn .mbr-text {
  color: #767676;
}
.cid-tv7xuOqJkn .mbr-iconfont {
  color: #00983a !important;
  font-size: 3.5rem !important;
}
.cid-tv7xuOqJkn .link {
  margin: 0;
  color: #00983a;
}
.cid-tv7xuOqJkn .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-tv7xuOqJkn .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-tv7xuOqJkn .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tv7xuOqJkn .card {
    margin-bottom: 3rem;
  }
}
.cid-tv7xuOqJkn .mbr-text,
.cid-tv7xuOqJkn .link {
  color: #000000;
  text-align: left;
}
.cid-tv7xuOqJkn .card-title,
.cid-tv7xuOqJkn .card-img {
  color: #00983a;
  text-align: left;
}
.cid-uPrO00VxT7 {
  background-color: #1e69aa;
}
.cid-uPrO00VxT7 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrO00VxT7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrO00VxT7 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrO00VxT7 img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrO00VxT7 .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrO00VxT7 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrO00VxT7 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrO00VxT7 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tv7yX6qQni {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tv7yX6qQni .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tv7yX6qQni .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tv7yX6qQni .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tv7yX6qQni .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tv7yX6qQni .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tv7yX6qQni nav.navbar {
  position: fixed;
}
.cid-tv7yX6qQni .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tv7yX6qQni .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tv7yX6qQni .nav-item {
    border: 0;
  }
}
.cid-tv7yX6qQni .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tv7yX6qQni .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tv7yX6qQni .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tv7yX6qQni .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tv7yX6qQni .title-wrap:hover span {
  color: white;
}
.cid-tv7yX6qQni .title-wrap:hover:before {
  height: 100%;
}
.cid-tv7yX6qQni .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-tv7yX6qQni .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tv7yX6qQni .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tv7yX6qQni .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tv7yX6qQni .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tv7yX6qQni .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tv7yX6qQni .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tv7yX6qQni .nav-link {
  position: relative;
}
.cid-tv7yX6qQni .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tv7yX6qQni .container {
    flex-wrap: nowrap;
  }
}
.cid-tv7yX6qQni .dropdown-menu,
.cid-tv7yX6qQni .navbar.opened {
  background: #ffffff !important;
}
.cid-tv7yX6qQni .nav-item:focus,
.cid-tv7yX6qQni .nav-link:focus {
  outline: none;
}
.cid-tv7yX6qQni .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tv7yX6qQni .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tv7yX6qQni .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tv7yX6qQni .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tv7yX6qQni .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tv7yX6qQni .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tv7yX6qQni .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tv7yX6qQni .navbar.opened {
  transition: all 0.3s;
}
.cid-tv7yX6qQni .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tv7yX6qQni .navbar .navbar-logo img {
  width: auto;
}
.cid-tv7yX6qQni .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tv7yX6qQni .navbar.collapsed {
  justify-content: center;
}
.cid-tv7yX6qQni .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tv7yX6qQni .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tv7yX6qQni .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tv7yX6qQni .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tv7yX6qQni .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tv7yX6qQni .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tv7yX6qQni .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tv7yX6qQni .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tv7yX6qQni .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tv7yX6qQni .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tv7yX6qQni .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tv7yX6qQni .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tv7yX6qQni .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tv7yX6qQni .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tv7yX6qQni .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tv7yX6qQni .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tv7yX6qQni .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tv7yX6qQni .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tv7yX6qQni .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tv7yX6qQni .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tv7yX6qQni .navbar.navbar-short {
  min-height: 60px;
}
.cid-tv7yX6qQni .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tv7yX6qQni .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tv7yX6qQni .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tv7yX6qQni .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tv7yX6qQni .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tv7yX6qQni .dropdown-item.active,
.cid-tv7yX6qQni .dropdown-item:active {
  background-color: transparent;
}
.cid-tv7yX6qQni .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tv7yX6qQni .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tv7yX6qQni .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tv7yX6qQni .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tv7yX6qQni .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tv7yX6qQni .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tv7yX6qQni ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tv7yX6qQni .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tv7yX6qQni button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tv7yX6qQni button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tv7yX6qQni button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tv7yX6qQni button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv7yX6qQni button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tv7yX6qQni button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tv7yX6qQni nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv7yX6qQni nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tv7yX6qQni nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tv7yX6qQni nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tv7yX6qQni .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tv7yX6qQni a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tv7yX6qQni .navbar {
    height: 70px;
  }
  .cid-tv7yX6qQni .navbar.opened {
    height: auto;
  }
  .cid-tv7yX6qQni .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tv7yX6qQni .navbar-caption-wrap,
.cid-tv7yX6qQni .title-wrap {
  color: #272727;
}
.cid-tv7yX6qQni .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tv7zoJmOIK {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-tv7zoJmOIK p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tv7zoJmOIK .row {
    justify-content: flex-start !important;
  }
}
.cid-tv7zoJmOIK .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-tv7zoJmOIK .mbr-section-title {
  text-align: center;
  color: #1e69aa;
}
.cid-tv7zoJmOIK .mbr-section-subtitle {
  text-align: center;
  color: #1e69aa;
}
.cid-tv7zoJmOIK .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tv7zoJmOIK .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tv7zoJmOIK .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tv7zoJmOIK .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tv7zoJmOIK .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tv7zoJmOIK .card-title {
  color: #1e69aa;
}
.cid-tv7yXbdUHu {
  background-color: #1e69aa;
}
.cid-tv7yXbdUHu .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tv7yXbdUHu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tv7yXbdUHu .text-wrapper {
  padding: 2rem 1rem;
}
.cid-tv7yXbdUHu img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-tv7yXbdUHu .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-tv7yXbdUHu .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tv7yXbdUHu .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tv7yXbdUHu .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tvcHbOvqEO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvcHbOvqEO .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tvcHbOvqEO .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tvcHbOvqEO .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tvcHbOvqEO .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tvcHbOvqEO .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tvcHbOvqEO nav.navbar {
  position: fixed;
}
.cid-tvcHbOvqEO .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tvcHbOvqEO .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tvcHbOvqEO .nav-item {
    border: 0;
  }
}
.cid-tvcHbOvqEO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tvcHbOvqEO .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tvcHbOvqEO .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tvcHbOvqEO .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tvcHbOvqEO .title-wrap:hover span {
  color: white;
}
.cid-tvcHbOvqEO .title-wrap:hover:before {
  height: 100%;
}
.cid-tvcHbOvqEO .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-tvcHbOvqEO .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tvcHbOvqEO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvcHbOvqEO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvcHbOvqEO .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tvcHbOvqEO .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tvcHbOvqEO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvcHbOvqEO .nav-link {
  position: relative;
}
.cid-tvcHbOvqEO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvcHbOvqEO .container {
    flex-wrap: nowrap;
  }
}
.cid-tvcHbOvqEO .dropdown-menu,
.cid-tvcHbOvqEO .navbar.opened {
  background: #ffffff !important;
}
.cid-tvcHbOvqEO .nav-item:focus,
.cid-tvcHbOvqEO .nav-link:focus {
  outline: none;
}
.cid-tvcHbOvqEO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvcHbOvqEO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvcHbOvqEO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvcHbOvqEO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvcHbOvqEO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvcHbOvqEO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvcHbOvqEO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tvcHbOvqEO .navbar.opened {
  transition: all 0.3s;
}
.cid-tvcHbOvqEO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvcHbOvqEO .navbar .navbar-logo img {
  width: auto;
}
.cid-tvcHbOvqEO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvcHbOvqEO .navbar.collapsed {
  justify-content: center;
}
.cid-tvcHbOvqEO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvcHbOvqEO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvcHbOvqEO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tvcHbOvqEO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvcHbOvqEO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvcHbOvqEO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tvcHbOvqEO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvcHbOvqEO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvcHbOvqEO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvcHbOvqEO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvcHbOvqEO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvcHbOvqEO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvcHbOvqEO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvcHbOvqEO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tvcHbOvqEO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvcHbOvqEO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvcHbOvqEO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvcHbOvqEO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvcHbOvqEO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvcHbOvqEO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvcHbOvqEO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvcHbOvqEO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvcHbOvqEO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvcHbOvqEO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvcHbOvqEO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvcHbOvqEO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvcHbOvqEO .dropdown-item.active,
.cid-tvcHbOvqEO .dropdown-item:active {
  background-color: transparent;
}
.cid-tvcHbOvqEO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvcHbOvqEO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvcHbOvqEO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvcHbOvqEO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tvcHbOvqEO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvcHbOvqEO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvcHbOvqEO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvcHbOvqEO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvcHbOvqEO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvcHbOvqEO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tvcHbOvqEO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvcHbOvqEO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvcHbOvqEO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvcHbOvqEO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvcHbOvqEO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvcHbOvqEO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvcHbOvqEO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvcHbOvqEO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvcHbOvqEO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvcHbOvqEO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvcHbOvqEO .navbar {
    height: 70px;
  }
  .cid-tvcHbOvqEO .navbar.opened {
    height: auto;
  }
  .cid-tvcHbOvqEO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvcHbOvqEO .navbar-caption-wrap,
.cid-tvcHbOvqEO .title-wrap {
  color: #272727;
}
.cid-tvcHbOvqEO .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tvcHkJ9MUz {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvcHkJ9MUz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcHkJ9MUz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcHkJ9MUz .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tvcHkJ9MUz .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tvcHkJ9MUz .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tvcHkJ9MUz .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tvcHkJ9MUz .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tvcHkJ9MUz .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tvcHkJ9MUz .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tvcHkJ9MUz .mbr-section-title {
  color: #181817;
}
.cid-tvcHkJ9MUz .mbr-desc {
  color: #1e69aa;
}
.cid-tvcHkJ9MUz .mbr-text {
  color: #181817;
}
.cid-uPrOi5mbM2 {
  background-color: #1e69aa;
}
.cid-uPrOi5mbM2 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrOi5mbM2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrOi5mbM2 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrOi5mbM2 img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrOi5mbM2 .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrOi5mbM2 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrOi5mbM2 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrOi5mbM2 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tvcHqHDHs6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvcHqHDHs6 .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tvcHqHDHs6 .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tvcHqHDHs6 .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tvcHqHDHs6 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tvcHqHDHs6 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #1e69aa;
  z-index: -1;
}
.cid-tvcHqHDHs6 nav.navbar {
  position: fixed;
}
.cid-tvcHqHDHs6 .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tvcHqHDHs6 .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tvcHqHDHs6 .nav-item {
    border: 0;
  }
}
.cid-tvcHqHDHs6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tvcHqHDHs6 .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tvcHqHDHs6 .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tvcHqHDHs6 .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tvcHqHDHs6 .title-wrap:hover span {
  color: white;
}
.cid-tvcHqHDHs6 .title-wrap:hover:before {
  height: 100%;
}
.cid-tvcHqHDHs6 .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-tvcHqHDHs6 .dropdown-menu {
  padding: 0;
  border-top: 4px solid #1e69aa;
}
.cid-tvcHqHDHs6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvcHqHDHs6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvcHqHDHs6 .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tvcHqHDHs6 .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tvcHqHDHs6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvcHqHDHs6 .nav-link {
  position: relative;
}
.cid-tvcHqHDHs6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvcHqHDHs6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tvcHqHDHs6 .dropdown-menu,
.cid-tvcHqHDHs6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tvcHqHDHs6 .nav-item:focus,
.cid-tvcHqHDHs6 .nav-link:focus {
  outline: none;
}
.cid-tvcHqHDHs6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvcHqHDHs6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvcHqHDHs6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvcHqHDHs6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvcHqHDHs6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvcHqHDHs6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvcHqHDHs6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tvcHqHDHs6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tvcHqHDHs6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvcHqHDHs6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tvcHqHDHs6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvcHqHDHs6 .navbar.collapsed {
  justify-content: center;
}
.cid-tvcHqHDHs6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvcHqHDHs6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvcHqHDHs6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tvcHqHDHs6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvcHqHDHs6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvcHqHDHs6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tvcHqHDHs6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvcHqHDHs6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvcHqHDHs6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvcHqHDHs6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvcHqHDHs6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvcHqHDHs6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvcHqHDHs6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvcHqHDHs6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tvcHqHDHs6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvcHqHDHs6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvcHqHDHs6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvcHqHDHs6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvcHqHDHs6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvcHqHDHs6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvcHqHDHs6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvcHqHDHs6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvcHqHDHs6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvcHqHDHs6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvcHqHDHs6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvcHqHDHs6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvcHqHDHs6 .dropdown-item.active,
.cid-tvcHqHDHs6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tvcHqHDHs6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvcHqHDHs6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvcHqHDHs6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvcHqHDHs6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tvcHqHDHs6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvcHqHDHs6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvcHqHDHs6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvcHqHDHs6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvcHqHDHs6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvcHqHDHs6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1e69aa;
}
.cid-tvcHqHDHs6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvcHqHDHs6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvcHqHDHs6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvcHqHDHs6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvcHqHDHs6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvcHqHDHs6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvcHqHDHs6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvcHqHDHs6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvcHqHDHs6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvcHqHDHs6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvcHqHDHs6 .navbar {
    height: 70px;
  }
  .cid-tvcHqHDHs6 .navbar.opened {
    height: auto;
  }
  .cid-tvcHqHDHs6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvcHqHDHs6 .navbar-caption-wrap,
.cid-tvcHqHDHs6 .title-wrap {
  color: #272727;
}
.cid-tvcHqHDHs6 .navbar-logo {
  animation: pulse 2s infinite;
  animation-iteration-count: 2;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tvcHzU04nz {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvcHzU04nz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcHzU04nz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcHzU04nz .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tvcHzU04nz .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tvcHzU04nz .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tvcHzU04nz .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tvcHzU04nz .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tvcHzU04nz .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tvcHzU04nz .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tvcHzU04nz .mbr-section-title {
  color: #181817;
}
.cid-tvcHzU04nz .mbr-desc {
  color: #1e69aa;
}
.cid-tvcHzU04nz .mbr-text {
  color: #181817;
}
.cid-uPrOlZmRZ5 {
  background-color: #1e69aa;
}
.cid-uPrOlZmRZ5 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uPrOlZmRZ5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPrOlZmRZ5 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uPrOlZmRZ5 img {
  width: 80%;
  padding: 2rem 0;
  margin-left: -40%;
}
@media (min-width: 992px) {
  .cid-uPrOlZmRZ5 .text-wrapper {
    padding: 2rem;
    margin-left: -25%;
  }
}
.cid-uPrOlZmRZ5 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uPrOlZmRZ5 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPrOlZmRZ5 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
