body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.36rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.68rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #f7ed4a !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !important;
}
.btn-primary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-primary {
    width: -webkit-fill-available;
  }
}
.btn-secondary {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: #181818 !important;
}
.btn-secondary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-secondary {
    width: -webkit-fill-available;
  }
}
.btn-info {
  box-shadow: 0 0 0 100px #82786e inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: #82786e !important;
}
.btn-info span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-info {
    width: -webkit-fill-available;
  }
}
.btn-success {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !important;
}
.btn-success span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-success {
    width: -webkit-fill-available;
  }
}
.btn-warning {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: #879a9f !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b1a374 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-primary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-primary-outline span:after {
  content: '';
  position: absolute;
  background: #f7ed4a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-primary-outline {
    width: -webkit-fill-available;
  }
}
.btn-secondary-outline {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #181818;
  border-color: #181818;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-secondary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-secondary-outline span:after {
  content: '';
  position: absolute;
  background: #181818;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-secondary-outline {
    width: -webkit-fill-available;
  }
}
.btn-info-outline {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-info-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-info-outline span:after {
  content: '';
  position: absolute;
  background: #82786e;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-info-outline {
    width: -webkit-fill-available;
  }
}
.btn-success-outline {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-success-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-success-outline span:after {
  content: '';
  position: absolute;
  background: #f7ed4a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-success-outline {
    width: -webkit-fill-available;
  }
}
.btn-warning-outline {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-warning-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-warning-outline span:after {
  content: '';
  position: absolute;
  background: #879a9f;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #b1a374;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f7ed4a !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f7ed4a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #181818 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7ed4a;
  border-color: #f7ed4a;
  color: #585304;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f7ed4a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #f7ed4a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7ed4a;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f7ed4a;
  border-bottom-color: #f7ed4a;
}
.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: #f7ed4a !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: #181818 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
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%;
  -webkit-transform: translateX(-50%) translateY(-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='%23f7ed4a' %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;
}
.cid-tWMSVnurSs {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWMSVnurSs .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-tWMSVnurSs .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWMSVnurSs .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWMSVnurSs .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWMSVnurSs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWMSVnurSs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWMSVnurSs .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWMSVnurSs .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWMSVnurSs .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWMSVnurSs .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWMSVnurSs .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWMSVnurSs .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWMSVnurSs .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWMSVnurSs .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWMSVnurSs .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWMSVnurSs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWMSVnurSs .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 148, 114, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #009472;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWMSVnurSs .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWMSVnurSs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWMSVnurSs .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #009472;
  background: rgba(0, 148, 114, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWMSVnurSs .nav-item:focus,
.cid-tWMSVnurSs .nav-link:focus {
  outline: none;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWMSVnurSs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWMSVnurSs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWMSVnurSs .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tWMSVnurSs .navbar.opened {
  transition: all 0.3s;
}
.cid-tWMSVnurSs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWMSVnurSs .navbar .navbar-logo img {
  width: auto;
}
.cid-tWMSVnurSs .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWMSVnurSs .navbar.collapsed {
  justify-content: center;
}
.cid-tWMSVnurSs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWMSVnurSs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWMSVnurSs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWMSVnurSs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .navbar {
    min-height: 72px;
  }
  .cid-tWMSVnurSs .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWMSVnurSs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWMSVnurSs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWMSVnurSs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWMSVnurSs .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-tWMSVnurSs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWMSVnurSs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWMSVnurSs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWMSVnurSs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWMSVnurSs .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWMSVnurSs .dropdown-item.active,
.cid-tWMSVnurSs .dropdown-item:active {
  background-color: transparent;
}
.cid-tWMSVnurSs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWMSVnurSs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWMSVnurSs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWMSVnurSs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #009472;
}
.cid-tWMSVnurSs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWMSVnurSs .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWMSVnurSs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWMSVnurSs .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWMSVnurSs .navbar-buttons {
    text-align: left;
  }
}
.cid-tWMSVnurSs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWMSVnurSs .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWMSVnurSs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWMSVnurSs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWMSVnurSs .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWMSVnurSs .navbar {
    height: 70px;
  }
  .cid-tWMSVnurSs .navbar.opened {
    height: auto;
  }
  .cid-tWMSVnurSs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWMSVnurSs .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWMSVnurSs .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWMSVnurSs .navbar-brand {
    margin-right: auto;
  }
  .cid-tWMSVnurSs .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #009472;
    opacity: 1;
    border-color: rgba(0, 148, 114, 0.8) !important;
    background: rgba(0, 148, 114, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWMSVnurSs .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWMSVnurSs .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWMSVnurSs .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWRXaUd7Xe {
  overflow: hidden;
  background-color: #262642;
}
.cid-tWRXaUd7Xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWRXaUd7Xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWRXaUd7Xe .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .container {
    padding: 0 24px;
  }
}
.cid-tWRXaUd7Xe .row {
  position: relative;
}
.cid-tWRXaUd7Xe .row .card {
  justify-content: center;
}
.cid-tWRXaUd7Xe .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #009472;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-tWRXaUd7Xe .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-tWRXaUd7Xe .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tWRXaUd7Xe .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWRXaUd7Xe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWRXaUd7Xe .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-tWRXaUd7Xe .image-wrapper {
  position: relative;
}
.cid-tWRXaUd7Xe .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWRXaUd7Xe .image-wrapper img {
    height: 350px;
  }
}
.cid-tWRXaUd7Xe .mbr-section-title {
  color: #F5DF4D;
}
.cid-tWRXaUd7Xe .mbr-text {
  color: #FF3399;
}
.cid-tWRXaUd7Xe .mbr-text,
.cid-tWRXaUd7Xe .mbr-section-btn {
  color: #ffffff;
}
.cid-tWRXaUd7Xe .mbr-section-title,
.cid-tWRXaUd7Xe .mbr-section-btn {
  color: #ffffff;
}
.cid-tWOwKN5WCJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #009472;
}
.cid-tWOwKN5WCJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOwKN5WCJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWOwKN5WCJ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWOwKN5WCJ .container {
    padding: 0 12px;
  }
}
.cid-tWOwKN5WCJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWOwKN5WCJ .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWOwKN5WCJ .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWOwKN5WCJ .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWOwKN5WCJ .mbr-section-title {
  color: #222222;
}
.cid-tWNud1Qi2C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWNud1Qi2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNud1Qi2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNud1Qi2C .container-small,
.cid-tWNud1Qi2C .container-fluid {
  padding: 0 !important;
}
.cid-tWNud1Qi2C .container-small {
  max-width: 1440px;
}
.cid-tWNud1Qi2C .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #f2f2f4;
}
@media (max-width: 991px) {
  .cid-tWNud1Qi2C .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWNud1Qi2C .text-box {
    padding: 50px 10px;
  }
}
.cid-tWNud1Qi2C .mbr-section-title {
  color: #131313;
}
.cid-tWNud1Qi2C .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWNud1Qi2C .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWNud1Qi2C .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWNud1Qi2C .mbr-text a {
  text-decoration: underline;
}
.cid-tWNud1Qi2C .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWNud1Qi2C .mbr-section-subtitle,
.cid-tWNud1Qi2C .mbr-section-btn {
  text-align: right;
}
.cid-tWNud1Qi2C .mbr-section-subtitle,
.cid-tWNud1Qi2C .mbr-section-btn DIV {
  text-align: left;
}
.cid-rGzgI03jEE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0b1b3f;
}
@media (min-width: 992px) {
  .cid-rGzgI03jEE .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rGzgI03jEE .content {
    padding: 0 2rem;
  }
}
.cid-rGzgI03jEE .row {
  justify-content: flex-end;
}
.cid-rGzgI03jEE .img-col {
  padding: 0;
}
.cid-rGzgI03jEE .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-rGzgI03jEE .icon-wrap h3 {
  margin: 0;
}
.cid-rGzgI03jEE .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rGzgI03jEE .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-rGzgI03jEE .icon-title,
.cid-rGzgI03jEE .mbr-iconfont {
  color: #181818;
}
.cid-rGzgI03jEE .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rGzgI03jEE .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rGzgI03jEE .icons-wrap {
    flex-direction: column;
  }
  .cid-rGzgI03jEE .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-rGzgI03jEE .mbr-text,
