body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 6.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.225rem;
}
.display-2 {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 4.625rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.00625rem;
}
.display-4 {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.975rem;
}
.display-5 {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 2.25rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.4625rem;
}
.display-7 {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 0.8125rem;
}
/* ---- 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: 5.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.55rem;
    font-size: calc( 2.0999999999999996rem + (6.5 - 2.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0999999999999996rem + (6.5 - 2.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.7rem;
    font-size: calc( 1.7249999999999996rem + (4.625 - 1.7249999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7249999999999996rem + (4.625 - 1.7249999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.3125rem + (2.25 - 1.3125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.3125rem + (2.25 - 1.3125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #94a393 !important;
}
.bg-success {
  background-color: #526b51 !important;
}
.bg-info {
  background-color: #c9beb5 !important;
}
.bg-warning {
  background-color: #a09099 !important;
}
.bg-danger {
  background-color: #694f5f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #94a393 !important;
  border-color: #94a393 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #687967 !important;
  border-color: #687967 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6e7a7a !important;
  border-color: #6e7a7a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #454c4c !important;
  border-color: #454c4c !important;
}
.btn-info,
.btn-info:active {
  background-color: #c9beb5 !important;
  border-color: #c9beb5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a49283 !important;
  border-color: #a49283 !important;
}
.btn-success,
.btn-success:active {
  background-color: #526b51 !important;
  border-color: #526b51 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c3a2c !important;
  border-color: #2c3a2c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a09099 !important;
  border-color: #a09099 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #75646e !important;
  border-color: #75646e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #694f5f !important;
  border-color: #694f5f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #382a32 !important;
  border-color: #382a32 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #45494e !important;
  border-color: #45494e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1c1e20 !important;
  border-color: #1c1e20 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #94a393;
}
.btn-primary-outline:before,
.btn-primary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #94a393;
  opacity: 0.1;
}
.btn-primary-outline:after,
.btn-primary-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #94a393;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #94a393;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-primary-outline .mbr-iconfont:before,
.btn-primary-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #94a393 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline:hover .mbr-iconfont,
.btn-primary-outline:focus .mbr-iconfont,
.btn-primary-outline.focus .mbr-iconfont,
.btn-primary-outline.active .mbr-iconfont {
  background: #94a393;
  color: #ffffff;
}
.btn-primary-outline:hover .mbr-iconfont::before,
.btn-primary-outline:focus .mbr-iconfont::before,
.btn-primary-outline.focus .mbr-iconfont::before,
.btn-primary-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-primary-outline:hover:after,
.btn-primary-outline:focus:after,
.btn-primary-outline.focus:after,
.btn-primary-outline.active:after {
  transform: scaleX(1);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #94a393 !important;
  border-color: #94a393 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #6e7a7a;
}
.btn-secondary-outline:before,
.btn-secondary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #6e7a7a;
  opacity: 0.1;
}
.btn-secondary-outline:after,
.btn-secondary-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #6e7a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #6e7a7a;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-secondary-outline .mbr-iconfont:before,
.btn-secondary-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6e7a7a !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline:hover .mbr-iconfont,
.btn-secondary-outline:focus .mbr-iconfont,
.btn-secondary-outline.focus .mbr-iconfont,
.btn-secondary-outline.active .mbr-iconfont {
  background: #6e7a7a;
  color: #ffffff;
}
.btn-secondary-outline:hover .mbr-iconfont::before,
.btn-secondary-outline:focus .mbr-iconfont::before,
.btn-secondary-outline.focus .mbr-iconfont::before,
.btn-secondary-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-secondary-outline:hover:after,
.btn-secondary-outline:focus:after,
.btn-secondary-outline.focus:after,
.btn-secondary-outline.active:after {
  transform: scaleX(1);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6e7a7a !important;
  border-color: #6e7a7a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #c9beb5;
}
.btn-info-outline:before,
.btn-info-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #c9beb5;
  opacity: 0.1;
}
.btn-info-outline:after,
.btn-info-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #c9beb5;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #c9beb5;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-info-outline .mbr-iconfont:before,
.btn-info-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c9beb5 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline:hover .mbr-iconfont,
.btn-info-outline:focus .mbr-iconfont,
.btn-info-outline.focus .mbr-iconfont,
.btn-info-outline.active .mbr-iconfont {
  background: #c9beb5;
  color: #ffffff;
}
.btn-info-outline:hover .mbr-iconfont::before,
.btn-info-outline:focus .mbr-iconfont::before,
.btn-info-outline.focus .mbr-iconfont::before,
.btn-info-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-info-outline:hover:after,
.btn-info-outline:focus:after,
.btn-info-outline.focus:after,
.btn-info-outline.active:after {
  transform: scaleX(1);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c9beb5 !important;
  border-color: #c9beb5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #526b51;
}
.btn-success-outline:before,
.btn-success-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #526b51;
  opacity: 0.1;
}
.btn-success-outline:after,
.btn-success-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #526b51;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #526b51;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-success-outline .mbr-iconfont:before,
.btn-success-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #526b51 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline:hover .mbr-iconfont,
.btn-success-outline:focus .mbr-iconfont,
.btn-success-outline.focus .mbr-iconfont,
.btn-success-outline.active .mbr-iconfont {
  background: #526b51;
  color: #ffffff;
}
.btn-success-outline:hover .mbr-iconfont::before,
.btn-success-outline:focus .mbr-iconfont::before,
.btn-success-outline.focus .mbr-iconfont::before,
.btn-success-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-success-outline:hover:after,
.btn-success-outline:focus:after,
.btn-success-outline.focus:after,
.btn-success-outline.active:after {
  transform: scaleX(1);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #526b51 !important;
  border-color: #526b51 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #a09099;
}
.btn-warning-outline:before,
.btn-warning-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #a09099;
  opacity: 0.1;
}
.btn-warning-outline:after,
.btn-warning-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #a09099;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #a09099;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-warning-outline .mbr-iconfont:before,
.btn-warning-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a09099 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline:hover .mbr-iconfont,
.btn-warning-outline:focus .mbr-iconfont,
.btn-warning-outline.focus .mbr-iconfont,
.btn-warning-outline.active .mbr-iconfont {
  background: #a09099;
  color: #ffffff;
}
.btn-warning-outline:hover .mbr-iconfont::before,
.btn-warning-outline:focus .mbr-iconfont::before,
.btn-warning-outline.focus .mbr-iconfont::before,
.btn-warning-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-warning-outline:hover:after,
.btn-warning-outline:focus:after,
.btn-warning-outline.focus:after,
.btn-warning-outline.active:after {
  transform: scaleX(1);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a09099 !important;
  border-color: #a09099 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #694f5f;
}
.btn-danger-outline:before,
.btn-danger-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #694f5f;
  opacity: 0.1;
}
.btn-danger-outline:after,
.btn-danger-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #694f5f;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #694f5f;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-danger-outline .mbr-iconfont:before,
.btn-danger-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #694f5f !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline:hover .mbr-iconfont,
.btn-danger-outline:focus .mbr-iconfont,
.btn-danger-outline.focus .mbr-iconfont,
.btn-danger-outline.active .mbr-iconfont {
  background: #694f5f;
  color: #ffffff;
}
.btn-danger-outline:hover .mbr-iconfont::before,
.btn-danger-outline:focus .mbr-iconfont::before,
.btn-danger-outline.focus .mbr-iconfont::before,
.btn-danger-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-danger-outline:hover:after,
.btn-danger-outline:focus:after,
.btn-danger-outline.focus:after,
.btn-danger-outline.active:after {
  transform: scaleX(1);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #694f5f !important;
  border-color: #694f5f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #45494e;
}
.btn-black-outline:before,
.btn-black-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #45494e;
  opacity: 0.1;
}
.btn-black-outline:after,
.btn-black-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #45494e;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #45494e;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-black-outline .mbr-iconfont:before,
.btn-black-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #45494e !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline:hover .mbr-iconfont,
.btn-black-outline:focus .mbr-iconfont,
.btn-black-outline.focus .mbr-iconfont,
.btn-black-outline.active .mbr-iconfont {
  background: #45494e;
  color: #ffffff;
}
.btn-black-outline:hover .mbr-iconfont::before,
.btn-black-outline:focus .mbr-iconfont::before,
.btn-black-outline.focus .mbr-iconfont::before,
.btn-black-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-black-outline:hover:after,
.btn-black-outline:focus:after,
.btn-black-outline.focus:after,
.btn-black-outline.active:after {
  transform: scaleX(1);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #45494e !important;
  border-color: #45494e !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #fafafa;
}
.btn-white-outline:before,
.btn-white-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fafafa;
  opacity: 0.1;
}
.btn-white-outline:after,
.btn-white-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fafafa;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #fafafa;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-white-outline .mbr-iconfont:before,
.btn-white-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fafafa !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline:hover .mbr-iconfont,
.btn-white-outline:focus .mbr-iconfont,
.btn-white-outline.focus .mbr-iconfont,
.btn-white-outline.active .mbr-iconfont {
  background: #fafafa;
  color: #7a7a7a;
}
.btn-white-outline:hover .mbr-iconfont::before,
.btn-white-outline:focus .mbr-iconfont::before,
.btn-white-outline.focus .mbr-iconfont::before,
.btn-white-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-white-outline:hover:after,
.btn-white-outline:focus:after,
.btn-white-outline.focus:after,
.btn-white-outline.active:after {
  transform: scaleX(1);
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #94a393 !important;
}
.text-secondary {
  color: #6e7a7a !important;
}
.text-success {
  color: #526b51 !important;
}
.text-info {
  color: #c9beb5 !important;
}
.text-warning {
  color: #a09099 !important;
}
.text-danger {
  color: #694f5f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #45494E !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #617060 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3e4444 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #263125 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #9e8a7a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #6d5d66 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2f232a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #151618 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #94a393;
}
.nav-tabs .nav-link:not(.active) {
  color: #26292C;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c9beb5;
}
.alert-warning {
  background-color: #a09099;
}
.alert-danger {
  background-color: #694f5f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #94a393;
  border-color: #94a393;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #94a393;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d8ded8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #91ab90;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #dbd5d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #aa8e9f;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.975rem;
}
.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: #94a393 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Orbitron-VariableFont_wght';
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.975rem;
}
blockquote {
  border-color: #94a393;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #94a393;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #94a393;
}
.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: #94a393;
  border-bottom-color: #94a393;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #94a393 !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: #6e7a7a !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='%2394a393' %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-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1599px) {
  .container,
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container {
  max-width: 1920px;
  margin: 0 auto;
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .row {
    margin-left: -18px;
    margin-right: -18px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 60px;
  padding: 15px 30px;
  font-weight: 500;
  line-height: 1 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@keyframes btn-move {
  0% {
    left: 0;
  }
  49% {
    left: -100%;
  }
  50% {
    left: -100%;
    opacity: 0;
  }
  51% {
    left: 100%;
    opacity: 0;
  }
  52% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
@keyframes btn-move-hover {
  0% {
    left: 0;
  }
  49% {
    left: 100%;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  51% {
    left: -100%;
    opacity: 0;
  }
  52% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
.cid-tAbu6l4ngq {
  z-index: 1000;
  width: 100%;
}
.cid-tAbu6l4ngq .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-tAbu6l4ngq .dropdown-menu {
  padding: 0;
}
.cid-tAbu6l4ngq .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .dropdown-item {
    text-align: left !important;
  }
}
.cid-tAbu6l4ngq .dropdown-item:hover {
  background-position: right !important;
}
.cid-tAbu6l4ngq .dropdown-item:hover:after {
  color: #94a393;
}
.cid-tAbu6l4ngq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAbu6l4ngq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAbu6l4ngq .nav-link {
  position: relative;
}
.cid-tAbu6l4ngq .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .container {
    flex-wrap: wrap;
  }
}
.cid-tAbu6l4ngq .dropdown-menu,
.cid-tAbu6l4ngq .navbar.opened {
  background: #ffffff !important;
}
.cid-tAbu6l4ngq .nav-item:focus,
.cid-tAbu6l4ngq .nav-link:focus {
  outline: none;
}
.cid-tAbu6l4ngq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAbu6l4ngq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAbu6l4ngq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAbu6l4ngq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAbu6l4ngq .navbar {
  min-height: 60px;
  transition: all .3s !important;
  position: fixed;
  background-color: transparent !important;
  min-height: 80px;
  box-sizing: content-box;
}
.cid-tAbu6l4ngq .navbar.opened {
  transition: all 0.3s;
}
.cid-tAbu6l4ngq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAbu6l4ngq .navbar .navbar-logo img {
  width: auto;
}
.cid-tAbu6l4ngq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAbu6l4ngq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAbu6l4ngq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAbu6l4ngq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAbu6l4ngq .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-tAbu6l4ngq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAbu6l4ngq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAbu6l4ngq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAbu6l4ngq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAbu6l4ngq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAbu6l4ngq .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAbu6l4ngq .navbar .navbar-short {
  position: fixed !important;
}
.cid-tAbu6l4ngq .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-tAbu6l4ngq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAbu6l4ngq .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-tAbu6l4ngq .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tAbu6l4ngq .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .navbar-brand {
    display: none;
  }
}
.cid-tAbu6l4ngq .dropdown-item.active,
.cid-tAbu6l4ngq .dropdown-item:active {
  background-color: transparent;
}
.cid-tAbu6l4ngq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAbu6l4ngq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAbu6l4ngq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAbu6l4ngq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tAbu6l4ngq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAbu6l4ngq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAbu6l4ngq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAbu6l4ngq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAbu6l4ngq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAbu6l4ngq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAbu6l4ngq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAbu6l4ngq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAbu6l4ngq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAbu6l4ngq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAbu6l4ngq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAbu6l4ngq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAbu6l4ngq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAbu6l4ngq .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tAbu6l4ngq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAbu6l4ngq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tAbu6l4ngq .navbar {
    height: 70px;
  }
  .cid-tAbu6l4ngq .navbar.opened {
    height: auto;
  }
  .cid-tAbu6l4ngq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAbu6l4ngq .navbar-short {
  background-color: #ffffff !important;
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-tAbu6l4ngq .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-tAbu6l4ngq .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-tAbu6l4ngq .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-tAbu6l4ngq .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-tAbu6l4ngq .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-tAbu6l4ngq .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-tAbu6l4ngq .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-tAbu6l4ngq .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-tAbu6l4ngq .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
}
@media (max-width: 767px) {
  .cid-tAbu6l4ngq .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-tAbu6l4ngq .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-tAbu6l4ngq .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-tAbu6l4ngq .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-tAbu6l4ngq .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tAbu6l4ngq .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-tAbu6l4ngq .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-tAbu6l4ngq .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-tAbu6l4ngq .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-tAbu6l4ngq .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-tAbu6l4ngq .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-tAbu6l4ngq nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-tAbu6l4ngq .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-tAbu6l4ngq .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-tAbu6l4ngq .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-tAbu6l4ngq .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .image-wrapper {
    display: none;
  }
}
.cid-tAbu6l4ngq .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-tAbu6l4ngq .offcanvas-body {
    max-width: 100%;
  }
}
.cid-tAbu6l4ngq .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-tAbu6l4ngq .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tAbu6l4ngq .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-tAbu6l4ngq .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-tAbu6l4ngq .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tAbu6l4ngq .navbar-nav {
  display: flex !important;
}
.cid-tAbu6l4ngq .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-tAbu6l4ngq .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-tAbu6l4ngq .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-tAbu6l4ngq .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-tAbu6l4ngq .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-tAbu6l4ngq .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tAbu6l4ngq .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-tAbu6l4ngq .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-tAbu6l4ngq .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tAbu6l4ngq .offcanvas_text {
  width: 60%;
}
.cid-tAbu6l4ngq .mbr-text {
  color: #FFFFFF;
}
.cid-tAbu6l4ngq .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-tAbu6l4ngq .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-tAbu6l4ngq .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tAbu6l4ngq .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-tAbu6l4ngq .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-tAbu6l4ngq .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-tAbu6l4ngq .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-tAboSp7GaS {
  display: flex;
  background-image: url("../../../assets/images/l-eye-1024x1024.jpg");
  align-items: flex-end;
}
.cid-tAboSp7GaS .mbr-overlay {
  background-color: #45494e;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-tAboSp7GaS .row {
    justify-content: flex-start;
  }
  .cid-tAboSp7GaS .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tAboSp7GaS .content-wrap {
    width: 100%;
  }
}
.cid-tAboSp7GaS .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tAboSp7GaS .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tAboSp7GaS .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tAboSp7GaS .mbr-section-btn {
    text-align: center;
  }
}
.cid-tAboSp7GaS .mbr-section-title,
.cid-tAboSp7GaS .mbr-section-btn {
  color: #ffffff;
}
.cid-uCG2gVdfFt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCG2gVdfFt .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uCG2gVdfFt .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uCG2gVdfFt .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uCG2gVdfFt .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uCG2gVdfFt .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uCG2gVdfFt .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-uCG2gVdfFt .item-img {
  width: 100%;
  opacity: 0.9;
  filter: brightness(80%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.cid-uCG2gVdfFt .item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 2rem;
}
.cid-uCG2gVdfFt .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin-top: auto;
  margin-bottom: 0;
  pointer-events: auto;
}
.cid-uCG2gVdfFt .item-title {
  color: #FFFFFF;
  text-align: left;
}
.cid-uCG2gVdfFt .mbr-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uCG2gVdfFt .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCG2gVdfFt .mbr-section-btn .btn:before {
  display: none;
}
.cid-uCG2gVdfFt .mbr-section-btn .btn:after {
  display: none;
}
.cid-uCG2gVdfFt .mbr-text,
.cid-uCG2gVdfFt .mbr-section-btn {
  text-align: left;
}
.cid-u6pZM60pKl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-u6pZM60pKl .row {
  align-items: stretch;
  justify-content: center;
}
.cid-u6pZM60pKl .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-u6pZM60pKl .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-u6pZM60pKl .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-u6pZM60pKl .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-u6pZM60pKl .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-u6pZM60pKl .item-img {
  width: 100%;
  opacity: 0.8;
  filter: brightness(80%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.cid-u6pZM60pKl .item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 2rem;
}
.cid-u6pZM60pKl .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin: auto;
  pointer-events: auto;
}
.cid-u6pZM60pKl .item-title {
  color: #FFFFFF;
}
.cid-u6pZM60pKl .mbr-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-u6pZM60pKl .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCzjbUnIYW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCzjbUnIYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCzjbUnIYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCzjbUnIYW .card-wrapper {
  width: 100%;
}
.cid-uCzjbUnIYW .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCzjbUnIYW .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCzjbUnIYW .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCzjbUnIYW .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCzjbUnIYW .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCzjbUnIYW .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCzjbUnIYW .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCzjbUnIYW .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCzjbUnIYW .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCzjbUnIYW .card-title {
    text-align: center !important;
  }
}
.cid-uCzjbUnIYW .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCzjbUnIYW .card-text {
    text-align: center !important;
  }
}
.cid-uCvSD8T3rq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uCvSD8T3rq .col-title {
    margin-bottom: 20px;
  }
}
.cid-uCvSD8T3rq .mbr-section-title {
  color: #45494E;
}
.cid-uCvSD8T3rq .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uCvSD8T3rq .mbr-text {
  color: #5c6064;
}
.cid-uCvT1cfuvJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
@media (max-width: 991px) {
  .cid-uCvT1cfuvJ .col-title {
    margin-bottom: 20px;
  }
}
.cid-uCvT1cfuvJ .mbr-section-title {
  color: #45494E;
}
.cid-uCvT1cfuvJ .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uCvT1cfuvJ .mbr-text {
  color: #5c6064;
}
.cid-uCvTw9vrXS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uCvTw9vrXS .col-title {
    margin-bottom: 20px;
  }
}
.cid-uCvTw9vrXS .mbr-section-title {
  color: #45494E;
}
.cid-uCvTw9vrXS .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uCvTw9vrXS .mbr-text {
  color: #5c6064;
}
.cid-uCwhbC2Q9P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
@media (max-width: 991px) {
  .cid-uCwhbC2Q9P .col-title {
    margin-bottom: 20px;
  }
}
.cid-uCwhbC2Q9P .mbr-section-title {
  color: #45494E;
}
.cid-uCwhbC2Q9P .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uCwhbC2Q9P .mbr-text {
  color: #5c6064;
}
.cid-uCBFTml7pJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uCBFTml7pJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFTml7pJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFTml7pJ .card-wrapper {
  width: 100%;
}
.cid-uCBFTml7pJ .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFTml7pJ .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFTml7pJ .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFTml7pJ .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFTml7pJ .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFTml7pJ .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFTml7pJ .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFTml7pJ .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFTml7pJ .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFTml7pJ .card-title {
    text-align: center !important;
  }
}
.cid-uCBFTml7pJ .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFTml7pJ .card-text {
    text-align: center !important;
  }
}
.cid-uCv1YyFUN0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #222222;
}
.cid-uCv1YyFUN0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCv1YyFUN0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCv1YyFUN0 .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uCv1YyFUN0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCv1YyFUN0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uCv1YyFUN0 .container {
    padding: 0 20px;
  }
  .cid-uCv1YyFUN0 .container .row {
    padding: 0;
  }
}
.cid-uCv1YyFUN0 .image-wrapper {
  position: relative;
}
.cid-uCv1YyFUN0 .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uCv1YyFUN0 .image-wrapper img {
    height: 300px;
  }
}
.cid-uCv1YyFUN0 .image-wrapper .title-wrapper {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  padding: 0 90px;
}
@media (max-width: 992px) {
  .cid-uCv1YyFUN0 .image-wrapper .title-wrapper {
    position: static;
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uCv1YyFUN0 .image-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCv1YyFUN0 .mbr-section-title {
  color: #ffffff;
}
.cid-tAbudsb8Rn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tAbudsb8Rn .row {
  justify-content: center;
}
.cid-tAbudsb8Rn .col-video {
  display: flex;
  overflow: hidden;
}
.cid-tAbudsb8Rn .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tAbudsb8Rn .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tAbudsb8Rn .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tAbudsb8Rn .col-video .link {
  margin-right: 1rem;
}
.cid-tAbudsb8Rn .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.cid-tAbudsb8Rn .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tAbudsb8Rn .mbr-media {
  position: relative;
}
.cid-tAbudsb8Rn .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tAbudsb8Rn .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tAbudsb8Rn .icon-wrap .mbr-iconfont {
  padding: 32px;
  border-radius: 50%;
  background-color: #3d5150;
}
@media (max-width: 991px) {
  .cid-tAbudsb8Rn .icon-wrap .mbr-iconfont {
    padding: 24px;
  }
}
.cid-tAbudsb8Rn .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tAbudsb8Rn .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tAbudsb8Rn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tAbudsb8Rn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tAbudsb8Rn .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tAbudsb8Rn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tAbudsb8Rn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tAbudsb8Rn a:hover {
  text-decoration-line: none !important;
}
.cid-tAbu8VsDHH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAbu8VsDHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAbu8VsDHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAbu8VsDHH .row {
  justify-content: flex-start;
}
.cid-tAbu8VsDHH .mbr-section-title {
  color: #45494E;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tAbu8VsDHH .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tAbu8VsDHH .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tAbu8VsDHH .image-wrapper {
  width: 100%;
}
.cid-tAbu8VsDHH .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tAbu8VsDHH .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tAbu8VsDHH .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tAbu8VsDHH .mbr-text {
    margin-top: 45px;
  }
}
.cid-tAbu8VsDHH .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tAbu8VsDHH .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tAbu8VsDHH .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tAbu8VsDHH .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tAbu8VsDHH .mbr-text,
.cid-tAbu8VsDHH .mbr-section-btn {
  text-align: center;
}
.cid-uCBFVlpIuM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBFVlpIuM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFVlpIuM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFVlpIuM .card-wrapper {
  width: 100%;
}
.cid-uCBFVlpIuM .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFVlpIuM .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFVlpIuM .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFVlpIuM .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFVlpIuM .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFVlpIuM .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFVlpIuM .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFVlpIuM .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFVlpIuM .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFVlpIuM .card-title {
    text-align: center !important;
  }
}
.cid-uCBFVlpIuM .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFVlpIuM .card-text {
    text-align: center !important;
  }
}
.cid-uCBAytowzr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBAytowzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBAytowzr .container-fluid {
  padding: 0;
}
.cid-uCBAytowzr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBAytowzr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBAytowzr .row {
  flex-direction: row-reverse;
}
.cid-uCBAytowzr img {
  width: 100%;
}
.cid-uCBFWxStLJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBFWxStLJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFWxStLJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFWxStLJ .card-wrapper {
  width: 100%;
}
.cid-uCBFWxStLJ .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFWxStLJ .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFWxStLJ .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFWxStLJ .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFWxStLJ .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFWxStLJ .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFWxStLJ .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFWxStLJ .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFWxStLJ .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFWxStLJ .card-title {
    text-align: center !important;
  }
}
.cid-uCBFWxStLJ .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFWxStLJ .card-text {
    text-align: center !important;
  }
}
.cid-uCBFdIKe8y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBFdIKe8y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFdIKe8y .container-fluid {
  padding: 0;
}
.cid-uCBFdIKe8y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBFdIKe8y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBFdIKe8y .row {
  flex-direction: row-reverse;
}
.cid-uCBFdIKe8y img {
  width: 100%;
}
.cid-uCBFXt0ZQH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBFXt0ZQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFXt0ZQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFXt0ZQH .card-wrapper {
  width: 100%;
}
.cid-uCBFXt0ZQH .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFXt0ZQH .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFXt0ZQH .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFXt0ZQH .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFXt0ZQH .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFXt0ZQH .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFXt0ZQH .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFXt0ZQH .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFXt0ZQH .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFXt0ZQH .card-title {
    text-align: center !important;
  }
}
.cid-uCBFXt0ZQH .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFXt0ZQH .card-text {
    text-align: center !important;
  }
}
.cid-uCBFeR5tAC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBFeR5tAC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFeR5tAC .container-fluid {
  padding: 0;
}
.cid-uCBFeR5tAC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBFeR5tAC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBFeR5tAC .row {
  flex-direction: row-reverse;
}
.cid-uCBFeR5tAC img {
  width: 100%;
}
.cid-uCBFYjqYQH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBFYjqYQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFYjqYQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFYjqYQH .card-wrapper {
  width: 100%;
}
.cid-uCBFYjqYQH .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFYjqYQH .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFYjqYQH .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFYjqYQH .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFYjqYQH .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFYjqYQH .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFYjqYQH .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFYjqYQH .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFYjqYQH .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFYjqYQH .card-title {
    text-align: center !important;
  }
}
.cid-uCBFYjqYQH .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFYjqYQH .card-text {
    text-align: center !important;
  }
}
.cid-uCBFfBWjQ3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBFfBWjQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFfBWjQ3 .container-fluid {
  padding: 0;
}
.cid-uCBFfBWjQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBFfBWjQ3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBFfBWjQ3 .row {
  flex-direction: row-reverse;
}
.cid-uCBFfBWjQ3 img {
  width: 100%;
}
.cid-uCBFZ7wxnv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBFZ7wxnv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFZ7wxnv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFZ7wxnv .card-wrapper {
  width: 100%;
}
.cid-uCBFZ7wxnv .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFZ7wxnv .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFZ7wxnv .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFZ7wxnv .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFZ7wxnv .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFZ7wxnv .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFZ7wxnv .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFZ7wxnv .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFZ7wxnv .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFZ7wxnv .card-title {
    text-align: center !important;
  }
}
.cid-uCBFZ7wxnv .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFZ7wxnv .card-text {
    text-align: center !important;
  }
}
.cid-uCBFghNO3G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBFghNO3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFghNO3G .container-fluid {
  padding: 0;
}
.cid-uCBFghNO3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBFghNO3G .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBFghNO3G .row {
  flex-direction: row-reverse;
}
.cid-uCBFghNO3G img {
  width: 100%;
}
.cid-uCBFZWPdBi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBFZWPdBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFZWPdBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBFZWPdBi .card-wrapper {
  width: 100%;
}
.cid-uCBFZWPdBi .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBFZWPdBi .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBFZWPdBi .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBFZWPdBi .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBFZWPdBi .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBFZWPdBi .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBFZWPdBi .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBFZWPdBi .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBFZWPdBi .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBFZWPdBi .card-title {
    text-align: center !important;
  }
}
.cid-uCBFZWPdBi .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBFZWPdBi .card-text {
    text-align: center !important;
  }
}
.cid-uCBFgZMlP4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBFgZMlP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBFgZMlP4 .container-fluid {
  padding: 0;
}
.cid-uCBFgZMlP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBFgZMlP4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBFgZMlP4 .row {
  flex-direction: row-reverse;
}
.cid-uCBFgZMlP4 img {
  width: 100%;
}
.cid-uCBG0O0z6n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBG0O0z6n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBG0O0z6n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBG0O0z6n .card-wrapper {
  width: 100%;
}
.cid-uCBG0O0z6n .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBG0O0z6n .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBG0O0z6n .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBG0O0z6n .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBG0O0z6n .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBG0O0z6n .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBG0O0z6n .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBG0O0z6n .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBG0O0z6n .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBG0O0z6n .card-title {
    text-align: center !important;
  }
}
.cid-uCBG0O0z6n .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBG0O0z6n .card-text {
    text-align: center !important;
  }
}
.cid-uCBIJnIX6v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBIJnIX6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIJnIX6v .container-fluid {
  padding: 0;
}
.cid-uCBIJnIX6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBIJnIX6v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBIJnIX6v .row {
  flex-direction: row-reverse;
}
.cid-uCBIJnIX6v img {
  width: 100%;
}
.cid-uCBIKG0ReT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBIKG0ReT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIKG0ReT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBIKG0ReT .card-wrapper {
  width: 100%;
}
.cid-uCBIKG0ReT .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBIKG0ReT .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBIKG0ReT .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBIKG0ReT .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBIKG0ReT .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBIKG0ReT .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBIKG0ReT .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBIKG0ReT .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBIKG0ReT .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBIKG0ReT .card-title {
    text-align: center !important;
  }
}
.cid-uCBIKG0ReT .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBIKG0ReT .card-text {
    text-align: center !important;
  }
}
.cid-uCBILviwTH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBILviwTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBILviwTH .container-fluid {
  padding: 0;
}
.cid-uCBILviwTH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBILviwTH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBILviwTH .row {
  flex-direction: row-reverse;
}
.cid-uCBILviwTH img {
  width: 100%;
}
.cid-uCBIUMMx2b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBIUMMx2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIUMMx2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBIUMMx2b .card-wrapper {
  width: 100%;
}
.cid-uCBIUMMx2b .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBIUMMx2b .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBIUMMx2b .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBIUMMx2b .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBIUMMx2b .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBIUMMx2b .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBIUMMx2b .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBIUMMx2b .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBIUMMx2b .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBIUMMx2b .card-title {
    text-align: center !important;
  }
}
.cid-uCBIUMMx2b .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBIUMMx2b .card-text {
    text-align: center !important;
  }
}
.cid-uCBIMKtWa3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBIMKtWa3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIMKtWa3 .container-fluid {
  padding: 0;
}
.cid-uCBIMKtWa3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBIMKtWa3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBIMKtWa3 .row {
  flex-direction: row-reverse;
}
.cid-uCBIMKtWa3 img {
  width: 100%;
}
.cid-uCBIVqLpVL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBIVqLpVL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIVqLpVL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBIVqLpVL .card-wrapper {
  width: 100%;
}
.cid-uCBIVqLpVL .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBIVqLpVL .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBIVqLpVL .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBIVqLpVL .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBIVqLpVL .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBIVqLpVL .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBIVqLpVL .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBIVqLpVL .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBIVqLpVL .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBIVqLpVL .card-title {
    text-align: center !important;
  }
}
.cid-uCBIVqLpVL .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBIVqLpVL .card-text {
    text-align: center !important;
  }
}
.cid-uCBINon3Qz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBINon3Qz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBINon3Qz .container-fluid {
  padding: 0;
}
.cid-uCBINon3Qz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBINon3Qz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBINon3Qz .row {
  flex-direction: row-reverse;
}
.cid-uCBINon3Qz img {
  width: 100%;
}
.cid-uCBIR1syDx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBIR1syDx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIR1syDx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBIR1syDx .card-wrapper {
  width: 100%;
}
.cid-uCBIR1syDx .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBIR1syDx .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBIR1syDx .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBIR1syDx .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBIR1syDx .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBIR1syDx .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBIR1syDx .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBIR1syDx .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBIR1syDx .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBIR1syDx .card-title {
    text-align: center !important;
  }
}
.cid-uCBIR1syDx .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBIR1syDx .card-text {
    text-align: center !important;
  }
}
.cid-uCBINYVIpv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBINYVIpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBINYVIpv .container-fluid {
  padding: 0;
}
.cid-uCBINYVIpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBINYVIpv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBINYVIpv .row {
  flex-direction: row-reverse;
}
.cid-uCBINYVIpv img {
  width: 100%;
}
.cid-uCBKJHQ9GC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBKJHQ9GC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBKJHQ9GC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBKJHQ9GC .card-wrapper {
  width: 100%;
}
.cid-uCBKJHQ9GC .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBKJHQ9GC .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBKJHQ9GC .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBKJHQ9GC .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBKJHQ9GC .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBKJHQ9GC .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBKJHQ9GC .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBKJHQ9GC .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBKJHQ9GC .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBKJHQ9GC .card-title {
    text-align: center !important;
  }
}
.cid-uCBKJHQ9GC .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBKJHQ9GC .card-text {
    text-align: center !important;
  }
}
.cid-uCBKEtkxso {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBKEtkxso .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBKEtkxso .container-fluid {
  padding: 0;
}
.cid-uCBKEtkxso .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBKEtkxso .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBKEtkxso .row {
  flex-direction: row-reverse;
}
.cid-uCBKEtkxso img {
  width: 100%;
}
.cid-uCBIPI4eJd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBIPI4eJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIPI4eJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBIPI4eJd .card-wrapper {
  width: 100%;
}
.cid-uCBIPI4eJd .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBIPI4eJd .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBIPI4eJd .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBIPI4eJd .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBIPI4eJd .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBIPI4eJd .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBIPI4eJd .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBIPI4eJd .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBIPI4eJd .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBIPI4eJd .card-title {
    text-align: center !important;
  }
}
.cid-uCBIPI4eJd .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBIPI4eJd .card-text {
    text-align: center !important;
  }
}
.cid-uCBKFecw9S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBKFecw9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBKFecw9S .container-fluid {
  padding: 0;
}
.cid-uCBKFecw9S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBKFecw9S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBKFecw9S .row {
  flex-direction: row-reverse;
}
.cid-uCBKFecw9S img {
  width: 100%;
}
.cid-uCBIT2tbeT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBIT2tbeT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIT2tbeT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBIT2tbeT .card-wrapper {
  width: 100%;
}
.cid-uCBIT2tbeT .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBIT2tbeT .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBIT2tbeT .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBIT2tbeT .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBIT2tbeT .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBIT2tbeT .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBIT2tbeT .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBIT2tbeT .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBIT2tbeT .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBIT2tbeT .card-title {
    text-align: center !important;
  }
}
.cid-uCBIT2tbeT .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBIT2tbeT .card-text {
    text-align: center !important;
  }
}
.cid-uCBIODDdCv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBIODDdCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBIODDdCv .container-fluid {
  padding: 0;
}
.cid-uCBIODDdCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBIODDdCv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBIODDdCv .row {
  flex-direction: row-reverse;
}
.cid-uCBIODDdCv img {
  width: 100%;
}
.cid-uCBKI4g7oH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3d5150;
}
.cid-uCBKI4g7oH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBKI4g7oH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBKI4g7oH .card-wrapper {
  width: 100%;
}
.cid-uCBKI4g7oH .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCBKI4g7oH .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCBKI4g7oH .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCBKI4g7oH .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCBKI4g7oH .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCBKI4g7oH .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCBKI4g7oH .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCBKI4g7oH .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCBKI4g7oH .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCBKI4g7oH .card-title {
    text-align: center !important;
  }
}
.cid-uCBKI4g7oH .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCBKI4g7oH .card-text {
    text-align: center !important;
  }
}
.cid-uCBKFVxZ0k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCBKFVxZ0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBKFVxZ0k .container-fluid {
  padding: 0;
}
.cid-uCBKFVxZ0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCBKFVxZ0k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCBKFVxZ0k .row {
  flex-direction: row-reverse;
}
.cid-uCBKFVxZ0k img {
  width: 100%;
}
.cid-uCGiButQ5j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uCGiButQ5j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGiButQ5j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGiButQ5j .card-wrapper {
  width: 100%;
}
.cid-uCGiButQ5j .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCGiButQ5j .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCGiButQ5j .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCGiButQ5j .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCGiButQ5j .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCGiButQ5j .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCGiButQ5j .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCGiButQ5j .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCGiButQ5j .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCGiButQ5j .card-title {
    text-align: center !important;
  }
}
.cid-uCGiButQ5j .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCGiButQ5j .card-text {
    text-align: center !important;
  }
}
.cid-uCv0S3rPfK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCv0S3rPfK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCv0S3rPfK .container-fluid {
  padding: 0;
}
.cid-uCv0S3rPfK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCv0S3rPfK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCv0S3rPfK .row {
  flex-direction: row-reverse;
}
.cid-uCv0S3rPfK img {
  width: 100%;
}
.cid-uCGntnoUtK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uCGntnoUtK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGntnoUtK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGntnoUtK .card-wrapper {
  width: 100%;
}
.cid-uCGntnoUtK .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCGntnoUtK .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCGntnoUtK .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCGntnoUtK .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCGntnoUtK .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCGntnoUtK .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCGntnoUtK .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCGntnoUtK .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCGntnoUtK .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCGntnoUtK .card-title {
    text-align: center !important;
  }
}
.cid-uCGntnoUtK .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCGntnoUtK .card-text {
    text-align: center !important;
  }
}
.cid-tAbu9MoUbH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAbu9MoUbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAbu9MoUbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAbu9MoUbH .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tAbu9MoUbH .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tAbu9MoUbH .col-img {
    order: 2;
  }
}
.cid-tAbu9MoUbH .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tAbu9MoUbH .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tAbu9MoUbH .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tAbu9MoUbH .col-tex {
    order: 1;
  }
}
.cid-tAbu9MoUbH .card-title {
  color: #45494E;
}
.cid-tAbu9MoUbH .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tAbu9MoUbH .mbr-section-btn {
  margin-top: 60px;
}
.cid-tAbu9MoUbH .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tAbuaxx5oc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAbuaxx5oc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAbuaxx5oc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tAbuaxx5oc .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tAbuaxx5oc .col-img {
    order: 2;
  }
}
.cid-tAbuaxx5oc .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tAbuaxx5oc .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tAbuaxx5oc .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tAbuaxx5oc .col-tex {
    order: 1;
  }
}
.cid-tAbuaxx5oc .card-title {
  color: #45494E;
}
.cid-tAbuaxx5oc .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tAbuaxx5oc .mbr-section-btn {
  margin-top: 60px;
}
.cid-tAbuaxx5oc .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCHwDIhFiM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCHwDIhFiM .item:focus,
.cid-uCHwDIhFiM span:focus {
  outline: none;
}
.cid-uCHwDIhFiM .item {
  cursor: pointer;
}
.cid-uCHwDIhFiM .grid-container {
  grid-row-gap: 20px;
}
.cid-uCHwDIhFiM .grid-container-1,
.cid-uCHwDIhFiM .grid-container-2,
.cid-uCHwDIhFiM .grid-container-3 {
  gap: 20px;
}
.cid-uCHwDIhFiM .container,
.cid-uCHwDIhFiM .container-fluid {
  overflow: hidden;
}
.cid-uCHwDIhFiM .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uCHwDIhFiM .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCHwDIhFiM .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uCHwDIhFiM .grid-item img {
    min-width: 50vw;
    height: 200px;
  }
}
.cid-uCHwDIhFiM .grid-container-1,
.cid-uCHwDIhFiM .grid-container-2,
.cid-uCHwDIhFiM .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uCHwDIhFiM .grid-container-1 {
  align-items: flex-end;
}
.cid-uCHwDIhFiM .grid-container-2 {
  align-items: flex-start;
}
.cid-uCHwDIhFiM .mbr-section-title {
  margin-bottom: 64px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uCHwDIhFiM .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCH3zoEKED {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uCH3zoEKED .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCH3zoEKED .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCH3zoEKED .card-wrapper {
  width: 100%;
}
.cid-uCH3zoEKED .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCH3zoEKED .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCH3zoEKED .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCH3zoEKED .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCH3zoEKED .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCH3zoEKED .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCH3zoEKED .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCH3zoEKED .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCH3zoEKED .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCH3zoEKED .card-title {
    text-align: center !important;
  }
}
.cid-uCH3zoEKED .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCH3zoEKED .card-text {
    text-align: center !important;
  }
}
.cid-uCGOllrGpB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uCGOllrGpB .row {
  justify-content: flex-start;
  align-items: stretch;
}
.cid-uCGOllrGpB .mbr-section-head {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-uCGOllrGpB .mbr-section-head {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-uCGOllrGpB .mbr-section-head {
    margin-bottom: 70px;
  }
}
.cid-uCGOllrGpB .mbr-section-title {
  color: #45494E;
}
.cid-uCGOllrGpB .mbr-section-subtitle {
  color: #45494E;
}
.cid-uCGOllrGpB .item {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cid-uCGOllrGpB .item {
    margin-bottom: 50px;
  }
}
.cid-uCGOllrGpB .item-content {
  display: flex;
  flex-direction: column;
  padding: 10%;
  width: 100%;
  flex-grow: 1;
  background-color: #ffffff;
}
.cid-uCGOllrGpB .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-uCGOllrGpB .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-uCGOllrGpB .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-uCGOllrGpB .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-uCGOllrGpB .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-uCGOllrGpB .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
}
.cid-uCGOllrGpB .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-uCGOllrGpB .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCGOllrGpB .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uCGOllrGpB .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-uCGMOX1TzO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCGMOX1TzO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGMOX1TzO .container-fluid {
  padding: 0;
}
.cid-uCGMOX1TzO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCGMOX1TzO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCGMOX1TzO .row {
  flex-direction: row-reverse;
}
.cid-uCGMOX1TzO img {
  width: 100%;
}
.cid-tAbufF4BH8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAbufF4BH8 .row {
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 1199px) {
  .cid-tAbufF4BH8 .main-row {
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .cid-tAbufF4BH8 .text-col {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .cid-tAbufF4BH8 .mbr-section-head {
    position: sticky;
    top: 8rem;
  }
}
@media (max-width: 1199px) {
  .cid-tAbufF4BH8 .mbr-section-head {
    padding-top: 75px;
    margin-top: 75px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
}
@media (max-width: 767px) {
  .cid-tAbufF4BH8 .mbr-section-head {
    padding-top: 52px;
    margin-top: 52px;
  }
}
.cid-tAbufF4BH8 .mbr-section-title {
  color: #45494E;
}
.cid-tAbufF4BH8 .mbr-section-subtitle {
  color: #45494E;
}
.cid-tAbufF4BH8 .item-col {
  order: 1;
}
.cid-tAbufF4BH8 .item {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .cid-tAbufF4BH8 .item {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tAbufF4BH8 .item {
    margin-bottom: 52px;
  }
}
.cid-tAbufF4BH8 .item-content {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  padding-bottom: 16px;
  padding-top: 24px;
  width: 100%;
  flex-grow: 1;
}
.cid-tAbufF4BH8 .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-tAbufF4BH8 .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-tAbufF4BH8 .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-tAbufF4BH8 .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-tAbufF4BH8 .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-tAbufF4BH8 .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 120%;
}
.cid-tAbufF4BH8 .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-tAbufF4BH8 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tAbufF4BH8 .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tAbufF4BH8 .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-uCH3SWfGGl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uCH3SWfGGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCH3SWfGGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCH3SWfGGl .card-wrapper {
  width: 100%;
}
.cid-uCH3SWfGGl .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCH3SWfGGl .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCH3SWfGGl .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCH3SWfGGl .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCH3SWfGGl .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCH3SWfGGl .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCH3SWfGGl .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCH3SWfGGl .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCH3SWfGGl .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCH3SWfGGl .card-title {
    text-align: center !important;
  }
}
.cid-uCH3SWfGGl .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCH3SWfGGl .card-text {
    text-align: center !important;
  }
}
.cid-uCGAzx4mx9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uCGAzx4mx9 .row {
  justify-content: flex-start;
  align-items: stretch;
}
.cid-uCGAzx4mx9 .mbr-section-head {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-uCGAzx4mx9 .mbr-section-head {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-uCGAzx4mx9 .mbr-section-head {
    margin-bottom: 70px;
  }
}
.cid-uCGAzx4mx9 .mbr-section-title {
  color: #45494E;
}
.cid-uCGAzx4mx9 .mbr-section-subtitle {
  color: #45494E;
}
.cid-uCGAzx4mx9 .item {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cid-uCGAzx4mx9 .item {
    margin-bottom: 50px;
  }
}
.cid-uCGAzx4mx9 .item-content {
  display: flex;
  flex-direction: column;
  padding: 10%;
  width: 100%;
  flex-grow: 1;
  background-color: #ffffff;
}
.cid-uCGAzx4mx9 .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-uCGAzx4mx9 .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-uCGAzx4mx9 .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-uCGAzx4mx9 .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-uCGAzx4mx9 .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-uCGAzx4mx9 .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
}
.cid-uCGAzx4mx9 .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-uCGAzx4mx9 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCGAzx4mx9 .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uCGAzx4mx9 .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-uCweBkIZo6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCweBkIZo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCweBkIZo6 .container-fluid {
  padding: 0;
}
.cid-uCweBkIZo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCweBkIZo6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCweBkIZo6 .row {
  flex-direction: row-reverse;
}
.cid-uCweBkIZo6 img {
  width: 100%;
}
.cid-tAbueS3bzr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-tAbueS3bzr .row {
  justify-content: flex-start;
}
.cid-tAbueS3bzr .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-tAbueS3bzr .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tAbueS3bzr .mbr-section-title {
  color: #45494E;
}
.cid-tAbueS3bzr .mbr-section-subtitle {
  color: #45494E;
}
.cid-tAbueS3bzr .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-tAbueS3bzr .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-tAbueS3bzr .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-tAbueS3bzr .item-content {
  display: flex;
  flex-direction: column;
  min-height: calc(((100vw - 15rem) / 3) * 0.67);
  padding: 10%;
  width: 100%;
  flex-grow: 1;
  background-color: #ffffff;
}
.cid-tAbueS3bzr .item-title {
  color: #45494E;
}
.cid-tAbueS3bzr .item-subtitle {
  color: #45494E;
  margin-top: 16px;
}
.cid-tAbueS3bzr .mbr-section-btn {
  margin-top: 20px;
}
.cid-tAbueS3bzr .mbr-text {
  color: #A2A4A7;
  padding-top: 16px;
  margin-top: auto;
}
.cid-tAbueS3bzr .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 66.666%;
  background-color: #ffffff;
}
.cid-tAbueS3bzr .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-tAbueS3bzr .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tAbueS3bzr .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tAbueS3bzr .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-uCBAzguh8G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #222222;
}
.cid-uCBAzguh8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBAzguh8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBAzguh8G .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uCBAzguh8G .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCBAzguh8G .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uCBAzguh8G .container {
    padding: 0 20px;
  }
  .cid-uCBAzguh8G .container .row {
    padding: 0;
  }
}
.cid-uCBAzguh8G .image-wrapper {
  position: relative;
}
.cid-uCBAzguh8G .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uCBAzguh8G .image-wrapper img {
    height: 300px;
  }
}
.cid-uCBAzguh8G .image-wrapper .title-wrapper {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  padding: 0 90px;
}
@media (max-width: 992px) {
  .cid-uCBAzguh8G .image-wrapper .title-wrapper {
    position: static;
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uCBAzguh8G .image-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCBAzguh8G .mbr-section-title {
  color: #ffffff;
}
.cid-uCGIr9PBfE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCGIr9PBfE .row {
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 1199px) {
  .cid-uCGIr9PBfE .main-row {
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .cid-uCGIr9PBfE .text-col {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .cid-uCGIr9PBfE .mbr-section-head {
    position: sticky;
    top: 8rem;
  }
}
@media (max-width: 1199px) {
  .cid-uCGIr9PBfE .mbr-section-head {
    padding-top: 75px;
    margin-top: 75px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
}
@media (max-width: 767px) {
  .cid-uCGIr9PBfE .mbr-section-head {
    padding-top: 52px;
    margin-top: 52px;
  }
}
.cid-uCGIr9PBfE .mbr-section-title {
  color: #45494E;
}
.cid-uCGIr9PBfE .mbr-section-subtitle {
  color: #45494E;
}
.cid-uCGIr9PBfE .item-col {
  order: 1;
}
.cid-uCGIr9PBfE .item {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .cid-uCGIr9PBfE .item {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCGIr9PBfE .item {
    margin-bottom: 52px;
  }
}
.cid-uCGIr9PBfE .item-content {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  padding-bottom: 16px;
  padding-top: 24px;
  width: 100%;
  flex-grow: 1;
}
.cid-uCGIr9PBfE .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-uCGIr9PBfE .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-uCGIr9PBfE .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-uCGIr9PBfE .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-uCGIr9PBfE .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-uCGIr9PBfE .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 120%;
}
.cid-uCGIr9PBfE .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-uCGIr9PBfE .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCGIr9PBfE .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-uCGIr9PBfE .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-tAbucDx1Vf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f8f6f2;
}
.cid-tAbucDx1Vf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAbucDx1Vf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAbucDx1Vf .container {
  max-width: 100%;
  width: 100%;
}
.cid-tAbucDx1Vf .row {
  justify-content: center;
}
.cid-tAbucDx1Vf .img-container {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tAbucDx1Vf .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tAbucDx1Vf .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCH37w6wTg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #a6978b;
}
.cid-uCH37w6wTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCH37w6wTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCH37w6wTg .card-wrapper {
  width: 100%;
}
.cid-uCH37w6wTg .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCH37w6wTg .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCH37w6wTg .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCH37w6wTg .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCH37w6wTg .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCH37w6wTg .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCH37w6wTg .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCH37w6wTg .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCH37w6wTg .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCH37w6wTg .card-title {
    text-align: center !important;
  }
}
.cid-uCH37w6wTg .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCH37w6wTg .card-text {
    text-align: center !important;
  }
}
.cid-uCCkCg8IIO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCkCg8IIO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCkCg8IIO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCkCg8IIO .row {
  justify-content: flex-start;
}
.cid-uCCkCg8IIO .mbr-section-title {
  color: #45494E;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uCCkCg8IIO .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uCCkCg8IIO .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uCCkCg8IIO .image-wrapper {
  width: 100%;
}
.cid-uCCkCg8IIO .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uCCkCg8IIO .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uCCkCg8IIO .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uCCkCg8IIO .mbr-text {
    margin-top: 45px;
  }
}
.cid-uCCkCg8IIO .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uCCkCg8IIO .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uCCkCg8IIO .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uCCkCg8IIO .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uCH6BpOSLv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCH6BpOSLv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCH6BpOSLv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCH6BpOSLv .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCH6BpOSLv .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCH6BpOSLv .col-img {
    order: 2;
  }
}
.cid-uCH6BpOSLv .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCH6BpOSLv .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCH6BpOSLv .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCH6BpOSLv .col-tex {
    order: 1;
  }
}
.cid-uCH6BpOSLv .card-title {
  color: #45494E;
}
.cid-uCH6BpOSLv .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCH6BpOSLv .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCH6BpOSLv .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCH6IstBU3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCH6IstBU3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCH6IstBU3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCH6IstBU3 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCH6IstBU3 .col-img {
    order: 2;
  }
}
.cid-uCH6IstBU3 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCH6IstBU3 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCH6IstBU3 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCH6IstBU3 .col-tex {
    order: 1;
  }
}
.cid-uCH6IstBU3 .card-title {
  color: #45494E;
}
.cid-uCH6IstBU3 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCH6IstBU3 .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCH6IstBU3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tAbul8HdpX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAbul8HdpX .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-tAbul8HdpX .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-tAbul8HdpX .history-item {
    margin-top: 100px;
  }
}
.cid-tAbul8HdpX .history-item-first {
  margin-top: 0;
}
.cid-tAbul8HdpX .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-tAbul8HdpX .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-tAbul8HdpX .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .image-wrapper {
    max-width: 550px;
  }
}
.cid-tAbul8HdpX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tAbul8HdpX .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-tAbul8HdpX .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-tAbul8HdpX .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-tAbul8HdpX .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-tAbul8HdpX .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .text-wrapper {
    max-width: 550px;
  }
}
.cid-tAbul8HdpX .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-tAbul8HdpX .card-subtitle {
  width: 100%;
  color: #45494E;
  margin-top: 16px;
}
.cid-tAbul8HdpX .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-tAbul8HdpX .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-tAbul8HdpX .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tAbul8HdpX .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-tAbul8HdpX .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-tAbul8HdpX .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-tAbunW6vZo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAbunW6vZo .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-tAbunW6vZo .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-tAbunW6vZo .history-item {
    margin-top: 100px;
  }
}
.cid-tAbunW6vZo .history-item-first {
  margin-top: 0;
}
.cid-tAbunW6vZo .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-tAbunW6vZo .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-tAbunW6vZo .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .image-wrapper {
    max-width: 550px;
  }
}
.cid-tAbunW6vZo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tAbunW6vZo .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-tAbunW6vZo .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-tAbunW6vZo .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-tAbunW6vZo .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-tAbunW6vZo .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .text-wrapper {
    max-width: 550px;
  }
}
.cid-tAbunW6vZo .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-tAbunW6vZo .card-subtitle {
  width: 100%;
  color: #45494E;
  margin-top: 16px;
}
.cid-tAbunW6vZo .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-tAbunW6vZo .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-tAbunW6vZo .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tAbunW6vZo .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-tAbunW6vZo .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-tAbunW6vZo .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uCRxxcPbj0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uCRxxcPbj0 .row {
  justify-content: flex-start;
}
.cid-uCRxxcPbj0 .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uCRxxcPbj0 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uCRxxcPbj0 .mbr-section-title {
  color: #45494E;
}
.cid-uCRxxcPbj0 .mbr-section-subtitle {
  color: #45494E;
}
.cid-uCRxxcPbj0 .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uCRxxcPbj0 .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uCRxxcPbj0 .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uCRxxcPbj0 .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uCRxxcPbj0 .item-content {
    padding-bottom: 10%;
  }
}
.cid-uCRxxcPbj0 .item-title {
  color: #45494E;
}
.cid-uCRxxcPbj0 .mbr-text {
  color: #45494E;
  padding-top: 34px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uCRxxcPbj0 .mbr-text {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.cid-uCRxxcPbj0 .mbr-section-btn {
  margin-top: auto;
}
.cid-uCRxxcPbj0 .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 34px;
}
@media (max-width: 991px) {
  .cid-uCRxxcPbj0 .item-img {
    margin-bottom: 24px;
  }
}
.cid-uCRxxcPbj0 .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uCRxxcPbj0 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCRxxcPbj0 .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-uCRxyI5rPz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCRxyI5rPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCRxyI5rPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCRxyI5rPz .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCRxyI5rPz .col-img {
    order: 2;
  }
}
.cid-uCRxyI5rPz .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCRxyI5rPz .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCRxyI5rPz .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCRxyI5rPz .col-tex {
    order: 1;
  }
}
.cid-uCRxyI5rPz .card-title {
  color: #45494E;
}
.cid-uCRxyI5rPz .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCRxyI5rPz .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCRxyI5rPz .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCRxzwLayX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCRxzwLayX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCRxzwLayX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCRxzwLayX .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCRxzwLayX .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCRxzwLayX .col-img {
    order: 2;
  }
}
.cid-uCRxzwLayX .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCRxzwLayX .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCRxzwLayX .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCRxzwLayX .col-tex {
    order: 1;
  }
}
.cid-uCRxzwLayX .card-title {
  color: #45494E;
}
.cid-uCRxzwLayX .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCRxzwLayX .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCRxzwLayX .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCvf8j5plS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #45494e;
}
.cid-uCvf8j5plS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCvf8j5plS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCvf8j5plS .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uCvf8j5plS .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCvf8j5plS .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uCvf8j5plS .container {
    padding: 0 20px;
  }
  .cid-uCvf8j5plS .container .row {
    padding: 0;
  }
}
.cid-uCvf8j5plS .image-wrapper {
  position: relative;
}
.cid-uCvf8j5plS .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uCvf8j5plS .image-wrapper img {
    height: 300px;
  }
}
.cid-uCvf8j5plS .image-wrapper .title-wrapper {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  padding: 0 90px;
}
@media (max-width: 992px) {
  .cid-uCvf8j5plS .image-wrapper .title-wrapper {
    position: static;
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uCvf8j5plS .image-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCvf8j5plS .mbr-section-title {
  color: #ffffff;
}
.cid-uCGsB2d9xE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uCGsB2d9xE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGsB2d9xE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGsB2d9xE .card-wrapper {
  width: 100%;
}
.cid-uCGsB2d9xE .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCGsB2d9xE .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCGsB2d9xE .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCGsB2d9xE .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCGsB2d9xE .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCGsB2d9xE .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCGsB2d9xE .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCGsB2d9xE .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCGsB2d9xE .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCGsB2d9xE .card-title {
    text-align: center !important;
  }
}
.cid-uCGsB2d9xE .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCGsB2d9xE .card-text {
    text-align: center !important;
  }
}
.cid-uCHcbPVkgs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHcbPVkgs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHcbPVkgs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCHcbPVkgs .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCHcbPVkgs .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHcbPVkgs .col-img {
    order: 2;
  }
}
.cid-uCHcbPVkgs .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHcbPVkgs .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHcbPVkgs .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHcbPVkgs .col-tex {
    order: 1;
  }
}
.cid-uCHcbPVkgs .card-title {
  color: #45494E;
}
.cid-uCHcbPVkgs .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHcbPVkgs .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHcbPVkgs .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCHccF9Csi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHccF9Csi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHccF9Csi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCHccF9Csi .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHccF9Csi .col-img {
    order: 2;
  }
}
.cid-uCHccF9Csi .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHccF9Csi .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHccF9Csi .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHccF9Csi .col-tex {
    order: 1;
  }
}
.cid-uCHccF9Csi .card-title {
  color: #45494E;
}
.cid-uCHccF9Csi .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHccF9Csi .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHccF9Csi .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCLdL5ly4A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLdL5ly4A .item:focus,
.cid-uCLdL5ly4A span:focus {
  outline: none;
}
.cid-uCLdL5ly4A .item {
  cursor: pointer;
}
.cid-uCLdL5ly4A .grid-container {
  grid-row-gap: 20px;
}
.cid-uCLdL5ly4A .grid-container-1,
.cid-uCLdL5ly4A .grid-container-2,
.cid-uCLdL5ly4A .grid-container-3 {
  gap: 20px;
}
.cid-uCLdL5ly4A .container,
.cid-uCLdL5ly4A .container-fluid {
  overflow: hidden;
}
.cid-uCLdL5ly4A .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uCLdL5ly4A .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCLdL5ly4A .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uCLdL5ly4A .grid-item img {
    min-width: 50vw;
    height: 200px;
  }
}
.cid-uCLdL5ly4A .grid-container-1,
.cid-uCLdL5ly4A .grid-container-2,
.cid-uCLdL5ly4A .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uCLdL5ly4A .grid-container-1 {
  align-items: flex-end;
}
.cid-uCLdL5ly4A .grid-container-2 {
  align-items: flex-start;
}
.cid-uCLdL5ly4A .mbr-section-title {
  margin-bottom: 64px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uCLdL5ly4A .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCHcdvm6aF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHcdvm6aF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHcdvm6aF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCHcdvm6aF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCHcdvm6aF .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHcdvm6aF .col-img {
    order: 2;
  }
}
.cid-uCHcdvm6aF .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHcdvm6aF .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHcdvm6aF .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHcdvm6aF .col-tex {
    order: 1;
  }
}
.cid-uCHcdvm6aF .card-title {
  color: #45494E;
}
.cid-uCHcdvm6aF .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHcdvm6aF .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHcdvm6aF .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCHcefJrrc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHcefJrrc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHcefJrrc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCHcefJrrc .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHcefJrrc .col-img {
    order: 2;
  }
}
.cid-uCHcefJrrc .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHcefJrrc .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHcefJrrc .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHcefJrrc .col-tex {
    order: 1;
  }
}
.cid-uCHcefJrrc .card-title {
  color: #45494E;
}
.cid-uCHcefJrrc .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHcefJrrc .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHcefJrrc .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCHuwcbFO2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHuwcbFO2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHuwcbFO2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCHuwcbFO2 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCHuwcbFO2 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHuwcbFO2 .col-img {
    order: 2;
  }
}
.cid-uCHuwcbFO2 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHuwcbFO2 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHuwcbFO2 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHuwcbFO2 .col-tex {
    order: 1;
  }
}
.cid-uCHuwcbFO2 .card-title {
  color: #45494E;
}
.cid-uCHuwcbFO2 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHuwcbFO2 .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHuwcbFO2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCHux2zypl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHux2zypl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHux2zypl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCHux2zypl .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHux2zypl .col-img {
    order: 2;
  }
}
.cid-uCHux2zypl .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHux2zypl .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHux2zypl .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHux2zypl .col-tex {
    order: 1;
  }
}
.cid-uCHux2zypl .card-title {
  color: #45494E;
}
.cid-uCHux2zypl .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHux2zypl .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHux2zypl .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCHuxOUvGw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCHuxOUvGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCHuxOUvGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCHuxOUvGw .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCHuxOUvGw .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCHuxOUvGw .col-img {
    order: 2;
  }
}
.cid-uCHuxOUvGw .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCHuxOUvGw .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCHuxOUvGw .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCHuxOUvGw .col-tex {
    order: 1;
  }
}
.cid-uCHuxOUvGw .card-title {
  color: #45494E;
}
.cid-uCHuxOUvGw .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCHuxOUvGw .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCHuxOUvGw .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCLo36yztF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCLo36yztF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLo36yztF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCLo36yztF .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCLo36yztF .col-img {
    order: 2;
  }
}
.cid-uCLo36yztF .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCLo36yztF .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCLo36yztF .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCLo36yztF .col-tex {
    order: 1;
  }
}
.cid-uCLo36yztF .card-title {
  color: #45494E;
}
.cid-uCLo36yztF .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCLo36yztF .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCLo36yztF .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCLo3Wds5u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCLo3Wds5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLo3Wds5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLo3Wds5u .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCLo3Wds5u .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCLo3Wds5u .col-img {
    order: 2;
  }
}
.cid-uCLo3Wds5u .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCLo3Wds5u .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCLo3Wds5u .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCLo3Wds5u .col-tex {
    order: 1;
  }
}
.cid-uCLo3Wds5u .card-title {
  color: #45494E;
}
.cid-uCLo3Wds5u .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCLo3Wds5u .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCLo3Wds5u .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCLocRZgu5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCLocRZgu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLocRZgu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCLocRZgu5 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCLocRZgu5 .col-img {
    order: 2;
  }
}
.cid-uCLocRZgu5 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCLocRZgu5 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCLocRZgu5 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCLocRZgu5 .col-tex {
    order: 1;
  }
}
.cid-uCLocRZgu5 .card-title {
  color: #45494E;
}
.cid-uCLocRZgu5 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCLocRZgu5 .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCLocRZgu5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCLodAh1Mw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCLodAh1Mw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLodAh1Mw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCLodAh1Mw .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCLodAh1Mw .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uCLodAh1Mw .col-img {
    order: 2;
  }
}
.cid-uCLodAh1Mw .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCLodAh1Mw .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uCLodAh1Mw .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uCLodAh1Mw .col-tex {
    order: 1;
  }
}
.cid-uCLodAh1Mw .card-title {
  color: #45494E;
}
.cid-uCLodAh1Mw .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uCLodAh1Mw .mbr-section-btn {
  margin-top: 60px;
}
.cid-uCLodAh1Mw .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uCLdJlEvZV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uCLdJlEvZV .item:focus,
.cid-uCLdJlEvZV span:focus {
  outline: none;
}
.cid-uCLdJlEvZV .item {
  cursor: pointer;
}
.cid-uCLdJlEvZV .grid-container {
  grid-row-gap: 20px;
}
.cid-uCLdJlEvZV .grid-container-1,
.cid-uCLdJlEvZV .grid-container-2,
.cid-uCLdJlEvZV .grid-container-3 {
  gap: 20px;
}
.cid-uCLdJlEvZV .container,
.cid-uCLdJlEvZV .container-fluid {
  overflow: hidden;
}
.cid-uCLdJlEvZV .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uCLdJlEvZV .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uCLdJlEvZV .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uCLdJlEvZV .grid-item img {
    min-width: 50vw;
    height: 200px;
  }
}
.cid-uCLdJlEvZV .grid-container-1,
.cid-uCLdJlEvZV .grid-container-2,
.cid-uCLdJlEvZV .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uCLdJlEvZV .grid-container-1 {
  align-items: flex-end;
}
.cid-uCLdJlEvZV .grid-container-2 {
  align-items: flex-start;
}
.cid-uCLdJlEvZV .mbr-section-title {
  margin-bottom: 64px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uCLdJlEvZV .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCGs78nXvD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCGs78nXvD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCGs78nXvD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCGs78nXvD .card-wrapper {
  width: 100%;
}
.cid-uCGs78nXvD .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uCGs78nXvD .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uCGs78nXvD .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uCGs78nXvD .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uCGs78nXvD .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uCGs78nXvD .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCGs78nXvD .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uCGs78nXvD .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uCGs78nXvD .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uCGs78nXvD .card-title {
    text-align: center !important;
  }
}
.cid-uCGs78nXvD .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uCGs78nXvD .card-text {
    text-align: center !important;
  }
}
.cid-uCwgaJfVOr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #222222;
}
.cid-uCwgaJfVOr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCwgaJfVOr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCwgaJfVOr .container-fluid {
  margin: 0;
  padding: 0 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uCwgaJfVOr .container-fluid {
    padding: 0 20px;
  }
}
.cid-uCwgaJfVOr .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uCwgaJfVOr .container {
    padding: 0 20px;
  }
  .cid-uCwgaJfVOr .container .row {
    padding: 0;
  }
}
.cid-uCwgaJfVOr .image-wrapper {
  position: relative;
}
.cid-uCwgaJfVOr .image-wrapper img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uCwgaJfVOr .image-wrapper img {
    height: 300px;
  }
}
.cid-uCwgaJfVOr .image-wrapper .title-wrapper {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  padding: 0 90px;
}
@media (max-width: 992px) {
  .cid-uCwgaJfVOr .image-wrapper .title-wrapper {
    position: static;
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uCwgaJfVOr .image-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCwgaJfVOr .mbr-section-title {
  color: #ffffff;
}
.cid-uCv66gk2Y1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uCv66gk2Y1 .row {
  justify-content: flex-start;
}
.cid-uCv66gk2Y1 .mbr-section-title {
  color: #45494E;
}
.cid-uCv66gk2Y1 .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uCv66gk2Y1 .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uCv66gk2Y1 .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uCv66gk2Y1 .mbr-text {
  margin-top: 36px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uCv66gk2Y1 .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uCv66gk2Y1 .mbr-text {
    margin-top: 20px;
  }
}
.cid-tAbupY2pSZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1332.jpg");
}
.cid-tAbupY2pSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAbupY2pSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAbupY2pSZ .row {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tAbupY2pSZ .col-brand {
  display: flex;
  align-items: flex-start;
}
.cid-tAbupY2pSZ .navbar-brand {
  display: flex;
  flex-basis: 100%;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 40px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  white-space: normal;
}
.cid-tAbupY2pSZ .navbar-brand .navbar-logo {
  padding-left: 16px;
  margin-left: auto;
}
.cid-tAbupY2pSZ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tAbupY2pSZ .navbar-brand .navbar-caption-wrap {
  margin-bottom: 32px !important;
}
@media (max-width: 991px) {
  .cid-tAbupY2pSZ .navbar-brand .navbar-caption-wrap {
    margin-bottom: 24px !important;
  }
}
.cid-tAbupY2pSZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAbupY2pSZ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tAbupY2pSZ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAbupY2pSZ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tAbupY2pSZ .col-link {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cid-tAbupY2pSZ .col-link {
    padding-top: 32px;
  }
}
.cid-tAbupY2pSZ .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 16px;
}
.cid-tAbupY2pSZ .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #A2A4A7;
}
.cid-tAbupY2pSZ .list li {
  width: 100%;
  color: inherit !important;
  line-height: 2 !important;
  transition: color 0.3s ease;
}
.cid-tAbupY2pSZ .list li:hover {
  color: #ffffff !important;
}
.cid-tAbupY2pSZ .list a {
  color: inherit !important;
  line-height: inherit !important;
  transition: color 0.3s ease;
}
.cid-tAbupY2pSZ .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tAbupY2pSZ .mbr-text {
  color: #ffffff;
}
.cid-tAbupY2pSZ .col-copyright {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-tAbupY2pSZ .col-copyright {
    margin-top: 70px;
  }
}
.cid-tAbupY2pSZ .copyright {
  color: #ffffff;
}
.cid-uSwdDWUlJd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSwdDWUlJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSwdDWUlJd .container-fluid {
  padding: 0;
}
.cid-uSwdDWUlJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSwdDWUlJd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSwdDWUlJd .row {
  flex-direction: row-reverse;
}
.cid-uSwdDWUlJd img {
  width: 100%;
}
