body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito-Regular';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Nunito-Regular';
  font-size: 3.6rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-4 {
  font-family: 'Nunito-Regular';
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito-Regular';
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Nunito-Regular';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
/* ---- 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: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #55cc39 !important;
}
.bg-success {
  background-color: #b2216b !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #55cc39 !important;
}
.bg-danger {
  background-color: #767481 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #55cc39 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: #55cc39 !important;
  border-color: #55cc39 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #3b9326 !important;
  border-color: #3b9326 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3b9326 !important;
  border-color: #3b9326 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #55cc39 inset !important;
  background: transparent !important;
  border: none !important;
  color: #55cc39 !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 #000000 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: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #000000 inset !important;
  background: transparent !important;
  border: none !important;
  color: #000000 !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 #ffffff 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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !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 #b2216b 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: #b2216b !important;
  border-color: #b2216b !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #711544 !important;
  border-color: #711544 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #711544 !important;
  border-color: #711544 !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #b2216b inset !important;
  background: transparent !important;
  border: none !important;
  color: #b2216b !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 #55cc39 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: #55cc39 !important;
  border-color: #55cc39 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #3b9326 !important;
  border-color: #3b9326 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3b9326 !important;
  border-color: #3b9326 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #55cc39 inset !important;
  background: transparent !important;
  border: none !important;
  color: #55cc39 !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 #767481 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: #767481 !important;
  border-color: #767481 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #515059 !important;
  border-color: #515059 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #515059 !important;
  border-color: #515059 !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #767481 inset !important;
  background: transparent !important;
  border: none !important;
  color: #767481 !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 #55cc39 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: #327e21;
  color: #327e21;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #55cc39;
  border-color: #55cc39;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #55cc39 !important;
  border-color: #55cc39 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #55cc39 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: #55cc39;
  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 #000000 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #000000 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: #000000;
  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 #ffffff 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: #cccccc;
  color: #cccccc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #ffffff 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: #ffffff;
  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 #b2216b 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: #5c1137;
  color: #5c1137;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #b2216b;
  border-color: #b2216b;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2216b !important;
  border-color: #b2216b !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #b2216b 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: #b2216b;
  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 #55cc39 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: #327e21;
  color: #327e21;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #55cc39;
  border-color: #55cc39;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #55cc39 !important;
  border-color: #55cc39 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #55cc39 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: #55cc39;
  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 #767481 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: #45444b;
  color: #45444b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #767481;
  border-color: #767481;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #767481 !important;
  border-color: #767481 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #767481 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: #767481;
  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: #55cc39 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #b2216b !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #55cc39 !important;
}
.text-danger {
  color: #767481 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #55cc39 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5c1137 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #327e21 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #45444b !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: #ffffff;
}
.alert-warning {
  background-color: #55cc39;
}
.alert-danger {
  background-color: #767481;
}
.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: #55cc39;
  border-color: #55cc39;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #55cc39;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e0f6db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e46eaa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e0f6db;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b8b7be;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Nunito-Regular';
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #55cc39;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #55cc39;
  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: #55cc39;
  border-bottom-color: #55cc39;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #55cc39 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !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='%2355cc39' %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-rGtQUWfKqN .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtQUWfKqN .nav-item:focus,
.cid-rGtQUWfKqN .nav-link:focus {
  outline: none;
}
.cid-rGtQUWfKqN .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item:active,
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGtQUWfKqN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtQUWfKqN .navbar-caption:hover {
  color: inherit!important;
}
.cid-rGtQUWfKqN .container {
  max-width: 1380px;
}
.cid-rGtQUWfKqN .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rGtQUWfKqN .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rGtQUWfKqN .nav-link:hover,
.cid-rGtQUWfKqN .nav-link:active,
.cid-rGtQUWfKqN .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-rGtQUWfKqN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rGtQUWfKqN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rGtQUWfKqN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGtQUWfKqN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGtQUWfKqN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGtQUWfKqN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rGtQUWfKqN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-rGtQUWfKqN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGtQUWfKqN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGtQUWfKqN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGtQUWfKqN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rGtQUWfKqN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGtQUWfKqN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGtQUWfKqN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGtQUWfKqN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGtQUWfKqN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGtQUWfKqN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGtQUWfKqN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGtQUWfKqN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGtQUWfKqN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rGtQUWfKqN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGtQUWfKqN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGtQUWfKqN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGtQUWfKqN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGtQUWfKqN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rGtQUWfKqN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGtQUWfKqN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rGtQUWfKqN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGtQUWfKqN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGtQUWfKqN .icons-menu span {
  color: #ed6436 !important;
}
.cid-rGtQUWfKqN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGtQUWfKqN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGtQUWfKqN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGtQUWfKqN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGtQUWfKqN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGtQUWfKqN .dropdown-item.active,
.cid-rGtQUWfKqN .dropdown-item:active {
  background-color: transparent;
}
.cid-rGtQUWfKqN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGtQUWfKqN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGtQUWfKqN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGtQUWfKqN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rGtQUWfKqN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGtQUWfKqN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGtQUWfKqN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rGtQUWfKqN .navbar-buttons {
  text-align: center;
}
.cid-rGtQUWfKqN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rGtQUWfKqN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rGtQUWfKqN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGtQUWfKqN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtQUWfKqN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtQUWfKqN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGtQUWfKqN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtQUWfKqN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGtQUWfKqN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGtQUWfKqN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtQUWfKqN .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-rGtQUWfKqN a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rGtQUWfKqN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGtQUWfKqN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-rGtQUWfKqN .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGtQUWfKqN .navbar {
    height: 77px;
  }
  .cid-rGtQUWfKqN .navbar.opened {
    height: auto;
  }
  .cid-rGtQUWfKqN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdXfsOjFQy {
  overflow: hidden;
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tiertherapie-zietz-herzberg-am-harz-hunde-katzen.jpg");
}
.cid-vdXfsOjFQy .row {
  overflow: hidden;
  z-index: 2;
  position: relative;
  -webkit-box-pack: end;
  justify-content: flex-end;
  pointer-events: none;
}
.cid-vdXfsOjFQy .content {
  margin: auto 0;
  pointer-events: all;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .cid-vdXfsOjFQy .content {
    max-width: 800px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vdXfsOjFQy .content {
    padding: 10rem 2rem;
    padding-bottom: 12rem;
  }
}
.cid-vdXfsOjFQy .container {
  max-width: 1600px;
}
.cid-vdXfsOjFQy .mbr-bold,
.cid-vdXfsOjFQy b {
  font-weight: 900;
}
.cid-vdXfsOjFQy .btn {
  color: white !important;
}
.cid-vdXfsOjFQy svg {
  position: absolute;
  bottom: -25%;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%) scaleY(0.8);
  transform: translateX(-50%) scaleY(0.8);
  z-index: 1;
}
.cid-vdXfsOjFQy svg path {
  fill: #ffffff;
}
@media (max-width: 1200px) {
  .cid-vdXfsOjFQy svg {
    -webkit-transform: translateX(-50%) scaleY(0.8) scaleX(1.8);
    transform: translateX(-50%) scaleY(0.8) scaleX(1.8);
  }
}
@media (max-width: 992px) {
  .cid-vdXfsOjFQy svg {
    -webkit-transform: translateX(-50%) scaleY(0.8) scaleX(2.2);
    transform: translateX(-50%) scaleY(0.8) scaleX(2.2);
  }
}
@media (max-width: 767px) {
  .cid-vdXfsOjFQy svg {
    -webkit-transform: translateX(-80%) scaleY(0.8) scaleX(5);
    transform: translateX(-80%) scaleY(0.8) scaleX(5);
  }
  .cid-vdXfsOjFQy .mbr-overlay {
    opacity: 0.2 !important;
  }
}
.cid-vdXfsOjFQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdXfsOjFQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rGtR2nEWKI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rGtR2nEWKI .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rGtR2nEWKI .content {
    padding: 0 2rem;
  }
}
.cid-rGtR2nEWKI .row {
  justify-content: flex-end;
}
.cid-rGtR2nEWKI .img-col {
  padding: 0;
}
.cid-rGtR2nEWKI .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-right: 2rem;
}
.cid-rGtR2nEWKI .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-rGtR2nEWKI .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rGtR2nEWKI .mbr-iconfont {
  font-size: 5rem;
  padding-right: 1.2rem;
  margin-right: 1.4rem;
  padding-bottom: 4px;
  border-right: 1px solid #181818;
}
.cid-rGtR2nEWKI .icon-title,
.cid-rGtR2nEWKI .mbr-iconfont {
  color: #181818;
}
.cid-rGtR2nEWKI .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rGtR2nEWKI .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rGtR2nEWKI .icons-wrap {
    flex-direction: column;
  }
  .cid-rGtR2nEWKI .icon-wrap {
    margin-right: 0rem;
  }
  .cid-rGtR2nEWKI .link-wrap {
    margin: auto;
  }
}
.cid-rGtR2nEWKI .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-rGtR2nEWKI .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-rGtR2nEWKI .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-rGtR2nEWKI .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-rGtR2nEWKI H1 {
  color: #181818;
}
.cid-rGtR2MxTqJ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGtR2MxTqJ .link {
  opacity: 0;
  transform: translate(-10px, 40px);
  transition: all 0.3s;
  font-weight: 600;
  margin: 0;
}
.cid-rGtR2MxTqJ h4 {
  transform: translate(0px, 20px);
  animation: animationFramesOut linear 0.6s;
}
.cid-rGtR2MxTqJ .svg11 path {
  fill: #55cc39;
}
.cid-rGtR2MxTqJ .svg21 path {
  fill: #f9b945;
}
.cid-rGtR2MxTqJ .svg31 path {
  fill: #b2216b;
}
.cid-rGtR2MxTqJ .svg12 path,
.cid-rGtR2MxTqJ .svg22 path,
.cid-rGtR2MxTqJ .svg32 path {
  fill: #f2f2f4;
}
.cid-rGtR2MxTqJ .card {
  position: relative;
  height: 300px;
}
.cid-rGtR2MxTqJ .card:hover .link {
  opacity: 1;
  transform: translate(-10px, 10px);
  transition-delay: 0.6s;
}
.cid-rGtR2MxTqJ .card:hover h4 {
  animation: animationFrames linear 0.6s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  transform: translate(0px, 20px);
}
.cid-rGtR2MxTqJ .card:hover .svg11 {
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
}
.cid-rGtR2MxTqJ .card:hover .svg12 {
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(30deg);
}
.cid-rGtR2MxTqJ .card:hover .svg21 {
  transform: skew(-20deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
}
.cid-rGtR2MxTqJ .card:hover .svg22 {
  transform: skew(-20deg, 10deg) scaleX(1) scaleY(0.9) rotate(20deg);
}
.cid-rGtR2MxTqJ .card:hover .svg31 {
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
}
.cid-rGtR2MxTqJ .card:hover .svg32 {
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(70deg);
}
.cid-rGtR2MxTqJ .card svg {
  position: absolute;
  top: -10px;
  left: 40px;
  transform: scale(0.9);
  transition: transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5);
}
.cid-rGtR2MxTqJ .card .svg22,
.cid-rGtR2MxTqJ .card .svg32,
.cid-rGtR2MxTqJ .card .svg12 {
  z-index: 1;
  transform: scale(0.9) rotate(60deg);
}
.cid-rGtR2MxTqJ .card .svg21,
.cid-rGtR2MxTqJ .card .svg31,
.cid-rGtR2MxTqJ .card .svg11 {
  z-index: 2;
}
.cid-rGtR2MxTqJ .card div {
  z-index: 3;
}
.cid-rGtR2MxTqJ .card .card-img {
  position: absolute;
  right: 30px;
  top: 30px;
}
@keyframes animationFrames {
  0% {
    transform: translate(0px, 20px);
  }
  33% {
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    transform: translate(0px, -30px);
    opacity: 0;
  }
  67% {
    transform: translate(0px, 60px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@keyframes animationFramesOut {
  0% {
    transform: translate(0px, 20px);
    opacity: 1;
  }
  33% {
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    transform: translate(0px, 60px);
    opacity: 0;
  }
  67% {
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
.cid-rGtR2MxTqJ .card-img {
  background: white;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rGtR2MxTqJ .mbr-iconfont {
  color: #383838 !important;
  font-size: 2.5rem!important;
}
.cid-rGtR2MxTqJ .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
}
.cid-rGtR2MxTqJ .link a:after {
  position: absolute;
  content: "\e967";
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-rGtR2MxTqJ .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rGtR2MxTqJ .card {
    margin-bottom: 2rem;
  }
  .cid-rGtR2MxTqJ .card svg {
    left: 30px;
  }
  .cid-rGtR2MxTqJ .card:hover h4 {
    animation: none;
  }
  .cid-rGtR2MxTqJ .link {
    opacity: 1;
    transform: translate(-10px, 10px);
  }
  .cid-rGtR2MxTqJ h4 {
    animation: none;
  }
}
@media (max-width: 767px) {
  .cid-rGtR2MxTqJ .card {
    max-width: 360px;
  }
  .cid-rGtR2MxTqJ .card svg {
    left: 10px;
  }
}
.cid-rGtR35bime {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rGtR35bime .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rGtR35bime .content {
    padding: 0 2rem;
  }
}
.cid-rGtR35bime .img-col {
  padding: 0;
}
.cid-rGtR35bime .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-rGtR35bime .icon-wrap h3 {
  margin: 0;
}
.cid-rGtR35bime .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rGtR35bime .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-rGtR35bime .icon-title,
.cid-rGtR35bime .mbr-iconfont {
  color: #181818;
}
.cid-rGtR35bime .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rGtR35bime .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rGtR35bime .icons-wrap {
    flex-direction: column;
  }
  .cid-rGtR35bime .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-rGtR35bime .mbr-text,
.cid-rGtR35bime .mbr-section-btn,
.cid-rGtR35bime .content {
  text-align: justify;
}
.cid-rGtR3NTgPj {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rGtR3NTgPj .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rGtR3NTgPj .content {
    padding: 0 2rem;
  }
}
.cid-rGtR3NTgPj .row {
  justify-content: flex-end;
}
.cid-rGtR3NTgPj .img-col {
  padding: 0;
}
.cid-rGtR3NTgPj .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-rGtR3NTgPj .icon-wrap h3 {
  margin: 0;
}
.cid-rGtR3NTgPj .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rGtR3NTgPj .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-rGtR3NTgPj .icon-title,
.cid-rGtR3NTgPj .mbr-iconfont {
  color: #181818;
}
.cid-rGtR3NTgPj .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rGtR3NTgPj .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rGtR3NTgPj .icons-wrap {
    flex-direction: column;
  }
  .cid-rGtR3NTgPj .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-rGtR3NTgPj H1 {
  color: #000000;
}
.cid-rGtR41owCd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGtR41owCd li {
  list-style: none;
}
.cid-rGtR41owCd .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-rGtR41owCd .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-rGtR41owCd .mbr-iconfont {
  font-size: 22px!important;
  padding-right: 12px;
  transition: all 0.3s;
  font-weight: 900;
  color: #7aba59 !important;
}
.cid-rGtR41owCd h4 {
  margin: 0;
}
.cid-rGtR41owCd ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-rGtR41owCd .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-rGtR41owCd .col-title2 {
  color: #b2216b;
}
.cid-rGtR41owCd .col-title1 {
  color: #55cc39;
}
.cid-rGtR57iLe2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rGtR57iLe2 .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rGtR57iLe2 .content {
    padding: 0 2rem;
  }
}
.cid-rGtR57iLe2 .row {
  justify-content: flex-end;
}
.cid-rGtR57iLe2 .img-col {
  padding: 0;
}
.cid-rGtR57iLe2 .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-rGtR57iLe2 .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-rGtR57iLe2 .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rGtR57iLe2 .mbr-iconfont {
  font-size: 3.5rem;
  color: #7aba59 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-rGtR57iLe2 .icon-title,
.cid-rGtR57iLe2 .mbr-iconfont {
  color: #b2216b;
}
.cid-rGtR57iLe2 .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rGtR57iLe2 .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rGtR57iLe2 .icons-wrap {
    flex-direction: column;
  }
  .cid-rGtR57iLe2 .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-rGtR57iLe2 .link-wrap {
    margin: auto;
  }
  .cid-rGtR57iLe2 .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-rGtR57iLe2 .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-rGtR57iLe2 .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-rGtR57iLe2 .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-rGtR57iLe2 .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-rGtR57iLe2 .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-rOe4PJuR5M {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-rOe4PJuR5M .accordion .card {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-rOe4PJuR5M .acc {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rOe4PJuR5M .acc {
    padding: 0 2rem;
  }
}
.cid-rOe4PJuR5M .img-col {
  padding: 0;
}
.cid-rOe4PJuR5M .card {
  border: 1px solid lightgray!important;
  border-radius: 20px!important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-rOe4PJuR5M .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-rOe4PJuR5M .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-rOe4PJuR5M .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rOe4PJuR5M .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
}
.cid-rOe4PJuR5M .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rOe4PJuR5M .card .panel-body {
  color: #767676;
}
.cid-rOe4PJuR5M .card:hover {
  background: #f2f2f4;
}
.cid-rOe4PJuR5M .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-rOe4PJuR5M .panel-title {
  display: flex!important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-rOe4PJuR5M .mbri-arrow-down:before {
  content: "\e960";
}
.cid-rOe4PJuR5M .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-rOe4PJuR5M .panel-collapse {
  margin-top: -1px;
}
.cid-rOe4PJuR5M H4 {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-rOe4PJuR5M .img-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rOe4PJuR5M .panel-text {
    padding: 0 0.5rem;
  }
  .cid-rOe4PJuR5M .icon-left {
    margin-left: 0.5rem;
  }
  .cid-rOe4PJuR5M .sign {
    margin-right: 0.5rem;
  }
}
.cid-rOe4PJuR5M H2 {
  text-align: center;
}
.cid-vjtV7kLsns {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-vjtV7kLsns .accordion .card {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vjtV7kLsns .acc {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vjtV7kLsns .acc {
    padding: 0 2rem;
  }
}
.cid-vjtV7kLsns .img-col {
  padding: 0;
}
.cid-vjtV7kLsns .card {
  border: 1px solid lightgray!important;
  border-radius: 20px!important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-vjtV7kLsns .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-vjtV7kLsns .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-vjtV7kLsns .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vjtV7kLsns .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
}
.cid-vjtV7kLsns .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-vjtV7kLsns .card .panel-body {
  color: #767676;
}
.cid-vjtV7kLsns .card:hover {
  background: #f2f2f4;
}
.cid-vjtV7kLsns .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-vjtV7kLsns .panel-title {
  display: flex!important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-vjtV7kLsns .mbri-arrow-down:before {
  content: "\e960";
}
.cid-vjtV7kLsns .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-vjtV7kLsns .panel-collapse {
  margin-top: -1px;
}
.cid-vjtV7kLsns H4 {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-vjtV7kLsns .img-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vjtV7kLsns .panel-text {
    padding: 0 0.5rem;
  }
  .cid-vjtV7kLsns .icon-left {
    margin-left: 0.5rem;
  }
  .cid-vjtV7kLsns .sign {
    margin-right: 0.5rem;
  }
}
#custom-html-1s {
  /* Type valid CSS here */
}
#custom-html-1s div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1s p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-rGtWl2Qdmo .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtWl2Qdmo .nav-item:focus,
.cid-rGtWl2Qdmo .nav-link:focus {
  outline: none;
}
.cid-rGtWl2Qdmo .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item:active,
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGtWl2Qdmo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtWl2Qdmo .navbar-caption:hover {
  color: inherit!important;
}
.cid-rGtWl2Qdmo .container {
  max-width: 1380px;
}
.cid-rGtWl2Qdmo .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rGtWl2Qdmo .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rGtWl2Qdmo .nav-link:hover,
.cid-rGtWl2Qdmo .nav-link:active,
.cid-rGtWl2Qdmo .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-rGtWl2Qdmo .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rGtWl2Qdmo .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rGtWl2Qdmo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGtWl2Qdmo .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGtWl2Qdmo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGtWl2Qdmo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rGtWl2Qdmo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-rGtWl2Qdmo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGtWl2Qdmo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGtWl2Qdmo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGtWl2Qdmo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rGtWl2Qdmo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGtWl2Qdmo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGtWl2Qdmo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGtWl2Qdmo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGtWl2Qdmo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGtWl2Qdmo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGtWl2Qdmo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGtWl2Qdmo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGtWl2Qdmo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rGtWl2Qdmo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGtWl2Qdmo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGtWl2Qdmo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGtWl2Qdmo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGtWl2Qdmo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rGtWl2Qdmo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGtWl2Qdmo .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rGtWl2Qdmo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGtWl2Qdmo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGtWl2Qdmo .icons-menu span {
  color: #ed6436 !important;
}
.cid-rGtWl2Qdmo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGtWl2Qdmo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGtWl2Qdmo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGtWl2Qdmo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGtWl2Qdmo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGtWl2Qdmo .dropdown-item.active,
.cid-rGtWl2Qdmo .dropdown-item:active {
  background-color: transparent;
}
.cid-rGtWl2Qdmo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGtWl2Qdmo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGtWl2Qdmo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGtWl2Qdmo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rGtWl2Qdmo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGtWl2Qdmo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGtWl2Qdmo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rGtWl2Qdmo .navbar-buttons {
  text-align: center;
}
.cid-rGtWl2Qdmo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rGtWl2Qdmo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rGtWl2Qdmo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGtWl2Qdmo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtWl2Qdmo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtWl2Qdmo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGtWl2Qdmo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtWl2Qdmo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGtWl2Qdmo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGtWl2Qdmo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtWl2Qdmo .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-rGtWl2Qdmo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rGtWl2Qdmo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGtWl2Qdmo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-rGtWl2Qdmo .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGtWl2Qdmo .navbar {
    height: 77px;
  }
  .cid-rGtWl2Qdmo .navbar.opened {
    height: auto;
  }
  .cid-rGtWl2Qdmo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vmqJDm45bF {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/wegbegleiter-tiertherapie-zietz-herzberg.png");
}
.cid-vmqJDm45bF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmqJDm45bF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmqJDm45bF .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-vmqJDm45bF .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-vmqJDm45bF .container {
    padding: 0 25px;
  }
}
.cid-vmqJDm45bF .title-wrapper {
  padding: 100px 0;
}
.cid-vmqJDm45bF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vmqJDm45bF .mbr-section-title {
  color: #ffffff;
}
.cid-rGtWmGRJOW {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rGtWmGRJOW .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-rGtWmGRJOW .content {
    padding: 0 2rem;
  }
}
.cid-rGtWmGRJOW .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-rGtWmGRJOW .content {
    margin: auto;
  }
}
.cid-rGtWmGRJOW li {
  list-style: none;
}
.cid-rGtWmGRJOW .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-rGtWmGRJOW .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-rGtWmGRJOW .mbr-iconfont {
  font-size: 18px!important;
  padding-right: 12px;
  transition: all 0.3s;
  font-weight: 900;
  color: #7aba59 !important;
}
.cid-rGtWmGRJOW h4 {
  margin: 0;
}
.cid-rGtWmGRJOW ul {
  padding: 0;
  margin: 0;
}
.cid-rGtWmGRJOW H2 {
  color: #55cc39;
}
.cid-rGtWmGRJOW .item1 {
  color: #55cc39;
}
.cid-veBue1BhDi {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-veBue1BhDi .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-veBue1BhDi .content {
    padding: 0 2rem;
  }
}
.cid-veBue1BhDi .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.cid-veBue1BhDi .img-col {
  padding: 0;
}
.cid-veBue1BhDi .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-veBue1BhDi .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-veBue1BhDi .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-veBue1BhDi .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-veBue1BhDi .icon-title,
.cid-veBue1BhDi .mbr-iconfont {
  color: #b2216b;
}
.cid-veBue1BhDi .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-veBue1BhDi .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-veBue1BhDi .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-veBue1BhDi .icon-wrap {
    margin-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-veBue1BhDi .link-wrap {
    margin: auto;
  }
  .cid-veBue1BhDi .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-veBue1BhDi .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-veBue1BhDi .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-veBue1BhDi .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-veBue1BhDi .link-wrap h3 {
  z-index: 10;
  margin: 0;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
}
.cid-veBue1BhDi .link-wrap:hover {
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
}
.cid-veBue1BhDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-veBue1BhDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKnosfTus {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vkKnosfTus .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkKnosfTus .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkKnosfTus .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-vkKnosfTus .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-vkKnosfTus .container {
    padding: 0 26px;
  }
}
.cid-vkKnosfTus .row {
  justify-content: center;
}
.cid-vkKnosfTus .list {
  padding: 0;
  margin-bottom: 40px;
  list-style-type: none;
  color: #000000;
}
.cid-vkKnosfTus .list .item-wrap {
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vkKnosfTus .list .item-wrap:hover,
.cid-vkKnosfTus .list .item-wrap:focus {
  color: #b2216b;
}
.cid-vkKnosfTus .list,
.cid-vkKnosfTus .mbr-section-btn {
  text-align: center;
}
.cid-vmq3mjOMB0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vmq3mjOMB0 .btn-col {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.cid-vmq3mjOMB0 .card-wrapper {
  position: relative;
  height: 350px;
}
.cid-vmq3mjOMB0 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  background: #181818;
  border-radius: 30px;
  opacity: 0.3;
  pointer-events: none;
}
.cid-vmq3mjOMB0 .card-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 30px;
}
.cid-vmq3mjOMB0 .wrapper {
  position: absolute;
  padding: 1rem;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: fit-content;
  top: 50%;
  bottom: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .cid-vmq3mjOMB0 .col-md-6 {
    margin-bottom: 2rem;
  }
  .cid-vmq3mjOMB0 .wrapper {
    top: auto;
    bottom: 0rem;
    -webkit-transform: none;
    transform: none;
  }
  .cid-vmq3mjOMB0 .mbr-text {
    padding-bottom: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-vmq3mjOMB0 .col-md-4 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-vmq3mjOMB0 .card-wrapper {
    position: relative;
  }
  .cid-vmq3mjOMB0 .card-wrapper:before {
    opacity: 0;
  }
  .cid-vmq3mjOMB0 .card-wrapper:hover:before {
    opacity: 0.3;
  }
  .cid-vmq3mjOMB0 .card-wrapper:hover .wrapper {
    opacity: 1;
  }
  .cid-vmq3mjOMB0 .wrapper {
    opacity: 0;
  }
  .cid-vmq3mjOMB0 .btn-col {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}
.cid-vmq3mjOMB0 H4 {
  color: #55cc39;
}
.cid-vmq3mjOMB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmq3mjOMB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmq3mjOMB0 .mbr-section-title,
.cid-vmq3mjOMB0 .underline {
  color: #55cc39;
}
.cid-rGtWpJx21y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rGtWpJx21y .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rGtWpJx21y .content {
    padding: 0 2rem;
  }
}
.cid-rGtWpJx21y .row {
  justify-content: flex-start;
}
.cid-rGtWpJx21y .img-col {
  padding: 0;
}
.cid-rGtWpJx21y .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rGtWpJx21y .mbr-iconfont {
  font-size: 3rem;
  color: #55cc39 !important;
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rGtWpJx21y .icon-title,
.cid-rGtWpJx21y .icon-wrap {
  color: #ed6436;
}
.cid-rGtWpJx21y .mbr-text,
.cid-rGtWpJx21y .mbr-section-btn,
.cid-rGtWpJx21y .content {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-rGtWpJx21y .content {
    margin: auto;
  }
}
.cid-rGtWpJx21y .icon-title,
.cid-rGtWpJx21y .mbr-iconfont {
  color: #b2216b;
}
#custom-html-1r {
  /* Type valid CSS here */
}
#custom-html-1r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1r p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vjnMdsczft .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjnMdsczft .nav-item:focus,
.cid-vjnMdsczft .nav-link:focus {
  outline: none;
}
.cid-vjnMdsczft .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item:active,
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjnMdsczft .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjnMdsczft .navbar-caption:hover {
  color: inherit!important;
}
.cid-vjnMdsczft .container {
  max-width: 1380px;
}
.cid-vjnMdsczft .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vjnMdsczft .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vjnMdsczft .nav-link:hover,
.cid-vjnMdsczft .nav-link:active,
.cid-vjnMdsczft .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vjnMdsczft .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vjnMdsczft .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vjnMdsczft .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjnMdsczft .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjnMdsczft .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjnMdsczft .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjnMdsczft .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vjnMdsczft .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjnMdsczft .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjnMdsczft .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjnMdsczft .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjnMdsczft .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjnMdsczft .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjnMdsczft .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vjnMdsczft .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjnMdsczft .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjnMdsczft .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjnMdsczft .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjnMdsczft .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjnMdsczft .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjnMdsczft .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjnMdsczft .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjnMdsczft .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjnMdsczft .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vjnMdsczft .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vjnMdsczft .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vjnMdsczft .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vjnMdsczft .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjnMdsczft .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjnMdsczft .icons-menu span {
  color: #ed6436 !important;
}
.cid-vjnMdsczft .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjnMdsczft .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjnMdsczft .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjnMdsczft .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjnMdsczft .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjnMdsczft .dropdown-item.active,
.cid-vjnMdsczft .dropdown-item:active {
  background-color: transparent;
}
.cid-vjnMdsczft .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjnMdsczft .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjnMdsczft .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjnMdsczft .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjnMdsczft .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjnMdsczft .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjnMdsczft ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vjnMdsczft .navbar-buttons {
  text-align: center;
}
.cid-vjnMdsczft button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjnMdsczft button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vjnMdsczft button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjnMdsczft button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjnMdsczft button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjnMdsczft button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjnMdsczft nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjnMdsczft nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjnMdsczft nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjnMdsczft nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjnMdsczft .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vjnMdsczft a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vjnMdsczft .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vjnMdsczft .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vjnMdsczft .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vjnMdsczft .navbar {
    height: 77px;
  }
  .cid-vjnMdsczft .navbar.opened {
    height: auto;
  }
  .cid-vjnMdsczft .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjnR7GxhzY {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjnR7GxhzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjnR7GxhzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjnR7GxhzY .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjnR7GxhzY .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-vjnR7GxhzY .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjnR7GxhzY .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-vjnR7GxhzY .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjnR7GxhzY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-vjnR7GxhzY .mbr-label {
  color: #000000;
}
.cid-vjnR7GxhzY .mbr-section-title {
  color: #000000;
}
.cid-vjnR7GxhzY .mbr-text {
  color: #000000;
}
#custom-html-1q {
  /* Type valid CSS here */
}
#custom-html-1q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1q p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vjnVAX03Ca .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjnVAX03Ca .nav-item:focus,
.cid-vjnVAX03Ca .nav-link:focus {
  outline: none;
}
.cid-vjnVAX03Ca .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item:active,
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjnVAX03Ca .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjnVAX03Ca .navbar-caption:hover {
  color: inherit!important;
}
.cid-vjnVAX03Ca .container {
  max-width: 1380px;
}
.cid-vjnVAX03Ca .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vjnVAX03Ca .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vjnVAX03Ca .nav-link:hover,
.cid-vjnVAX03Ca .nav-link:active,
.cid-vjnVAX03Ca .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vjnVAX03Ca .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vjnVAX03Ca .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vjnVAX03Ca .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjnVAX03Ca .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjnVAX03Ca .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjnVAX03Ca .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjnVAX03Ca .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vjnVAX03Ca .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjnVAX03Ca .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjnVAX03Ca .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjnVAX03Ca .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjnVAX03Ca .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjnVAX03Ca .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjnVAX03Ca .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vjnVAX03Ca .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjnVAX03Ca .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjnVAX03Ca .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjnVAX03Ca .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjnVAX03Ca .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjnVAX03Ca .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjnVAX03Ca .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjnVAX03Ca .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjnVAX03Ca .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjnVAX03Ca .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vjnVAX03Ca .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vjnVAX03Ca .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vjnVAX03Ca .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vjnVAX03Ca .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjnVAX03Ca .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjnVAX03Ca .icons-menu span {
  color: #ed6436 !important;
}
.cid-vjnVAX03Ca .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjnVAX03Ca .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjnVAX03Ca .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjnVAX03Ca .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjnVAX03Ca .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjnVAX03Ca .dropdown-item.active,
.cid-vjnVAX03Ca .dropdown-item:active {
  background-color: transparent;
}
.cid-vjnVAX03Ca .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjnVAX03Ca .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjnVAX03Ca .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjnVAX03Ca .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjnVAX03Ca .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjnVAX03Ca .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjnVAX03Ca ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vjnVAX03Ca .navbar-buttons {
  text-align: center;
}
.cid-vjnVAX03Ca button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjnVAX03Ca button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vjnVAX03Ca button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjnVAX03Ca button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjnVAX03Ca button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjnVAX03Ca button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjnVAX03Ca nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjnVAX03Ca nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjnVAX03Ca nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjnVAX03Ca nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjnVAX03Ca .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vjnVAX03Ca a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vjnVAX03Ca .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vjnVAX03Ca .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vjnVAX03Ca .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vjnVAX03Ca .navbar {
    height: 77px;
  }
  .cid-vjnVAX03Ca .navbar.opened {
    height: auto;
  }
  .cid-vjnVAX03Ca .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjnVAXuQlH {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vjnVAXuQlH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjnVAXuQlH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjnVAXuQlH .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjnVAXuQlH .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-vjnVAXuQlH .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjnVAXuQlH .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-vjnVAXuQlH .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vjnVAXuQlH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-vjnVAXuQlH .mbr-label {
  color: #000000;
}
.cid-vjnVAXuQlH .mbr-section-title {
  color: #000000;
}
.cid-vjnVAXuQlH .mbr-text {
  color: #000000;
}
#custom-html-1p {
  /* Type valid CSS here */
}
#custom-html-1p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1p p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vjzYdR79xU .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjzYdR79xU .nav-item:focus,
.cid-vjzYdR79xU .nav-link:focus {
  outline: none;
}
.cid-vjzYdR79xU .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item:active,
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjzYdR79xU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjzYdR79xU .navbar-caption:hover {
  color: inherit!important;
}
.cid-vjzYdR79xU .container {
  max-width: 1380px;
}
.cid-vjzYdR79xU .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vjzYdR79xU .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vjzYdR79xU .nav-link:hover,
.cid-vjzYdR79xU .nav-link:active,
.cid-vjzYdR79xU .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vjzYdR79xU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vjzYdR79xU .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vjzYdR79xU .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjzYdR79xU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjzYdR79xU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjzYdR79xU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjzYdR79xU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vjzYdR79xU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjzYdR79xU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjzYdR79xU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjzYdR79xU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjzYdR79xU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjzYdR79xU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjzYdR79xU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vjzYdR79xU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjzYdR79xU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjzYdR79xU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjzYdR79xU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjzYdR79xU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjzYdR79xU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjzYdR79xU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjzYdR79xU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjzYdR79xU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjzYdR79xU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vjzYdR79xU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vjzYdR79xU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vjzYdR79xU .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vjzYdR79xU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjzYdR79xU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjzYdR79xU .icons-menu span {
  color: #ed6436 !important;
}
.cid-vjzYdR79xU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjzYdR79xU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjzYdR79xU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjzYdR79xU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjzYdR79xU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjzYdR79xU .dropdown-item.active,
.cid-vjzYdR79xU .dropdown-item:active {
  background-color: transparent;
}
.cid-vjzYdR79xU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjzYdR79xU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjzYdR79xU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjzYdR79xU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjzYdR79xU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjzYdR79xU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjzYdR79xU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vjzYdR79xU .navbar-buttons {
  text-align: center;
}
.cid-vjzYdR79xU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjzYdR79xU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vjzYdR79xU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjzYdR79xU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjzYdR79xU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjzYdR79xU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjzYdR79xU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjzYdR79xU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjzYdR79xU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjzYdR79xU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjzYdR79xU .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vjzYdR79xU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vjzYdR79xU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vjzYdR79xU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vjzYdR79xU .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vjzYdR79xU .navbar {
    height: 77px;
  }
  .cid-vjzYdR79xU .navbar.opened {
    height: auto;
  }
  .cid-vjzYdR79xU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vlT4mft9xd {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vlT4mft9xd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlT4mft9xd .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-vlT4mft9xd .container {
    padding: 0 30px;
  }
}
.cid-vlT4mft9xd .row {
  justify-content: center;
}
.cid-vlT4mft9xd .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vlT4mft9xd .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vlT4mft9xd .mbr-desc {
  color: #144031;
}
.cid-vlT4mft9xd .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-vjBCEE4jHa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tiertherapie-zietz-herzberg-am-harz-kontakt.jpg");
}
.cid-vjBCEE4jHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjBCEE4jHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vjBCEE4jHa .container {
    padding: 0 16px;
  }
}
.cid-vjBCEE4jHa .row {
  height: 470px;
}
@media (max-width: 992px) {
  .cid-vjBCEE4jHa .row {
    height: 200px;
  }
}
.cid-vjCidNbs99 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-vjCidNbs99 .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px dotted #e6e6e6;
  border-bottom: 1px dotted #e6e6e6;
}
.cid-vjCidNbs99 .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dotted #e6e6e6;
  pointer-events: none;
}
.cid-vjCidNbs99 .content-wrapper .border_1 {
  left: 0;
}
.cid-vjCidNbs99 .content-wrapper .border_5 {
  left: 100%;
}
.cid-vjCidNbs99 .content-wrap {
  overflow: hidden;
}
.cid-vjCidNbs99 .item:focus,
.cid-vjCidNbs99 span:focus {
  outline: none;
}
.cid-vjCidNbs99 .item {
  padding: 32px 0;
  color: #b2216b;
}
@media (max-width: 992px) {
  .cid-vjCidNbs99 .item {
    padding: 24px 0;
  }
}
.cid-vjAfXyr2CC {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
  z-index: 1;
}
.cid-vjAfXyr2CC .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vjAfXyr2CC .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-vjAfXyr2CC .btn {
  border-radius: 100px!important;
  padding: 0.7rem 2.2rem;
  position: relative;
  z-index: 2;
}
.cid-vjAfXyr2CC .btn:before {
  content: none;
}
.cid-vjAfXyr2CC .col-auto {
  position: relative;
  margin-top: 2rem;
  padding: 0;
  min-height: 30px;
}
.cid-vjAfXyr2CC .col-auto:before {
  content: '';
  border-radius: 30px;
  transform: translate(6px, 6px);
  position: absolute;
  top: 0;
  z-index: 1;
  transition: all 0.3s;
  left: 0;
  background: #55cc39;
  width: 100%;
  height: 100%;
}
.cid-vjAfXyr2CC .col-auto:hover:before {
  transform: translate(0px, 0px);
}
@media (max-width: 991px) {
  .cid-vjAfXyr2CC .col-auto:before {
    transform: translate(0px, 0px);
  }
}
.cid-vjAfXyr2CC .wrapper {
  border-radius: 30px;
  padding: 3rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vjAfXyr2CC .wrapper {
    padding: 1rem;
    padding-bottom: 3rem;
  }
}
.cid-vjAfXyr2CC h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cid-vjAfXyr2CC .form-control,
.cid-vjAfXyr2CC .field-input {
  padding: 1rem 1.5rem!important;
  border-radius: 30px;
}
.cid-vjAfXyr2CC .jq-selectbox__select {
  padding: 0 !important;
  position: relative;
}
.cid-vjAfXyr2CC textarea {
  min-height: 200px;
}
.cid-vjAfXyr2CC .form-control,
.cid-vjAfXyr2CC .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vjAfXyr2CC .form-control::-webkit-input-placeholder,
.cid-vjAfXyr2CC .field-input::-webkit-input-placeholder,
.cid-vjAfXyr2CC .form-control::-webkit-input-placeholder,
.cid-vjAfXyr2CC .field-input::-webkit-input-placeholder {
  color: #777d74;
}
.cid-vjAfXyr2CC .form-control:-moz-placeholder,
.cid-vjAfXyr2CC .field-input:-moz-placeholder,
.cid-vjAfXyr2CC .form-control:-moz-placeholder,
.cid-vjAfXyr2CC .field-input:-moz-placeholder {
  color: #777d74;
}
.cid-vjAfXyr2CC .form-control:hover,
.cid-vjAfXyr2CC .field-input:hover,
.cid-vjAfXyr2CC .form-control:focus,
.cid-vjAfXyr2CC .field-input:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #b2216b;
  box-shadow: none;
  outline: none;
}
.cid-vjAfXyr2CC .form-control:hover::-webkit-input-placeholder,
.cid-vjAfXyr2CC .field-input:hover::-webkit-input-placeholder,
.cid-vjAfXyr2CC .form-control:focus::-webkit-input-placeholder,
.cid-vjAfXyr2CC .field-input:focus::-webkit-input-placeholder,
.cid-vjAfXyr2CC .form-control:hover::-webkit-input-placeholder,
.cid-vjAfXyr2CC .field-input:hover::-webkit-input-placeholder,
.cid-vjAfXyr2CC .form-control:focus::-webkit-input-placeholder,
.cid-vjAfXyr2CC .field-input:focus::-webkit-input-placeholder {
  color: #777d74;
}
.cid-vjAfXyr2CC .form-control:hover:-moz-placeholder,
.cid-vjAfXyr2CC .field-input:hover:-moz-placeholder,
.cid-vjAfXyr2CC .form-control:focus:-moz-placeholder,
.cid-vjAfXyr2CC .field-input:focus:-moz-placeholder,
.cid-vjAfXyr2CC .form-control:hover:-moz-placeholder,
.cid-vjAfXyr2CC .field-input:hover:-moz-placeholder,
.cid-vjAfXyr2CC .form-control:focus:-moz-placeholder,
.cid-vjAfXyr2CC .field-input:focus:-moz-placeholder {
  color: #777d74;
}
.cid-vjAfXyr2CC .jq-number__spin:hover,
.cid-vjAfXyr2CC .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vjAfXyr2CC .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vjAfXyr2CC .jq-selectbox li,
.cid-vjAfXyr2CC .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-vjAfXyr2CC .jq-selectbox li:hover,
.cid-vjAfXyr2CC .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-vjAfXyr2CC .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vjAfXyr2CC .jq-number__spin.minus:hover:after,
.cid-vjAfXyr2CC .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-vjAfXyr2CC .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vjAfXyr2CC .jq-number__spin.minus:after,
.cid-vjAfXyr2CC .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-vjAfXyr2CC input::-webkit-clear-button {
  display: none;
}
.cid-vjAfXyr2CC input::-webkit-inner-spin-button {
  display: none;
}
.cid-vjAfXyr2CC input::-webkit-outer-spin-button {
  display: none;
}
.cid-vjAfXyr2CC input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-vjAfXyr2CC .col-auto {
    margin: auto;
    margin-top: 2rem;
  }
}
.cid-vjAfXyr2CC .card-wrapper {
  display: flex;
  overflow: visible;
  border: 2px solid #f8f8f8;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
  border-radius: 16px;
}
.cid-vjAfXyr2CC .card-wrapper:hover {
  border-color: black;
}
.cid-vjAfXyr2CC .card-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-vjAfXyr2CC .card-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-vjAfXyr2CC .card-wrapper:hover .iconfont-wrapper {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-vjAfXyr2CC .icon1 {
  background: #b2216b;
}
.cid-vjAfXyr2CC .icon2 {
  background: #b2216b;
}
.cid-vjAfXyr2CC .icon3 {
  background: #b2216b;
}
.cid-vjAfXyr2CC .card-box {
  padding-left: 1rem;
}
.cid-vjAfXyr2CC .card {
  padding: 0;
}
.cid-vjAfXyr2CC .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #b2216b inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-vjAfXyr2CC .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-vjAfXyr2CC .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-vjAfXyr2CC .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-vjAfXyr2CC .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #b2216b;
}
.cid-vjAfXyr2CC .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-vjAfXyr2CC .card-title {
  transition: all 0.3s;
  color: #55cc39;
}
@media (max-width: 992px) {
  .cid-vjAfXyr2CC .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-vjAfXyr2CC .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-vjAfXyr2CC .main-sub-title,
.cid-vjAfXyr2CC .align-wrapper {
  color: #000000;
}
.cid-vjAfXyr2CC .gdpr-block {
  text-align: left;
  padding: 1.5em 1rem;
}
.cid-vjAfXyr2CC .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
.cid-vjAfXyr2CC .form-control-label,
.cid-vjAfXyr2CC .form-check {
  margin-left: 1.5rem;
}
.cid-vjAfXyr2CC .form-group[data-for="input-range"] input {
  margin-left: 5px;
}
.cid-vjAfXyr2CC .form-group[data-for="input-range"] .col-auto {
  margin-top: 0;
  padding-right: 5px;
  padding-left: 5px;
}
.cid-vjAfXyr2CC .form-group[data-for="input-range"] .col-auto:before {
  display: none;
}
#custom-html-1o {
  /* Type valid CSS here */
}
#custom-html-1o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1o p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vk2Ya9biK9 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vk2Ya9biK9 .nav-item:focus,
.cid-vk2Ya9biK9 .nav-link:focus {
  outline: none;
}
.cid-vk2Ya9biK9 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item:active,
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vk2Ya9biK9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vk2Ya9biK9 .navbar-caption:hover {
  color: inherit!important;
}
.cid-vk2Ya9biK9 .container {
  max-width: 1380px;
}
.cid-vk2Ya9biK9 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vk2Ya9biK9 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vk2Ya9biK9 .nav-link:hover,
.cid-vk2Ya9biK9 .nav-link:active,
.cid-vk2Ya9biK9 .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vk2Ya9biK9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vk2Ya9biK9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vk2Ya9biK9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vk2Ya9biK9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vk2Ya9biK9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vk2Ya9biK9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vk2Ya9biK9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vk2Ya9biK9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vk2Ya9biK9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vk2Ya9biK9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vk2Ya9biK9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vk2Ya9biK9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vk2Ya9biK9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vk2Ya9biK9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vk2Ya9biK9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vk2Ya9biK9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vk2Ya9biK9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vk2Ya9biK9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vk2Ya9biK9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vk2Ya9biK9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vk2Ya9biK9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vk2Ya9biK9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vk2Ya9biK9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vk2Ya9biK9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vk2Ya9biK9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vk2Ya9biK9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vk2Ya9biK9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vk2Ya9biK9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vk2Ya9biK9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vk2Ya9biK9 .icons-menu span {
  color: #ed6436 !important;
}
.cid-vk2Ya9biK9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vk2Ya9biK9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vk2Ya9biK9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vk2Ya9biK9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vk2Ya9biK9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vk2Ya9biK9 .dropdown-item.active,
.cid-vk2Ya9biK9 .dropdown-item:active {
  background-color: transparent;
}
.cid-vk2Ya9biK9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vk2Ya9biK9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vk2Ya9biK9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vk2Ya9biK9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vk2Ya9biK9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vk2Ya9biK9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vk2Ya9biK9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vk2Ya9biK9 .navbar-buttons {
  text-align: center;
}
.cid-vk2Ya9biK9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vk2Ya9biK9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vk2Ya9biK9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vk2Ya9biK9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vk2Ya9biK9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vk2Ya9biK9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vk2Ya9biK9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vk2Ya9biK9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vk2Ya9biK9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vk2Ya9biK9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vk2Ya9biK9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vk2Ya9biK9 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vk2Ya9biK9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vk2Ya9biK9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vk2Ya9biK9 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vk2Ya9biK9 .navbar {
    height: 77px;
  }
  .cid-vk2Ya9biK9 .navbar.opened {
    height: auto;
  }
  .cid-vk2Ya9biK9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vk31AgHBCG {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vk31AgHBCG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vk31AgHBCG .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-vk31AgHBCG .container {
    padding: 0 30px;
  }
}
.cid-vk31AgHBCG .row {
  justify-content: center;
}
.cid-vk31AgHBCG .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vk31AgHBCG .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vk31AgHBCG .mbr-desc {
  color: #144031;
}
.cid-vk31AgHBCG .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-vk2Z4YdrPN {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vk2Z4YdrPN .content {
  max-width: 800px;
  margin: auto 0;
  padding: 0 2rem;
}
@media (min-width: 1400px) {
  .cid-vk2Z4YdrPN .content {
    padding: 0 6rem;
  }
}
.cid-vk2Z4YdrPN .mbr-figure {
  height: 100%;
}
.cid-vk2Z4YdrPN img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-vk2Z4YdrPN .img-col {
  padding: 0;
}
.cid-vk2Z4YdrPN .icon-wrap {
  width: fit-content;
  padding-bottom: 1.5rem;
  display: inline-block;
}
.cid-vk2Z4YdrPN p {
  font-weight: 700;
  line-height: 1.6;
}
.cid-vk2Z4YdrPN .mbr-iconfont {
  font-size: 5rem;
  color: #b2216b !important;
}
.cid-vk2Z4YdrPN .icon-title,
.cid-vk2Z4YdrPN .mbr-iconfont {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-vk2Z4YdrPN .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vk2Z4YdrPN .icon-wrap {
    margin: auto;
  }
}
.cid-vk2Z4YdrPN H3 {
  color: #000000;
}
.cid-vk2Z4YdrPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vk2Z4YdrPN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-2l {
  /* Type valid CSS here */
}
#custom-html-2l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2l p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vkNuGZZITW .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vkNuGZZITW .nav-item:focus,
.cid-vkNuGZZITW .nav-link:focus {
  outline: none;
}
.cid-vkNuGZZITW .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item:active,
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vkNuGZZITW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vkNuGZZITW .navbar-caption:hover {
  color: inherit!important;
}
.cid-vkNuGZZITW .container {
  max-width: 1380px;
}
.cid-vkNuGZZITW .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vkNuGZZITW .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vkNuGZZITW .nav-link:hover,
.cid-vkNuGZZITW .nav-link:active,
.cid-vkNuGZZITW .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vkNuGZZITW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vkNuGZZITW .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vkNuGZZITW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vkNuGZZITW .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vkNuGZZITW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vkNuGZZITW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vkNuGZZITW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vkNuGZZITW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vkNuGZZITW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vkNuGZZITW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vkNuGZZITW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vkNuGZZITW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vkNuGZZITW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vkNuGZZITW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vkNuGZZITW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vkNuGZZITW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vkNuGZZITW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vkNuGZZITW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vkNuGZZITW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vkNuGZZITW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vkNuGZZITW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vkNuGZZITW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vkNuGZZITW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vkNuGZZITW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vkNuGZZITW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vkNuGZZITW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vkNuGZZITW .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vkNuGZZITW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vkNuGZZITW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vkNuGZZITW .icons-menu span {
  color: #ed6436 !important;
}
.cid-vkNuGZZITW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vkNuGZZITW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vkNuGZZITW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vkNuGZZITW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vkNuGZZITW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vkNuGZZITW .dropdown-item.active,
.cid-vkNuGZZITW .dropdown-item:active {
  background-color: transparent;
}
.cid-vkNuGZZITW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vkNuGZZITW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vkNuGZZITW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vkNuGZZITW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vkNuGZZITW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vkNuGZZITW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vkNuGZZITW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vkNuGZZITW .navbar-buttons {
  text-align: center;
}
.cid-vkNuGZZITW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vkNuGZZITW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vkNuGZZITW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vkNuGZZITW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vkNuGZZITW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vkNuGZZITW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vkNuGZZITW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vkNuGZZITW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vkNuGZZITW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vkNuGZZITW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vkNuGZZITW .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vkNuGZZITW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vkNuGZZITW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vkNuGZZITW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vkNuGZZITW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vkNuGZZITW .navbar {
    height: 77px;
  }
  .cid-vkNuGZZITW .navbar.opened {
    height: auto;
  }
  .cid-vkNuGZZITW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vl2u4mgSxH {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vl2u4mgSxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl2u4mgSxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl2u4mgSxH .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 0;
  border: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vl2u4mgSxH .label-wrapper .mbr-label {
    margin-bottom: 20px;
  }
}
.cid-vl2u4mgSxH .mbr-section-title {
  margin-bottom: 50px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-vl2u4mgSxH .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vl2u4mgSxH .items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-vl2u4mgSxH .items-wrapper {
    display: block;
  }
}
.cid-vl2u4mgSxH .item {
  width: 50%;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vl2u4mgSxH .item {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .title-wrapper {
  margin-bottom: 15px;
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 15px;
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-vl2u4mgSxH .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .title-wrapper .card-title {
  margin-bottom: 0;
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-vl2u4mgSxH .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vl2u4mgSxH .mbr-label {
  color: #000000;
}
.cid-vl2u4mgSxH .card-title {
  color: #000000;
}
.cid-vl2u4mgSxH .card-text {
  color: #8a8a8a;
}
.cid-vl2u4mgSxH .mbr-label,
.cid-vl2u4mgSxH .label-wrapper {
  color: #55cc39;
}
.cid-vl2u4mgSxH .card-text,
.cid-vl2u4mgSxH .mbr-section-btn {
  color: #000000;
}
.cid-vl2dIv8HjX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vl2dIv8HjX .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vl2dIv8HjX .content {
    padding: 0 2rem;
  }
}
.cid-vl2dIv8HjX .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vl2dIv8HjX .img-col {
  padding: 0;
}
.cid-vl2dIv8HjX .mbr-figure {
  text-align: left;
}
.cid-vl2dIv8HjX .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vl2dIv8HjX .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vl2dIv8HjX .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vl2dIv8HjX .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vl2dIv8HjX .icon-title,
.cid-vl2dIv8HjX .mbr-iconfont {
  color: #b2216b;
}
.cid-vl2dIv8HjX .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vl2dIv8HjX .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vl2dIv8HjX .icons-wrap {
    flex-direction: column;
  }
  .cid-vl2dIv8HjX .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vl2dIv8HjX .link-wrap {
    margin: auto;
  }
  .cid-vl2dIv8HjX .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vl2dIv8HjX .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vl2dIv8HjX .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vl2dIv8HjX .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vl2dIv8HjX .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vl2dIv8HjX .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vl2dIv8HjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl2dIv8HjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl7twMKen1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vl7twMKen1 .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vl7twMKen1 .content {
    padding: 0 2rem;
  }
}
.cid-vl7twMKen1 .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vl7twMKen1 .img-col {
  padding: 0;
}
.cid-vl7twMKen1 .mbr-figure {
  text-align: left;
}
.cid-vl7twMKen1 .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vl7twMKen1 .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vl7twMKen1 .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vl7twMKen1 .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vl7twMKen1 .icon-title,
.cid-vl7twMKen1 .mbr-iconfont {
  color: #b2216b;
}
.cid-vl7twMKen1 .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vl7twMKen1 .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vl7twMKen1 .icons-wrap {
    flex-direction: column;
  }
  .cid-vl7twMKen1 .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vl7twMKen1 .link-wrap {
    margin: auto;
  }
  .cid-vl7twMKen1 .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vl7twMKen1 .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vl7twMKen1 .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vl7twMKen1 .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vl7twMKen1 .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vl7twMKen1 .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vl7twMKen1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl7twMKen1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl7uVXEFDc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vl7uVXEFDc .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vl7uVXEFDc .content {
    padding: 0 2rem;
  }
}
.cid-vl7uVXEFDc .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vl7uVXEFDc .img-col {
  padding: 0;
}
.cid-vl7uVXEFDc .mbr-figure {
  text-align: left;
}
.cid-vl7uVXEFDc .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vl7uVXEFDc .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vl7uVXEFDc .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vl7uVXEFDc .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vl7uVXEFDc .icon-title,
.cid-vl7uVXEFDc .mbr-iconfont {
  color: #b2216b;
}
.cid-vl7uVXEFDc .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vl7uVXEFDc .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vl7uVXEFDc .icons-wrap {
    flex-direction: column;
  }
  .cid-vl7uVXEFDc .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vl7uVXEFDc .link-wrap {
    margin: auto;
  }
  .cid-vl7uVXEFDc .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vl7uVXEFDc .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vl7uVXEFDc .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vl7uVXEFDc .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vl7uVXEFDc .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vl7uVXEFDc .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vl7uVXEFDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl7uVXEFDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl7vXCuvQa {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vl7vXCuvQa .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vl7vXCuvQa .content {
    padding: 0 2rem;
  }
}
.cid-vl7vXCuvQa .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vl7vXCuvQa .img-col {
  padding: 0;
}
.cid-vl7vXCuvQa .mbr-figure {
  text-align: left;
}
.cid-vl7vXCuvQa .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vl7vXCuvQa .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vl7vXCuvQa .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vl7vXCuvQa .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vl7vXCuvQa .icon-title,
.cid-vl7vXCuvQa .mbr-iconfont {
  color: #b2216b;
}
.cid-vl7vXCuvQa .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vl7vXCuvQa .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vl7vXCuvQa .icons-wrap {
    flex-direction: column;
  }
  .cid-vl7vXCuvQa .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vl7vXCuvQa .link-wrap {
    margin: auto;
  }
  .cid-vl7vXCuvQa .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vl7vXCuvQa .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vl7vXCuvQa .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vl7vXCuvQa .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vl7vXCuvQa .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vl7vXCuvQa .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vl7vXCuvQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl7vXCuvQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-3k {
  /* Type valid CSS here */
}
#custom-html-3k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3k p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vl7z91LtjF .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vl7z91LtjF .nav-item:focus,
.cid-vl7z91LtjF .nav-link:focus {
  outline: none;
}
.cid-vl7z91LtjF .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item:active,
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vl7z91LtjF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vl7z91LtjF .navbar-caption:hover {
  color: inherit!important;
}
.cid-vl7z91LtjF .container {
  max-width: 1380px;
}
.cid-vl7z91LtjF .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vl7z91LtjF .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vl7z91LtjF .nav-link:hover,
.cid-vl7z91LtjF .nav-link:active,
.cid-vl7z91LtjF .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vl7z91LtjF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vl7z91LtjF .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vl7z91LtjF .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vl7z91LtjF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vl7z91LtjF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vl7z91LtjF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vl7z91LtjF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vl7z91LtjF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vl7z91LtjF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vl7z91LtjF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vl7z91LtjF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vl7z91LtjF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vl7z91LtjF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vl7z91LtjF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vl7z91LtjF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vl7z91LtjF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vl7z91LtjF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vl7z91LtjF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vl7z91LtjF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vl7z91LtjF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vl7z91LtjF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vl7z91LtjF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vl7z91LtjF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vl7z91LtjF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vl7z91LtjF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vl7z91LtjF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vl7z91LtjF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vl7z91LtjF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vl7z91LtjF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vl7z91LtjF .icons-menu span {
  color: #ed6436 !important;
}
.cid-vl7z91LtjF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vl7z91LtjF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vl7z91LtjF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vl7z91LtjF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vl7z91LtjF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vl7z91LtjF .dropdown-item.active,
.cid-vl7z91LtjF .dropdown-item:active {
  background-color: transparent;
}
.cid-vl7z91LtjF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vl7z91LtjF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vl7z91LtjF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vl7z91LtjF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vl7z91LtjF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vl7z91LtjF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vl7z91LtjF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vl7z91LtjF .navbar-buttons {
  text-align: center;
}
.cid-vl7z91LtjF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vl7z91LtjF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vl7z91LtjF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vl7z91LtjF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vl7z91LtjF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vl7z91LtjF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vl7z91LtjF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vl7z91LtjF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vl7z91LtjF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vl7z91LtjF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vl7z91LtjF .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vl7z91LtjF a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vl7z91LtjF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vl7z91LtjF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vl7z91LtjF .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vl7z91LtjF .navbar {
    height: 77px;
  }
  .cid-vl7z91LtjF .navbar.opened {
    height: auto;
  }
  .cid-vl7z91LtjF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vl7zG8RNo7 {
  padding-top: 135px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-vl7zG8RNo7 .accordion .card {
  overflow: hidden;
}
.cid-vl7zG8RNo7 .card {
  border: 1px solid lightgray !important;
  border-radius: 20px !important;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-vl7zG8RNo7 .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-vl7zG8RNo7 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-vl7zG8RNo7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vl7zG8RNo7 .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-vl7zG8RNo7 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-vl7zG8RNo7 .card .panel-body {
  color: #767676;
}
.cid-vl7zG8RNo7 .card:hover {
  background: #f2f2f4;
}
.cid-vl7zG8RNo7 .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-vl7zG8RNo7 .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-vl7zG8RNo7 .mbri-arrow-down:before {
  content: '\e960';
}
.cid-vl7zG8RNo7 .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-vl7zG8RNo7 .panel-collapse {
  margin-top: -1px;
}
.cid-vl7zG8RNo7 H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-vl7zG8RNo7 .panel-text {
    padding: 0 0.5rem;
  }
  .cid-vl7zG8RNo7 .icon-left {
    margin-left: 0.5rem;
  }
  .cid-vl7zG8RNo7 .sign {
    margin-right: 0.5rem;
  }
}
.cid-vl7zG8RNo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl7zG8RNo7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl7zG8RNo7 H2 {
  color: #000000;
}
.cid-vl7z9366tw {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vl7z9366tw .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vl7z9366tw .content {
    padding: 0 2rem;
  }
}
.cid-vl7z9366tw .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vl7z9366tw .img-col {
  padding: 0;
}
.cid-vl7z9366tw .mbr-figure {
  text-align: left;
}
.cid-vl7z9366tw .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vl7z9366tw .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vl7z9366tw .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vl7z9366tw .mbr-iconfont {
  font-size: 3.5rem;
  color: #7aba59 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vl7z9366tw .icon-title,
.cid-vl7z9366tw .mbr-iconfont {
  color: #b2216b;
}
.cid-vl7z9366tw .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vl7z9366tw .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vl7z9366tw .icons-wrap {
    flex-direction: column;
  }
  .cid-vl7z9366tw .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vl7z9366tw .link-wrap {
    margin: auto;
  }
  .cid-vl7z9366tw .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vl7z9366tw .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vl7z9366tw .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vl7z9366tw .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vl7z9366tw .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vl7z9366tw .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vl7z9366tw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl7z9366tw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl7E9YDYyP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vl7E9YDYyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl7E9YDYyP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vl7E9YDYyP .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-vl7E9YDYyP .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vl7E9YDYyP .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vl7E9YDYyP .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vl7E9YDYyP .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-vl7E9YDYyP .mbr-section-title {
  color: #ff6d99;
}
.cid-vl7E9YDYyP .mbr-text,
.cid-vl7E9YDYyP .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vl7E9YDYyP .mbr-section-title,
.cid-vl7E9YDYyP .mbr-section-btn {
  text-align: center;
  color: #b2216b;
}
#custom-html-5v {
  /* Type valid CSS here */
}
#custom-html-5v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5v p {
  font-size: 60px;
  color: #777;
}
.cid-vl8dA34Hhj {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vl8dA34Hhj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vl8dA34Hhj .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-vl8dA34Hhj .container {
    padding: 0 30px;
  }
}
.cid-vl8dA34Hhj .row {
  justify-content: center;
}
.cid-vl8dA34Hhj .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vl8dA34Hhj .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vl8dA34Hhj .mbr-desc {
  color: #144031;
}
.cid-vl8dA34Hhj .mbr-text {
  color: #144031;
  text-align: center;
}
#custom-html-59 {
  /* Type valid CSS here */
}
#custom-html-59 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-59 p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vlcL2LfJvY .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcL2LfJvY .nav-item:focus,
.cid-vlcL2LfJvY .nav-link:focus {
  outline: none;
}
.cid-vlcL2LfJvY .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item:active,
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vlcL2LfJvY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcL2LfJvY .navbar-caption:hover {
  color: inherit!important;
}
.cid-vlcL2LfJvY .container {
  max-width: 1380px;
}
.cid-vlcL2LfJvY .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vlcL2LfJvY .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vlcL2LfJvY .nav-link:hover,
.cid-vlcL2LfJvY .nav-link:active,
.cid-vlcL2LfJvY .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vlcL2LfJvY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vlcL2LfJvY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vlcL2LfJvY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vlcL2LfJvY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vlcL2LfJvY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vlcL2LfJvY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vlcL2LfJvY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vlcL2LfJvY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vlcL2LfJvY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vlcL2LfJvY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vlcL2LfJvY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vlcL2LfJvY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vlcL2LfJvY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vlcL2LfJvY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vlcL2LfJvY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vlcL2LfJvY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vlcL2LfJvY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vlcL2LfJvY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vlcL2LfJvY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vlcL2LfJvY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vlcL2LfJvY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vlcL2LfJvY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vlcL2LfJvY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vlcL2LfJvY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vlcL2LfJvY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vlcL2LfJvY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vlcL2LfJvY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vlcL2LfJvY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vlcL2LfJvY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vlcL2LfJvY .icons-menu span {
  color: #ed6436 !important;
}
.cid-vlcL2LfJvY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vlcL2LfJvY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vlcL2LfJvY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vlcL2LfJvY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vlcL2LfJvY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vlcL2LfJvY .dropdown-item.active,
.cid-vlcL2LfJvY .dropdown-item:active {
  background-color: transparent;
}
.cid-vlcL2LfJvY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vlcL2LfJvY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vlcL2LfJvY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vlcL2LfJvY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vlcL2LfJvY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vlcL2LfJvY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vlcL2LfJvY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vlcL2LfJvY .navbar-buttons {
  text-align: center;
}
.cid-vlcL2LfJvY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vlcL2LfJvY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vlcL2LfJvY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vlcL2LfJvY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vlcL2LfJvY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vlcL2LfJvY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vlcL2LfJvY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlcL2LfJvY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vlcL2LfJvY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vlcL2LfJvY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlcL2LfJvY .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vlcL2LfJvY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vlcL2LfJvY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vlcL2LfJvY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vlcL2LfJvY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vlcL2LfJvY .navbar {
    height: 77px;
  }
  .cid-vlcL2LfJvY .navbar.opened {
    height: auto;
  }
  .cid-vlcL2LfJvY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vlcPEHrpJ7 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vlcPEHrpJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlcPEHrpJ7 .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-vlcPEHrpJ7 .container {
    padding: 0 30px;
  }
}
.cid-vlcPEHrpJ7 .row {
  justify-content: center;
}
.cid-vlcPEHrpJ7 .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vlcPEHrpJ7 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vlcPEHrpJ7 .mbr-desc {
  color: #144031;
}
.cid-vlcPEHrpJ7 .mbr-text {
  color: #144031;
  text-align: center;
}
.cid-vlcL2NkW0V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tiertherapie-zietz-herzberg-am-harz-kontakt.jpg");
}
.cid-vlcL2NkW0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlcL2NkW0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vlcL2NkW0V .container {
    padding: 0 16px;
  }
}
.cid-vlcL2NkW0V .row {
  height: 470px;
}
@media (max-width: 992px) {
  .cid-vlcL2NkW0V .row {
    height: 200px;
  }
}
.cid-vlcL2NX5ix {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
  z-index: 1;
}
.cid-vlcL2NX5ix .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vlcL2NX5ix .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-vlcL2NX5ix .btn {
  border-radius: 100px!important;
  padding: 0.7rem 2.2rem;
  position: relative;
  z-index: 2;
}
.cid-vlcL2NX5ix .btn:before {
  content: none;
}
.cid-vlcL2NX5ix .col-auto {
  position: relative;
  margin-top: 2rem;
  padding: 0;
  min-height: 30px;
}
.cid-vlcL2NX5ix .col-auto:before {
  content: '';
  border-radius: 30px;
  transform: translate(6px, 6px);
  position: absolute;
  top: 0;
  z-index: 1;
  transition: all 0.3s;
  left: 0;
  background: #55cc39;
  width: 100%;
  height: 100%;
}
.cid-vlcL2NX5ix .col-auto:hover:before {
  transform: translate(0px, 0px);
}
@media (max-width: 991px) {
  .cid-vlcL2NX5ix .col-auto:before {
    transform: translate(0px, 0px);
  }
}
.cid-vlcL2NX5ix .wrapper {
  border-radius: 30px;
  padding: 3rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vlcL2NX5ix .wrapper {
    padding: 1rem;
    padding-bottom: 3rem;
  }
}
.cid-vlcL2NX5ix h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cid-vlcL2NX5ix .form-control,
.cid-vlcL2NX5ix .field-input {
  padding: 1rem 1.5rem!important;
  border-radius: 30px;
}
.cid-vlcL2NX5ix .jq-selectbox__select {
  padding: 0 !important;
  position: relative;
}
.cid-vlcL2NX5ix textarea {
  min-height: 200px;
}
.cid-vlcL2NX5ix .form-control,
.cid-vlcL2NX5ix .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vlcL2NX5ix .form-control::-webkit-input-placeholder,
.cid-vlcL2NX5ix .field-input::-webkit-input-placeholder,
.cid-vlcL2NX5ix .form-control::-webkit-input-placeholder,
.cid-vlcL2NX5ix .field-input::-webkit-input-placeholder {
  color: #777d74;
}
.cid-vlcL2NX5ix .form-control:-moz-placeholder,
.cid-vlcL2NX5ix .field-input:-moz-placeholder,
.cid-vlcL2NX5ix .form-control:-moz-placeholder,
.cid-vlcL2NX5ix .field-input:-moz-placeholder {
  color: #777d74;
}
.cid-vlcL2NX5ix .form-control:hover,
.cid-vlcL2NX5ix .field-input:hover,
.cid-vlcL2NX5ix .form-control:focus,
.cid-vlcL2NX5ix .field-input:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #b2216b;
  box-shadow: none;
  outline: none;
}
.cid-vlcL2NX5ix .form-control:hover::-webkit-input-placeholder,
.cid-vlcL2NX5ix .field-input:hover::-webkit-input-placeholder,
.cid-vlcL2NX5ix .form-control:focus::-webkit-input-placeholder,
.cid-vlcL2NX5ix .field-input:focus::-webkit-input-placeholder,
.cid-vlcL2NX5ix .form-control:hover::-webkit-input-placeholder,
.cid-vlcL2NX5ix .field-input:hover::-webkit-input-placeholder,
.cid-vlcL2NX5ix .form-control:focus::-webkit-input-placeholder,
.cid-vlcL2NX5ix .field-input:focus::-webkit-input-placeholder {
  color: #777d74;
}
.cid-vlcL2NX5ix .form-control:hover:-moz-placeholder,
.cid-vlcL2NX5ix .field-input:hover:-moz-placeholder,
.cid-vlcL2NX5ix .form-control:focus:-moz-placeholder,
.cid-vlcL2NX5ix .field-input:focus:-moz-placeholder,
.cid-vlcL2NX5ix .form-control:hover:-moz-placeholder,
.cid-vlcL2NX5ix .field-input:hover:-moz-placeholder,
.cid-vlcL2NX5ix .form-control:focus:-moz-placeholder,
.cid-vlcL2NX5ix .field-input:focus:-moz-placeholder {
  color: #777d74;
}
.cid-vlcL2NX5ix .jq-number__spin:hover,
.cid-vlcL2NX5ix .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vlcL2NX5ix .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vlcL2NX5ix .jq-selectbox li,
.cid-vlcL2NX5ix .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-vlcL2NX5ix .jq-selectbox li:hover,
.cid-vlcL2NX5ix .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-vlcL2NX5ix .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vlcL2NX5ix .jq-number__spin.minus:hover:after,
.cid-vlcL2NX5ix .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-vlcL2NX5ix .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vlcL2NX5ix .jq-number__spin.minus:after,
.cid-vlcL2NX5ix .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-vlcL2NX5ix input::-webkit-clear-button {
  display: none;
}
.cid-vlcL2NX5ix input::-webkit-inner-spin-button {
  display: none;
}
.cid-vlcL2NX5ix input::-webkit-outer-spin-button {
  display: none;
}
.cid-vlcL2NX5ix input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-vlcL2NX5ix .col-auto {
    margin: auto;
    margin-top: 2rem;
  }
}
.cid-vlcL2NX5ix .card-wrapper {
  display: flex;
  overflow: visible;
  border: 2px solid #f8f8f8;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
  border-radius: 16px;
}
.cid-vlcL2NX5ix .card-wrapper:hover {
  border-color: black;
}
.cid-vlcL2NX5ix .card-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-vlcL2NX5ix .card-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-vlcL2NX5ix .card-wrapper:hover .iconfont-wrapper {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-vlcL2NX5ix .icon1 {
  background: #b2216b;
}
.cid-vlcL2NX5ix .icon2 {
  background: #b2216b;
}
.cid-vlcL2NX5ix .icon3 {
  background: #b2216b;
}
.cid-vlcL2NX5ix .card-box {
  padding-left: 1rem;
}
.cid-vlcL2NX5ix .card {
  padding: 0;
}
.cid-vlcL2NX5ix .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #b2216b inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-vlcL2NX5ix .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-vlcL2NX5ix .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-vlcL2NX5ix .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-vlcL2NX5ix .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #b2216b;
}
.cid-vlcL2NX5ix .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-vlcL2NX5ix .card-title {
  transition: all 0.3s;
  color: #55cc39;
}
@media (max-width: 992px) {
  .cid-vlcL2NX5ix .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-vlcL2NX5ix .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-vlcL2NX5ix .main-sub-title,
.cid-vlcL2NX5ix .align-wrapper {
  color: #000000;
}
.cid-vlcL2NX5ix .gdpr-block {
  text-align: left;
  padding: 1.5em 1rem;
}
.cid-vlcL2NX5ix .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
.cid-vlcL2NX5ix .form-control-label,
.cid-vlcL2NX5ix .form-check {
  margin-left: 1.5rem;
}
.cid-vlcL2NX5ix .form-group[data-for="input-range"] input {
  margin-left: 5px;
}
.cid-vlcL2NX5ix .form-group[data-for="input-range"] .col-auto {
  margin-top: 0;
  padding-right: 5px;
  padding-left: 5px;
}
.cid-vlcL2NX5ix .form-group[data-for="input-range"] .col-auto:before {
  display: none;
}
#custom-html-6n {
  /* Type valid CSS here */
}
#custom-html-6n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6n p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vlcCZ1oTh6 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcCZ1oTh6 .nav-item:focus,
.cid-vlcCZ1oTh6 .nav-link:focus {
  outline: none;
}
.cid-vlcCZ1oTh6 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item:active,
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vlcCZ1oTh6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcCZ1oTh6 .navbar-caption:hover {
  color: inherit!important;
}
.cid-vlcCZ1oTh6 .container {
  max-width: 1380px;
}
.cid-vlcCZ1oTh6 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vlcCZ1oTh6 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vlcCZ1oTh6 .nav-link:hover,
.cid-vlcCZ1oTh6 .nav-link:active,
.cid-vlcCZ1oTh6 .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vlcCZ1oTh6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vlcCZ1oTh6 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vlcCZ1oTh6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vlcCZ1oTh6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vlcCZ1oTh6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vlcCZ1oTh6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vlcCZ1oTh6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vlcCZ1oTh6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vlcCZ1oTh6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vlcCZ1oTh6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vlcCZ1oTh6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vlcCZ1oTh6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vlcCZ1oTh6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vlcCZ1oTh6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vlcCZ1oTh6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vlcCZ1oTh6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vlcCZ1oTh6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vlcCZ1oTh6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vlcCZ1oTh6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vlcCZ1oTh6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vlcCZ1oTh6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vlcCZ1oTh6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vlcCZ1oTh6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vlcCZ1oTh6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vlcCZ1oTh6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vlcCZ1oTh6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vlcCZ1oTh6 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vlcCZ1oTh6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vlcCZ1oTh6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vlcCZ1oTh6 .icons-menu span {
  color: #ed6436 !important;
}
.cid-vlcCZ1oTh6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vlcCZ1oTh6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vlcCZ1oTh6 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vlcCZ1oTh6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vlcCZ1oTh6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vlcCZ1oTh6 .dropdown-item.active,
.cid-vlcCZ1oTh6 .dropdown-item:active {
  background-color: transparent;
}
.cid-vlcCZ1oTh6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vlcCZ1oTh6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vlcCZ1oTh6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vlcCZ1oTh6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vlcCZ1oTh6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vlcCZ1oTh6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vlcCZ1oTh6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vlcCZ1oTh6 .navbar-buttons {
  text-align: center;
}
.cid-vlcCZ1oTh6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vlcCZ1oTh6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vlcCZ1oTh6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vlcCZ1oTh6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vlcCZ1oTh6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vlcCZ1oTh6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vlcCZ1oTh6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlcCZ1oTh6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vlcCZ1oTh6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vlcCZ1oTh6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlcCZ1oTh6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vlcCZ1oTh6 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vlcCZ1oTh6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vlcCZ1oTh6 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vlcCZ1oTh6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vlcCZ1oTh6 .navbar {
    height: 77px;
  }
  .cid-vlcCZ1oTh6 .navbar.opened {
    height: auto;
  }
  .cid-vlcCZ1oTh6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vlcJSzWau1 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vlcJSzWau1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlcJSzWau1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlcJSzWau1 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-vlcJSzWau1 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vlcJSzWau1 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vlcJSzWau1 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vlcJSzWau1 .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-vlcJSzWau1 .mbr-section-title {
  color: #ff6d99;
}
.cid-vlcJSzWau1 .mbr-text,
.cid-vlcJSzWau1 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vlcJSzWau1 .mbr-section-title,
.cid-vlcJSzWau1 .mbr-section-btn {
  text-align: center;
  color: #55cc39;
}
#pro_custom-html-ad {
  /* Type valid CSS here */
}
#pro_custom-html-ad div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#pro_custom-html-ad p {
  font-size: 60px;
  color: #777;
}
.cid-vlZmNDo0zm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vlZmNDo0zm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlZmNDo0zm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlZmNDo0zm .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-vlZmNDo0zm .mbr-section-title {
  color: #000000;
}
.cid-vlZmNDo0zm .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-vlZmNDo0zm .items-row {
  row-gap: 40px;
}
@media (min-width: 768px) {
  .cid-vlZmNDo0zm .items-row {
    margin: 0 -15px;
  }
  .cid-vlZmNDo0zm .items-row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-vlZmNDo0zm .item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-vlZmNDo0zm .item-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-vlZmNDo0zm .mbr-text {
  color: #747474;
  padding-top: 20px;
}
.cid-vlZmNDo0zm .mbr-section-btn {
  margin-top: 30px;
}
.cid-vlZmWwyPPQ {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-vlZmWwyPPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlZmWwyPPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlZmWwyPPQ .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-vlZmWwyPPQ .mbr-section-title {
  color: #000000;
}
.cid-vlZmWwyPPQ .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-vlZmWwyPPQ .items-row {
  row-gap: 40px;
}
@media (min-width: 768px) {
  .cid-vlZmWwyPPQ .items-row {
    margin: 0 -15px;
  }
  .cid-vlZmWwyPPQ .items-row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-vlZmWwyPPQ .item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-vlZmWwyPPQ .item-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-vlZmWwyPPQ .mbr-text {
  color: #747474;
  padding-top: 20px;
}
.cid-vlZmWwyPPQ .mbr-section-btn {
  margin-top: 30px;
}
.cid-vlGRceUnbI {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vlGRceUnbI img,
.cid-vlGRceUnbI .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vlGRceUnbI img,
  .cid-vlGRceUnbI .item-img {
    max-height: 300px;
  }
}
.cid-vlGRceUnbI .item:focus,
.cid-vlGRceUnbI span:focus {
  outline: none;
}
.cid-vlGRceUnbI .item-wrapper {
  position: relative;
}
.cid-vlGRceUnbI .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vlGRceUnbI .slide-content .item-content {
  padding: 2.25rem 2.25rem 0;
}
.cid-vlGRceUnbI .slide-content .item-footer {
  padding: 0 2.25rem 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vlGRceUnbI .slide-content .item-content {
    padding: 2rem 1.5rem 0;
  }
  .cid-vlGRceUnbI .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vlGRceUnbI .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-vlGRceUnbI .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-vlGRceUnbI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vlGRceUnbI .mbr-section-title {
  color: #232323;
}
.cid-vlGRceUnbI .mbr-text,
.cid-vlGRceUnbI .mbr-section-btn {
  text-align: left;
}
.cid-vlGRceUnbI .item-title {
  text-align: left;
  color: #b2216b;
}
.cid-vlGRceUnbI .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-vlGRceUnbI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-vlGRceUnbI .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-vlGRceUnbI .embla__button--next,
.cid-vlGRceUnbI .embla__button--prev {
  display: flex;
}
.cid-vlGRceUnbI .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vlGRceUnbI .embla__button {
    display: none;
  }
}
.cid-vlGRceUnbI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vlGRceUnbI .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vlGRceUnbI .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlGRceUnbI .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vlGRceUnbI .embla__button {
    top: auto;
  }
}
.cid-vlGRceUnbI .embla {
  position: relative;
  width: 100%;
}
.cid-vlGRceUnbI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vlGRceUnbI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vlGRceUnbI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vlGRceUnbI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-vlGRceUnbI .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-vlGRceUnbI .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-vlGRceUnbI .content-head {
  max-width: 800px;
}
.cid-vlLUvt1Lw7 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vlLUvt1Lw7 img,
.cid-vlLUvt1Lw7 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vlLUvt1Lw7 img,
  .cid-vlLUvt1Lw7 .item-img {
    max-height: 300px;
  }
}
.cid-vlLUvt1Lw7 .item:focus,
.cid-vlLUvt1Lw7 span:focus {
  outline: none;
}
.cid-vlLUvt1Lw7 .item-wrapper {
  position: relative;
}
.cid-vlLUvt1Lw7 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vlLUvt1Lw7 .slide-content .item-content {
  padding: 2.25rem 2.25rem 0;
}
.cid-vlLUvt1Lw7 .slide-content .item-footer {
  padding: 0 2.25rem 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vlLUvt1Lw7 .slide-content .item-content {
    padding: 2rem 1.5rem 0;
  }
  .cid-vlLUvt1Lw7 .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vlLUvt1Lw7 .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-vlLUvt1Lw7 .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-vlLUvt1Lw7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vlLUvt1Lw7 .mbr-section-title {
  color: #232323;
}
.cid-vlLUvt1Lw7 .mbr-text,
.cid-vlLUvt1Lw7 .mbr-section-btn {
  text-align: left;
}
.cid-vlLUvt1Lw7 .item-title {
  text-align: left;
  color: #b2216b;
}
.cid-vlLUvt1Lw7 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-vlLUvt1Lw7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-vlLUvt1Lw7 .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-vlLUvt1Lw7 .embla__button--next,
.cid-vlLUvt1Lw7 .embla__button--prev {
  display: flex;
}
.cid-vlLUvt1Lw7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vlLUvt1Lw7 .embla__button {
    display: none;
  }
}
.cid-vlLUvt1Lw7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vlLUvt1Lw7 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vlLUvt1Lw7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlLUvt1Lw7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vlLUvt1Lw7 .embla__button {
    top: auto;
  }
}
.cid-vlLUvt1Lw7 .embla {
  position: relative;
  width: 100%;
}
.cid-vlLUvt1Lw7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vlLUvt1Lw7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vlLUvt1Lw7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vlLUvt1Lw7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-vlLUvt1Lw7 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-vlLUvt1Lw7 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-vlLUvt1Lw7 .content-head {
  max-width: 800px;
}
.cid-vlLVq9bxvm {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vlLVq9bxvm img,
.cid-vlLVq9bxvm .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vlLVq9bxvm img,
  .cid-vlLVq9bxvm .item-img {
    max-height: 300px;
  }
}
.cid-vlLVq9bxvm .item:focus,
.cid-vlLVq9bxvm span:focus {
  outline: none;
}
.cid-vlLVq9bxvm .item-wrapper {
  position: relative;
}
.cid-vlLVq9bxvm .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vlLVq9bxvm .slide-content .item-content {
  padding: 2.25rem 2.25rem 0;
}
.cid-vlLVq9bxvm .slide-content .item-footer {
  padding: 0 2.25rem 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vlLVq9bxvm .slide-content .item-content {
    padding: 2rem 1.5rem 0;
  }
  .cid-vlLVq9bxvm .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vlLVq9bxvm .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-vlLVq9bxvm .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-vlLVq9bxvm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vlLVq9bxvm .mbr-section-title {
  color: #232323;
}
.cid-vlLVq9bxvm .mbr-text,
.cid-vlLVq9bxvm .mbr-section-btn {
  text-align: left;
}
.cid-vlLVq9bxvm .item-title {
  text-align: left;
  color: #b2216b;
}
.cid-vlLVq9bxvm .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-vlLVq9bxvm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-vlLVq9bxvm .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-vlLVq9bxvm .embla__button--next,
.cid-vlLVq9bxvm .embla__button--prev {
  display: flex;
}
.cid-vlLVq9bxvm .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vlLVq9bxvm .embla__button {
    display: none;
  }
}
.cid-vlLVq9bxvm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vlLVq9bxvm .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vlLVq9bxvm .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlLVq9bxvm .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vlLVq9bxvm .embla__button {
    top: auto;
  }
}
.cid-vlLVq9bxvm .embla {
  position: relative;
  width: 100%;
}
.cid-vlLVq9bxvm .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vlLVq9bxvm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vlLVq9bxvm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vlLVq9bxvm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-vlLVq9bxvm .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-vlLVq9bxvm .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-vlLVq9bxvm .content-head {
  max-width: 800px;
}
.cid-vlLWhVfpgU {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vlLWhVfpgU img,
.cid-vlLWhVfpgU .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vlLWhVfpgU img,
  .cid-vlLWhVfpgU .item-img {
    max-height: 300px;
  }
}
.cid-vlLWhVfpgU .item:focus,
.cid-vlLWhVfpgU span:focus {
  outline: none;
}
.cid-vlLWhVfpgU .item-wrapper {
  position: relative;
}
.cid-vlLWhVfpgU .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vlLWhVfpgU .slide-content .item-content {
  padding: 2.25rem 2.25rem 0;
}
.cid-vlLWhVfpgU .slide-content .item-footer {
  padding: 0 2.25rem 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vlLWhVfpgU .slide-content .item-content {
    padding: 2rem 1.5rem 0;
  }
  .cid-vlLWhVfpgU .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vlLWhVfpgU .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-vlLWhVfpgU .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-vlLWhVfpgU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vlLWhVfpgU .mbr-section-title {
  color: #232323;
}
.cid-vlLWhVfpgU .mbr-text,
.cid-vlLWhVfpgU .mbr-section-btn {
  text-align: left;
}
.cid-vlLWhVfpgU .item-title {
  text-align: left;
  color: #b2216b;
}
.cid-vlLWhVfpgU .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-vlLWhVfpgU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-vlLWhVfpgU .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-vlLWhVfpgU .embla__button--next,
.cid-vlLWhVfpgU .embla__button--prev {
  display: flex;
}
.cid-vlLWhVfpgU .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vlLWhVfpgU .embla__button {
    display: none;
  }
}
.cid-vlLWhVfpgU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vlLWhVfpgU .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vlLWhVfpgU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlLWhVfpgU .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vlLWhVfpgU .embla__button {
    top: auto;
  }
}
.cid-vlLWhVfpgU .embla {
  position: relative;
  width: 100%;
}
.cid-vlLWhVfpgU .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vlLWhVfpgU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vlLWhVfpgU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vlLWhVfpgU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-vlLWhVfpgU .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-vlLWhVfpgU .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-vlLWhVfpgU .content-head {
  max-width: 800px;
}
.cid-vlLWVhvpws {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vlLWVhvpws img,
.cid-vlLWVhvpws .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vlLWVhvpws img,
  .cid-vlLWVhvpws .item-img {
    max-height: 300px;
  }
}
.cid-vlLWVhvpws .item:focus,
.cid-vlLWVhvpws span:focus {
  outline: none;
}
.cid-vlLWVhvpws .item-wrapper {
  position: relative;
}
.cid-vlLWVhvpws .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vlLWVhvpws .slide-content .item-content {
  padding: 2.25rem 2.25rem 0;
}
.cid-vlLWVhvpws .slide-content .item-footer {
  padding: 0 2.25rem 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-vlLWVhvpws .slide-content .item-content {
    padding: 2rem 1.5rem 0;
  }
  .cid-vlLWVhvpws .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vlLWVhvpws .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-vlLWVhvpws .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-vlLWVhvpws .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vlLWVhvpws .mbr-section-title {
  color: #232323;
}
.cid-vlLWVhvpws .mbr-text,
.cid-vlLWVhvpws .mbr-section-btn {
  text-align: left;
}
.cid-vlLWVhvpws .item-title {
  text-align: left;
  color: #b2216b;
}
.cid-vlLWVhvpws .item-subtitle {
  text-align: left;
  color: #b2216b;
}
.cid-vlLWVhvpws .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-vlLWVhvpws .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-vlLWVhvpws .embla__button--next,
.cid-vlLWVhvpws .embla__button--prev {
  display: flex;
}
.cid-vlLWVhvpws .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vlLWVhvpws .embla__button {
    display: none;
  }
}
.cid-vlLWVhvpws .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vlLWVhvpws .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vlLWVhvpws .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vlLWVhvpws .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vlLWVhvpws .embla__button {
    top: auto;
  }
}
.cid-vlLWVhvpws .embla {
  position: relative;
  width: 100%;
}
.cid-vlLWVhvpws .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vlLWVhvpws .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vlLWVhvpws .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vlLWVhvpws .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-vlLWVhvpws .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-vlLWVhvpws .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-vlLWVhvpws .content-head {
  max-width: 800px;
}
.cid-vlTc1u6G4A {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vlTc1u6G4A .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlTc1u6G4A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlTc1u6G4A .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vlTc1u6G4A .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vlTc1u6G4A .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
  background-image: linear-gradient(-165deg, #9c9c9c, #000000 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vlTc1u6G4A .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vlTc1u6G4A .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vlTc1u6G4A .mbr-section-title {
  color: #000000;
}
.cid-vlTc1u6G4A .mbr-text,
.cid-vlTc1u6G4A .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-vlTc1u6G4A .mbr-section-title,
.cid-vlTc1u6G4A .title-wrapper,
.cid-vlTc1u6G4A .mbr-section-btn {
  text-align: center;
}
#custom-html-aa {
  /* Type valid CSS here */
}
#custom-html-aa div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-aa p {
  font-size: 60px;
  color: #777;
}
.cid-vlT9y1NSwU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vlT9y1NSwU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlT9y1NSwU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlT9y1NSwU .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vlT9y1NSwU .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vlT9y1NSwU .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
  background-image: linear-gradient(-165deg, #9c9c9c, #000000 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vlT9y1NSwU .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vlT9y1NSwU .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vlT9y1NSwU .mbr-section-title {
  color: #000000;
}
.cid-vlT9y1NSwU .mbr-text,
.cid-vlT9y1NSwU .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-vlT9y1NSwU .mbr-section-title,
.cid-vlT9y1NSwU .title-wrapper,
.cid-vlT9y1NSwU .mbr-section-btn {
  text-align: center;
}
#custom-html-6d {
  /* Type valid CSS here */
}
#custom-html-6d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6d p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vlSDnKVxoK .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlSDnKVxoK .nav-item:focus,
.cid-vlSDnKVxoK .nav-link:focus {
  outline: none;
}
.cid-vlSDnKVxoK .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item:active,
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vlSDnKVxoK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlSDnKVxoK .navbar-caption:hover {
  color: inherit!important;
}
.cid-vlSDnKVxoK .container {
  max-width: 1380px;
}
.cid-vlSDnKVxoK .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vlSDnKVxoK .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vlSDnKVxoK .nav-link:hover,
.cid-vlSDnKVxoK .nav-link:active,
.cid-vlSDnKVxoK .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vlSDnKVxoK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vlSDnKVxoK .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vlSDnKVxoK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vlSDnKVxoK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vlSDnKVxoK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vlSDnKVxoK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vlSDnKVxoK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vlSDnKVxoK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vlSDnKVxoK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vlSDnKVxoK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vlSDnKVxoK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vlSDnKVxoK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vlSDnKVxoK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vlSDnKVxoK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vlSDnKVxoK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vlSDnKVxoK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vlSDnKVxoK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vlSDnKVxoK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vlSDnKVxoK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vlSDnKVxoK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vlSDnKVxoK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vlSDnKVxoK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vlSDnKVxoK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vlSDnKVxoK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vlSDnKVxoK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vlSDnKVxoK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vlSDnKVxoK .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vlSDnKVxoK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vlSDnKVxoK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vlSDnKVxoK .icons-menu span {
  color: #ed6436 !important;
}
.cid-vlSDnKVxoK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vlSDnKVxoK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vlSDnKVxoK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vlSDnKVxoK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vlSDnKVxoK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vlSDnKVxoK .dropdown-item.active,
.cid-vlSDnKVxoK .dropdown-item:active {
  background-color: transparent;
}
.cid-vlSDnKVxoK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vlSDnKVxoK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vlSDnKVxoK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vlSDnKVxoK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vlSDnKVxoK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vlSDnKVxoK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vlSDnKVxoK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vlSDnKVxoK .navbar-buttons {
  text-align: center;
}
.cid-vlSDnKVxoK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vlSDnKVxoK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vlSDnKVxoK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vlSDnKVxoK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vlSDnKVxoK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vlSDnKVxoK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vlSDnKVxoK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlSDnKVxoK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vlSDnKVxoK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vlSDnKVxoK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlSDnKVxoK .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vlSDnKVxoK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vlSDnKVxoK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vlSDnKVxoK .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vlSDnKVxoK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vlSDnKVxoK .navbar {
    height: 77px;
  }
  .cid-vlSDnKVxoK .navbar.opened {
    height: auto;
  }
  .cid-vlSDnKVxoK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vlSDnLitQV {
  padding-top: 135px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-vlSDnLitQV .accordion .card {
  overflow: hidden;
}
.cid-vlSDnLitQV .card {
  border: 1px solid lightgray !important;
  border-radius: 20px !important;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-vlSDnLitQV .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-vlSDnLitQV .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-vlSDnLitQV .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vlSDnLitQV .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-vlSDnLitQV .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-vlSDnLitQV .card .panel-body {
  color: #767676;
}
.cid-vlSDnLitQV .card:hover {
  background: #f2f2f4;
}
.cid-vlSDnLitQV .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-vlSDnLitQV .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-vlSDnLitQV .mbri-arrow-down:before {
  content: '\e960';
}
.cid-vlSDnLitQV .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-vlSDnLitQV .panel-collapse {
  margin-top: -1px;
}
.cid-vlSDnLitQV H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-vlSDnLitQV .panel-text {
    padding: 0 0.5rem;
  }
  .cid-vlSDnLitQV .icon-left {
    margin-left: 0.5rem;
  }
  .cid-vlSDnLitQV .sign {
    margin-right: 0.5rem;
  }
}
.cid-vlSDnLitQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlSDnLitQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlSDnLitQV H2 {
  color: #000000;
}
.cid-vmlqQo6yiv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vmlqQo6yiv .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vmlqQo6yiv .content {
    padding: 0 2rem;
  }
}
.cid-vmlqQo6yiv .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vmlqQo6yiv .img-col {
  padding: 0;
}
.cid-vmlqQo6yiv .mbr-figure {
  text-align: left;
}
.cid-vmlqQo6yiv .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vmlqQo6yiv .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vmlqQo6yiv .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vmlqQo6yiv .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vmlqQo6yiv .icon-title,
.cid-vmlqQo6yiv .mbr-iconfont {
  color: #b2216b;
}
.cid-vmlqQo6yiv .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vmlqQo6yiv .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vmlqQo6yiv .icons-wrap {
    flex-direction: column;
  }
  .cid-vmlqQo6yiv .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vmlqQo6yiv .link-wrap {
    margin: auto;
  }
  .cid-vmlqQo6yiv .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vmlqQo6yiv .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vmlqQo6yiv .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vmlqQo6yiv .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vmlqQo6yiv .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vmlqQo6yiv .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vmlqQo6yiv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmlqQo6yiv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlSDnLPRpK {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vlSDnLPRpK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlSDnLPRpK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlSDnLPRpK .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-vlSDnLPRpK .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vlSDnLPRpK .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vlSDnLPRpK .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vlSDnLPRpK .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-vlSDnLPRpK .mbr-section-title {
  color: #ff6d99;
}
.cid-vlSDnLPRpK .mbr-text,
.cid-vlSDnLPRpK .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vlSDnLPRpK .mbr-section-title,
.cid-vlSDnLPRpK .mbr-section-btn {
  text-align: center;
  color: #b2216b;
}
.cid-vlSDnM4t7Z {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vlSDnM4t7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlSDnM4t7Z .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-vlSDnM4t7Z .container {
    padding: 0 30px;
  }
}
.cid-vlSDnM4t7Z .row {
  justify-content: center;
}
.cid-vlSDnM4t7Z .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vlSDnM4t7Z .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vlSDnM4t7Z .mbr-desc {
  color: #144031;
}
.cid-vlSDnM4t7Z .mbr-text {
  color: #144031;
  text-align: center;
}
#custom-html-9t {
  /* Type valid CSS here */
}
#custom-html-9t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-9t p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vlSKZKet7I .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlSKZKet7I .nav-item:focus,
.cid-vlSKZKet7I .nav-link:focus {
  outline: none;
}
.cid-vlSKZKet7I .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item:active,
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vlSKZKet7I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlSKZKet7I .navbar-caption:hover {
  color: inherit!important;
}
.cid-vlSKZKet7I .container {
  max-width: 1380px;
}
.cid-vlSKZKet7I .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vlSKZKet7I .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vlSKZKet7I .nav-link:hover,
.cid-vlSKZKet7I .nav-link:active,
.cid-vlSKZKet7I .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vlSKZKet7I .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vlSKZKet7I .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vlSKZKet7I .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vlSKZKet7I .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vlSKZKet7I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vlSKZKet7I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vlSKZKet7I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vlSKZKet7I .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vlSKZKet7I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vlSKZKet7I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vlSKZKet7I .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vlSKZKet7I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vlSKZKet7I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vlSKZKet7I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vlSKZKet7I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vlSKZKet7I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vlSKZKet7I .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vlSKZKet7I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vlSKZKet7I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vlSKZKet7I .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vlSKZKet7I .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vlSKZKet7I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vlSKZKet7I .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vlSKZKet7I .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vlSKZKet7I .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vlSKZKet7I .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vlSKZKet7I .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vlSKZKet7I .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vlSKZKet7I .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vlSKZKet7I .icons-menu span {
  color: #ed6436 !important;
}
.cid-vlSKZKet7I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vlSKZKet7I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vlSKZKet7I .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vlSKZKet7I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vlSKZKet7I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vlSKZKet7I .dropdown-item.active,
.cid-vlSKZKet7I .dropdown-item:active {
  background-color: transparent;
}
.cid-vlSKZKet7I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vlSKZKet7I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vlSKZKet7I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vlSKZKet7I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vlSKZKet7I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vlSKZKet7I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vlSKZKet7I ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vlSKZKet7I .navbar-buttons {
  text-align: center;
}
.cid-vlSKZKet7I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vlSKZKet7I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vlSKZKet7I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vlSKZKet7I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vlSKZKet7I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vlSKZKet7I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vlSKZKet7I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlSKZKet7I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vlSKZKet7I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vlSKZKet7I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlSKZKet7I .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vlSKZKet7I a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vlSKZKet7I .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vlSKZKet7I .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vlSKZKet7I .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vlSKZKet7I .navbar {
    height: 77px;
  }
  .cid-vlSKZKet7I .navbar.opened {
    height: auto;
  }
  .cid-vlSKZKet7I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vlSKZKCoIl {
  padding-top: 135px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-vlSKZKCoIl .accordion .card {
  overflow: hidden;
}
.cid-vlSKZKCoIl .card {
  border: 1px solid lightgray !important;
  border-radius: 20px !important;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-vlSKZKCoIl .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-vlSKZKCoIl .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-vlSKZKCoIl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vlSKZKCoIl .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-vlSKZKCoIl .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-vlSKZKCoIl .card .panel-body {
  color: #767676;
}
.cid-vlSKZKCoIl .card:hover {
  background: #f2f2f4;
}
.cid-vlSKZKCoIl .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-vlSKZKCoIl .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-vlSKZKCoIl .mbri-arrow-down:before {
  content: '\e960';
}
.cid-vlSKZKCoIl .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-vlSKZKCoIl .panel-collapse {
  margin-top: -1px;
}
.cid-vlSKZKCoIl H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-vlSKZKCoIl .panel-text {
    padding: 0 0.5rem;
  }
  .cid-vlSKZKCoIl .icon-left {
    margin-left: 0.5rem;
  }
  .cid-vlSKZKCoIl .sign {
    margin-right: 0.5rem;
  }
}
.cid-vlSKZKCoIl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlSKZKCoIl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlSKZKCoIl H2 {
  color: #000000;
}
.cid-vlSKZLs8MM {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vlSKZLs8MM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlSKZLs8MM .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-vlSKZLs8MM .container {
    padding: 0 30px;
  }
}
.cid-vlSKZLs8MM .row {
  justify-content: center;
}
.cid-vlSKZLs8MM .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vlSKZLs8MM .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vlSKZLs8MM .mbr-desc {
  color: #144031;
}
.cid-vlSKZLs8MM .mbr-text {
  color: #144031;
  text-align: center;
}
#custom-html-a1 {
  /* Type valid CSS here */
}
#custom-html-a1 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-a1 p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vlcQDfLFiQ .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcQDfLFiQ .nav-item:focus,
.cid-vlcQDfLFiQ .nav-link:focus {
  outline: none;
}
.cid-vlcQDfLFiQ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item:active,
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vlcQDfLFiQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlcQDfLFiQ .navbar-caption:hover {
  color: inherit!important;
}
.cid-vlcQDfLFiQ .container {
  max-width: 1380px;
}
.cid-vlcQDfLFiQ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vlcQDfLFiQ .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vlcQDfLFiQ .nav-link:hover,
.cid-vlcQDfLFiQ .nav-link:active,
.cid-vlcQDfLFiQ .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vlcQDfLFiQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vlcQDfLFiQ .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vlcQDfLFiQ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vlcQDfLFiQ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vlcQDfLFiQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vlcQDfLFiQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vlcQDfLFiQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vlcQDfLFiQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vlcQDfLFiQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vlcQDfLFiQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vlcQDfLFiQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vlcQDfLFiQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vlcQDfLFiQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vlcQDfLFiQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vlcQDfLFiQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vlcQDfLFiQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vlcQDfLFiQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vlcQDfLFiQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vlcQDfLFiQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vlcQDfLFiQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vlcQDfLFiQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vlcQDfLFiQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vlcQDfLFiQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vlcQDfLFiQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vlcQDfLFiQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vlcQDfLFiQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vlcQDfLFiQ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vlcQDfLFiQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vlcQDfLFiQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vlcQDfLFiQ .icons-menu span {
  color: #ed6436 !important;
}
.cid-vlcQDfLFiQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vlcQDfLFiQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vlcQDfLFiQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vlcQDfLFiQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vlcQDfLFiQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vlcQDfLFiQ .dropdown-item.active,
.cid-vlcQDfLFiQ .dropdown-item:active {
  background-color: transparent;
}
.cid-vlcQDfLFiQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vlcQDfLFiQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vlcQDfLFiQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vlcQDfLFiQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vlcQDfLFiQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vlcQDfLFiQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vlcQDfLFiQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vlcQDfLFiQ .navbar-buttons {
  text-align: center;
}
.cid-vlcQDfLFiQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vlcQDfLFiQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-vlcQDfLFiQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vlcQDfLFiQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vlcQDfLFiQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vlcQDfLFiQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vlcQDfLFiQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlcQDfLFiQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vlcQDfLFiQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vlcQDfLFiQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlcQDfLFiQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vlcQDfLFiQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vlcQDfLFiQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vlcQDfLFiQ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vlcQDfLFiQ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vlcQDfLFiQ .navbar {
    height: 77px;
  }
  .cid-vlcQDfLFiQ .navbar.opened {
    height: auto;
  }
  .cid-vlcQDfLFiQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vmlz7LvHPs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vmlz7LvHPs .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-vmlz7LvHPs .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vmlz7LvHPs .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vmlz7LvHPs .icon-wrap span {
  padding-right: 1.5rem;
}
.cid-vmlz7LvHPs .icon-wrap-2 {
  padding-bottom: 2rem;
}
.cid-vmlz7LvHPs .color-col {
  background: #55cc39;
  border-radius: 30px;
  padding: 3rem 2rem;
  margin-top: 1rem;
}
.cid-vmlz7LvHPs .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vmlz7LvHPs .mbr-iconfont {
  font-size: 4rem;
  color: #b2216b !important;
  padding-bottom: 4px;
}
.cid-vmlz7LvHPs .icon-title,
.cid-vmlz7LvHPs .mbr-iconfont {
  color: #55cc39;
}
.cid-vmlz7LvHPs .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vmlz7LvHPs .content {
    margin-bottom: 2rem;
  }
  .cid-vmlz7LvHPs .row {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-vmlz7LvHPs .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-vmlz7LvHPs .icon-wrap {
    margin-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-vmlz7LvHPs .icon-wrap span {
    padding-right: 0rem;
  }
  .cid-vmlz7LvHPs .link-wrap {
    margin: auto;
  }
  .cid-vmlz7LvHPs .color-col {
    padding: 3rem 1rem;
  }
  .cid-vmlz7LvHPs .mbr-iconfont {
    font-size: 4rem;
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
  .cid-vmlz7LvHPs .align-wrap {
    width: 100%;
    text-align: center;
  }
}
.cid-vmlz7LvHPs .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vmlz7LvHPs .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vmlz7LvHPs .link-wrap h3 {
  z-index: 10;
  margin: 0;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
}
.cid-vmlz7LvHPs .link-wrap:hover {
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
}
.cid-vmlz7LvHPs .mbr-text2,
.cid-vmlz7LvHPs .icon-wrap-2 {
  color: #ffffff;
}
.cid-vmlz7LvHPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmlz7LvHPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlcR1uanf4 {
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-vlcR1uanf4 .link {
  opacity: 0;
  -webkit-transform: translate(-10px, 40px);
  transform: translate(-10px, 40px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  margin: 0;
}
.cid-vlcR1uanf4 h4 {
  -webkit-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
  -webkit-animation: animationFramesOut linear 0.6s;
  animation: animationFramesOut linear 0.6s;
}
.cid-vlcR1uanf4 .svg11 path {
  fill: #b2216b;
}
.cid-vlcR1uanf4 .svg21 path {
  fill: #55cc39;
}
.cid-vlcR1uanf4 .svg31 path {
  fill: #ed6436;
}
.cid-vlcR1uanf4 .svg12 path,
.cid-vlcR1uanf4 .svg22 path,
.cid-vlcR1uanf4 .svg32 path {
  fill: #f2f2f4;
}
.cid-vlcR1uanf4 .card {
  position: relative;
  height: 300px;
}
.cid-vlcR1uanf4 .card:hover .link {
  opacity: 1;
  -webkit-transform: translate(-10px, 10px);
  transform: translate(-10px, 10px);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.cid-vlcR1uanf4 .card:hover h4 {
  -webkit-animation: animationFrames linear 0.6s;
  animation: animationFrames linear 0.6s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
}
.cid-vlcR1uanf4 .card:hover .svg11 {
  -webkit-transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
}
.cid-vlcR1uanf4 .card:hover .svg12 {
  -webkit-transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(30deg);
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(30deg);
}
.cid-vlcR1uanf4 .card:hover .svg21 {
  -webkit-transform: skew(-20deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
  transform: skew(-20deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
}
.cid-vlcR1uanf4 .card:hover .svg22 {
  -webkit-transform: skew(-20deg, 10deg) scaleX(1) scaleY(0.9) rotate(20deg);
  transform: skew(-20deg, 10deg) scaleX(1) scaleY(0.9) rotate(20deg);
}
.cid-vlcR1uanf4 .card:hover .svg31 {
  -webkit-transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(-10deg);
}
.cid-vlcR1uanf4 .card:hover .svg32 {
  -webkit-transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(70deg);
  transform: skew(0deg, 10deg) scaleX(1) scaleY(0.9) rotate(70deg);
}
.cid-vlcR1uanf4 .card svg {
  position: absolute;
  top: -10px;
  left: 40px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5);
  transition: transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5), -webkit-transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5);
}
.cid-vlcR1uanf4 .card .svg22,
.cid-vlcR1uanf4 .card .svg32,
.cid-vlcR1uanf4 .card .svg12 {
  z-index: 1;
  -webkit-transform: scale(0.9) rotate(60deg);
  transform: scale(0.9) rotate(60deg);
}
.cid-vlcR1uanf4 .card .svg21,
.cid-vlcR1uanf4 .card .svg31,
.cid-vlcR1uanf4 .card .svg11 {
  z-index: 2;
}
.cid-vlcR1uanf4 .card div {
  z-index: 3;
}
.cid-vlcR1uanf4 .card .card-img {
  position: absolute;
  right: 30px;
  top: 30px;
}
@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@keyframes animationFrames {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@-webkit-keyframes animationFramesOut {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@keyframes animationFramesOut {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
.cid-vlcR1uanf4 .card-img {
  background: white;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlcR1uanf4 .mbr-iconfont {
  color: #383838 !important;
  font-size: 2.5rem !important;
}
.cid-vlcR1uanf4 .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
}
.cid-vlcR1uanf4 .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-vlcR1uanf4 .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vlcR1uanf4 .card {
    margin-bottom: 2rem;
  }
  .cid-vlcR1uanf4 .card svg {
    left: 30px;
  }
  .cid-vlcR1uanf4 .card:hover h4 {
    -webkit-animation: none;
    animation: none;
  }
  .cid-vlcR1uanf4 .link {
    opacity: 1;
    -webkit-transform: translate(-10px, 10px);
    transform: translate(-10px, 10px);
  }
  .cid-vlcR1uanf4 h4 {
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 767px) {
  .cid-vlcR1uanf4 .card {
    max-width: 360px;
  }
  .cid-vlcR1uanf4 .card svg {
    left: 10px;
  }
}
.cid-vlcR1uanf4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlcR1uanf4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-6t {
  /* Type valid CSS here */
}
#custom-html-6t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6t p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vlc8N9DsNY .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlc8N9DsNY .nav-item:focus,
.cid-vlc8N9DsNY .nav-link:focus {
  outline: none;
}
.cid-vlc8N9DsNY .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item:active,
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vlc8N9DsNY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vlc8N9DsNY .navbar-caption:hover {
  color: inherit!important;
}
.cid-vlc8N9DsNY .container {
  max-width: 1380px;
}
.cid-vlc8N9DsNY .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vlc8N9DsNY .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vlc8N9DsNY .nav-link:hover,
.cid-vlc8N9DsNY .nav-link:active,
.cid-vlc8N9DsNY .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vlc8N9DsNY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vlc8N9DsNY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vlc8N9DsNY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vlc8N9DsNY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vlc8N9DsNY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vlc8N9DsNY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vlc8N9DsNY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vlc8N9DsNY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vlc8N9DsNY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vlc8N9DsNY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vlc8N9DsNY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vlc8N9DsNY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vlc8N9DsNY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vlc8N9DsNY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vlc8N9DsNY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vlc8N9DsNY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vlc8N9DsNY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vlc8N9DsNY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vlc8N9DsNY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vlc8N9DsNY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vlc8N9DsNY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vlc8N9DsNY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vlc8N9DsNY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vlc8N9DsNY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vlc8N9DsNY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vlc8N9DsNY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vlc8N9DsNY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vlc8N9DsNY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vlc8N9DsNY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vlc8N9DsNY .icons-menu span {
  color: #ed6436 !important;
}
.cid-vlc8N9DsNY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vlc8N9DsNY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vlc8N9DsNY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vlc8N9DsNY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vlc8N9DsNY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vlc8N9DsNY .dropdown-item.active,
.cid-vlc8N9DsNY .dropdown-item:active {
  background-color: transparent;
}
.cid-vlc8N9DsNY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vlc8N9DsNY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vlc8N9DsNY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vlc8N9DsNY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vlc8N9DsNY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vlc8N9DsNY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vlc8N9DsNY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vlc8N9DsNY .navbar-buttons {
  text-align: center;
}
.cid-vlc8N9DsNY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vlc8N9DsNY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vlc8N9DsNY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vlc8N9DsNY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vlc8N9DsNY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vlc8N9DsNY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vlc8N9DsNY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlc8N9DsNY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vlc8N9DsNY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vlc8N9DsNY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vlc8N9DsNY .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vlc8N9DsNY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vlc8N9DsNY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vlc8N9DsNY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vlc8N9DsNY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vlc8N9DsNY .navbar {
    height: 77px;
  }
  .cid-vlc8N9DsNY .navbar.opened {
    height: auto;
  }
  .cid-vlc8N9DsNY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vlLJr5s1Fz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vlLJr5s1Fz .card-wrapper img {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .cid-vlLJr5s1Fz .col-md-6 {
    margin-bottom: 2rem;
  }
}
.cid-vlLJr5s1Fz .mbr-text,
.cid-vlLJr5s1Fz .mbr-section-btn {
  color: #383838;
}
.cid-vlLJr5s1Fz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vlLJr5s1Fz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vlc9Q04xmI {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vlc9Q04xmI .mbr-overlay {
  background-color: #f8f6f2;
  opacity: 0.2;
}
.cid-vlc9Q04xmI .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-vlc9Q04xmI .mbr-section-title {
  color: #45494E;
}
.cid-vlc9Q04xmI .mbr-section-subtitle {
  color: #45494E;
  margin-top: 1rem;
}
.cid-vlc9Q04xmI .form-container {
  display: flex;
  width: 100%;
}
.cid-vlc9Q04xmI .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vlc9Q04xmI form {
  width: 100%;
}
.cid-vlc9Q04xmI form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-vlc9Q04xmI form h5 {
  margin: 40px 0 20px;
}
.cid-vlc9Q04xmI form p {
  color: #45494E;
}
.cid-vlc9Q04xmI form .mbr-section-btn {
  margin-top: 26px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
.cid-vlc9Q04xmI form .mbr-section-btn .btn {
  min-width: 90px;
  padding: 9px 24px;
  border: none !important;
}
.cid-vlc9Q04xmI form .form-group {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
.cid-vlc9Q04xmI form .form-control {
  height: 56px;
  border: none !important;
  border-bottom: 1px solid #A2A4A7 !important;
  background: transparent;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 16px 0;
  font-size: 20px;
  line-height: 24px;
  color: #45494E;
  font-weight: 400;
}
.cid-vlc9Q04xmI form .form-control::-webkit-input-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form .form-control::-moz-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form .form-control:-moz-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form .form-control:-ms-input-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form select {
  color: #A2A4A7 !important;
}
.cid-vlc9Q04xmI form textarea {
  height: 250px !important;
}
.cid-vlc9Q04xmI form input:active,
.cid-vlc9Q04xmI form textarea:active,
.cid-vlc9Q04xmI form input:focus,
.cid-vlc9Q04xmI form textarea:focus {
  background-color: transparent !important;
  border-color: #45494E !important;
  outline: none !important;
  outline-offset: -1px;
}
.cid-vlc9Q04xmI form input:active::-webkit-input-placeholder,
.cid-vlc9Q04xmI form textarea:active::-webkit-input-placeholder,
.cid-vlc9Q04xmI form input:focus::-webkit-input-placeholder,
.cid-vlc9Q04xmI form textarea:focus::-webkit-input-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form input:active::-moz-placeholder,
.cid-vlc9Q04xmI form textarea:active::-moz-placeholder,
.cid-vlc9Q04xmI form input:focus::-moz-placeholder,
.cid-vlc9Q04xmI form textarea:focus::-moz-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form input:active:-moz-placeholder,
.cid-vlc9Q04xmI form textarea:active:-moz-placeholder,
.cid-vlc9Q04xmI form input:focus:-moz-placeholder,
.cid-vlc9Q04xmI form textarea:focus:-moz-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form input:active:-ms-input-placeholder,
.cid-vlc9Q04xmI form textarea:active:-ms-input-placeholder,
.cid-vlc9Q04xmI form input:focus:-ms-input-placeholder,
.cid-vlc9Q04xmI form textarea:focus:-ms-input-placeholder {
  color: #A2A4A7;
}
.cid-vlc9Q04xmI form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-vlc9Q04xmI form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-vlc9Q04xmI form label {
  width: 100%;
  color: #45494E;
  margin-bottom: 20px;
}
.cid-vlc9Q04xmI form .form-control-label {
  width: 100%;
}
.cid-vlc9Q04xmI form .form-check-label {
  margin-bottom: 10px;
}
.cid-vlc9Q04xmI form .form-check-input {
  border-color: #45494E !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-vlc9Q04xmI form .form-check-input:focus,
.cid-vlc9Q04xmI form .form-check-input:hover {
  background-color: #45494E !important;
  border-color: #45494E !important;
}
.cid-vlc9Q04xmI form .form-check-input:checked {
  border-color: #45494E !important;
  background-color: #45494E !important;
}
#custom-html-62 {
  /* Type valid CSS here */
}
#custom-html-62 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-62 p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vmmjbgsFEh .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmmjbgsFEh .nav-item:focus,
.cid-vmmjbgsFEh .nav-link:focus {
  outline: none;
}
.cid-vmmjbgsFEh .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item:active,
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vmmjbgsFEh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmmjbgsFEh .navbar-caption:hover {
  color: inherit!important;
}
.cid-vmmjbgsFEh .container {
  max-width: 1380px;
}
.cid-vmmjbgsFEh .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vmmjbgsFEh .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vmmjbgsFEh .nav-link:hover,
.cid-vmmjbgsFEh .nav-link:active,
.cid-vmmjbgsFEh .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vmmjbgsFEh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vmmjbgsFEh .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vmmjbgsFEh .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vmmjbgsFEh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vmmjbgsFEh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vmmjbgsFEh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vmmjbgsFEh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vmmjbgsFEh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vmmjbgsFEh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vmmjbgsFEh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vmmjbgsFEh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vmmjbgsFEh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vmmjbgsFEh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vmmjbgsFEh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vmmjbgsFEh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vmmjbgsFEh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vmmjbgsFEh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vmmjbgsFEh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vmmjbgsFEh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vmmjbgsFEh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vmmjbgsFEh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vmmjbgsFEh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vmmjbgsFEh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vmmjbgsFEh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vmmjbgsFEh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vmmjbgsFEh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vmmjbgsFEh .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vmmjbgsFEh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vmmjbgsFEh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vmmjbgsFEh .icons-menu span {
  color: #ed6436 !important;
}
.cid-vmmjbgsFEh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vmmjbgsFEh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vmmjbgsFEh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vmmjbgsFEh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vmmjbgsFEh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vmmjbgsFEh .dropdown-item.active,
.cid-vmmjbgsFEh .dropdown-item:active {
  background-color: transparent;
}
.cid-vmmjbgsFEh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vmmjbgsFEh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vmmjbgsFEh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vmmjbgsFEh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vmmjbgsFEh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vmmjbgsFEh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vmmjbgsFEh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vmmjbgsFEh .navbar-buttons {
  text-align: center;
}
.cid-vmmjbgsFEh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vmmjbgsFEh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vmmjbgsFEh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vmmjbgsFEh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vmmjbgsFEh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vmmjbgsFEh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vmmjbgsFEh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vmmjbgsFEh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vmmjbgsFEh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vmmjbgsFEh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vmmjbgsFEh .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vmmjbgsFEh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vmmjbgsFEh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vmmjbgsFEh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vmmjbgsFEh .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vmmjbgsFEh .navbar {
    height: 77px;
  }
  .cid-vmmjbgsFEh .navbar.opened {
    height: auto;
  }
  .cid-vmmjbgsFEh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vmmjbgYpUc {
  padding-top: 135px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-vmmjbgYpUc .accordion .card {
  overflow: hidden;
}
.cid-vmmjbgYpUc .card {
  border: 1px solid lightgray !important;
  border-radius: 20px !important;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-vmmjbgYpUc .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-vmmjbgYpUc .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-vmmjbgYpUc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vmmjbgYpUc .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-vmmjbgYpUc .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-vmmjbgYpUc .card .panel-body {
  color: #767676;
}
.cid-vmmjbgYpUc .card:hover {
  background: #f2f2f4;
}
.cid-vmmjbgYpUc .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-vmmjbgYpUc .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-vmmjbgYpUc .mbri-arrow-down:before {
  content: '\e960';
}
.cid-vmmjbgYpUc .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-vmmjbgYpUc .panel-collapse {
  margin-top: -1px;
}
.cid-vmmjbgYpUc H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-vmmjbgYpUc .panel-text {
    padding: 0 0.5rem;
  }
  .cid-vmmjbgYpUc .icon-left {
    margin-left: 0.5rem;
  }
  .cid-vmmjbgYpUc .sign {
    margin-right: 0.5rem;
  }
}
.cid-vmmjbgYpUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmjbgYpUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmjbgYpUc H2 {
  color: #000000;
}
.cid-vmmjnpy2L1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vmmjnpy2L1 .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vmmjnpy2L1 .content {
    padding: 0 2rem;
  }
}
.cid-vmmjnpy2L1 .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vmmjnpy2L1 .img-col {
  padding: 0;
}
.cid-vmmjnpy2L1 .mbr-figure {
  text-align: left;
}
.cid-vmmjnpy2L1 .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vmmjnpy2L1 .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vmmjnpy2L1 .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vmmjnpy2L1 .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vmmjnpy2L1 .icon-title,
.cid-vmmjnpy2L1 .mbr-iconfont {
  color: #b2216b;
}
.cid-vmmjnpy2L1 .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vmmjnpy2L1 .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vmmjnpy2L1 .icons-wrap {
    flex-direction: column;
  }
  .cid-vmmjnpy2L1 .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vmmjnpy2L1 .link-wrap {
    margin: auto;
  }
  .cid-vmmjnpy2L1 .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vmmjnpy2L1 .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vmmjnpy2L1 .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vmmjnpy2L1 .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vmmjnpy2L1 .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vmmjnpy2L1 .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vmmjnpy2L1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmjnpy2L1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmjbhJAFC {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmmjbhJAFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmjbhJAFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmjbhJAFC .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-vmmjbhJAFC .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vmmjbhJAFC .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vmmjbhJAFC .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vmmjbhJAFC .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-vmmjbhJAFC .mbr-section-title {
  color: #ff6d99;
}
.cid-vmmjbhJAFC .mbr-text,
.cid-vmmjbhJAFC .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vmmjbhJAFC .mbr-section-title,
.cid-vmmjbhJAFC .mbr-section-btn {
  text-align: center;
  color: #b2216b;
}
.cid-vmmoLiugYo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vmmoLiugYo .content {
  max-width: 800px;
  margin: auto 0;
  padding: 0 2rem;
}
@media (min-width: 1400px) {
  .cid-vmmoLiugYo .content {
    padding: 0 6rem;
  }
}
.cid-vmmoLiugYo .mbr-figure {
  height: 100%;
}
.cid-vmmoLiugYo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-vmmoLiugYo .img-col {
  padding: 0;
}
.cid-vmmoLiugYo .icon-wrap {
  width: fit-content;
  padding-bottom: 1.5rem;
  display: inline-block;
}
.cid-vmmoLiugYo p {
  font-weight: 700;
  line-height: 1.6;
}
.cid-vmmoLiugYo .mbr-iconfont {
  font-size: 5rem;
  color: #55cc39 !important;
}
.cid-vmmoLiugYo .icon-title,
.cid-vmmoLiugYo .mbr-iconfont {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-vmmoLiugYo .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vmmoLiugYo .icon-wrap {
    margin: auto;
  }
}
.cid-vmmoLiugYo H3 {
  color: #ed6436;
}
.cid-vmmoLiugYo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmoLiugYo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmjbhXpBw {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vmmjbhXpBw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmjbhXpBw .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-vmmjbhXpBw .container {
    padding: 0 30px;
  }
}
.cid-vmmjbhXpBw .row {
  justify-content: center;
}
.cid-vmmjbhXpBw .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vmmjbhXpBw .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vmmjbhXpBw .mbr-desc {
  color: #144031;
}
.cid-vmmjbhXpBw .mbr-text {
  color: #144031;
  text-align: center;
}
#custom-html-bc {
  /* Type valid CSS here */
}
#custom-html-bc div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bc p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vmmwg9YbeM .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmmwg9YbeM .nav-item:focus,
.cid-vmmwg9YbeM .nav-link:focus {
  outline: none;
}
.cid-vmmwg9YbeM .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item:active,
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vmmwg9YbeM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmmwg9YbeM .navbar-caption:hover {
  color: inherit!important;
}
.cid-vmmwg9YbeM .container {
  max-width: 1380px;
}
.cid-vmmwg9YbeM .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vmmwg9YbeM .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vmmwg9YbeM .nav-link:hover,
.cid-vmmwg9YbeM .nav-link:active,
.cid-vmmwg9YbeM .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vmmwg9YbeM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vmmwg9YbeM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vmmwg9YbeM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vmmwg9YbeM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vmmwg9YbeM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vmmwg9YbeM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vmmwg9YbeM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vmmwg9YbeM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vmmwg9YbeM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vmmwg9YbeM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vmmwg9YbeM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vmmwg9YbeM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vmmwg9YbeM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vmmwg9YbeM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vmmwg9YbeM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vmmwg9YbeM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vmmwg9YbeM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vmmwg9YbeM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vmmwg9YbeM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vmmwg9YbeM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vmmwg9YbeM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vmmwg9YbeM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vmmwg9YbeM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vmmwg9YbeM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vmmwg9YbeM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vmmwg9YbeM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vmmwg9YbeM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vmmwg9YbeM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vmmwg9YbeM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vmmwg9YbeM .icons-menu span {
  color: #ed6436 !important;
}
.cid-vmmwg9YbeM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vmmwg9YbeM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vmmwg9YbeM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vmmwg9YbeM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vmmwg9YbeM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vmmwg9YbeM .dropdown-item.active,
.cid-vmmwg9YbeM .dropdown-item:active {
  background-color: transparent;
}
.cid-vmmwg9YbeM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vmmwg9YbeM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vmmwg9YbeM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vmmwg9YbeM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vmmwg9YbeM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vmmwg9YbeM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vmmwg9YbeM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vmmwg9YbeM .navbar-buttons {
  text-align: center;
}
.cid-vmmwg9YbeM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vmmwg9YbeM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vmmwg9YbeM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vmmwg9YbeM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vmmwg9YbeM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vmmwg9YbeM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vmmwg9YbeM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vmmwg9YbeM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vmmwg9YbeM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vmmwg9YbeM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vmmwg9YbeM .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vmmwg9YbeM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vmmwg9YbeM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vmmwg9YbeM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vmmwg9YbeM .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vmmwg9YbeM .navbar {
    height: 77px;
  }
  .cid-vmmwg9YbeM .navbar.opened {
    height: auto;
  }
  .cid-vmmwg9YbeM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vmmwgakGo6 {
  padding-top: 135px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-vmmwgakGo6 .accordion .card {
  overflow: hidden;
}
.cid-vmmwgakGo6 .card {
  border: 1px solid lightgray !important;
  border-radius: 20px !important;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-vmmwgakGo6 .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-vmmwgakGo6 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-vmmwgakGo6 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vmmwgakGo6 .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-vmmwgakGo6 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-vmmwgakGo6 .card .panel-body {
  color: #767676;
}
.cid-vmmwgakGo6 .card:hover {
  background: #f2f2f4;
}
.cid-vmmwgakGo6 .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #55cc39;
}
.cid-vmmwgakGo6 .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-vmmwgakGo6 .mbri-arrow-down:before {
  content: '\e960';
}
.cid-vmmwgakGo6 .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-vmmwgakGo6 .panel-collapse {
  margin-top: -1px;
}
.cid-vmmwgakGo6 H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-vmmwgakGo6 .panel-text {
    padding: 0 0.5rem;
  }
  .cid-vmmwgakGo6 .icon-left {
    margin-left: 0.5rem;
  }
  .cid-vmmwgakGo6 .sign {
    margin-right: 0.5rem;
  }
}
.cid-vmmwgakGo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmwgakGo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmwgakGo6 H2 {
  color: #000000;
}
.cid-vmmwmDOpXQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vmmwmDOpXQ .content {
    max-width: 620px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-vmmwmDOpXQ .content {
    padding: 0 2rem;
  }
}
.cid-vmmwmDOpXQ .row {
  justify-content: flex-start;
  align-items: center;
}
.cid-vmmwmDOpXQ .img-col {
  padding: 0;
}
.cid-vmmwmDOpXQ .mbr-figure {
  text-align: left;
}
.cid-vmmwmDOpXQ .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-vmmwmDOpXQ .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vmmwmDOpXQ .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-vmmwmDOpXQ .mbr-iconfont {
  font-size: 3.5rem;
  color: #55cc39 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-vmmwmDOpXQ .icon-title,
.cid-vmmwmDOpXQ .mbr-iconfont {
  color: #b2216b;
}
.cid-vmmwmDOpXQ .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vmmwmDOpXQ .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vmmwmDOpXQ .icons-wrap {
    flex-direction: column;
  }
  .cid-vmmwmDOpXQ .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-vmmwmDOpXQ .link-wrap {
    margin: auto;
  }
  .cid-vmmwmDOpXQ .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-vmmwmDOpXQ .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-vmmwmDOpXQ .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-vmmwmDOpXQ .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-vmmwmDOpXQ .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-vmmwmDOpXQ .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-vmmwmDOpXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmwmDOpXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmwgaUUOC {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmmwgaUUOC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmwgaUUOC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmmwgaUUOC .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-vmmwgaUUOC .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vmmwgaUUOC .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vmmwgaUUOC .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vmmwgaUUOC .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-vmmwgaUUOC .mbr-section-title {
  color: #ff6d99;
}
.cid-vmmwgaUUOC .mbr-text,
.cid-vmmwgaUUOC .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-vmmwgaUUOC .mbr-section-title,
.cid-vmmwgaUUOC .mbr-section-btn {
  text-align: center;
  color: #b2216b;
}
.cid-vmmwgbkiZu {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vmmwgbkiZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmmwgbkiZu .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-vmmwgbkiZu .container {
    padding: 0 30px;
  }
}
.cid-vmmwgbkiZu .row {
  justify-content: center;
}
.cid-vmmwgbkiZu .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-vmmwgbkiZu .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vmmwgbkiZu .mbr-desc {
  color: #144031;
}
.cid-vmmwgbkiZu .mbr-text {
  color: #144031;
  text-align: center;
}
#custom-html-bm {
  /* Type valid CSS here */
}
#custom-html-bm div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bm p {
  font-size: 60px;
  color: #777;
}
.cid-vmp1l0sZcF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmp1l0sZcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmp1l0sZcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmp1l0sZcF .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmp1l0sZcF .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmp1l0sZcF .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmp1l0sZcF .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmp1l0sZcF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmp1l0sZcF .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmp1l0sZcF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmp1l0sZcF .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmp1l0sZcF .mbr-section-title {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-list-title {
  color: #181818;
}
.cid-vmp1l0sZcF .mbr-list {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-text {
  color: #000000;
}
.cid-vmp1l0sZcF .mbr-section-title,
.cid-vmp1l0sZcF .logo-wrapper {
  text-align: center;
}
.cid-vmqnzm8AtL .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmqnzm8AtL .nav-item:focus,
.cid-vmqnzm8AtL .nav-link:focus {
  outline: none;
}
.cid-vmqnzm8AtL .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item:hover,
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item:active,
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item:focus {
  color: #55cc39 !important;
}
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vmqnzm8AtL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vmqnzm8AtL .navbar-caption:hover {
  color: inherit!important;
}
.cid-vmqnzm8AtL .container {
  max-width: 1380px;
}
.cid-vmqnzm8AtL .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-vmqnzm8AtL .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-vmqnzm8AtL .nav-link:hover,
.cid-vmqnzm8AtL .nav-link:active,
.cid-vmqnzm8AtL .nav-link:focus {
  border-bottom: 3px solid #55cc39;
  color: #55cc39 !important;
}
.cid-vmqnzm8AtL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vmqnzm8AtL .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vmqnzm8AtL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vmqnzm8AtL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vmqnzm8AtL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vmqnzm8AtL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vmqnzm8AtL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vmqnzm8AtL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vmqnzm8AtL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vmqnzm8AtL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vmqnzm8AtL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vmqnzm8AtL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vmqnzm8AtL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vmqnzm8AtL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vmqnzm8AtL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vmqnzm8AtL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vmqnzm8AtL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vmqnzm8AtL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vmqnzm8AtL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vmqnzm8AtL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vmqnzm8AtL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vmqnzm8AtL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vmqnzm8AtL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vmqnzm8AtL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vmqnzm8AtL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vmqnzm8AtL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vmqnzm8AtL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vmqnzm8AtL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vmqnzm8AtL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vmqnzm8AtL .icons-menu span {
  color: #ed6436 !important;
}
.cid-vmqnzm8AtL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vmqnzm8AtL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vmqnzm8AtL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vmqnzm8AtL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vmqnzm8AtL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vmqnzm8AtL .dropdown-item.active,
.cid-vmqnzm8AtL .dropdown-item:active {
  background-color: transparent;
}
.cid-vmqnzm8AtL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vmqnzm8AtL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vmqnzm8AtL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vmqnzm8AtL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vmqnzm8AtL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vmqnzm8AtL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vmqnzm8AtL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vmqnzm8AtL .navbar-buttons {
  text-align: center;
}
.cid-vmqnzm8AtL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vmqnzm8AtL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-vmqnzm8AtL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vmqnzm8AtL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vmqnzm8AtL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vmqnzm8AtL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vmqnzm8AtL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vmqnzm8AtL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vmqnzm8AtL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vmqnzm8AtL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vmqnzm8AtL .navbar-dropdown {
  padding: .5rem 1rem;
  position: static;
}
.cid-vmqnzm8AtL a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vmqnzm8AtL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vmqnzm8AtL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-vmqnzm8AtL .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vmqnzm8AtL .navbar {
    height: 77px;
  }
  .cid-vmqnzm8AtL .navbar.opened {
    height: auto;
  }
  .cid-vmqnzm8AtL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vmqqiSnUB5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vmqqiSnUB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmqqiSnUB5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmqqiSnUB5 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.cid-vmqqiSnUB5 .line2 {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 2rem;
}
.cid-vmqqiSnUB5 .title .num {
  width: 100%;
  display: block;
}
.cid-vmqqiSnUB5 .title .card-title {
  z-index: 1;
}
.cid-vmqqiSnUB5 .num {
  color: #291f1e;
}
.cid-vmqqiSnUB5 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vmqqiSnUB5 .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vmqqiSnUB5 * {
    text-align: center !important;
  }
  .cid-vmqqiSnUB5 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-vmqqiSnUB5 .card-title,
.cid-vmqqiSnUB5 .card-img {
  color: #291f1e;
}
.cid-vmqqiSnUB5 .card-text {
  color: #291f1e;
}
.cid-vmqqiSnUB5 .mbr-section-title,
.cid-vmqqiSnUB5 .card-box {
  text-align: left;
}
.cid-vmqqiSnUB5 .mbr-section-title,
.cid-vmqqiSnUB5 .line {
  color: #291f1e;
}
.cid-vmqqiSnUB5 .card-text,
.cid-vmqqiSnUB5 .line2 {
  color: #291f1e;
}
.cid-vmqDLzADpl {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-vmqDLzADpl .team-card {
  overflow: hidden;
}
.cid-vmqDLzADpl .team-card:hover img {
  transform: scale(1.2);
}
.cid-vmqDLzADpl .block-price {
  margin-top: 2rem;
}
.cid-vmqDLzADpl .text-price {
  display: inline-block;
  padding-right: 1rem;
}
.cid-vmqDLzADpl .text-date {
  display: inline-block;
}
.cid-vmqDLzADpl .mbr-section-subtitle-2 {
  font-weight: 700;
}
.cid-vmqDLzADpl .mbr-section-subtitle {
  border-radius: 5px;
  display: inline-block;
  padding: 6px 13px;
  font-weight: bold;
  margin-bottom: 1.7rem;
  background-color: #c1f7d5;
}
.cid-vmqDLzADpl .text-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vmqDLzADpl .mbr-role {
  margin-bottom: 1.3rem;
}
.cid-vmqDLzADpl .team-card {
  padding: 0rem;
  position: relative;
  transition: all 0.3s;
}
.cid-vmqDLzADpl .card-wrap {
  position: relative;
  color: #fff;
  text-align: center;
}
.cid-vmqDLzADpl .content-wrap {
  max-width: 340px;
  margin: auto;
  position: relative;
}
.cid-vmqDLzADpl .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-vmqDLzADpl img {
  transition: 1s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.cid-vmqDLzADpl .main-heading {
  margin-bottom: 2.2rem;
}
.cid-vmqDLzADpl .btn {
  margin-top: 3rem;
}
.cid-vmqDLzADpl .mbr-text {
  color: #777777;
}
.cid-vmqDLzADpl .mbr-section-title {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-vmqDLzADpl .card-wrap {
    padding: 3rem 1rem;
  }
  .cid-vmqDLzADpl .media-content {
    padding: 0;
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vmqDLzADpl .card-wrap {
    padding: 3rem 2rem;
  }
  .cid-vmqDLzADpl .media-content {
    padding: 2rem 2rem 3rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vmqDLzADpl .card-wrap {
    padding: 5rem 1rem;
  }
  .cid-vmqDLzADpl .mbr-text-1 {
    padding-right: 4rem;
  }
}
.cid-vmqDLzADpl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmqDLzADpl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmqDLzADpl .mbr-text,
.cid-vmqDLzADpl .mbr-section-btn {
  color: #181818;
}
#custom-html-c7 {
  /* Type valid CSS here */
}
#custom-html-c7 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-c7 p {
  font-size: 60px;
  color: #777;
}
.cid-vmqnzmLbPu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmqnzmLbPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmqnzmLbPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmqnzmLbPu .logo-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmqnzmLbPu .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmqnzmLbPu .logo-wrapper img {
  display: inline-flex;
  width: 162px;
  height: 162px;
  object-fit: cover;
}
.cid-vmqnzmLbPu .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vmqnzmLbPu .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vmqnzmLbPu .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmqnzmLbPu .nav-wrapper {
    display: block;
    margin-bottom: 40px;
  }
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap {
  width: 40%;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmqnzmLbPu .nav-wrapper .nav-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .cid-vmqnzmLbPu .nav-wrapper .nav-wrap:last-child {
    margin-bottom: 0;
  }
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .list .item-wrap:hover,
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #55cc39;
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #55cc39;
}
.cid-vmqnzmLbPu .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vmqnzmLbPu .content-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vmqnzmLbPu .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vmqnzmLbPu .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmqnzmLbPu .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vmqnzmLbPu .content-wrapper .mbr-list-title {
  margin-bottom: 20px;
}
.cid-vmqnzmLbPu .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vmqnzmLbPu .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vmqnzmLbPu .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vmqnzmLbPu .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #9891ff;
  color: #000000;
  border: 1px solid transparent;
}
.cid-vmqnzmLbPu .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #000000;
  border: 1px solid #cdcbd0;
  font-size: 14px;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-vmqnzmLbPu .mbr-copy {
  margin-bottom: 0;
  color: #767481;
  text-align: center;
}
.cid-vmqnzmLbPu .mbr-section-title {
  color: #000000;
}
.cid-vmqnzmLbPu .mbr-list-title {
  color: #181818;
}
.cid-vmqnzmLbPu .mbr-list {
  color: #000000;
}
.cid-vmqnzmLbPu .mbr-text {
  color: #000000;
}
.cid-vmqnzmLbPu .mbr-section-title,
.cid-vmqnzmLbPu .logo-wrapper {
  text-align: center;
}