.cid-rGzgI03jEE .mbr-section-btn,
.cid-rGzgI03jEE .content {
  color: #f2f2f4;
}
.cid-tWNApqbKrA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWNApqbKrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNApqbKrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNApqbKrA .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWNApqbKrA .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWNApqbKrA .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWNApqbKrA .mbr-section-title {
  color: #131313;
}
.cid-tWNApqbKrA .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWNApqbKrA .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWNApqbKrA .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWNApqbKrA .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #009472;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWNApqbKrA .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWNApqbKrA .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWNApqbKrA .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWNApqbKrA .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWNApqbKrA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWNApqbKrA .card-title {
  color: #131313;
}
.cid-tWNApqbKrA .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWNApqbKrA .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWNApqbKrA .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWNApqbKrA .card-link {
    margin-top: 15px;
  }
}
.cid-tWNApqbKrA .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWNzPR8VcF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWNzPR8VcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNzPR8VcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNzPR8VcF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWNzPR8VcF .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWNzPR8VcF .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWNzPR8VcF .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWNzPR8VcF .container {
    padding: 0 12px;
  }
}
.cid-tWNzPR8VcF .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWNzPR8VcF .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWNzPR8VcF .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWNzPR8VcF .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWNzPR8VcF .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWNzPR8VcF .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWNzPR8VcF .mbr-section-title,
.cid-tWNzPR8VcF .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tWND4KtZLq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWND4KtZLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWND4KtZLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWND4KtZLq .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWND4KtZLq .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWND4KtZLq .container {
    padding: 0 24px;
  }
}
.cid-tWND4KtZLq .row {
  justify-content: center;
}
.cid-tWND4KtZLq .content-wrapper {
  border-radius: 40px;
  background-color: #009472;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWND4KtZLq .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWND4KtZLq .content-wrapper {
    padding: 32px;
  }
}
.cid-tWND4KtZLq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWND4KtZLq .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWND4KtZLq .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWND4KtZLq .mbr-text {
  color: #0b1b3f;
}
.cid-tWNSQQEuAu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
.cid-tWNSQQEuAu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNSQQEuAu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNSQQEuAu .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWNSQQEuAu .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWNSQQEuAu .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWNSQQEuAu .mbr-section-title {
  color: #131313;
}
.cid-tWNSQQEuAu .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWNSQQEuAu .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWNSQQEuAu .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWNSQQEuAu .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWNSQQEuAu .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWNSQQEuAu .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWNSQQEuAu .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWNSQQEuAu .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWNSQQEuAu .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWNSQQEuAu .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWNSQQEuAu .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWNSQQEuAu .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWNSQQEuAu .content-wrap {
    margin-top: 0;
  }
}
.cid-tWNSQQEuAu .card-title {
  color: #131313;
}
.cid-tWNSQQEuAu .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWNSQQEuAu .card-text {
    margin-top: 15px;
  }
}
.cid-tWNSQQEuAu .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWNSQQEuAu .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWNSQQEuAu .card-link {
    margin-top: 15px;
  }
}
.cid-tWNSQQEuAu .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWNEZtZEOk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b1b3f;
}
.cid-tWNEZtZEOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNEZtZEOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWNEZtZEOk .container {
    padding: 0 15px;
  }
}
.cid-tWNEZtZEOk .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWNEZtZEOk .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWNEZtZEOk .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWNEZtZEOk .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWNEZtZEOk .mbr-section-title {
  color: #ffffff;
}
.cid-tWNEZtZEOk .mbr-text {
  color: #ffffff;
}
.cid-tWNEZtZEOk .mbr-name {
  color: #f2ac2b;
}
.cid-tWO8io2QuK {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWO8io2QuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWO8io2QuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWO8io2QuK .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWO8io2QuK .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWO8io2QuK .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWO8io2QuK .mbr-section-title {
  color: #131313;
}
.cid-tWO8io2QuK .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWO8io2QuK .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWO8io2QuK .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWO8io2QuK .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWO8io2QuK .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWO8io2QuK .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWO8io2QuK .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWO8io2QuK .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWO8io2QuK .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWO8io2QuK .card-title {
  color: #131313;
}
.cid-tWO8io2QuK .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWO8io2QuK .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWO8io2QuK .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWO8io2QuK .card-link {
    margin-top: 15px;
  }
}
.cid-tWO8io2QuK .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWNQsfA8Vq {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWNQsfA8Vq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNQsfA8Vq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNQsfA8Vq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .container {
    padding: 0 16px;
  }
}
.cid-tWNQsfA8Vq .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .row {
    margin: 0 10px;
  }
}
.cid-tWNQsfA8Vq .row .card {
  position: relative;
  padding: 0;
}
.cid-tWNQsfA8Vq .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWNQsfA8Vq .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWNQsfA8Vq .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009472;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWNQsfA8Vq .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .row .card .icon-decor {
    display: none;
  }
}
.cid-tWNQsfA8Vq .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .title-wrapper {
    width: 100%;
  }
}
.cid-tWNQsfA8Vq .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWNQsfA8Vq .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWNQsfA8Vq .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWNQsfA8Vq .mbr-section-title {
  color: #f2f2f4;
}
.cid-tWNQsfA8Vq .mbr-text {
  color: #ffffff;
}
.cid-tWZEi52GD9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tWZEi52GD9 .container {
    padding: 0 25px;
  }
}
.cid-tWZEi52GD9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWZEi52GD9 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWZEi52GD9 .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWZEi52GD9 .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWZEi52GD9 .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWZEi52GD9 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWZEi52GD9 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEi52GD9 .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEi52GD9 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWZEi52GD9 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #fdfcfc;
  background-color: #0b1b3f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWZEi52GD9 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWZEi52GD9 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWZEi52GD9 .mbr-section-title {
  color: #000000;
}
.cid-tWZEi52GD9 .panel-title-edit {
  color: #000000;
}
.cid-tWZEi52GD9 .panel-text {
  color: #000000;
}
.cid-tWNQPv40RH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWNQPv40RH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNQPv40RH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNQPv40RH .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .container {
    padding: 0 16px;
  }
}
.cid-tWNQPv40RH .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .row {
    margin: 0 10px;
  }
}
.cid-tWNQPv40RH .row .card {
  position: relative;
  padding: 0;
}
.cid-tWNQPv40RH .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #aff0f6;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWNQPv40RH .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWNQPv40RH .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWNQPv40RH .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #192227;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWNQPv40RH .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWNQPv40RH .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .row .card .icon-decor {
    display: none;
  }
}
.cid-tWNQPv40RH .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .title-wrapper {
    width: 100%;
  }
}
.cid-tWNQPv40RH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWNQPv40RH .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWNQPv40RH .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWNQPv40RH .mbr-section-title {
  color: #ffffff;
}
.cid-tWNQPv40RH .mbr-text {
  color: #ffffff;
}
.cid-tWO0VRgI42 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #009472;
}
.cid-tWO0VRgI42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWO0VRgI42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWO0VRgI42 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWO0VRgI42 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWO0VRgI42 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWO0VRgI42 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWO0VRgI42 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWO0VRgI42 .mbr-section-title {
  color: #000000;
}
.cid-tWOa3MBqHk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOa3MBqHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOa3MBqHk .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWOa3MBqHk .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOa3MBqHk .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWOa3MBqHk a {
  font-weight: 600;
}
.cid-tWOa3MBqHk a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWOa3MBqHk .col-lg-3,
  .cid-tWOa3MBqHk .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWOa3MBqHk .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWOa3MBqHk .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWOa3MBqHk h5 {
  margin: 0;
}
.cid-tWOa3MBqHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOa3MBqHk .iconfont-wrapper {
  position: relative;
}
.cid-tWOa3MBqHk .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tWOa3MBqHk .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWOa3MBqHk .sociconfont-wrapper {
  display: flex;
}
.cid-tWOa3MBqHk .card-title,
.cid-tWOa3MBqHk .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWOa3MBqHk .card-text {
  color: #000000;
}
.cid-tWOa3MBqHk .mbr-section-title {
  color: #000000;
}
.cid-tWOa3MBqHk .main-title,
.cid-tWOa3MBqHk .iconfont-wrapper {
  text-align: left;
}
.cid-rGtUo6gJTl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b3f;
}
.cid-rGtUo6gJTl .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tWMSVnurSs {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWMSVnurSs .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-tWMSVnurSs .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWMSVnurSs .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWMSVnurSs .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWMSVnurSs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWMSVnurSs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWMSVnurSs .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWMSVnurSs .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWMSVnurSs .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWMSVnurSs .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWMSVnurSs .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWMSVnurSs .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWMSVnurSs .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWMSVnurSs .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWMSVnurSs .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWMSVnurSs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWMSVnurSs .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 148, 114, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #009472;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWMSVnurSs .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWMSVnurSs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWMSVnurSs .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #009472;
  background: rgba(0, 148, 114, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWMSVnurSs .nav-item:focus,
.cid-tWMSVnurSs .nav-link:focus {
  outline: none;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWMSVnurSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWMSVnurSs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWMSVnurSs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWMSVnurSs .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tWMSVnurSs .navbar.opened {
  transition: all 0.3s;
}
.cid-tWMSVnurSs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWMSVnurSs .navbar .navbar-logo img {
  width: auto;
}
.cid-tWMSVnurSs .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWMSVnurSs .navbar.collapsed {
  justify-content: center;
}
.cid-tWMSVnurSs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWMSVnurSs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWMSVnurSs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWMSVnurSs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWMSVnurSs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWMSVnurSs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWMSVnurSs .navbar {
    min-height: 72px;
  }
  .cid-tWMSVnurSs .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWMSVnurSs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWMSVnurSs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWMSVnurSs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWMSVnurSs .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-tWMSVnurSs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWMSVnurSs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWMSVnurSs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWMSVnurSs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWMSVnurSs .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWMSVnurSs .dropdown-item.active,
.cid-tWMSVnurSs .dropdown-item:active {
  background-color: transparent;
}
.cid-tWMSVnurSs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWMSVnurSs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWMSVnurSs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWMSVnurSs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #009472;
}
.cid-tWMSVnurSs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWMSVnurSs .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWMSVnurSs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWMSVnurSs .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWMSVnurSs .navbar-buttons {
    text-align: left;
  }
}
.cid-tWMSVnurSs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWMSVnurSs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWMSVnurSs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWMSVnurSs .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWMSVnurSs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWMSVnurSs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWMSVnurSs .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWMSVnurSs .navbar {
    height: 70px;
  }
  .cid-tWMSVnurSs .navbar.opened {
    height: auto;
  }
  .cid-tWMSVnurSs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWMSVnurSs .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWMSVnurSs .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWMSVnurSs .navbar-brand {
    margin-right: auto;
  }
  .cid-tWMSVnurSs .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #009472;
    opacity: 1;
    border-color: rgba(0, 148, 114, 0.8) !important;
    background: rgba(0, 148, 114, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWMSVnurSs .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWMSVnurSs .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWMSVnurSs .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWMSVnurSs .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWMSVnurSs .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWNXuWSUFQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tWNXuWSUFQ .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWNXuWSUFQ .content {
    padding: 0 2rem;
  }
}
.cid-tWNXuWSUFQ .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.cid-tWNXuWSUFQ .img-col {
  padding: 0;
}
.cid-tWNXuWSUFQ .icon-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWNXuWSUFQ .icon-wrap h3 {
  margin: 0;
}
.cid-tWNXuWSUFQ .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWNXuWSUFQ .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWNXuWSUFQ .icon-title,
.cid-tWNXuWSUFQ .mbr-iconfont {
  color: #181818;
}
.cid-tWNXuWSUFQ .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWNXuWSUFQ .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWNXuWSUFQ .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tWNXuWSUFQ .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWNXuWSUFQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNXuWSUFQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNXBPaIGY {
  display: flex;
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #f9f4b1;
}
@media (min-width: 768px) {
  .cid-tWNXBPaIGY {
    align-items: center;
  }
  .cid-tWNXBPaIGY .row {
    justify-content: center;
  }
}
.cid-tWNXBPaIGY p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWNXBPaIGY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tWNXBPaIGY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tWNXBPaIGY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tWNXBPaIGY .content-wrap {
    width: 100%;
  }
}
.cid-tWNXBPaIGY .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tWNXBPaIGY .mbr-text,
.cid-tWNXBPaIGY .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-tWNXBPaIGY .mbr-section-subtitle {
  color: #a1a1a1;
  text-align: center;
}
.cid-tWNXDYNWSK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #98dee8;
}
.cid-tWNXDYNWSK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNXDYNWSK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWNXDYNWSK .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWNXDYNWSK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWNXDYNWSK .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWNXDYNWSK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWNXDYNWSK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWNXDYNWSK .mbr-section-title {
  color: #000000;
}
.cid-tWOa9iQ5YW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWOa9iQ5YW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWOa9iQ5YW .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWOa9iQ5YW .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWOa9iQ5YW .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWOa9iQ5YW a {
  font-weight: 600;
}
.cid-tWOa9iQ5YW a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWOa9iQ5YW .col-lg-3,
  .cid-tWOa9iQ5YW .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWOa9iQ5YW .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWOa9iQ5YW .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWOa9iQ5YW h5 {
  margin: 0;
}
.cid-tWOa9iQ5YW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWOa9iQ5YW .iconfont-wrapper {
  position: relative;
}
.cid-tWOa9iQ5YW .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tWOa9iQ5YW .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWOa9iQ5YW .sociconfont-wrapper {
  display: flex;
}
.cid-tWOa9iQ5YW .card-title,
.cid-tWOa9iQ5YW .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWOa9iQ5YW .card-text {
  color: #000000;
}
.cid-tWOa9iQ5YW .mbr-section-title {
  color: #000000;
}
.cid-tWOa9iQ5YW .main-title,
.cid-tWOa9iQ5YW .iconfont-wrapper {
  text-align: left;
}
.cid-tWO8GH6ZEV {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWO8GH6ZEV .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-tWO8GH6ZEV .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWO8GH6ZEV .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWO8GH6ZEV .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWO8GH6ZEV .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWO8GH6ZEV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWO8GH6ZEV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWO8GH6ZEV .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWO8GH6ZEV .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWO8GH6ZEV .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWO8GH6ZEV .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWO8GH6ZEV .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWO8GH6ZEV .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWO8GH6ZEV .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWO8GH6ZEV .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWO8GH6ZEV .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWO8GH6ZEV .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWO8GH6ZEV .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWO8GH6ZEV .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWO8GH6ZEV .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWO8GH6ZEV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWO8GH6ZEV .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 148, 114, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #009472;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWO8GH6ZEV .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWO8GH6ZEV .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWO8GH6ZEV .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWO8GH6ZEV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWO8GH6ZEV .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #009472;
  background: rgba(0, 148, 114, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWO8GH6ZEV .nav-item:focus,
.cid-tWO8GH6ZEV .nav-link:focus {
  outline: none;
}
.cid-tWO8GH6ZEV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWO8GH6ZEV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWO8GH6ZEV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWO8GH6ZEV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWO8GH6ZEV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWO8GH6ZEV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWO8GH6ZEV .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tWO8GH6ZEV .navbar.opened {
  transition: all 0.3s;
}
.cid-tWO8GH6ZEV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWO8GH6ZEV .navbar .navbar-logo img {
  width: auto;
}
.cid-tWO8GH6ZEV .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWO8GH6ZEV .navbar.collapsed {
  justify-content: center;
}
.cid-tWO8GH6ZEV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWO8GH6ZEV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWO8GH6ZEV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tWO8GH6ZEV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWO8GH6ZEV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWO8GH6ZEV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWO8GH6ZEV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWO8GH6ZEV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWO8GH6ZEV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWO8GH6ZEV .navbar {
    min-height: 72px;
  }
  .cid-tWO8GH6ZEV .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWO8GH6ZEV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWO8GH6ZEV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWO8GH6ZEV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWO8GH6ZEV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWO8GH6ZEV .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-tWO8GH6ZEV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWO8GH6ZEV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWO8GH6ZEV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWO8GH6ZEV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWO8GH6ZEV .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWO8GH6ZEV .dropdown-item.active,
.cid-tWO8GH6ZEV .dropdown-item:active {
  background-color: transparent;
}
.cid-tWO8GH6ZEV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWO8GH6ZEV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWO8GH6ZEV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWO8GH6ZEV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #009472;
}
.cid-tWO8GH6ZEV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWO8GH6ZEV .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWO8GH6ZEV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWO8GH6ZEV .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWO8GH6ZEV .navbar-buttons {
    text-align: left;
  }
}
.cid-tWO8GH6ZEV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWO8GH6ZEV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWO8GH6ZEV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWO8GH6ZEV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWO8GH6ZEV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWO8GH6ZEV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWO8GH6ZEV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWO8GH6ZEV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWO8GH6ZEV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWO8GH6ZEV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWO8GH6ZEV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWO8GH6ZEV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWO8GH6ZEV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWO8GH6ZEV .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWO8GH6ZEV .navbar {
    height: 70px;
  }
  .cid-tWO8GH6ZEV .navbar.opened {
    height: auto;
  }
  .cid-tWO8GH6ZEV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWO8GH6ZEV .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWO8GH6ZEV .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWO8GH6ZEV .navbar-brand {
    margin-right: auto;
  }
  .cid-tWO8GH6ZEV .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #009472;
    opacity: 1;
    border-color: rgba(0, 148, 114, 0.8) !important;
    background: rgba(0, 148, 114, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWO8GH6ZEV .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWO8GH6ZEV .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWO8GH6ZEV .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWO8GH6ZEV .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWO8GH6ZEV .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWO8GHzETA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tWO8GHzETA .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWO8GHzETA .content {
    padding: 0 2rem;
  }
}
.cid-tWO8GHzETA .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.cid-tWO8GHzETA .img-col {
  padding: 0;
}
.cid-tWO8GHzETA .icon-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWO8GHzETA .icon-wrap h3 {
  margin: 0;
}
.cid-tWO8GHzETA .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWO8GHzETA .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWO8GHzETA .icon-title,
.cid-tWO8GHzETA .mbr-iconfont {
  color: #181818;
}
.cid-tWO8GHzETA .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWO8GHzETA .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWO8GHzETA .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tWO8GHzETA .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWO8GHzETA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWO8GHzETA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWO8GHZoeo {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f9f4b1;
}
@media (min-width: 768px) {
  .cid-tWO8GHZoeo {
    align-items: center;
  }
  .cid-tWO8GHZoeo .row {
    justify-content: center;
  }
}
.cid-tWO8GHZoeo p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWO8GHZoeo .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tWO8GHZoeo {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tWO8GHZoeo .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tWO8GHZoeo .content-wrap {
    width: 100%;
  }
}
.cid-tWO8GHZoeo .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tWO8GHZoeo .mbr-text,
.cid-tWO8GHZoeo .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-tWO8GHZoeo .mbr-section-subtitle {
  color: #a1a1a1;
  text-align: center;
}
.cid-tWO8GIAxG6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #98dee8;
}
.cid-tWO8GIAxG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWO8GIAxG6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWO8GIAxG6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWO8GIAxG6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWO8GIAxG6 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWO8GIAxG6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWO8GIAxG6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWO8GIAxG6 .mbr-section-title {
  color: #000000;
}
.cid-tWO8GISPkX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWO8GISPkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWO8GISPkX .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWO8GISPkX .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWO8GISPkX .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWO8GISPkX a {
  font-weight: 600;
}
.cid-tWO8GISPkX a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWO8GISPkX .col-lg-3,
  .cid-tWO8GISPkX .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWO8GISPkX .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWO8GISPkX .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWO8GISPkX h5 {
  margin: 0;
}
.cid-tWO8GISPkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWO8GISPkX .iconfont-wrapper {
  position: relative;
}
.cid-tWO8GISPkX .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tWO8GISPkX .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWO8GISPkX .sociconfont-wrapper {
  display: flex;
}
.cid-tWO8GISPkX .card-title,
.cid-tWO8GISPkX .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWO8GISPkX .card-text {
  color: #000000;
}
.cid-tWO8GISPkX .mbr-section-title {
  color: #000000;
}
.cid-tWO8GISPkX .main-title,
.cid-tWO8GISPkX .iconfont-wrapper {
  text-align: left;
}
.cid-tWS8lMHpaG {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWS8lMHpaG .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-tWS8lMHpaG .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWS8lMHpaG .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWS8lMHpaG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWS8lMHpaG .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWS8lMHpaG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWS8lMHpaG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWS8lMHpaG .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWS8lMHpaG .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWS8lMHpaG .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWS8lMHpaG .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWS8lMHpaG .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWS8lMHpaG .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWS8lMHpaG .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWS8lMHpaG .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWS8lMHpaG .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWS8lMHpaG .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWS8lMHpaG .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWS8lMHpaG .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWS8lMHpaG .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWS8lMHpaG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWS8lMHpaG .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 148, 114, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #009472;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWS8lMHpaG .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lMHpaG .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWS8lMHpaG .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWS8lMHpaG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWS8lMHpaG .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #009472;
  background: rgba(0, 148, 114, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWS8lMHpaG .nav-item:focus,
.cid-tWS8lMHpaG .nav-link:focus {
  outline: none;
}
.cid-tWS8lMHpaG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWS8lMHpaG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWS8lMHpaG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWS8lMHpaG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWS8lMHpaG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWS8lMHpaG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWS8lMHpaG .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tWS8lMHpaG .navbar.opened {
  transition: all 0.3s;
}
.cid-tWS8lMHpaG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWS8lMHpaG .navbar .navbar-logo img {
  width: auto;
}
.cid-tWS8lMHpaG .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWS8lMHpaG .navbar.collapsed {
  justify-content: center;
}
.cid-tWS8lMHpaG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWS8lMHpaG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWS8lMHpaG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tWS8lMHpaG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWS8lMHpaG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWS8lMHpaG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWS8lMHpaG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWS8lMHpaG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWS8lMHpaG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWS8lMHpaG .navbar {
    min-height: 72px;
  }
  .cid-tWS8lMHpaG .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWS8lMHpaG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWS8lMHpaG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWS8lMHpaG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWS8lMHpaG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWS8lMHpaG .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-tWS8lMHpaG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWS8lMHpaG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWS8lMHpaG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWS8lMHpaG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWS8lMHpaG .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWS8lMHpaG .dropdown-item.active,
.cid-tWS8lMHpaG .dropdown-item:active {
  background-color: transparent;
}
.cid-tWS8lMHpaG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWS8lMHpaG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWS8lMHpaG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWS8lMHpaG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #009472;
}
.cid-tWS8lMHpaG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWS8lMHpaG .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWS8lMHpaG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWS8lMHpaG .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWS8lMHpaG .navbar-buttons {
    text-align: left;
  }
}
.cid-tWS8lMHpaG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWS8lMHpaG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWS8lMHpaG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWS8lMHpaG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWS8lMHpaG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWS8lMHpaG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWS8lMHpaG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWS8lMHpaG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWS8lMHpaG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWS8lMHpaG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWS8lMHpaG .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWS8lMHpaG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWS8lMHpaG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWS8lMHpaG .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWS8lMHpaG .navbar {
    height: 70px;
  }
  .cid-tWS8lMHpaG .navbar.opened {
    height: auto;
  }
  .cid-tWS8lMHpaG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWS8lMHpaG .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWS8lMHpaG .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWS8lMHpaG .navbar-brand {
    margin-right: auto;
  }
  .cid-tWS8lMHpaG .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #009472;
    opacity: 1;
    border-color: rgba(0, 148, 114, 0.8) !important;
    background: rgba(0, 148, 114, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWS8lMHpaG .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWS8lMHpaG .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWS8lMHpaG .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWS8lMHpaG .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWS8lMHpaG .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWS8lNbKLd {
  overflow: hidden;
  background-color: #262642;
}
.cid-tWS8lNbKLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lNbKLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lNbKLd .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .container {
    padding: 0 24px;
  }
}
.cid-tWS8lNbKLd .row {
  position: relative;
}
.cid-tWS8lNbKLd .row .card {
  justify-content: center;
}
.cid-tWS8lNbKLd .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #009472;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-tWS8lNbKLd .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-tWS8lNbKLd .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tWS8lNbKLd .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWS8lNbKLd .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWS8lNbKLd .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-tWS8lNbKLd .image-wrapper {
  position: relative;
}
.cid-tWS8lNbKLd .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWS8lNbKLd .image-wrapper img {
    height: 350px;
  }
}
.cid-tWS8lNbKLd .mbr-section-title {
  color: #F5DF4D;
}
.cid-tWS8lNbKLd .mbr-text {
  color: #FF3399;
}
.cid-tWS8lNbKLd .mbr-text,
.cid-tWS8lNbKLd .mbr-section-btn {
  color: #ffffff;
}
.cid-tWS8lNbKLd .mbr-section-title,
.cid-tWS8lNbKLd .mbr-section-btn {
  color: #ffffff;
}
.cid-tWS8lNwHpM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #009472;
}
.cid-tWS8lNwHpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lNwHpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWS8lNwHpM .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWS8lNwHpM .container {
    padding: 0 12px;
  }
}
.cid-tWS8lNwHpM .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWS8lNwHpM .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWS8lNwHpM .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWS8lNwHpM .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWS8lNwHpM .mbr-section-title {
  color: #222222;
}
.cid-tWS8lNOebG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWS8lNOebG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lNOebG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lNOebG .container-small,
.cid-tWS8lNOebG .container-fluid {
  padding: 0 !important;
}
.cid-tWS8lNOebG .container-small {
  max-width: 1440px;
}
.cid-tWS8lNOebG .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #f2f2f4;
}
@media (max-width: 991px) {
  .cid-tWS8lNOebG .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lNOebG .text-box {
    padding: 50px 10px;
  }
}
.cid-tWS8lNOebG .mbr-section-title {
  color: #131313;
}
.cid-tWS8lNOebG .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWS8lNOebG .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWS8lNOebG .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWS8lNOebG .mbr-text a {
  text-decoration: underline;
}
.cid-tWS8lNOebG .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWS8lNOebG .mbr-section-subtitle,
.cid-tWS8lNOebG .mbr-section-btn {
  text-align: right;
}
.cid-tWS8lNOebG .mbr-section-subtitle,
.cid-tWS8lNOebG .mbr-section-btn DIV {
  text-align: left;
}
.cid-tWS8lOczlq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0b1b3f;
}
@media (min-width: 992px) {
  .cid-tWS8lOczlq .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWS8lOczlq .content {
    padding: 0 2rem;
  }
}
.cid-tWS8lOczlq .row {
  justify-content: flex-end;
}
.cid-tWS8lOczlq .img-col {
  padding: 0;
}
.cid-tWS8lOczlq .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWS8lOczlq .icon-wrap h3 {
  margin: 0;
}
.cid-tWS8lOczlq .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWS8lOczlq .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWS8lOczlq .icon-title,
.cid-tWS8lOczlq .mbr-iconfont {
  color: #181818;
}
.cid-tWS8lOczlq .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWS8lOczlq .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lOczlq .icons-wrap {
    flex-direction: column;
  }
  .cid-tWS8lOczlq .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWS8lOczlq .mbr-text,
