body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.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.36rem;
  }
}
/* ---- 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.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((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: #ed6436 !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 #ed6436 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: #ed6436 !important;
  border-color: #ed6436 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c53f12 !important;
  border-color: #c53f12 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c53f12 !important;
  border-color: #c53f12 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #ed6436 inset !important;
  background: transparent !important;
  border: none !important;
  color: #ed6436 !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 #f7ed4a 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: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !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 #ed6436 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: #ad3710;
  color: #ad3710;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ed6436;
  border-color: #ed6436;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed6436 !important;
  border-color: #ed6436 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #ed6436 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: #ed6436;
  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 #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-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a 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: #f7ed4a;
  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: #ed6436 !important;
}
.text-secondary {
  color: #f7ed4a !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: #ed6436 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #f7ed4a !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: #ed6436;
  border-color: #ed6436;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ed6436;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef4f1;
}
.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: #ed6436;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ed6436;
  color: #ffffff;
}
.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: #ed6436;
  border-bottom-color: #ed6436;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ed6436 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f7ed4a !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='%23ed6436' %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(11, 27, 63, 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: #0b1b3f;
  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: #0b1b3f;
  background: rgba(11, 27, 63, 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.3rem);
  }
}
.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: #0b1b3f;
}
.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: #0b1b3f;
    opacity: 1;
    border-color: rgba(11, 27, 63, 0.8) !important;
    background: rgba(11, 27, 63, 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-tWT9lvaEid {
  overflow: visible;
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #fed9bd;
  background: linear-gradient(to right bottom, rgba(254, 217, 189, 0.8), #5e2ced);
}
.cid-tWT9lvaEid .mbr-overlay {
  background: #ffffff;
}
.cid-tWT9lvaEid .animation {
  pointer-events: none;
}
.cid-tWT9lvaEid .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tWT9lvaEid .mbr-section-title {
  margin-bottom: 27px;
  color: #0b1b3f;
}
.cid-tWT9lvaEid .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
.cid-tWT9lvaEid .image__block {
  margin-top: 60px;
  margin-bottom: -160px;
  position: relative;
  z-index: 5;
}
.cid-tWT9lvaEid .image__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tWT9lvaEid .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-tWT9lvaEid .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-tWT9lvaEid .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-tWT9lvaEid .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-tWT9lvaEid .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-tWT9lvaEid .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tWT9lvaEid .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-tWT9lvaEid .image__block {
    margin-bottom: -100px;
  }
}
.cid-tWT9lvaEid .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWT9lvaEid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWT9lvaEid .mbr-text,
.cid-tWT9lvaEid .mbr-section-btn {
  color: #0b1b3f;
}
.cid-tWOwKN5WCJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f4;
}
.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: #f9f295;
  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: #a671c5;
}
@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-tWTXyK11hs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tWTXyK11hs .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWTXyK11hs .content {
    padding: 0 2rem;
  }
}
.cid-tWTXyK11hs .row {
  justify-content: flex-end;
}
.cid-tWTXyK11hs .img-col {
  padding: 0;
}
.cid-tWTXyK11hs .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWTXyK11hs .icon-wrap h3 {
  margin: 0;
}
.cid-tWTXyK11hs .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWTXyK11hs .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWTXyK11hs .icon-title,
.cid-tWTXyK11hs .mbr-iconfont {
  color: #181818;
}
.cid-tWTXyK11hs .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWTXyK11hs .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWTXyK11hs .icons-wrap {
    flex-direction: column;
  }
  .cid-tWTXyK11hs .icon-wrap {
    margin-right: 0rem;
  }
}
.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: #a671c5;
  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-tWTXJtJd8g {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWTXJtJd8g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTXJtJd8g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTXJtJd8g .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWTXJtJd8g .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWTXJtJd8g .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWTXJtJd8g .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWTXJtJd8g .container {
    padding: 0 12px;
  }
}
.cid-tWTXJtJd8g .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWTXJtJd8g .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWTXJtJd8g .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWTXJtJd8g .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWTXJtJd8g .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWTXJtJd8g .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWTXJtJd8g .mbr-section-title,
.cid-tWTXJtJd8g .mbr-section-btn {
  text-align: center;
}
.cid-tWTXS1l8pn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWTXS1l8pn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTXS1l8pn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTXS1l8pn .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWTXS1l8pn .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWTXS1l8pn .container {
    padding: 0 24px;
  }
}
.cid-tWTXS1l8pn .row {
  justify-content: center;
}
.cid-tWTXS1l8pn .content-wrapper {
  border-radius: 40px;
  background-color: #a671c5;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWTXS1l8pn .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWTXS1l8pn .content-wrapper {
    padding: 32px;
  }
}
.cid-tWTXS1l8pn .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWTXS1l8pn .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWTXS1l8pn .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWTXS1l8pn .mbr-text {
  color: #262642;
}
.cid-tWNSQQEuAu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f4;
}
.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: #a671c5;
  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-tWUgva2e3d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a671c5;
}
.cid-tWUgva2e3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUgva2e3d .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-tWUgva2e3d .container {
    padding: 0 15px;
  }
}
.cid-tWUgva2e3d .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWUgva2e3d .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWUgva2e3d .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWUgva2e3d .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWUgva2e3d .mbr-section-title {
  color: #181818;
}
.cid-tWUgva2e3d .mbr-text {
  color: #181818;
}
.cid-tWUgva2e3d .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-tWUgQeuyIy {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #a671c5;
}
.cid-tWUgQeuyIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUgQeuyIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUgQeuyIy .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .container {
    padding: 0 16px;
  }
}
.cid-tWUgQeuyIy .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .row {
    margin: 0 10px;
  }
}
.cid-tWUgQeuyIy .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUgQeuyIy .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ffffff;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWUgQeuyIy .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUgQeuyIy .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 #ffffff;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWUgQeuyIy .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUgQeuyIy .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .title-wrapper {
    width: 100%;
  }
}
.cid-tWUgQeuyIy .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUgQeuyIy .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUgQeuyIy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUgQeuyIy .mbr-section-title {
  color: #181818;
}
.cid-tWUgQeuyIy .mbr-text {
  color: #181818;
}
.cid-tX0ohw02zX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
@media (max-width: 992px) {
  .cid-tX0ohw02zX .container {
    padding: 0 25px;
  }
}
.cid-tX0ohw02zX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tX0ohw02zX .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tX0ohw02zX .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tX0ohw02zX .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tX0ohw02zX .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tX0ohw02zX .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX0ohw02zX .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tX0ohw02zX .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #fdfcfc;
}
.cid-tX0ohw02zX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX0ohw02zX .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-tX0ohw02zX .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tX0ohw02zX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX0ohw02zX .mbr-section-title {
  color: #000000;
}
.cid-tX0ohw02zX .panel-title-edit {
  color: #000000;
}
.cid-tX0ohw02zX .panel-text {
  color: #000000;
}
.cid-tWTE1drbPQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWTE1drbPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTE1drbPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTE1drbPQ .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWTE1drbPQ .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWTE1drbPQ .container-fluid .row {
  padding: 0;
}
.cid-tWTE1drbPQ .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWTE1drbPQ .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWTE1drbPQ .card {
    padding: 48px 20px;
  }
}
.cid-tWTE1drbPQ .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWTE1drbPQ .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWTE1drbPQ .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWTE1drbPQ .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWTE1drbPQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWUgSOuQbN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWUgSOuQbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUgSOuQbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUgSOuQbN .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .container {
    padding: 0 16px;
  }
}
.cid-tWUgSOuQbN .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .row {
    margin: 0 10px;
  }
}
.cid-tWUgSOuQbN .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUgSOuQbN .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #a671c5;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #a671c5;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWUgSOuQbN .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUgSOuQbN .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUgSOuQbN .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 #a671c5;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWUgSOuQbN .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUgSOuQbN .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUgSOuQbN .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .title-wrapper {
    width: 100%;
  }
}
.cid-tWUgSOuQbN .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUgSOuQbN .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUgSOuQbN .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUgSOuQbN .mbr-section-title {
  color: #181818;
}
.cid-tWUgSOuQbN .mbr-text {
  color: #181818;
}
.cid-tWUh6Navhc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a671c5;
}
.cid-tWUh6Navhc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUh6Navhc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUh6Navhc .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWUh6Navhc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWUh6Navhc .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-tWUh6Navhc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWUh6Navhc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWUh6Navhc .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: #aff0f6;
}
.cid-rGtUo6gJTl .media-container-row .mbr-text {
  color: #181818;
}
.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(11, 27, 63, 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: #0b1b3f;
  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: #0b1b3f;
  background: rgba(11, 27, 63, 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.3rem);
  }
}
.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: #0b1b3f;
}
.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: #0b1b3f;
    opacity: 1;
    border-color: rgba(11, 27, 63, 0.8) !important;
    background: rgba(11, 27, 63, 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: 30px;
  padding-bottom: 30px;
  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(11, 27, 63, 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: #0b1b3f;
  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: #0b1b3f;
  background: rgba(11, 27, 63, 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.3rem);
  }
}
.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: #0b1b3f;
}
.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: #0b1b3f;
    opacity: 1;
    border-color: rgba(11, 27, 63, 0.8) !important;
    background: rgba(11, 27, 63, 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-tWTxkEoE9m {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWTxkEoE9m .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWTxkEoE9m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWTxkEoE9m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWTxkEoE9m .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWTxkEoE9m .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWTxkEoE9m .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWTxkEoE9m .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWTxkEoE9m .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWTxkEoE9m .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWTxkEoE9m .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWTxkEoE9m .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWTxkEoE9m .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWTxkEoE9m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWTxkEoE9m .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(11, 27, 63, 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: #0b1b3f;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWTxkEoE9m .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkEoE9m .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWTxkEoE9m .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWTxkEoE9m .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWTxkEoE9m .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: #0b1b3f;
  background: rgba(11, 27, 63, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWTxkEoE9m .nav-item:focus,
.cid-tWTxkEoE9m .nav-link:focus {
  outline: none;
}
.cid-tWTxkEoE9m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWTxkEoE9m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWTxkEoE9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWTxkEoE9m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWTxkEoE9m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWTxkEoE9m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar.opened {
  transition: all 0.3s;
}
.cid-tWTxkEoE9m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWTxkEoE9m .navbar .navbar-logo img {
  width: auto;
}
.cid-tWTxkEoE9m .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWTxkEoE9m .navbar.collapsed {
  justify-content: center;
}
.cid-tWTxkEoE9m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWTxkEoE9m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWTxkEoE9m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-tWTxkEoE9m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWTxkEoE9m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWTxkEoE9m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWTxkEoE9m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWTxkEoE9m .navbar {
    min-height: 72px;
  }
  .cid-tWTxkEoE9m .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWTxkEoE9m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWTxkEoE9m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWTxkEoE9m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWTxkEoE9m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWTxkEoE9m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWTxkEoE9m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWTxkEoE9m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWTxkEoE9m .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWTxkEoE9m .dropdown-item.active,
.cid-tWTxkEoE9m .dropdown-item:active {
  background-color: transparent;
}
.cid-tWTxkEoE9m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWTxkEoE9m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWTxkEoE9m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWTxkEoE9m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1b3f;
}
.cid-tWTxkEoE9m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWTxkEoE9m .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWTxkEoE9m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWTxkEoE9m .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWTxkEoE9m .navbar-buttons {
    text-align: left;
  }
}
.cid-tWTxkEoE9m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWTxkEoE9m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWTxkEoE9m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWTxkEoE9m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWTxkEoE9m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWTxkEoE9m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWTxkEoE9m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWTxkEoE9m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWTxkEoE9m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWTxkEoE9m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWTxkEoE9m .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWTxkEoE9m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWTxkEoE9m .navbar {
    height: 70px;
  }
  .cid-tWTxkEoE9m .navbar.opened {
    height: auto;
  }
  .cid-tWTxkEoE9m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWTxkEoE9m .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWTxkEoE9m .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWTxkEoE9m .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWTxkEoE9m .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWTxkEoE9m .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWTxkEoE9m .navbar-brand {
    margin-right: auto;
  }
  .cid-tWTxkEoE9m .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #0b1b3f;
    opacity: 1;
    border-color: rgba(11, 27, 63, 0.8) !important;
    background: rgba(11, 27, 63, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWTxkEoE9m .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWTxkEoE9m .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWTxkEoE9m .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWTxkEoE9m .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-tWTxkEoE9m .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWTxkEoE9m .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWTxkEWZyb {
  overflow: visible;
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #fed9bd;
  background: linear-gradient(to right bottom, rgba(254, 217, 189, 0.8), #5e2ced);
}
.cid-tWTxkEWZyb .mbr-overlay {
  background: #ffffff;
}
.cid-tWTxkEWZyb .animation {
  pointer-events: none;
}
.cid-tWTxkEWZyb .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tWTxkEWZyb .mbr-section-title {
  margin-bottom: 27px;
  color: #0b1b3f;
}
.cid-tWTxkEWZyb .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
.cid-tWTxkEWZyb .image__block {
  margin-top: 60px;
  margin-bottom: -160px;
  position: relative;
  z-index: 5;
}
.cid-tWTxkEWZyb .image__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tWTxkEWZyb .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-tWTxkEWZyb .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-tWTxkEWZyb .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-tWTxkEWZyb .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-tWTxkEWZyb .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-tWTxkEWZyb .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tWTxkEWZyb .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-tWTxkEWZyb .image__block {
    margin-bottom: -100px;
  }
}
.cid-tWTxkEWZyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkEWZyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkEWZyb .mbr-text,
.cid-tWTxkEWZyb .mbr-section-btn {
  color: #0b1b3f;
}
.cid-tWTxkFpzbB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f4;
}
.cid-tWTxkFpzbB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkFpzbB .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-tWTxkFpzbB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWTxkFpzbB .container {
    padding: 0 12px;
  }
}
.cid-tWTxkFpzbB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWTxkFpzbB .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWTxkFpzbB .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWTxkFpzbB .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9f295;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWTxkFpzbB .mbr-section-title {
  color: #222222;
}
.cid-tWTxkFK88u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWTxkFK88u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkFK88u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkFK88u .container-small,
.cid-tWTxkFK88u .container-fluid {
  padding: 0 !important;
}
.cid-tWTxkFK88u .container-small {
  max-width: 1440px;
}
.cid-tWTxkFK88u .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a671c5;
}
@media (max-width: 991px) {
  .cid-tWTxkFK88u .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkFK88u .text-box {
    padding: 50px 10px;
  }
}
.cid-tWTxkFK88u .mbr-section-title {
  color: #131313;
}
.cid-tWTxkFK88u .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWTxkFK88u .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWTxkFK88u .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWTxkFK88u .mbr-text a {
  text-decoration: underline;
}
.cid-tWTxkFK88u .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWTxkFK88u .mbr-section-subtitle,
.cid-tWTxkFK88u .mbr-section-btn {
  text-align: right;
}
.cid-tWTxkFK88u .mbr-section-subtitle,
.cid-tWTxkFK88u .mbr-section-btn DIV {
  text-align: left;
}
.cid-tWUi3RWtZo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tWUi3RWtZo .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWUi3RWtZo .content {
    padding: 0 2rem;
  }
}
.cid-tWUi3RWtZo .row {
  justify-content: flex-end;
}
.cid-tWUi3RWtZo .img-col {
  padding: 0;
}
.cid-tWUi3RWtZo .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWUi3RWtZo .icon-wrap h3 {
  margin: 0;
}
.cid-tWUi3RWtZo .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWUi3RWtZo .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWUi3RWtZo .icon-title,
.cid-tWUi3RWtZo .mbr-iconfont {
  color: #181818;
}
.cid-tWUi3RWtZo .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWUi3RWtZo .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWUi3RWtZo .icons-wrap {
    flex-direction: column;
  }
  .cid-tWUi3RWtZo .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWTxkGuRwJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWTxkGuRwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkGuRwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkGuRwJ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWTxkGuRwJ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkGuRwJ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWTxkGuRwJ .mbr-section-title {
  color: #131313;
}
.cid-tWTxkGuRwJ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWTxkGuRwJ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWTxkGuRwJ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWTxkGuRwJ .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: #a671c5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWTxkGuRwJ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWTxkGuRwJ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWTxkGuRwJ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWTxkGuRwJ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWTxkGuRwJ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWTxkGuRwJ .card-title {
  color: #131313;
}
.cid-tWTxkGuRwJ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWTxkGuRwJ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWTxkGuRwJ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkGuRwJ .card-link {
    margin-top: 15px;
  }
}
.cid-tWTxkGuRwJ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUio7ehBG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWUio7ehBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUio7ehBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUio7ehBG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWUio7ehBG .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWUio7ehBG .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWUio7ehBG .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWUio7ehBG .container {
    padding: 0 12px;
  }
}
.cid-tWUio7ehBG .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWUio7ehBG .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWUio7ehBG .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWUio7ehBG .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWUio7ehBG .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWUio7ehBG .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWUio7ehBG .mbr-section-title,
.cid-tWUio7ehBG .mbr-section-btn {
  text-align: center;
}
.cid-tWXgZ94IG2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWXgZ94IG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWXgZ94IG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWXgZ94IG2 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWXgZ94IG2 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWXgZ94IG2 .container-fluid .row {
  padding: 0;
}
.cid-tWXgZ94IG2 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWXgZ94IG2 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWXgZ94IG2 .card {
    padding: 48px 20px;
  }
}
.cid-tWXgZ94IG2 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWXgZ94IG2 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWXgZ94IG2 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWXgZ94IG2 .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWXgZ94IG2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWUitVOMc7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWUitVOMc7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUitVOMc7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUitVOMc7 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWUitVOMc7 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWUitVOMc7 .container {
    padding: 0 24px;
  }
}
.cid-tWUitVOMc7 .row {
  justify-content: center;
}
.cid-tWUitVOMc7 .content-wrapper {
  border-radius: 40px;
  background-color: #a671c5;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWUitVOMc7 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWUitVOMc7 .content-wrapper {
    padding: 32px;
  }
}
.cid-tWUitVOMc7 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWUitVOMc7 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWUitVOMc7 .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWUitVOMc7 .mbr-text {
  color: #262642;
}
.cid-tWTxkHC5T9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f4;
}
.cid-tWTxkHC5T9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkHC5T9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkHC5T9 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWTxkHC5T9 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkHC5T9 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWTxkHC5T9 .mbr-section-title {
  color: #131313;
}
.cid-tWTxkHC5T9 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWTxkHC5T9 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWTxkHC5T9 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWTxkHC5T9 .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: #a671c5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWTxkHC5T9 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWTxkHC5T9 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkHC5T9 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWTxkHC5T9 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWTxkHC5T9 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWTxkHC5T9 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWTxkHC5T9 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWTxkHC5T9 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWTxkHC5T9 .content-wrap {
    margin-top: 0;
  }
}
.cid-tWTxkHC5T9 .card-title {
  color: #131313;
}
.cid-tWTxkHC5T9 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWTxkHC5T9 .card-text {
    margin-top: 15px;
  }
}
.cid-tWTxkHC5T9 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWTxkHC5T9 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWTxkHC5T9 .card-link {
    margin-top: 15px;
  }
}
.cid-tWTxkHC5T9 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUiyT4uCC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a671c5;
}
.cid-tWUiyT4uCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUiyT4uCC .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-tWUiyT4uCC .container {
    padding: 0 15px;
  }
}
.cid-tWUiyT4uCC .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWUiyT4uCC .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWUiyT4uCC .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWUiyT4uCC .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWUiyT4uCC .mbr-section-title {
  color: #181818;
}
.cid-tWUiyT4uCC .mbr-text {
  color: #181818;
}
.cid-tWUiyT4uCC .mbr-name {
  color: #f2ac2b;
}
.cid-tWTxkIskIU {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWTxkIskIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkIskIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkIskIU .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWTxkIskIU .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkIskIU .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWTxkIskIU .mbr-section-title {
  color: #131313;
}
.cid-tWTxkIskIU .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWTxkIskIU .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWTxkIskIU .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWTxkIskIU .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-tWTxkIskIU .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWTxkIskIU .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWTxkIskIU .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWTxkIskIU .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWTxkIskIU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWTxkIskIU .card-title {
  color: #131313;
}
.cid-tWTxkIskIU .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWTxkIskIU .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWTxkIskIU .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxkIskIU .card-link {
    margin-top: 15px;
  }
}
.cid-tWTxkIskIU .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWTxkIWrcy {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #a671c5;
}
.cid-tWTxkIWrcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkIWrcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkIWrcy .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .container {
    padding: 0 16px;
  }
}
.cid-tWTxkIWrcy .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .row {
    margin: 0 10px;
  }
}
.cid-tWTxkIWrcy .row .card {
  position: relative;
  padding: 0;
}
.cid-tWTxkIWrcy .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ffffff;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWTxkIWrcy .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWTxkIWrcy .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 #ffffff;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWTxkIWrcy .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .row .card .icon-decor {
    display: none;
  }
}
.cid-tWTxkIWrcy .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .title-wrapper {
    width: 100%;
  }
}
.cid-tWTxkIWrcy .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWTxkIWrcy .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWTxkIWrcy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWTxkIWrcy .mbr-section-title {
  color: #181818;
}
.cid-tWTxkIWrcy .mbr-text {
  color: #181818;
}
.cid-tX0rXfo0XZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
@media (max-width: 992px) {
  .cid-tX0rXfo0XZ .container {
    padding: 0 25px;
  }
}
.cid-tX0rXfo0XZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tX0rXfo0XZ .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tX0rXfo0XZ .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tX0rXfo0XZ .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tX0rXfo0XZ .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tX0rXfo0XZ .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX0rXfo0XZ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tX0rXfo0XZ .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #0b1b3f;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tX0rXfo0XZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX0rXfo0XZ .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: #000000;
  background-color: #0b1b3f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tX0rXfo0XZ .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tX0rXfo0XZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX0rXfo0XZ .mbr-section-title {
  color: #000000;
}
.cid-tX0rXfo0XZ .panel-title-edit {
  color: #000000;
}
.cid-tX0rXfo0XZ .panel-text {
  color: #000000;
}
.cid-tWUjcWWPpF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWUjcWWPpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUjcWWPpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUjcWWPpF .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .container {
    padding: 0 16px;
  }
}
.cid-tWUjcWWPpF .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .row {
    margin: 0 10px;
  }
}
.cid-tWUjcWWPpF .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUjcWWPpF .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #a671c5;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #a671c5;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWUjcWWPpF .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUjcWWPpF .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUjcWWPpF .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 #a671c5;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWUjcWWPpF .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUjcWWPpF .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUjcWWPpF .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .title-wrapper {
    width: 100%;
  }
}
.cid-tWUjcWWPpF .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUjcWWPpF .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUjcWWPpF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUjcWWPpF .mbr-section-title {
  color: #181818;
}
.cid-tWUjcWWPpF .mbr-text {
  color: #181818;
}
.cid-tWXgSUmjzk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tWXgSUmjzk .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-tWXgSUmjzk .panel-group {
  border: none;
}
.cid-tWXgSUmjzk .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWXgSUmjzk .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tWXgSUmjzk .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tWXgSUmjzk .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tWXgSUmjzk .img-col {
  padding: 0;
}
.cid-tWXgSUmjzk .img-item {
  height: 100%;
}
.cid-tWXgSUmjzk img {
  height: 100%;
  object-fit: cover;
}
.cid-tWXgSUmjzk .collapsed span {
  transform: rotate(0deg);
}
.cid-tWXgSUmjzk .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWXgSUmjzk p {
  margin-bottom: 0.3rem;
}
.cid-tWXgSUmjzk .panel-title-edit {
  color: #e9c0e9;
}
.cid-tWXgSUmjzk .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tWXgSUmjzk .card {
  background: #a671c5;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tWXgSUmjzk .card {
    padding: 1.5rem;
  }
}
.cid-tWXgSUmjzk .panel-text {
  color: #320707;
}
.cid-tWXgSUmjzk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tWXgSUmjzk .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWXgSUmjzk .panel-title-edit,
.cid-tWXgSUmjzk .mbr-iconfont {
  color: #000000;
}
.cid-tWUjo13ZUh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a671c5;
}
.cid-tWUjo13ZUh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUjo13ZUh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUjo13ZUh .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWUjo13ZUh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWUjo13ZUh .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-tWUjo13ZUh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWUjo13ZUh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWUjo13ZUh .mbr-section-title {
  color: #000000;
}
.cid-tWTxkKyZ3s {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWTxkKyZ3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxkKyZ3s .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWTxkKyZ3s .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWTxkKyZ3s .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWTxkKyZ3s a {
  font-weight: 600;
}
.cid-tWTxkKyZ3s a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWTxkKyZ3s .col-lg-3,
  .cid-tWTxkKyZ3s .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWTxkKyZ3s .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWTxkKyZ3s .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWTxkKyZ3s h5 {
  margin: 0;
}
.cid-tWTxkKyZ3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxkKyZ3s .iconfont-wrapper {
  position: relative;
}
.cid-tWTxkKyZ3s .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-tWTxkKyZ3s .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWTxkKyZ3s .sociconfont-wrapper {
  display: flex;
}
.cid-tWTxkKyZ3s .card-title,
.cid-tWTxkKyZ3s .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWTxkKyZ3s .card-text {
  color: #000000;
}
.cid-tWTxkKyZ3s .mbr-section-title {
  color: #000000;
}
.cid-tWTxkKyZ3s .main-title,
.cid-tWTxkKyZ3s .iconfont-wrapper {
  text-align: left;
}
.cid-tWTxkKX97Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #aff0f6;
}
.cid-tWTxkKX97Y .media-container-row .mbr-text {
  color: #181818;
}
.cid-tWUkybOMol {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWUkybOMol .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-tWUkybOMol .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWUkybOMol .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWUkybOMol .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-tWUkybOMol .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWUkybOMol .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWUkybOMol .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWUkybOMol .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWUkybOMol .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWUkybOMol .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-tWUkybOMol .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWUkybOMol .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWUkybOMol .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-tWUkybOMol .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWUkybOMol .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWUkybOMol .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWUkybOMol .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWUkybOMol .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWUkybOMol .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWUkybOMol .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWUkybOMol .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWUkybOMol .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(11, 27, 63, 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: #0b1b3f;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWUkybOMol .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWUkybOMol .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWUkybOMol .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWUkybOMol .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWUkybOMol .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: #0b1b3f;
  background: rgba(11, 27, 63, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWUkybOMol .nav-item:focus,
.cid-tWUkybOMol .nav-link:focus {
  outline: none;
}
.cid-tWUkybOMol .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWUkybOMol .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWUkybOMol .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWUkybOMol .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWUkybOMol .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWUkybOMol .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWUkybOMol .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-tWUkybOMol .navbar.opened {
  transition: all 0.3s;
}
.cid-tWUkybOMol .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWUkybOMol .navbar .navbar-logo img {
  width: auto;
}
.cid-tWUkybOMol .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWUkybOMol .navbar.collapsed {
  justify-content: center;
}
.cid-tWUkybOMol .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWUkybOMol .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWUkybOMol .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-tWUkybOMol .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWUkybOMol .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWUkybOMol .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-tWUkybOMol .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWUkybOMol .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWUkybOMol .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWUkybOMol .navbar {
    min-height: 72px;
  }
  .cid-tWUkybOMol .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWUkybOMol .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWUkybOMol .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWUkybOMol .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWUkybOMol .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWUkybOMol .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-tWUkybOMol .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWUkybOMol .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWUkybOMol .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWUkybOMol .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWUkybOMol .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWUkybOMol .dropdown-item.active,
.cid-tWUkybOMol .dropdown-item:active {
  background-color: transparent;
}
.cid-tWUkybOMol .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWUkybOMol .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWUkybOMol .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWUkybOMol .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1b3f;
}
.cid-tWUkybOMol .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWUkybOMol .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWUkybOMol ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWUkybOMol .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWUkybOMol .navbar-buttons {
    text-align: left;
  }
}
.cid-tWUkybOMol button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWUkybOMol button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWUkybOMol button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWUkybOMol button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWUkybOMol button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWUkybOMol button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWUkybOMol nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWUkybOMol nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWUkybOMol nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWUkybOMol nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWUkybOMol .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWUkybOMol a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWUkybOMol .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-tWUkybOMol .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWUkybOMol .navbar {
    height: 70px;
  }
  .cid-tWUkybOMol .navbar.opened {
    height: auto;
  }
  .cid-tWUkybOMol .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWUkybOMol .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWUkybOMol .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWUkybOMol .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWUkybOMol .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-tWUkybOMol .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWUkybOMol .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWUkybOMol .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWUkybOMol .navbar-brand {
    margin-right: auto;
  }
  .cid-tWUkybOMol .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #0b1b3f;
    opacity: 1;
    border-color: rgba(11, 27, 63, 0.8) !important;
    background: rgba(11, 27, 63, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWUkybOMol .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWUkybOMol .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWUkybOMol .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-tWUkybOMol .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWUkybOMol .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWUkybOMol .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-tWUkybOMol .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWUkybOMol .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-tWUkybOMol .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWUkybOMol .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWUkycb93S {
  overflow: visible;
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #fed9bd;
  background: linear-gradient(to right bottom, rgba(254, 217, 189, 0.8), #5e2ced);
}
.cid-tWUkycb93S .mbr-overlay {
  background: #ffffff;
}
.cid-tWUkycb93S .animation {
  pointer-events: none;
}
.cid-tWUkycb93S .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tWUkycb93S .mbr-section-title {
  margin-bottom: 27px;
  color: #0b1b3f;
}
.cid-tWUkycb93S .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
.cid-tWUkycb93S .image__block {
  margin-top: 60px;
  margin-bottom: -160px;
  position: relative;
  z-index: 5;
}
.cid-tWUkycb93S .image__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tWUkycb93S .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-tWUkycb93S .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-tWUkycb93S .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-tWUkycb93S .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-tWUkycb93S .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-tWUkycb93S .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tWUkycb93S .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-tWUkycb93S .image__block {
    margin-bottom: -100px;
  }
}
.cid-tWUkycb93S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkycb93S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkycb93S .mbr-text,
.cid-tWUkycb93S .mbr-section-btn {
  color: #0b1b3f;
}
.cid-tWUkycqSMK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f4;
}
.cid-tWUkycqSMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkycqSMK .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-tWUkycqSMK .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWUkycqSMK .container {
    padding: 0 12px;
  }
}
.cid-tWUkycqSMK .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWUkycqSMK .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWUkycqSMK .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWUkycqSMK .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9f295;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWUkycqSMK .mbr-section-title {
  color: #222222;
}
.cid-tWUkycAd1Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWUkycAd1Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkycAd1Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkycAd1Z .container-small,
.cid-tWUkycAd1Z .container-fluid {
  padding: 0 !important;
}
.cid-tWUkycAd1Z .container-small {
  max-width: 1440px;
}
.cid-tWUkycAd1Z .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a671c5;
}
@media (max-width: 991px) {
  .cid-tWUkycAd1Z .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkycAd1Z .text-box {
    padding: 50px 10px;
  }
}
.cid-tWUkycAd1Z .mbr-section-title {
  color: #131313;
}
.cid-tWUkycAd1Z .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWUkycAd1Z .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWUkycAd1Z .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWUkycAd1Z .mbr-text a {
  text-decoration: underline;
}
.cid-tWUkycAd1Z .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWUkycAd1Z .mbr-section-subtitle,
.cid-tWUkycAd1Z .mbr-section-btn {
  text-align: right;
}
.cid-tWUkycAd1Z .mbr-section-subtitle,
.cid-tWUkycAd1Z .mbr-section-btn DIV {
  text-align: left;
}
.cid-tWUkycOoMf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tWUkycOoMf .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWUkycOoMf .content {
    padding: 0 2rem;
  }
}
.cid-tWUkycOoMf .row {
  justify-content: flex-end;
}
.cid-tWUkycOoMf .img-col {
  padding: 0;
}
.cid-tWUkycOoMf .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWUkycOoMf .icon-wrap h3 {
  margin: 0;
}
.cid-tWUkycOoMf .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWUkycOoMf .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWUkycOoMf .icon-title,
.cid-tWUkycOoMf .mbr-iconfont {
  color: #181818;
}
.cid-tWUkycOoMf .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWUkycOoMf .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWUkycOoMf .icons-wrap {
    flex-direction: column;
  }
  .cid-tWUkycOoMf .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWUkyd75PJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWUkyd75PJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyd75PJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkyd75PJ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWUkyd75PJ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkyd75PJ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWUkyd75PJ .mbr-section-title {
  color: #131313;
}
.cid-tWUkyd75PJ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWUkyd75PJ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWUkyd75PJ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWUkyd75PJ .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: #a671c5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWUkyd75PJ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWUkyd75PJ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWUkyd75PJ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWUkyd75PJ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWUkyd75PJ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWUkyd75PJ .card-title {
  color: #131313;
}
.cid-tWUkyd75PJ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWUkyd75PJ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUkyd75PJ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkyd75PJ .card-link {
    margin-top: 15px;
  }
}
.cid-tWUkyd75PJ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUkydvT6l {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWUkydvT6l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkydvT6l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkydvT6l .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWUkydvT6l .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWUkydvT6l .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWUkydvT6l .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWUkydvT6l .container {
    padding: 0 12px;
  }
}
.cid-tWUkydvT6l .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWUkydvT6l .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWUkydvT6l .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWUkydvT6l .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWUkydvT6l .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWUkydvT6l .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWUkydvT6l .mbr-section-title,
.cid-tWUkydvT6l .mbr-section-btn {
  text-align: center;
}
.cid-tWUkydFb3S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWUkydFb3S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkydFb3S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkydFb3S .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWUkydFb3S .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWUkydFb3S .container {
    padding: 0 24px;
  }
}
.cid-tWUkydFb3S .row {
  justify-content: center;
}
.cid-tWUkydFb3S .content-wrapper {
  border-radius: 40px;
  background-color: #a671c5;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWUkydFb3S .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWUkydFb3S .content-wrapper {
    padding: 32px;
  }
}
.cid-tWUkydFb3S .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWUkydFb3S .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWUkydFb3S .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWUkydFb3S .mbr-text {
  color: #262642;
}
.cid-tWUkydR3ij {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f4;
}
.cid-tWUkydR3ij .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkydR3ij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkydR3ij .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWUkydR3ij .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkydR3ij .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWUkydR3ij .mbr-section-title {
  color: #131313;
}
.cid-tWUkydR3ij .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWUkydR3ij .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWUkydR3ij .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWUkydR3ij .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: #a671c5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWUkydR3ij .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWUkydR3ij .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkydR3ij .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWUkydR3ij .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWUkydR3ij .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWUkydR3ij .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWUkydR3ij .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWUkydR3ij .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWUkydR3ij .content-wrap {
    margin-top: 0;
  }
}
.cid-tWUkydR3ij .card-title {
  color: #131313;
}
.cid-tWUkydR3ij .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUkydR3ij .card-text {
    margin-top: 15px;
  }
}
.cid-tWUkydR3ij .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUkydR3ij .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWUkydR3ij .card-link {
    margin-top: 15px;
  }
}
.cid-tWUkydR3ij .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUkyefmnA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a671c5;
}
.cid-tWUkyefmnA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyefmnA .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-tWUkyefmnA .container {
    padding: 0 15px;
  }
}
.cid-tWUkyefmnA .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWUkyefmnA .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWUkyefmnA .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWUkyefmnA .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWUkyefmnA .mbr-section-title {
  color: #181818;
}
.cid-tWUkyefmnA .mbr-text {
  color: #181818;
}
.cid-tWUkyefmnA .mbr-name {
  color: #f2ac2b;
}
.cid-tWUkyeugqf {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWUkyeugqf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyeugqf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkyeugqf .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWUkyeugqf .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkyeugqf .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWUkyeugqf .mbr-section-title {
  color: #131313;
}
.cid-tWUkyeugqf .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWUkyeugqf .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWUkyeugqf .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWUkyeugqf .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-tWUkyeugqf .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWUkyeugqf .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWUkyeugqf .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWUkyeugqf .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWUkyeugqf .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWUkyeugqf .card-title {
  color: #131313;
}
.cid-tWUkyeugqf .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWUkyeugqf .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUkyeugqf .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWUkyeugqf .card-link {
    margin-top: 15px;
  }
}
.cid-tWUkyeugqf .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUkyeP4Jb {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #a671c5;
}
.cid-tWUkyeP4Jb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyeP4Jb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkyeP4Jb .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .container {
    padding: 0 16px;
  }
}
.cid-tWUkyeP4Jb .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .row {
    margin: 0 10px;
  }
}
.cid-tWUkyeP4Jb .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUkyeP4Jb .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ffffff;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWUkyeP4Jb .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUkyeP4Jb .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 #ffffff;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWUkyeP4Jb .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUkyeP4Jb .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .title-wrapper {
    width: 100%;
  }
}
.cid-tWUkyeP4Jb .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUkyeP4Jb .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUkyeP4Jb .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUkyeP4Jb .mbr-section-title {
  color: #181818;
}
.cid-tWUkyeP4Jb .mbr-text {
  color: #181818;
}
.cid-tWXitwCRXW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWXitwCRXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWXitwCRXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWXitwCRXW .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWXitwCRXW .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWXitwCRXW .container-fluid .row {
  padding: 0;
}
.cid-tWXitwCRXW .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWXitwCRXW .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWXitwCRXW .card {
    padding: 48px 20px;
  }
}
.cid-tWXitwCRXW .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWXitwCRXW .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWXitwCRXW .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWXitwCRXW .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWXitwCRXW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tX0s8B1e2T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
@media (max-width: 992px) {
  .cid-tX0s8B1e2T .container {
    padding: 0 25px;
  }
}
.cid-tX0s8B1e2T .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tX0s8B1e2T .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tX0s8B1e2T .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tX0s8B1e2T .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tX0s8B1e2T .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tX0s8B1e2T .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX0s8B1e2T .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #fdfcfc;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tX0s8B1e2T .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #fdfcfc;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tX0s8B1e2T .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX0s8B1e2T .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: #000000;
  background-color: #fdfcfc;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tX0s8B1e2T .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tX0s8B1e2T .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX0s8B1e2T .mbr-section-title {
  color: #000000;
}
.cid-tX0s8B1e2T .panel-title-edit {
  color: #000000;
}
.cid-tX0s8B1e2T .panel-text {
  color: #000000;
}
.cid-tWUkyflY9J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWUkyflY9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyflY9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkyflY9J .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .container {
    padding: 0 16px;
  }
}
.cid-tWUkyflY9J .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .row {
    margin: 0 10px;
  }
}
.cid-tWUkyflY9J .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUkyflY9J .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #a671c5;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #a671c5;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWUkyflY9J .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUkyflY9J .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUkyflY9J .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 #a671c5;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWUkyflY9J .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUkyflY9J .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUkyflY9J .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .title-wrapper {
    width: 100%;
  }
}
.cid-tWUkyflY9J .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUkyflY9J .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUkyflY9J .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUkyflY9J .mbr-section-title {
  color: #181818;
}
.cid-tWUkyflY9J .mbr-text {
  color: #181818;
}
.cid-tWXiuQlrZF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tWXiuQlrZF .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-tWXiuQlrZF .panel-group {
  border: none;
}
.cid-tWXiuQlrZF .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWXiuQlrZF .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tWXiuQlrZF .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tWXiuQlrZF .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tWXiuQlrZF .img-col {
  padding: 0;
}
.cid-tWXiuQlrZF .img-item {
  height: 100%;
}
.cid-tWXiuQlrZF img {
  height: 100%;
  object-fit: cover;
}
.cid-tWXiuQlrZF .collapsed span {
  transform: rotate(0deg);
}
.cid-tWXiuQlrZF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWXiuQlrZF p {
  margin-bottom: 0.3rem;
}
.cid-tWXiuQlrZF .panel-title-edit {
  color: #e9c0e9;
}
.cid-tWXiuQlrZF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tWXiuQlrZF .card {
  background: #a671c5;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tWXiuQlrZF .card {
    padding: 1.5rem;
  }
}
.cid-tWXiuQlrZF .panel-text {
  color: #320707;
}
.cid-tWXiuQlrZF .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tWXiuQlrZF .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWXiuQlrZF .panel-title-edit,
.cid-tWXiuQlrZF .mbr-iconfont {
  color: #000000;
}
.cid-tWUkyfxX7q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a671c5;
}
.cid-tWUkyfxX7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyfxX7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkyfxX7q .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWUkyfxX7q .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWUkyfxX7q .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-tWUkyfxX7q .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWUkyfxX7q .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWUkyfxX7q .mbr-section-title {
  color: #000000;
}
.cid-tWUkyg29s2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWUkyg29s2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkyg29s2 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWUkyg29s2 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWUkyg29s2 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWUkyg29s2 a {
  font-weight: 600;
}
.cid-tWUkyg29s2 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWUkyg29s2 .col-lg-3,
  .cid-tWUkyg29s2 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWUkyg29s2 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWUkyg29s2 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWUkyg29s2 h5 {
  margin: 0;
}
.cid-tWUkyg29s2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkyg29s2 .iconfont-wrapper {
  position: relative;
}
.cid-tWUkyg29s2 .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-tWUkyg29s2 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWUkyg29s2 .sociconfont-wrapper {
  display: flex;
}
.cid-tWUkyg29s2 .card-title,
.cid-tWUkyg29s2 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWUkyg29s2 .card-text {
  color: #000000;
}
.cid-tWUkyg29s2 .mbr-section-title {
  color: #000000;
}
.cid-tWUkyg29s2 .main-title,
.cid-tWUkyg29s2 .iconfont-wrapper {
  text-align: left;
}
.cid-tWUkygimT3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #aff0f6;
}
.cid-tWUkygimT3 .media-container-row .mbr-text {
  color: #181818;
}
.cid-tWUZdZUffv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tWUZdZUffv .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-tWUZdZUffv .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tWUZdZUffv .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tWUZdZUffv .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-tWUZdZUffv .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tWUZdZUffv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWUZdZUffv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWUZdZUffv .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tWUZdZUffv .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tWUZdZUffv .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-tWUZdZUffv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tWUZdZUffv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tWUZdZUffv .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-tWUZdZUffv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tWUZdZUffv .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tWUZdZUffv .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tWUZdZUffv .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tWUZdZUffv .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tWUZdZUffv .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tWUZdZUffv .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tWUZdZUffv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tWUZdZUffv .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(11, 27, 63, 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: #0b1b3f;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tWUZdZUffv .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWUZdZUffv .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tWUZdZUffv .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tWUZdZUffv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWUZdZUffv .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: #0b1b3f;
  background: rgba(11, 27, 63, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tWUZdZUffv .nav-item:focus,
.cid-tWUZdZUffv .nav-link:focus {
  outline: none;
}
.cid-tWUZdZUffv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWUZdZUffv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWUZdZUffv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWUZdZUffv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWUZdZUffv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWUZdZUffv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWUZdZUffv .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-tWUZdZUffv .navbar.opened {
  transition: all 0.3s;
}
.cid-tWUZdZUffv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWUZdZUffv .navbar .navbar-logo img {
  width: auto;
}
.cid-tWUZdZUffv .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tWUZdZUffv .navbar.collapsed {
  justify-content: center;
}
.cid-tWUZdZUffv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWUZdZUffv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWUZdZUffv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-tWUZdZUffv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWUZdZUffv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWUZdZUffv .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-tWUZdZUffv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWUZdZUffv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWUZdZUffv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWUZdZUffv .navbar {
    min-height: 72px;
  }
  .cid-tWUZdZUffv .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tWUZdZUffv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWUZdZUffv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWUZdZUffv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWUZdZUffv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWUZdZUffv .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-tWUZdZUffv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWUZdZUffv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tWUZdZUffv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWUZdZUffv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWUZdZUffv .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tWUZdZUffv .dropdown-item.active,
.cid-tWUZdZUffv .dropdown-item:active {
  background-color: transparent;
}
.cid-tWUZdZUffv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWUZdZUffv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWUZdZUffv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWUZdZUffv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1b3f;
}
.cid-tWUZdZUffv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tWUZdZUffv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tWUZdZUffv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWUZdZUffv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tWUZdZUffv .navbar-buttons {
    text-align: left;
  }
}
.cid-tWUZdZUffv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWUZdZUffv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWUZdZUffv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWUZdZUffv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWUZdZUffv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWUZdZUffv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWUZdZUffv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWUZdZUffv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWUZdZUffv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWUZdZUffv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWUZdZUffv .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tWUZdZUffv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWUZdZUffv .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-tWUZdZUffv .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWUZdZUffv .navbar {
    height: 70px;
  }
  .cid-tWUZdZUffv .navbar.opened {
    height: auto;
  }
  .cid-tWUZdZUffv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWUZdZUffv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tWUZdZUffv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tWUZdZUffv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tWUZdZUffv .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-tWUZdZUffv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tWUZdZUffv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tWUZdZUffv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tWUZdZUffv .navbar-brand {
    margin-right: auto;
  }
  .cid-tWUZdZUffv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #0b1b3f;
    opacity: 1;
    border-color: rgba(11, 27, 63, 0.8) !important;
    background: rgba(11, 27, 63, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tWUZdZUffv .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tWUZdZUffv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tWUZdZUffv .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-tWUZdZUffv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tWUZdZUffv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tWUZdZUffv .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-tWUZdZUffv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tWUZdZUffv .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-tWUZdZUffv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tWUZdZUffv .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWUZe0m8Rt {
  overflow: visible;
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #fed9bd;
  background: linear-gradient(to right bottom, rgba(254, 217, 189, 0.8), #5e2ced);
}
.cid-tWUZe0m8Rt .mbr-overlay {
  background: #ffffff;
}
.cid-tWUZe0m8Rt .animation {
  pointer-events: none;
}
.cid-tWUZe0m8Rt .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tWUZe0m8Rt .mbr-section-title {
  margin-bottom: 27px;
  color: #0b1b3f;
}
.cid-tWUZe0m8Rt .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
.cid-tWUZe0m8Rt .image__block {
  margin-top: 60px;
  margin-bottom: -160px;
  position: relative;
  z-index: 5;
}
.cid-tWUZe0m8Rt .image__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tWUZe0m8Rt .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-tWUZe0m8Rt .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-tWUZe0m8Rt .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-tWUZe0m8Rt .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-tWUZe0m8Rt .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-tWUZe0m8Rt .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tWUZe0m8Rt .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-tWUZe0m8Rt .image__block {
    margin-bottom: -100px;
  }
}
.cid-tWUZe0m8Rt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe0m8Rt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe0m8Rt .mbr-text,
.cid-tWUZe0m8Rt .mbr-section-btn {
  color: #0b1b3f;
}
.cid-tWUZe0FZQr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f4;
}
.cid-tWUZe0FZQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe0FZQr .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-tWUZe0FZQr .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tWUZe0FZQr .container {
    padding: 0 12px;
  }
}
.cid-tWUZe0FZQr .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tWUZe0FZQr .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tWUZe0FZQr .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tWUZe0FZQr .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9f295;
  background-color: #0b1b3f;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tWUZe0FZQr .mbr-section-title {
  color: #222222;
}
.cid-tWUZe0URyR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWUZe0URyR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe0URyR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe0URyR .container-small,
.cid-tWUZe0URyR .container-fluid {
  padding: 0 !important;
}
.cid-tWUZe0URyR .container-small {
  max-width: 1440px;
}
.cid-tWUZe0URyR .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a671c5;
}
@media (max-width: 991px) {
  .cid-tWUZe0URyR .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe0URyR .text-box {
    padding: 50px 10px;
  }
}
.cid-tWUZe0URyR .mbr-section-title {
  color: #131313;
}
.cid-tWUZe0URyR .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tWUZe0URyR .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tWUZe0URyR .mbr-text {
    margin-top: 20px;
  }
}
.cid-tWUZe0URyR .mbr-text a {
  text-decoration: underline;
}
.cid-tWUZe0URyR .mbr-section-btn {
  margin-top: 34px;
}
.cid-tWUZe0URyR .mbr-section-subtitle,
.cid-tWUZe0URyR .mbr-section-btn {
  text-align: right;
}
.cid-tWUZe0URyR .mbr-section-subtitle,
.cid-tWUZe0URyR .mbr-section-btn DIV {
  text-align: left;
}
.cid-tWUZe1atpE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tWUZe1atpE .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tWUZe1atpE .content {
    padding: 0 2rem;
  }
}
.cid-tWUZe1atpE .row {
  justify-content: flex-end;
}
.cid-tWUZe1atpE .img-col {
  padding: 0;
}
.cid-tWUZe1atpE .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tWUZe1atpE .icon-wrap h3 {
  margin: 0;
}
.cid-tWUZe1atpE .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tWUZe1atpE .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tWUZe1atpE .icon-title,
.cid-tWUZe1atpE .mbr-iconfont {
  color: #181818;
}
.cid-tWUZe1atpE .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tWUZe1atpE .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe1atpE .icons-wrap {
    flex-direction: column;
  }
  .cid-tWUZe1atpE .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tWUZe1sTR6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWUZe1sTR6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe1sTR6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe1sTR6 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWUZe1sTR6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe1sTR6 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWUZe1sTR6 .mbr-section-title {
  color: #131313;
}
.cid-tWUZe1sTR6 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWUZe1sTR6 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWUZe1sTR6 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWUZe1sTR6 .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: #a671c5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWUZe1sTR6 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWUZe1sTR6 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWUZe1sTR6 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWUZe1sTR6 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWUZe1sTR6 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWUZe1sTR6 .card-title {
  color: #131313;
}
.cid-tWUZe1sTR6 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWUZe1sTR6 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUZe1sTR6 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe1sTR6 .card-link {
    margin-top: 15px;
  }
}
.cid-tWUZe1sTR6 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUZe1TSwZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f4;
}
.cid-tWUZe1TSwZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe1TSwZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe1TSwZ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWUZe1TSwZ .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWUZe1TSwZ .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe1TSwZ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWUZe1TSwZ .container {
    padding: 0 12px;
  }
}
.cid-tWUZe1TSwZ .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWUZe1TSwZ .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tWUZe1TSwZ .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tWUZe1TSwZ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tWUZe1TSwZ .mbr-section-title {
  color: #1D1D1F;
}
.cid-tWUZe1TSwZ .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tWUZe1TSwZ .mbr-section-title,
.cid-tWUZe1TSwZ .mbr-section-btn {
  text-align: center;
}
.cid-tWV36KqAai {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWV36KqAai .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWV36KqAai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWV36KqAai .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWV36KqAai .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWV36KqAai .container-fluid .row {
  padding: 0;
}
.cid-tWV36KqAai .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWV36KqAai .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWV36KqAai .card {
    padding: 48px 20px;
  }
}
.cid-tWV36KqAai .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWV36KqAai .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWV36KqAai .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWV36KqAai .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWV36KqAai .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWUZe27zH5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWUZe27zH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe27zH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe27zH5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWUZe27zH5 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe27zH5 .container {
    padding: 0 24px;
  }
}
.cid-tWUZe27zH5 .row {
  justify-content: center;
}
.cid-tWUZe27zH5 .content-wrapper {
  border-radius: 40px;
  background-color: #a671c5;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWUZe27zH5 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWUZe27zH5 .content-wrapper {
    padding: 32px;
  }
}
.cid-tWUZe27zH5 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWUZe27zH5 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWUZe27zH5 .mbr-section-title {
  color: #0b1b3f;
}
.cid-tWUZe27zH5 .mbr-text {
  color: #262642;
}
.cid-tWUZe2ky9x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f4;
}
.cid-tWUZe2ky9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe2ky9x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe2ky9x .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWUZe2ky9x .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe2ky9x .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWUZe2ky9x .mbr-section-title {
  color: #131313;
}
.cid-tWUZe2ky9x .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWUZe2ky9x .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWUZe2ky9x .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWUZe2ky9x .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: #a671c5;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWUZe2ky9x .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWUZe2ky9x .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe2ky9x .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWUZe2ky9x .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWUZe2ky9x .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWUZe2ky9x .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWUZe2ky9x .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWUZe2ky9x .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWUZe2ky9x .content-wrap {
    margin-top: 0;
  }
}
.cid-tWUZe2ky9x .card-title {
  color: #131313;
}
.cid-tWUZe2ky9x .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUZe2ky9x .card-text {
    margin-top: 15px;
  }
}
.cid-tWUZe2ky9x .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUZe2ky9x .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWUZe2ky9x .card-link {
    margin-top: 15px;
  }
}
.cid-tWUZe2ky9x .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUZe2NlKZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a671c5;
}
.cid-tWUZe2NlKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe2NlKZ .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-tWUZe2NlKZ .container {
    padding: 0 15px;
  }
}
.cid-tWUZe2NlKZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWUZe2NlKZ .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWUZe2NlKZ .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWUZe2NlKZ .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWUZe2NlKZ .mbr-section-title {
  color: #181818;
}
.cid-tWUZe2NlKZ .mbr-text {
  color: #181818;
}
.cid-tWUZe2NlKZ .mbr-name {
  color: #181818;
}
.cid-tWUZe32bbX {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #383838;
}
.cid-tWUZe32bbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe32bbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe32bbX .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWUZe32bbX .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe32bbX .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWUZe32bbX .mbr-section-title {
  color: #131313;
}
.cid-tWUZe32bbX .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWUZe32bbX .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWUZe32bbX .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWUZe32bbX .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-tWUZe32bbX .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWUZe32bbX .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWUZe32bbX .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWUZe32bbX .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWUZe32bbX .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWUZe32bbX .card-title {
  color: #131313;
}
.cid-tWUZe32bbX .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWUZe32bbX .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWUZe32bbX .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWUZe32bbX .card-link {
    margin-top: 15px;
  }
}
.cid-tWUZe32bbX .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWUZe3xDA5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #a671c5;
}
.cid-tWUZe3xDA5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe3xDA5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe3xDA5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .container {
    padding: 0 16px;
  }
}
.cid-tWUZe3xDA5 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .row {
    margin: 0 10px;
  }
}
.cid-tWUZe3xDA5 .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUZe3xDA5 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ffffff;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWUZe3xDA5 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUZe3xDA5 .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 #ffffff;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWUZe3xDA5 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUZe3xDA5 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .title-wrapper {
    width: 100%;
  }
}
.cid-tWUZe3xDA5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUZe3xDA5 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUZe3xDA5 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUZe3xDA5 .mbr-section-title {
  color: #181818;
}
.cid-tWUZe3xDA5 .mbr-text {
  color: #181818;
}
.cid-tX0smliVPh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
@media (max-width: 992px) {
  .cid-tX0smliVPh .container {
    padding: 0 25px;
  }
}
.cid-tX0smliVPh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tX0smliVPh .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tX0smliVPh .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tX0smliVPh .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tX0smliVPh .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tX0smliVPh .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX0smliVPh .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #fdfcfc;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tX0smliVPh .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #fdfcfc;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tX0smliVPh .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX0smliVPh .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: #000000;
  background-color: #fdfcfc;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tX0smliVPh .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tX0smliVPh .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX0smliVPh .mbr-section-title {
  color: #000000;
}
.cid-tX0smliVPh .panel-title-edit {
  color: #000000;
}
.cid-tX0smliVPh .panel-text {
  color: #000000;
}
.cid-tWUZe4e4Bt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #a671c5;
}
.cid-tWUZe4e4Bt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe4e4Bt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe4e4Bt .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .container {
    padding: 0 16px;
  }
}
.cid-tWUZe4e4Bt .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .row {
    margin: 0 10px;
  }
}
.cid-tWUZe4e4Bt .row .card {
  position: relative;
  padding: 0;
}
.cid-tWUZe4e4Bt .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #a671c5;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #a671c5;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-tWUZe4e4Bt .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUZe4e4Bt .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWUZe4e4Bt .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 #a671c5;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-tWUZe4e4Bt .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-tWUZe4e4Bt .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .row .card .icon-decor {
    display: none;
  }
}
.cid-tWUZe4e4Bt .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .title-wrapper {
    width: 100%;
  }
}
.cid-tWUZe4e4Bt .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWUZe4e4Bt .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWUZe4e4Bt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWUZe4e4Bt .mbr-section-title {
  color: #181818;
}
.cid-tWUZe4e4Bt .mbr-text {
  color: #181818;
}
.cid-tWXGt5Kgqb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tWXGt5Kgqb .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-tWXGt5Kgqb .panel-group {
  border: none;
}
.cid-tWXGt5Kgqb .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tWXGt5Kgqb .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tWXGt5Kgqb .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tWXGt5Kgqb .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tWXGt5Kgqb .img-col {
  padding: 0;
}
.cid-tWXGt5Kgqb .img-item {
  height: 100%;
}
.cid-tWXGt5Kgqb img {
  height: 100%;
  object-fit: cover;
}
.cid-tWXGt5Kgqb .collapsed span {
  transform: rotate(0deg);
}
.cid-tWXGt5Kgqb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWXGt5Kgqb p {
  margin-bottom: 0.3rem;
}
.cid-tWXGt5Kgqb .panel-title-edit {
  color: #e9c0e9;
}
.cid-tWXGt5Kgqb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tWXGt5Kgqb .card {
  background: #a671c5;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tWXGt5Kgqb .card {
    padding: 1.5rem;
  }
}
.cid-tWXGt5Kgqb .panel-text {
  color: #320707;
}
.cid-tWXGt5Kgqb .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tWXGt5Kgqb .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tWXGt5Kgqb .panel-title-edit,
.cid-tWXGt5Kgqb .mbr-iconfont {
  color: #000000;
}
.cid-tWUZe4SrPl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fdfcfc;
}
.cid-tWUZe4SrPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe4SrPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe4SrPl .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWUZe4SrPl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWUZe4SrPl .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-tWUZe4SrPl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWUZe4SrPl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWUZe4SrPl .mbr-section-title {
  color: #000000;
}
.cid-tWUZe5au5k {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWUZe5au5k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUZe5au5k .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tWUZe5au5k .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWUZe5au5k .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tWUZe5au5k a {
  font-weight: 600;
}
.cid-tWUZe5au5k a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tWUZe5au5k .col-lg-3,
  .cid-tWUZe5au5k .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tWUZe5au5k .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tWUZe5au5k .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWUZe5au5k h5 {
  margin: 0;
}
.cid-tWUZe5au5k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUZe5au5k .iconfont-wrapper {
  position: relative;
}
.cid-tWUZe5au5k .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-tWUZe5au5k .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tWUZe5au5k .sociconfont-wrapper {
  display: flex;
}
.cid-tWUZe5au5k .card-title,
.cid-tWUZe5au5k .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tWUZe5au5k .card-text {
  color: #000000;
}
.cid-tWUZe5au5k .mbr-section-title {
  color: #000000;
}
.cid-tWUZe5au5k .main-title,
.cid-tWUZe5au5k .iconfont-wrapper {
  text-align: left;
}
.cid-tWUZe5IDxc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #aff0f6;
}
.cid-tWUZe5IDxc .media-container-row .mbr-text {
  color: #181818;
}