.cid-tWS8lOczlq .mbr-section-btn,
.cid-tWS8lOczlq .content {
  color: #f2f2f4;
}
.cid-tWS8lOxPoj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWS8lOxPoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lOxPoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lOxPoj .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWS8lOxPoj .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lOxPoj .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWS8lOxPoj .mbr-section-title {
  color: #131313;
}
.cid-tWS8lOxPoj .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWS8lOxPoj .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWS8lOxPoj .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWS8lOxPoj .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #009472;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWS8lOxPoj .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWS8lOxPoj .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWS8lOxPoj .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWS8lOxPoj .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWS8lOxPoj .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWS8lOxPoj .card-title {
  color: #131313;
}
.cid-tWS8lOxPoj .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWS8lOxPoj .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWS8lOxPoj .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lOxPoj .card-link {
    margin-top: 15px;
  }
}
.cid-tWS8lOxPoj .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWS8lOYLng {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWS8lOYLng .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lOYLng .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lOYLng .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWS8lOYLng .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWS8lOYLng .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lOYLng .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWS8lOYLng .container {
    padding: 0 12px;
  }
}
.cid-tWS8lOYLng .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWS8lOYLng .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWS8lOYLng .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWS8lOYLng .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWS8lOYLng .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWS8lOYLng .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWS8lOYLng .mbr-section-title,
.cid-tWS8lOYLng .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tWSiVGNDgG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWSiVGNDgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSiVGNDgG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSiVGNDgG .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWSiVGNDgG .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWSiVGNDgG .container-fluid .row {
  padding: 0;
}
.cid-tWSiVGNDgG .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWSiVGNDgG .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWSiVGNDgG .card {
    padding: 48px 20px;
  }
}
.cid-tWSiVGNDgG .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWSiVGNDgG .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWSiVGNDgG .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWSiVGNDgG .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWSiVGNDgG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWS8lPevQY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWS8lPevQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lPevQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lPevQY .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWS8lPevQY .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lPevQY .container {
    padding: 0 24px;
  }
}
.cid-tWS8lPevQY .row {
  justify-content: center;
}
.cid-tWS8lPevQY .content-wrapper {
  border-radius: 40px;
  background-color: #009472;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWS8lPevQY .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWS8lPevQY .content-wrapper {
    padding: 32px;
  }
}
.cid-tWS8lPevQY .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWS8lPevQY .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWS8lPevQY .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWS8lPevQY .mbr-text {
  color: #0b1b3f;
}
.cid-tWS8lPy9De {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
.cid-tWS8lPy9De .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lPy9De .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lPy9De .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWS8lPy9De .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lPy9De .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWS8lPy9De .mbr-section-title {
  color: #131313;
}
.cid-tWS8lPy9De .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWS8lPy9De .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWS8lPy9De .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWS8lPy9De .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWS8lPy9De .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWS8lPy9De .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lPy9De .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWS8lPy9De .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWS8lPy9De .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWS8lPy9De .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWS8lPy9De .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWS8lPy9De .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWS8lPy9De .content-wrap {
    margin-top: 0;
  }
}
.cid-tWS8lPy9De .card-title {
  color: #131313;
}
.cid-tWS8lPy9De .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWS8lPy9De .card-text {
    margin-top: 15px;
  }
}
.cid-tWS8lPy9De .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWS8lPy9De .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWS8lPy9De .card-link {
    margin-top: 15px;
  }
}
.cid-tWS8lPy9De .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWS8lPYm4w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b1b3f;
}
.cid-tWS8lPYm4w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lPYm4w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWS8lPYm4w .container {
    padding: 0 15px;
  }
}
.cid-tWS8lPYm4w .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWS8lPYm4w .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWS8lPYm4w .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWS8lPYm4w .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWS8lPYm4w .mbr-section-title {
  color: #ffffff;
}
.cid-tWS8lPYm4w .mbr-text {
  color: #ffffff;
}
.cid-tWS8lPYm4w .mbr-name {
  color: #fdfcfc;
}
.cid-tWS8lQekan {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWS8lQekan .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lQekan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lQekan .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWS8lQekan .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lQekan .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWS8lQekan .mbr-section-title {
  color: #131313;
}
.cid-tWS8lQekan .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWS8lQekan .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWS8lQekan .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWS8lQekan .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWS8lQekan .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWS8lQekan .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWS8lQekan .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWS8lQekan .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWS8lQekan .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWS8lQekan .card-title {
  color: #131313;
}
.cid-tWS8lQekan .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWS8lQekan .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWS8lQekan .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWS8lQekan .card-link {
    margin-top: 15px;
  }
}
.cid-tWS8lQekan .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWS8lQGwbl {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWS8lQGwbl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lQGwbl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lQGwbl .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .container {
    padding: 0 16px;
  }
}
.cid-tWS8lQGwbl .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .row {
    margin: 0 10px;
  }
}
.cid-tWS8lQGwbl .row .card {
  position: relative;
  padding: 0;
}
.cid-tWS8lQGwbl .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWS8lQGwbl .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWS8lQGwbl .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009472;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWS8lQGwbl .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .row .card .icon-decor {
    display: none;
  }
}
.cid-tWS8lQGwbl .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .title-wrapper {
    width: 100%;
  }
}
.cid-tWS8lQGwbl .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWS8lQGwbl .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWS8lQGwbl .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWS8lQGwbl .mbr-section-title {
  color: #f2f2f4;
}
.cid-tWS8lQGwbl .mbr-text {
  color: #ffffff;
}
.cid-tWZEwMB8TL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tWZEwMB8TL .container {
    padding: 0 25px;
  }
}
.cid-tWZEwMB8TL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWZEwMB8TL .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWZEwMB8TL .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWZEwMB8TL .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWZEwMB8TL .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWZEwMB8TL .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWZEwMB8TL .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEwMB8TL .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEwMB8TL .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWZEwMB8TL .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #fdfcfc;
  background-color: #0b1b3f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWZEwMB8TL .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWZEwMB8TL .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWZEwMB8TL .mbr-section-title {
  color: #000000;
}
.cid-tWZEwMB8TL .panel-title-edit {
  color: #000000;
}
.cid-tWZEwMB8TL .panel-text {
  color: #000000;
}
.cid-tWS8lRr0bm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWS8lRr0bm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lRr0bm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lRr0bm .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .container {
    padding: 0 16px;
  }
}
.cid-tWS8lRr0bm .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .row {
    margin: 0 10px;
  }
}
.cid-tWS8lRr0bm .row .card {
  position: relative;
  padding: 0;
}
.cid-tWS8lRr0bm .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #aff0f6;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWS8lRr0bm .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWS8lRr0bm .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWS8lRr0bm .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #192227;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWS8lRr0bm .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWS8lRr0bm .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .row .card .icon-decor {
    display: none;
  }
}
.cid-tWS8lRr0bm .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .title-wrapper {
    width: 100%;
  }
}
.cid-tWS8lRr0bm .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWS8lRr0bm .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWS8lRr0bm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWS8lRr0bm .mbr-section-title {
  color: #ffffff;
}
.cid-tWS8lRr0bm .mbr-text {
  color: #ffffff;
}
.cid-tWSxItvdw8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tWSxItvdw8 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #0046c7 !important;
  transition: all 0.3s;
  transform: rotate(45deg);
  font-weight: bold;
}
.cid-tWSxItvdw8 .panel-group {
  border: none;
}
.cid-tWSxItvdw8 .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWSxItvdw8 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tWSxItvdw8 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tWSxItvdw8 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tWSxItvdw8 .img-col {
  padding: 0;
}
.cid-tWSxItvdw8 .img-item {
  height: 100%;
}
.cid-tWSxItvdw8 img {
  height: 100%;
  object-fit: cover;
}
.cid-tWSxItvdw8 .collapsed span {
  transform: rotate(0deg);
}
.cid-tWSxItvdw8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWSxItvdw8 p {
  margin-bottom: 0.3rem;
}
.cid-tWSxItvdw8 .panel-title-edit {
  color: #e9c0e9;
}
.cid-tWSxItvdw8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tWSxItvdw8 .card {
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tWSxItvdw8 .card {
    padding: 1.5rem;
  }
}
.cid-tWSxItvdw8 .panel-text {
  color: #320707;
}
.cid-tWSxItvdw8 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tWSxItvdw8 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWSxItvdw8 .panel-title-edit,
.cid-tWSxItvdw8 .mbr-iconfont {
  color: #000000;
}
.cid-tWS8lRJ70n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #009472;
}
.cid-tWS8lRJ70n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lRJ70n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lRJ70n .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWS8lRJ70n .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWS8lRJ70n .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWS8lRJ70n .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWS8lRJ70n .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWS8lRJ70n .mbr-section-title {
  color: #000000;
}
.cid-tWS8lS7xJr {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWS8lS7xJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWS8lS7xJr .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWS8lS7xJr .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWS8lS7xJr .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWS8lS7xJr a {
  font-weight: 600;
}
.cid-tWS8lS7xJr a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWS8lS7xJr .col-lg-3,
  .cid-tWS8lS7xJr .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWS8lS7xJr .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWS8lS7xJr .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWS8lS7xJr h5 {
  margin: 0;
}
.cid-tWS8lS7xJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWS8lS7xJr .iconfont-wrapper {
  position: relative;
}
.cid-tWS8lS7xJr .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tWS8lS7xJr .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWS8lS7xJr .sociconfont-wrapper {
  display: flex;
}
.cid-tWS8lS7xJr .card-title,
.cid-tWS8lS7xJr .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWS8lS7xJr .card-text {
  color: #000000;
}
.cid-tWS8lS7xJr .mbr-section-title {
  color: #000000;
}
.cid-tWS8lS7xJr .main-title,
.cid-tWS8lS7xJr .iconfont-wrapper {
  text-align: left;
}
.cid-tWS8lSyfXi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b3f;
}
.cid-tWS8lSyfXi .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tWSjQ2qsAt {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWSjQ2qsAt .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-tWSjQ2qsAt .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWSjQ2qsAt .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWSjQ2qsAt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWSjQ2qsAt .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWSjQ2qsAt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWSjQ2qsAt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWSjQ2qsAt .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWSjQ2qsAt .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWSjQ2qsAt .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWSjQ2qsAt .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWSjQ2qsAt .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWSjQ2qsAt .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWSjQ2qsAt .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWSjQ2qsAt .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWSjQ2qsAt .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWSjQ2qsAt .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWSjQ2qsAt .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWSjQ2qsAt .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWSjQ2qsAt .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWSjQ2qsAt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWSjQ2qsAt .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 148, 114, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #009472;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWSjQ2qsAt .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ2qsAt .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWSjQ2qsAt .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWSjQ2qsAt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWSjQ2qsAt .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #009472;
  background: rgba(0, 148, 114, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWSjQ2qsAt .nav-item:focus,
.cid-tWSjQ2qsAt .nav-link:focus {
  outline: none;
}
.cid-tWSjQ2qsAt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWSjQ2qsAt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWSjQ2qsAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWSjQ2qsAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWSjQ2qsAt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWSjQ2qsAt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWSjQ2qsAt .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tWSjQ2qsAt .navbar.opened {
  transition: all 0.3s;
}
.cid-tWSjQ2qsAt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWSjQ2qsAt .navbar .navbar-logo img {
  width: auto;
}
.cid-tWSjQ2qsAt .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWSjQ2qsAt .navbar.collapsed {
  justify-content: center;
}
.cid-tWSjQ2qsAt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWSjQ2qsAt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWSjQ2qsAt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tWSjQ2qsAt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWSjQ2qsAt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWSjQ2qsAt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWSjQ2qsAt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWSjQ2qsAt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWSjQ2qsAt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWSjQ2qsAt .navbar {
    min-height: 72px;
  }
  .cid-tWSjQ2qsAt .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWSjQ2qsAt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWSjQ2qsAt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWSjQ2qsAt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWSjQ2qsAt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWSjQ2qsAt .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-tWSjQ2qsAt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWSjQ2qsAt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWSjQ2qsAt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWSjQ2qsAt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWSjQ2qsAt .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWSjQ2qsAt .dropdown-item.active,
.cid-tWSjQ2qsAt .dropdown-item:active {
  background-color: transparent;
}
.cid-tWSjQ2qsAt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWSjQ2qsAt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWSjQ2qsAt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWSjQ2qsAt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #009472;
}
.cid-tWSjQ2qsAt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWSjQ2qsAt .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWSjQ2qsAt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWSjQ2qsAt .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWSjQ2qsAt .navbar-buttons {
    text-align: left;
  }
}
.cid-tWSjQ2qsAt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWSjQ2qsAt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWSjQ2qsAt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWSjQ2qsAt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWSjQ2qsAt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWSjQ2qsAt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWSjQ2qsAt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWSjQ2qsAt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWSjQ2qsAt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWSjQ2qsAt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWSjQ2qsAt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWSjQ2qsAt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWSjQ2qsAt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWSjQ2qsAt .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWSjQ2qsAt .navbar {
    height: 70px;
  }
  .cid-tWSjQ2qsAt .navbar.opened {
    height: auto;
  }
  .cid-tWSjQ2qsAt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWSjQ2qsAt .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWSjQ2qsAt .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWSjQ2qsAt .navbar-brand {
    margin-right: auto;
  }
  .cid-tWSjQ2qsAt .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #009472;
    opacity: 1;
    border-color: rgba(0, 148, 114, 0.8) !important;
    background: rgba(0, 148, 114, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWSjQ2qsAt .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWSjQ2qsAt .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWSjQ2qsAt .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWSjQ2qsAt .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWSjQ2qsAt .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWSjQ2URIe {
  overflow: hidden;
  background-color: #262642;
}
.cid-tWSjQ2URIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ2URIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ2URIe .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .container {
    padding: 0 24px;
  }
}
.cid-tWSjQ2URIe .row {
  position: relative;
}
.cid-tWSjQ2URIe .row .card {
  justify-content: center;
}
.cid-tWSjQ2URIe .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #009472;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-tWSjQ2URIe .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-tWSjQ2URIe .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tWSjQ2URIe .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWSjQ2URIe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWSjQ2URIe .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-tWSjQ2URIe .image-wrapper {
  position: relative;
}
.cid-tWSjQ2URIe .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWSjQ2URIe .image-wrapper img {
    height: 350px;
  }
}
.cid-tWSjQ2URIe .mbr-section-title {
  color: #F5DF4D;
}
.cid-tWSjQ2URIe .mbr-text {
  color: #FF3399;
}
.cid-tWSjQ2URIe .mbr-text,
.cid-tWSjQ2URIe .mbr-section-btn {
  color: #ffffff;
}
.cid-tWSjQ2URIe .mbr-section-title,
.cid-tWSjQ2URIe .mbr-section-btn {
  color: #ffffff;
}
.cid-tWSjQ3h09A {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #009472;
}
.cid-tWSjQ3h09A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ3h09A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWSjQ3h09A .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWSjQ3h09A .container {
    padding: 0 12px;
  }
}
.cid-tWSjQ3h09A .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWSjQ3h09A .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWSjQ3h09A .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWSjQ3h09A .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWSjQ3h09A .mbr-section-title {
  color: #222222;
}
.cid-tWSjQ3DyfQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWSjQ3DyfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ3DyfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ3DyfQ .container-small,
.cid-tWSjQ3DyfQ .container-fluid {
  padding: 0 !important;
}
.cid-tWSjQ3DyfQ .container-small {
  max-width: 1440px;
}
.cid-tWSjQ3DyfQ .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #f2f2f4;
}
@media (max-width: 991px) {
  .cid-tWSjQ3DyfQ .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ3DyfQ .text-box {
    padding: 50px 10px;
  }
}
.cid-tWSjQ3DyfQ .mbr-section-title {
  color: #131313;
}
.cid-tWSjQ3DyfQ .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWSjQ3DyfQ .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWSjQ3DyfQ .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWSjQ3DyfQ .mbr-text a {
  text-decoration: underline;
}
.cid-tWSjQ3DyfQ .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWSjQ3DyfQ .mbr-section-subtitle,
.cid-tWSjQ3DyfQ .mbr-section-btn {
  text-align: right;
}
.cid-tWSjQ3DyfQ .mbr-section-subtitle,
.cid-tWSjQ3DyfQ .mbr-section-btn DIV {
  text-align: left;
}
.cid-tWSjQ3Xwvv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0b1b3f;
}
@media (min-width: 992px) {
  .cid-tWSjQ3Xwvv .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWSjQ3Xwvv .content {
    padding: 0 2rem;
  }
}
.cid-tWSjQ3Xwvv .row {
  justify-content: flex-end;
}
.cid-tWSjQ3Xwvv .img-col {
  padding: 0;
}
.cid-tWSjQ3Xwvv .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWSjQ3Xwvv .icon-wrap h3 {
  margin: 0;
}
.cid-tWSjQ3Xwvv .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWSjQ3Xwvv .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWSjQ3Xwvv .icon-title,
.cid-tWSjQ3Xwvv .mbr-iconfont {
  color: #181818;
}
.cid-tWSjQ3Xwvv .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWSjQ3Xwvv .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ3Xwvv .icons-wrap {
    flex-direction: column;
  }
  .cid-tWSjQ3Xwvv .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWSjQ3Xwvv .mbr-text,
.cid-tWSjQ3Xwvv .mbr-section-btn,
.cid-tWSjQ3Xwvv .content {
  color: #f2f2f4;
}
.cid-tWSjQ4iDYn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWSjQ4iDYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ4iDYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ4iDYn .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWSjQ4iDYn .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ4iDYn .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWSjQ4iDYn .mbr-section-title {
  color: #131313;
}
.cid-tWSjQ4iDYn .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWSjQ4iDYn .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWSjQ4iDYn .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWSjQ4iDYn .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #009472;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWSjQ4iDYn .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWSjQ4iDYn .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWSjQ4iDYn .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWSjQ4iDYn .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWSjQ4iDYn .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWSjQ4iDYn .card-title {
  color: #131313;
}
.cid-tWSjQ4iDYn .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWSjQ4iDYn .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSjQ4iDYn .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ4iDYn .card-link {
    margin-top: 15px;
  }
}
.cid-tWSjQ4iDYn .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWSjQ4NS6M {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWSjQ4NS6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ4NS6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ4NS6M .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWSjQ4NS6M .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWSjQ4NS6M .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ4NS6M .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWSjQ4NS6M .container {
    padding: 0 12px;
  }
}
.cid-tWSjQ4NS6M .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWSjQ4NS6M .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWSjQ4NS6M .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWSjQ4NS6M .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWSjQ4NS6M .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWSjQ4NS6M .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWSjQ4NS6M .mbr-section-title,
.cid-tWSjQ4NS6M .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tWSjQ56g5f {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWSjQ56g5f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ56g5f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ56g5f .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWSjQ56g5f .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWSjQ56g5f .container-fluid .row {
  padding: 0;
}
.cid-tWSjQ56g5f .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWSjQ56g5f .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWSjQ56g5f .card {
    padding: 48px 20px;
  }
}
.cid-tWSjQ56g5f .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWSjQ56g5f .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWSjQ56g5f .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWSjQ56g5f .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWSjQ56g5f .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWSjQ5mHOD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWSjQ5mHOD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ5mHOD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ5mHOD .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWSjQ5mHOD .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ5mHOD .container {
    padding: 0 24px;
  }
}
.cid-tWSjQ5mHOD .row {
  justify-content: center;
}
.cid-tWSjQ5mHOD .content-wrapper {
  border-radius: 40px;
  background-color: #009472;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWSjQ5mHOD .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWSjQ5mHOD .content-wrapper {
    padding: 32px;
  }
}
.cid-tWSjQ5mHOD .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWSjQ5mHOD .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWSjQ5mHOD .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWSjQ5mHOD .mbr-text {
  color: #0b1b3f;
}
.cid-tWSjQ5B8RS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
.cid-tWSjQ5B8RS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ5B8RS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ5B8RS .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWSjQ5B8RS .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ5B8RS .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWSjQ5B8RS .mbr-section-title {
  color: #131313;
}
.cid-tWSjQ5B8RS .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWSjQ5B8RS .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWSjQ5B8RS .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWSjQ5B8RS .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWSjQ5B8RS .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWSjQ5B8RS .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ5B8RS .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWSjQ5B8RS .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWSjQ5B8RS .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWSjQ5B8RS .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWSjQ5B8RS .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWSjQ5B8RS .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWSjQ5B8RS .content-wrap {
    margin-top: 0;
  }
}
.cid-tWSjQ5B8RS .card-title {
  color: #131313;
}
.cid-tWSjQ5B8RS .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSjQ5B8RS .card-text {
    margin-top: 15px;
  }
}
.cid-tWSjQ5B8RS .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSjQ5B8RS .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWSjQ5B8RS .card-link {
    margin-top: 15px;
  }
}
.cid-tWSjQ5B8RS .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWSjQ65Xgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b1b3f;
}
.cid-tWSjQ65Xgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ65Xgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWSjQ65Xgt .container {
    padding: 0 15px;
  }
}
.cid-tWSjQ65Xgt .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWSjQ65Xgt .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWSjQ65Xgt .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWSjQ65Xgt .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWSjQ65Xgt .mbr-section-title {
  color: #ffffff;
}
.cid-tWSjQ65Xgt .mbr-text {
  color: #ffffff;
}
.cid-tWSjQ65Xgt .mbr-name {
  color: #f2ac2b;
}
.cid-tWSjQ6rpPo {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWSjQ6rpPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ6rpPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ6rpPo .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWSjQ6rpPo .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ6rpPo .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWSjQ6rpPo .mbr-section-title {
  color: #131313;
}
.cid-tWSjQ6rpPo .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWSjQ6rpPo .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWSjQ6rpPo .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWSjQ6rpPo .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWSjQ6rpPo .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWSjQ6rpPo .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWSjQ6rpPo .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWSjQ6rpPo .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWSjQ6rpPo .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWSjQ6rpPo .card-title {
  color: #131313;
}
.cid-tWSjQ6rpPo .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWSjQ6rpPo .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSjQ6rpPo .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWSjQ6rpPo .card-link {
    margin-top: 15px;
  }
}
.cid-tWSjQ6rpPo .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWSjQ6SsC4 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWSjQ6SsC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ6SsC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ6SsC4 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .container {
    padding: 0 16px;
  }
}
.cid-tWSjQ6SsC4 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .row {
    margin: 0 10px;
  }
}
.cid-tWSjQ6SsC4 .row .card {
  position: relative;
  padding: 0;
}
.cid-tWSjQ6SsC4 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWSjQ6SsC4 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWSjQ6SsC4 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009472;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWSjQ6SsC4 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .row .card .icon-decor {
    display: none;
  }
}
.cid-tWSjQ6SsC4 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .title-wrapper {
    width: 100%;
  }
}
.cid-tWSjQ6SsC4 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWSjQ6SsC4 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWSjQ6SsC4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWSjQ6SsC4 .mbr-section-title {
  color: #f2f2f4;
}
.cid-tWSjQ6SsC4 .mbr-text {
  color: #ffffff;
}
.cid-tWZEDQBmPN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tWZEDQBmPN .container {
    padding: 0 25px;
  }
}
.cid-tWZEDQBmPN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWZEDQBmPN .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWZEDQBmPN .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWZEDQBmPN .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWZEDQBmPN .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWZEDQBmPN .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWZEDQBmPN .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEDQBmPN .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEDQBmPN .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWZEDQBmPN .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #fdfcfc;
  background-color: #0b1b3f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWZEDQBmPN .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWZEDQBmPN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWZEDQBmPN .mbr-section-title {
  color: #000000;
}
.cid-tWZEDQBmPN .panel-title-edit {
  color: #000000;
}
.cid-tWZEDQBmPN .panel-text {
  color: #000000;
}
.cid-tWSjQ7HX66 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWSjQ7HX66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ7HX66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ7HX66 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .container {
    padding: 0 16px;
  }
}
.cid-tWSjQ7HX66 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .row {
    margin: 0 10px;
  }
}
.cid-tWSjQ7HX66 .row .card {
  position: relative;
  padding: 0;
}
.cid-tWSjQ7HX66 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #aff0f6;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWSjQ7HX66 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWSjQ7HX66 .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWSjQ7HX66 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #192227;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWSjQ7HX66 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWSjQ7HX66 .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .row .card .icon-decor {
    display: none;
  }
}
.cid-tWSjQ7HX66 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .title-wrapper {
    width: 100%;
  }
}
.cid-tWSjQ7HX66 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWSjQ7HX66 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWSjQ7HX66 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWSjQ7HX66 .mbr-section-title {
  color: #ffffff;
}
.cid-tWSjQ7HX66 .mbr-text {
  color: #ffffff;
}
.cid-tWSzA5iwmw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tWSzA5iwmw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #0046c7 !important;
  transition: all 0.3s;
  transform: rotate(45deg);
  font-weight: bold;
}
.cid-tWSzA5iwmw .panel-group {
  border: none;
}
.cid-tWSzA5iwmw .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWSzA5iwmw .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tWSzA5iwmw .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tWSzA5iwmw .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tWSzA5iwmw .img-col {
  padding: 0;
}
.cid-tWSzA5iwmw .img-item {
  height: 100%;
}
.cid-tWSzA5iwmw img {
  height: 100%;
  object-fit: cover;
}
.cid-tWSzA5iwmw .collapsed span {
  transform: rotate(0deg);
}
.cid-tWSzA5iwmw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWSzA5iwmw p {
  margin-bottom: 0.3rem;
}
.cid-tWSzA5iwmw .panel-title-edit {
  color: #e9c0e9;
}
.cid-tWSzA5iwmw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tWSzA5iwmw .card {
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tWSzA5iwmw .card {
    padding: 1.5rem;
  }
}
.cid-tWSzA5iwmw .panel-text {
  color: #320707;
}
.cid-tWSzA5iwmw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tWSzA5iwmw .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWSzA5iwmw .panel-title-edit,
.cid-tWSzA5iwmw .mbr-iconfont {
  color: #000000;
}
.cid-tWSjQ81ucQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #009472;
}
.cid-tWSjQ81ucQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ81ucQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ81ucQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWSjQ81ucQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWSjQ81ucQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWSjQ81ucQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWSjQ81ucQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWSjQ81ucQ .mbr-section-title {
  color: #000000;
}
.cid-tWSjQ8lDtQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWSjQ8lDtQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSjQ8lDtQ .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWSjQ8lDtQ .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWSjQ8lDtQ .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWSjQ8lDtQ a {
  font-weight: 600;
}
.cid-tWSjQ8lDtQ a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWSjQ8lDtQ .col-lg-3,
  .cid-tWSjQ8lDtQ .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWSjQ8lDtQ .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWSjQ8lDtQ .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWSjQ8lDtQ h5 {
  margin: 0;
}
.cid-tWSjQ8lDtQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSjQ8lDtQ .iconfont-wrapper {
  position: relative;
}
.cid-tWSjQ8lDtQ .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tWSjQ8lDtQ .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWSjQ8lDtQ .sociconfont-wrapper {
  display: flex;
}
.cid-tWSjQ8lDtQ .card-title,
.cid-tWSjQ8lDtQ .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWSjQ8lDtQ .card-text {
  color: #000000;
}
.cid-tWSjQ8lDtQ .mbr-section-title {
  color: #000000;
}
.cid-tWSjQ8lDtQ .main-title,
.cid-tWSjQ8lDtQ .iconfont-wrapper {
  text-align: left;
}
.cid-tWSjQ8My8H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b3f;
}
.cid-tWSjQ8My8H .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tWSlmE1u1l {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWSlmE1u1l .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-tWSlmE1u1l .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWSlmE1u1l .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWSlmE1u1l .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWSlmE1u1l .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWSlmE1u1l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWSlmE1u1l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWSlmE1u1l .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWSlmE1u1l .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWSlmE1u1l .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWSlmE1u1l .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWSlmE1u1l .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWSlmE1u1l .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tWSlmE1u1l .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWSlmE1u1l .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWSlmE1u1l .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWSlmE1u1l .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWSlmE1u1l .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWSlmE1u1l .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWSlmE1u1l .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWSlmE1u1l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWSlmE1u1l .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 148, 114, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #009472;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWSlmE1u1l .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmE1u1l .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWSlmE1u1l .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWSlmE1u1l .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWSlmE1u1l .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #009472;
  background: rgba(0, 148, 114, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWSlmE1u1l .nav-item:focus,
.cid-tWSlmE1u1l .nav-link:focus {
  outline: none;
}
.cid-tWSlmE1u1l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWSlmE1u1l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWSlmE1u1l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWSlmE1u1l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWSlmE1u1l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWSlmE1u1l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWSlmE1u1l .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tWSlmE1u1l .navbar.opened {
  transition: all 0.3s;
}
.cid-tWSlmE1u1l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWSlmE1u1l .navbar .navbar-logo img {
  width: auto;
}
.cid-tWSlmE1u1l .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWSlmE1u1l .navbar.collapsed {
  justify-content: center;
}
.cid-tWSlmE1u1l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWSlmE1u1l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWSlmE1u1l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tWSlmE1u1l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWSlmE1u1l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWSlmE1u1l .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWSlmE1u1l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWSlmE1u1l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWSlmE1u1l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWSlmE1u1l .navbar {
    min-height: 72px;
  }
  .cid-tWSlmE1u1l .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWSlmE1u1l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWSlmE1u1l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWSlmE1u1l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWSlmE1u1l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWSlmE1u1l .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-tWSlmE1u1l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWSlmE1u1l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWSlmE1u1l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWSlmE1u1l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWSlmE1u1l .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWSlmE1u1l .dropdown-item.active,
.cid-tWSlmE1u1l .dropdown-item:active {
  background-color: transparent;
}
.cid-tWSlmE1u1l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWSlmE1u1l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWSlmE1u1l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWSlmE1u1l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #009472;
}
.cid-tWSlmE1u1l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWSlmE1u1l .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWSlmE1u1l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWSlmE1u1l .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWSlmE1u1l .navbar-buttons {
    text-align: left;
  }
}
.cid-tWSlmE1u1l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWSlmE1u1l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWSlmE1u1l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWSlmE1u1l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWSlmE1u1l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWSlmE1u1l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWSlmE1u1l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWSlmE1u1l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWSlmE1u1l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWSlmE1u1l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWSlmE1u1l .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWSlmE1u1l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWSlmE1u1l .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tWSlmE1u1l .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWSlmE1u1l .navbar {
    height: 70px;
  }
  .cid-tWSlmE1u1l .navbar.opened {
    height: auto;
  }
  .cid-tWSlmE1u1l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWSlmE1u1l .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWSlmE1u1l .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWSlmE1u1l .navbar-brand {
    margin-right: auto;
  }
  .cid-tWSlmE1u1l .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #009472;
    opacity: 1;
    border-color: rgba(0, 148, 114, 0.8) !important;
    background: rgba(0, 148, 114, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWSlmE1u1l .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWSlmE1u1l .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWSlmE1u1l .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tWSlmE1u1l .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWSlmE1u1l .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWSlmEzJeC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #262642;
}
.cid-tWSlmEzJeC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmEzJeC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWSlmEzJeC .container {
    padding: 0 24px;
  }
}
.cid-tWSlmEzJeC .row {
  position: relative;
}
.cid-tWSlmEzJeC .row .card {
  justify-content: center;
}
.cid-tWSlmEzJeC .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #009472;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tWSlmEzJeC .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-tWSlmEzJeC .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-tWSlmEzJeC .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tWSlmEzJeC .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tWSlmEzJeC .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tWSlmEzJeC .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWSlmEzJeC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWSlmEzJeC .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tWSlmEzJeC .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-tWSlmEzJeC .image-wrapper {
  position: relative;
}
.cid-tWSlmEzJeC .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tWSlmEzJeC .image-wrapper img {
    height: 350px;
  }
}
.cid-tWSlmEzJeC .mbr-section-title {
  color: #F5DF4D;
}
.cid-tWSlmEzJeC .mbr-text {
  color: #FF3399;
}
.cid-tWSlmEzJeC .mbr-text,
.cid-tWSlmEzJeC .mbr-section-btn {
  color: #ffffff;
}
.cid-tWSlmEzJeC .mbr-section-title,
.cid-tWSlmEzJeC .mbr-section-btn {
  color: #ffffff;
}
.cid-tWSlmEVjWy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #009472;
}
.cid-tWSlmEVjWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmEVjWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWSlmEVjWy .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWSlmEVjWy .container {
    padding: 0 12px;
  }
}
.cid-tWSlmEVjWy .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWSlmEVjWy .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWSlmEVjWy .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWSlmEVjWy .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWSlmEVjWy .mbr-section-title {
  color: #222222;
}
.cid-tWSlmFdVbI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWSlmFdVbI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmFdVbI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmFdVbI .container-small,
.cid-tWSlmFdVbI .container-fluid {
  padding: 0 !important;
}
.cid-tWSlmFdVbI .container-small {
  max-width: 1440px;
}
.cid-tWSlmFdVbI .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #f2f2f4;
}
@media (max-width: 991px) {
  .cid-tWSlmFdVbI .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmFdVbI .text-box {
    padding: 50px 10px;
  }
}
.cid-tWSlmFdVbI .mbr-section-title {
  color: #131313;
}
.cid-tWSlmFdVbI .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWSlmFdVbI .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWSlmFdVbI .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWSlmFdVbI .mbr-text a {
  text-decoration: underline;
}
.cid-tWSlmFdVbI .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWSlmFdVbI .mbr-section-subtitle,
.cid-tWSlmFdVbI .mbr-section-btn {
  text-align: right;
}
.cid-tWSlmFdVbI .mbr-section-subtitle,
.cid-tWSlmFdVbI .mbr-section-btn DIV {
  text-align: left;
}
.cid-tWSlmFwBGR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0b1b3f;
}
@media (min-width: 992px) {
  .cid-tWSlmFwBGR .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWSlmFwBGR .content {
    padding: 0 2rem;
  }
}
.cid-tWSlmFwBGR .row {
  justify-content: flex-end;
}
.cid-tWSlmFwBGR .img-col {
  padding: 0;
}
.cid-tWSlmFwBGR .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWSlmFwBGR .icon-wrap h3 {
  margin: 0;
}
.cid-tWSlmFwBGR .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWSlmFwBGR .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWSlmFwBGR .icon-title,
.cid-tWSlmFwBGR .mbr-iconfont {
  color: #181818;
}
.cid-tWSlmFwBGR .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWSlmFwBGR .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmFwBGR .icons-wrap {
    flex-direction: column;
  }
  .cid-tWSlmFwBGR .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWSlmFwBGR .mbr-text,
.cid-tWSlmFwBGR .mbr-section-btn,
.cid-tWSlmFwBGR .content {
  color: #f2f2f4;
}
.cid-tWSlmFTLwS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWSlmFTLwS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmFTLwS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmFTLwS .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWSlmFTLwS .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmFTLwS .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWSlmFTLwS .mbr-section-title {
  color: #131313;
}
.cid-tWSlmFTLwS .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWSlmFTLwS .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWSlmFTLwS .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWSlmFTLwS .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #009472;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWSlmFTLwS .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWSlmFTLwS .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWSlmFTLwS .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWSlmFTLwS .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWSlmFTLwS .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWSlmFTLwS .card-title {
  color: #131313;
}
.cid-tWSlmFTLwS .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWSlmFTLwS .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSlmFTLwS .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmFTLwS .card-link {
    margin-top: 15px;
  }
}
.cid-tWSlmFTLwS .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWSlmGhGkq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWSlmGhGkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmGhGkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmGhGkq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWSlmGhGkq .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWSlmGhGkq .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmGhGkq .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWSlmGhGkq .container {
    padding: 0 12px;
  }
}
.cid-tWSlmGhGkq .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWSlmGhGkq .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWSlmGhGkq .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWSlmGhGkq .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWSlmGhGkq .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWSlmGhGkq .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWSlmGhGkq .mbr-section-title,
.cid-tWSlmGhGkq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tWSlmGxV1I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWSlmGxV1I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmGxV1I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmGxV1I .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWSlmGxV1I .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWSlmGxV1I .container-fluid .row {
  padding: 0;
}
.cid-tWSlmGxV1I .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWSlmGxV1I .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWSlmGxV1I .card {
    padding: 48px 20px;
  }
}
.cid-tWSlmGxV1I .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWSlmGxV1I .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWSlmGxV1I .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWSlmGxV1I .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWSlmGxV1I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWSlmGL49o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWSlmGL49o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmGL49o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmGL49o .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWSlmGL49o .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmGL49o .container {
    padding: 0 24px;
  }
}
.cid-tWSlmGL49o .row {
  justify-content: center;
}
.cid-tWSlmGL49o .content-wrapper {
  border-radius: 40px;
  background-color: #009472;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWSlmGL49o .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWSlmGL49o .content-wrapper {
    padding: 32px;
  }
}
.cid-tWSlmGL49o .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWSlmGL49o .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWSlmGL49o .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWSlmGL49o .mbr-text {
  color: #0b1b3f;
}
.cid-tWSlmH2dHZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
.cid-tWSlmH2dHZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmH2dHZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmH2dHZ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWSlmH2dHZ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmH2dHZ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWSlmH2dHZ .mbr-section-title {
  color: #131313;
}
.cid-tWSlmH2dHZ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWSlmH2dHZ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWSlmH2dHZ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWSlmH2dHZ .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWSlmH2dHZ .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWSlmH2dHZ .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmH2dHZ .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWSlmH2dHZ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWSlmH2dHZ .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWSlmH2dHZ .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWSlmH2dHZ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWSlmH2dHZ .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWSlmH2dHZ .content-wrap {
    margin-top: 0;
  }
}
.cid-tWSlmH2dHZ .card-title {
  color: #131313;
}
.cid-tWSlmH2dHZ .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSlmH2dHZ .card-text {
    margin-top: 15px;
  }
}
.cid-tWSlmH2dHZ .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSlmH2dHZ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWSlmH2dHZ .card-link {
    margin-top: 15px;
  }
}
.cid-tWSlmH2dHZ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWSlmHuar8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b1b3f;
}
.cid-tWSlmHuar8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmHuar8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWSlmHuar8 .container {
    padding: 0 15px;
  }
}
.cid-tWSlmHuar8 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWSlmHuar8 .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWSlmHuar8 .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWSlmHuar8 .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWSlmHuar8 .mbr-section-title {
  color: #ffffff;
}
.cid-tWSlmHuar8 .mbr-text {
  color: #ffffff;
}
.cid-tWSlmHuar8 .mbr-name {
  color: #f2ac2b;
}
.cid-tWSlmHJh2W {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWSlmHJh2W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmHJh2W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmHJh2W .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWSlmHJh2W .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmHJh2W .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWSlmHJh2W .mbr-section-title {
  color: #131313;
}
.cid-tWSlmHJh2W .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWSlmHJh2W .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWSlmHJh2W .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWSlmHJh2W .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWSlmHJh2W .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWSlmHJh2W .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWSlmHJh2W .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWSlmHJh2W .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWSlmHJh2W .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWSlmHJh2W .card-title {
  color: #131313;
}
.cid-tWSlmHJh2W .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWSlmHJh2W .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWSlmHJh2W .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWSlmHJh2W .card-link {
    margin-top: 15px;
  }
}
.cid-tWSlmHJh2W .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWSlmIaOBI {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWSlmIaOBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmIaOBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmIaOBI .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .container {
    padding: 0 16px;
  }
}
.cid-tWSlmIaOBI .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .row {
    margin: 0 10px;
  }
}
.cid-tWSlmIaOBI .row .card {
  position: relative;
  padding: 0;
}
.cid-tWSlmIaOBI .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWSlmIaOBI .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWSlmIaOBI .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009472;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWSlmIaOBI .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .row .card .icon-decor {
    display: none;
  }
}
.cid-tWSlmIaOBI .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .title-wrapper {
    width: 100%;
  }
}
.cid-tWSlmIaOBI .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWSlmIaOBI .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWSlmIaOBI .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWSlmIaOBI .mbr-section-title {
  color: #f2f2f4;
}
.cid-tWSlmIaOBI .mbr-text {
  color: #ffffff;
}
.cid-tWZEGWpM1o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009472;
}
@media (max-width: 992px) {
  .cid-tWZEGWpM1o .container {
    padding: 0 25px;
  }
}
.cid-tWZEGWpM1o .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWZEGWpM1o .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWZEGWpM1o .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWZEGWpM1o .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWZEGWpM1o .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWZEGWpM1o .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWZEGWpM1o .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEGWpM1o .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tWZEGWpM1o .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWZEGWpM1o .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #fdfcfc;
  background-color: #0b1b3f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWZEGWpM1o .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWZEGWpM1o .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWZEGWpM1o .mbr-section-title {
  color: #000000;
}
.cid-tWZEGWpM1o .panel-title-edit {
  color: #000000;
}
.cid-tWZEGWpM1o .panel-text {
  color: #000000;
}
.cid-tWSlmIThDD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b1b3f;
}
.cid-tWSlmIThDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmIThDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmIThDD .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .container {
    padding: 0 16px;
  }
}
.cid-tWSlmIThDD .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .row {
    margin: 0 10px;
  }
}
.cid-tWSlmIThDD .row .card {
  position: relative;
  padding: 0;
}
.cid-tWSlmIThDD .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #aff0f6;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #aff0f6;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWSlmIThDD .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWSlmIThDD .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWSlmIThDD .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #192227;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #aff0f6;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWSlmIThDD .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWSlmIThDD .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .row .card .icon-decor {
    display: none;
  }
}
.cid-tWSlmIThDD .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .title-wrapper {
    width: 100%;
  }
}
.cid-tWSlmIThDD .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWSlmIThDD .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWSlmIThDD .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWSlmIThDD .mbr-section-title {
  color: #ffffff;
}
.cid-tWSlmIThDD .mbr-text {
  color: #ffffff;
}
.cid-tWSAE53gON {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tWSAE53gON .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #0046c7 !important;
  transition: all 0.3s;
  transform: rotate(45deg);
  font-weight: bold;
}
.cid-tWSAE53gON .panel-group {
  border: none;
}
.cid-tWSAE53gON .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWSAE53gON .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tWSAE53gON .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tWSAE53gON .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tWSAE53gON .img-col {
  padding: 0;
}
.cid-tWSAE53gON .img-item {
  height: 100%;
}
.cid-tWSAE53gON img {
  height: 100%;
  object-fit: cover;
}
.cid-tWSAE53gON .collapsed span {
  transform: rotate(0deg);
}
.cid-tWSAE53gON .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWSAE53gON p {
  margin-bottom: 0.3rem;
}
.cid-tWSAE53gON .panel-title-edit {
  color: #e9c0e9;
}
.cid-tWSAE53gON .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tWSAE53gON .card {
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tWSAE53gON .card {
    padding: 1.5rem;
  }
}
.cid-tWSAE53gON .panel-text {
  color: #320707;
}
.cid-tWSAE53gON .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tWSAE53gON .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWSAE53gON .panel-title-edit,
.cid-tWSAE53gON .mbr-iconfont {
  color: #000000;
}
.cid-tWSlmJ948Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #009472;
}
.cid-tWSlmJ948Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmJ948Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmJ948Z .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWSlmJ948Z .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWSlmJ948Z .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWSlmJ948Z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWSlmJ948Z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWSlmJ948Z .mbr-section-title {
  color: #000000;
}
.cid-tWSlmJueaF {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWSlmJueaF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSlmJueaF .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWSlmJueaF .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWSlmJueaF .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWSlmJueaF a {
  font-weight: 600;
}
.cid-tWSlmJueaF a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWSlmJueaF .col-lg-3,
  .cid-tWSlmJueaF .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWSlmJueaF .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWSlmJueaF .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWSlmJueaF h5 {
  margin: 0;
}
.cid-tWSlmJueaF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSlmJueaF .iconfont-wrapper {
  position: relative;
}
.cid-tWSlmJueaF .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tWSlmJueaF .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWSlmJueaF .sociconfont-wrapper {
  display: flex;
}
.cid-tWSlmJueaF .card-title,
.cid-tWSlmJueaF .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWSlmJueaF .card-text {
  color: #000000;
}
.cid-tWSlmJueaF .mbr-section-title {
  color: #000000;
}
.cid-tWSlmJueaF .main-title,
.cid-tWSlmJueaF .iconfont-wrapper {
  text-align: left;
}
.cid-tWSlmJTlel {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b3f;
}
.cid-tWSlmJTlel .media-container-row .mbr-text {
  color: #ffffff;
}
