body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.52rem;
  }
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #f7ed4a !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !important;
}
.btn-primary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-primary {
    width: -webkit-fill-available;
  }
}
.btn-secondary {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: #181818 !important;
}
.btn-secondary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-secondary {
    width: -webkit-fill-available;
  }
}
.btn-info {
  box-shadow: 0 0 0 100px #82786e inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: #82786e !important;
}
.btn-info span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-info {
    width: -webkit-fill-available;
  }
}
.btn-success {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !important;
}
.btn-success span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-success {
    width: -webkit-fill-available;
  }
}
.btn-warning {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: #879a9f !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b1a374 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-primary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-primary-outline span:after {
  content: '';
  position: absolute;
  background: #f7ed4a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-primary-outline {
    width: -webkit-fill-available;
  }
}
.btn-secondary-outline {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #181818;
  border-color: #181818;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-secondary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-secondary-outline span:after {
  content: '';
  position: absolute;
  background: #181818;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-secondary-outline {
    width: -webkit-fill-available;
  }
}
.btn-info-outline {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-info-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-info-outline span:after {
  content: '';
  position: absolute;
  background: #82786e;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-info-outline {
    width: -webkit-fill-available;
  }
}
.btn-success-outline {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-success-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-success-outline span:after {
  content: '';
  position: absolute;
  background: #f7ed4a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-success-outline {
    width: -webkit-fill-available;
  }
}
.btn-warning-outline {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-warning-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-warning-outline span:after {
  content: '';
  position: absolute;
  background: #879a9f;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #b1a374;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f7ed4a !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f7ed4a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #181818 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7ed4a;
  border-color: #f7ed4a;
  color: #585304;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f7ed4a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #f7ed4a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7ed4a;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f7ed4a;
  border-bottom-color: #f7ed4a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f7ed4a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #181818 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f7ed4a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-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: #f7ed4a !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 #f7ed4a;
  color: #f7ed4a !important;
}
.cid-rGtQUWfKqN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ed6436;
}
.cid-rGtQUWfKqN .navbar.opened {
  transition: all .3s;
  background: #ed6436 !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 - 5.5rem);
  }
}
.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: #ed6436 !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: #ed6436;
}
.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: #181818;
}
.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: fixed;
}
.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-tZUODO369r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZUODO369r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUODO369r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUODO369r .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZUODO369r .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZUODO369r .container {
    padding: 0 24px;
  }
}
.cid-tZUODO369r .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-tZUODO369r .content-wrapper {
    padding: 0;
  }
}
.cid-tZUODO369r .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tZUODO369r .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #ed6436;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-tZUODO369r .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-tZUODO369r .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tZUODO369r .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-tZUODO369r .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZUODO369r .mbr-section-title {
  color: #141414;
}
.cid-tZUODO369r .mbr-desc {
  color: #141414;
}
.cid-tZUODO369r .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZUODO369r .mbr-section-title,
.cid-tZUODO369r .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZQwXCMIj0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
.cid-tZQwXCMIj0 li {
  list-style: none;
}
.cid-tZQwXCMIj0 .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tZQwXCMIj0 .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-tZQwXCMIj0 .mbr-iconfont {
  font-size: 22px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-tZQwXCMIj0 h4 {
  margin: 0;
}
.cid-tZQwXCMIj0 ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tZQwXCMIj0 .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-tZQwXCMIj0 .col-title2 {
  color: #ed6436;
}
.cid-tZQwXCMIj0 .mbr-text,
.cid-tZQwXCMIj0 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZQwXCMIj0 .item1 {
  color: #ffffff;
}
.cid-tZSWqSzSbf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZSWqSzSbf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZSWqSzSbf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZSWqSzSbf .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZSWqSzSbf .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZSWqSzSbf .container {
    padding: 0 24px;
  }
}
.cid-tZSWqSzSbf .row {
  justify-content: center;
}
.cid-tZSWqSzSbf .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZSWqSzSbf .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZSWqSzSbf .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-tZSWqSzSbf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZSWqSzSbf .mbr-section-title {
  color: #141414;
}
.cid-tZSWqSzSbf .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-tZSXJlVx3S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZSXJlVx3S .mbr-text {
  color: #767676;
}
.cid-tZSXJlVx3S .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem !important;
}
.cid-tZSXJlVx3S .card-img {
  margin-bottom: 3rem;
}
.cid-tZSXJlVx3S .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZSXJlVx3S .link {
  margin: 0;
}
.cid-tZSXJlVx3S p {
  font-weight: 400;
}
.cid-tZSXJlVx3S .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tZSXJlVx3S .link a:hover {
  color: #181818 !important;
}
.cid-tZSXJlVx3S .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZSXJlVx3S .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZSXJlVx3S .card {
    margin-bottom: 3rem;
  }
}
.cid-tZSXJlVx3S .mbr-text,
.cid-tZSXJlVx3S .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZSXJlVx3S .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZSXJlVx3S .card-title,
.cid-tZSXJlVx3S .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-rGtR35bime {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
@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-tZT4lAJWjx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ed6436;
}
.cid-tZT4lAJWjx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZT4lAJWjx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZT4lAJWjx .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZT4lAJWjx .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZT4lAJWjx .container {
    padding: 0 24px;
  }
}
.cid-tZT4lAJWjx .row {
  justify-content: center;
}
.cid-tZT4lAJWjx .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZT4lAJWjx .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZT4lAJWjx .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ed6436;
  border-radius: .75rem;
}
.cid-tZT4lAJWjx .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZT4lAJWjx .mbr-section-title {
  color: #141414;
}
.cid-tZT4lAJWjx .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZT4lAJWjx .mbr-desc,
.cid-tZT4lAJWjx .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-rGtR3NTgPj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #7aba59;
}
@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 {
  text-align: center;
}
.cid-rGtR3NTgPj .mbr-text,
.cid-rGtR3NTgPj .mbr-section-btn,
.cid-rGtR3NTgPj .content {
  text-align: center;
}
.cid-rGtR3muz6c {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-rGtR3muz6c .mbr-text {
  color: #767676;
}
.cid-rGtR3muz6c .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem!important;
}
.cid-rGtR3muz6c .card-img {
  margin-bottom: 3rem;
}
.cid-rGtR3muz6c .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-rGtR3muz6c .link {
  margin: 0;
}
.cid-rGtR3muz6c p {
  font-weight: 400;
}
.cid-rGtR3muz6c .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s;
}
.cid-rGtR3muz6c .link a:hover {
  color: #181818 !important;
}
.cid-rGtR3muz6c .link a:after {
  position: absolute;
  content: "\e967";
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-rGtR3muz6c .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rGtR3muz6c .card {
    margin-bottom: 3rem;
  }
}
.cid-rGtR3muz6c .mbr-text,
.cid-rGtR3muz6c .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-rGtR3muz6c .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-rGtR3muz6c .card-title,
.cid-rGtR3muz6c .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZT4ppSEqM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #7aba59;
}
.cid-tZT4ppSEqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZT4ppSEqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZT4ppSEqM .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZT4ppSEqM .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZT4ppSEqM .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZT4ppSEqM .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZT4ppSEqM .container {
    padding: 0 16px;
  }
}
.cid-tZT4ppSEqM .row {
  padding: 60px 44px;
  background-color: #7aba59;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-tZT4ppSEqM .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZT4ppSEqM .row {
    padding: 25px 9px;
  }
}
@media (max-width: 992px) {
  .cid-tZT4ppSEqM .title-wrapper {
    margin-bottom: 16px;
  }
}
.cid-tZT4ppSEqM .title-wrapper .icon-wrapper {
  margin-bottom: 32px;
}
.cid-tZT4ppSEqM .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 180px;
  display: inline-flex;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tZT4ppSEqM .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tZT4ppSEqM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tZT4ppSEqM .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tZT4ppSEqM .content-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tZT4ppSEqM .content-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-tZT4ppSEqM .content-wrapper .mbr-name {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid #979797;
}
.cid-tZT4ppSEqM .mbr-section-title {
  color: #000000;
}
.cid-tZT4ppSEqM .mbr-text {
  color: #000000;
}
.cid-tZT4ppSEqM .mbr-name {
  color: #000000;
}
.cid-tZT4ppSEqM .mbr-section-title,
.cid-tZT4ppSEqM .icon-wrapper {
  text-align: center;
}
.cid-rOe1I9qxdy {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ed6436;
}
.cid-rOe1I9qxdy .accordion .card {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-rOe1I9qxdy .acc {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rOe1I9qxdy .acc {
    padding: 0 2rem;
  }
}
.cid-rOe1I9qxdy .img-col {
  padding: 0;
}
.cid-rOe1I9qxdy .card {
  border: 1px solid lightgray!important;
  border-radius: 20px!important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-rOe1I9qxdy .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-rOe1I9qxdy .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-rOe1I9qxdy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rOe1I9qxdy .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
}
.cid-rOe1I9qxdy .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rOe1I9qxdy .card .panel-body {
  color: #767676;
}
.cid-rOe1I9qxdy .card:hover {
  background: #7aba59;
}
.cid-rOe1I9qxdy .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-rOe1I9qxdy .panel-title {
  display: flex!important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-rOe1I9qxdy .mbri-arrow-down:before {
  content: "\e960";
}
.cid-rOe1I9qxdy .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-rOe1I9qxdy .panel-collapse {
  margin-top: -1px;
}
.cid-rOe1I9qxdy H4 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rOe1I9qxdy .img-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rOe1I9qxdy .panel-text {
    padding: 0 0.5rem;
  }
  .cid-rOe1I9qxdy .icon-left {
    margin-left: 0.5rem;
  }
  .cid-rOe1I9qxdy .sign {
    margin-right: 0.5rem;
  }
}
.cid-rOe1I9qxdy H2 {
  text-align: center;
  color: #ffffff;
}
.cid-tZT51jRS5I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZT51jRS5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZT51jRS5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZT51jRS5I .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZT51jRS5I .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZT51jRS5I .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZT51jRS5I .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZT51jRS5I .container {
    padding: 0 16px;
  }
}
.cid-tZT51jRS5I .row {
  justify-content: center;
}
.cid-tZT51jRS5I .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZT51jRS5I .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZT51jRS5I .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZT51jRS5I .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZT51jRS5I .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZT51jRS5I .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-rGtR57iLe2 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
@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: #ffffff !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-rGtR57iLe2 .icon-title,
.cid-rGtR57iLe2 .mbr-iconfont {
  color: #ffffff;
}
.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-rGtR57iLe2 H1 {
  text-align: center;
}
.cid-rGtR57iLe2 .mbr-text,
.cid-rGtR57iLe2 .mbr-section-btn,
.cid-rGtR57iLe2 .content {
  text-align: left;
  color: #ffffff;
}
.cid-rGtR57iLe2 H3 {
  color: #ffffff;
}
.cid-tZT4YqWgfC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZT4YqWgfC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZT4YqWgfC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZT4YqWgfC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZT4YqWgfC .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZT4YqWgfC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZT4YqWgfC .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZT4YqWgfC .container {
    padding: 0 16px;
  }
}
.cid-tZT4YqWgfC .row {
  justify-content: center;
}
.cid-tZT4YqWgfC .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZT4YqWgfC .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZT4YqWgfC .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZT4YqWgfC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZT4YqWgfC .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZT4YqWgfC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZUSblpFNn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #141414;
}
.cid-tZUSblpFNn .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZUSblpFNn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZUSblpFNn .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZUSblpFNn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZUSblpFNn .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tZQCuYeA2y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ed6436;
  flex-direction: column;
  justify-content: center;
}
.cid-tZQCuYeA2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQCuYeA2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQCuYeA2y .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .container {
    padding: 0 16px;
  }
}
.cid-tZQCuYeA2y .row {
  justify-content: center;
}
.cid-tZQCuYeA2y .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-tZQCuYeA2y .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .list {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZQCuYeA2y .list .item-wrap:hover,
.cid-tZQCuYeA2y .list .item-wrap:focus {
  color: #181818;
}
.cid-tZQCuYeA2y .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-tZQCuYeA2y .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap:hover,
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap:focus {
  color: #181818;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #181818;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.cid-tZQCuYeA2y .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tZQCuYeA2y .list-title {
  color: #becdc2;
}
.cid-tZQCuYeA2y .list,
.cid-tZQCuYeA2y .item-wrap {
  color: #ffffff;
}
.cid-tZQCuYeA2y .list-title,
.cid-tZQCuYeA2y .social-wrapper {
  color: #ffffff;
}
.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: #f7ed4a !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 #f7ed4a;
  color: #f7ed4a !important;
}
.cid-rGtQUWfKqN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ed6436;
}
.cid-rGtQUWfKqN .navbar.opened {
  transition: all .3s;
  background: #ed6436 !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 - 5.5rem);
  }
}
.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: #ed6436 !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: #ed6436;
}
.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: #181818;
}
.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: fixed;
}
.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-tZQsHl0EEE {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZQsHl0EEE .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZQsHl0EEE .content {
    padding: 0 2rem;
  }
}
.cid-tZQsHl0EEE .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.cid-tZQsHl0EEE .img-col {
  padding: 0;
}
.cid-tZQsHl0EEE .icon-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZQsHl0EEE .icon-wrap h3 {
  margin: 0;
}
.cid-tZQsHl0EEE .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZQsHl0EEE .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZQsHl0EEE .icon-title,
.cid-tZQsHl0EEE .mbr-iconfont {
  color: #181818;
}
.cid-tZQsHl0EEE .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZQsHl0EEE .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZQsHl0EEE .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tZQsHl0EEE .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZQsHl0EEE H1 {
  text-align: center;
  color: #ffffff;
}
.cid-tZQsOdtU4y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ed6436;
}
.cid-tZQsOdtU4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQsOdtU4y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQsOdtU4y .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZQsOdtU4y .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZQsOdtU4y .container {
    padding: 0 24px;
  }
}
.cid-tZQsOdtU4y .row {
  justify-content: center;
}
.cid-tZQsOdtU4y .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZQsOdtU4y .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZQsOdtU4y .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-tZQsOdtU4y .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZQsOdtU4y .mbr-section-title {
  color: #141414;
}
.cid-tZQsOdtU4y .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZUMEVMFX2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
.cid-tZUMEVMFX2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZUMEVMFX2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZUMEVMFX2 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZUMEVMFX2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZUMEVMFX2 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tZQCuYeA2y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ed6436;
  flex-direction: column;
  justify-content: center;
}
.cid-tZQCuYeA2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQCuYeA2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQCuYeA2y .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .container {
    padding: 0 16px;
  }
}
.cid-tZQCuYeA2y .row {
  justify-content: center;
}
.cid-tZQCuYeA2y .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-tZQCuYeA2y .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .list {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZQCuYeA2y .list .item-wrap:hover,
.cid-tZQCuYeA2y .list .item-wrap:focus {
  color: #181818;
}
.cid-tZQCuYeA2y .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-tZQCuYeA2y .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap:hover,
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap:focus {
  color: #181818;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #181818;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.cid-tZQCuYeA2y .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tZQCuYeA2y .list-title {
  color: #becdc2;
}
.cid-tZQCuYeA2y .list,
.cid-tZQCuYeA2y .item-wrap {
  color: #ffffff;
}
.cid-tZQCuYeA2y .list-title,
.cid-tZQCuYeA2y .social-wrapper {
  color: #ffffff;
}
.cid-tZQtMhSEof .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-tZQtMhSEof .nav-item:focus,
.cid-tZQtMhSEof .nav-link:focus {
  outline: none;
}
.cid-tZQtMhSEof .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tZQtMhSEof .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-tZQtMhSEof .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tZQtMhSEof .dropdown .dropdown-menu .dropdown-item:active,
.cid-tZQtMhSEof .dropdown .dropdown-menu .dropdown-item:focus {
  color: #f7ed4a !important;
}
.cid-tZQtMhSEof .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZQtMhSEof .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZQtMhSEof .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-tZQtMhSEof .navbar-caption:hover {
  color: inherit!important;
}
.cid-tZQtMhSEof .container {
  max-width: 1380px;
}
.cid-tZQtMhSEof .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tZQtMhSEof .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tZQtMhSEof .nav-link:hover,
.cid-tZQtMhSEof .nav-link:active,
.cid-tZQtMhSEof .nav-link:focus {
  border-bottom: 3px solid #f7ed4a;
  color: #f7ed4a !important;
}
.cid-tZQtMhSEof .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ed6436;
}
.cid-tZQtMhSEof .navbar.opened {
  transition: all .3s;
  background: #ed6436 !important;
}
.cid-tZQtMhSEof .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZQtMhSEof .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZQtMhSEof .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZQtMhSEof .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZQtMhSEof .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tZQtMhSEof .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZQtMhSEof .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZQtMhSEof .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZQtMhSEof .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-tZQtMhSEof .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZQtMhSEof .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZQtMhSEof .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZQtMhSEof .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZQtMhSEof .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZQtMhSEof .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZQtMhSEof .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZQtMhSEof .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZQtMhSEof .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-tZQtMhSEof .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZQtMhSEof .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZQtMhSEof .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZQtMhSEof .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZQtMhSEof .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZQtMhSEof .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZQtMhSEof .navbar.navbar-short {
  background: #ed6436 !important;
  min-height: 60px;
}
.cid-tZQtMhSEof .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZQtMhSEof .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZQtMhSEof .icons-menu span {
  color: #ed6436 !important;
}
.cid-tZQtMhSEof .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZQtMhSEof .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZQtMhSEof .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-tZQtMhSEof .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZQtMhSEof .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZQtMhSEof .dropdown-item.active,
.cid-tZQtMhSEof .dropdown-item:active {
  background-color: transparent;
}
.cid-tZQtMhSEof .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZQtMhSEof .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZQtMhSEof .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZQtMhSEof .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ed6436;
}
.cid-tZQtMhSEof .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZQtMhSEof .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZQtMhSEof ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZQtMhSEof .navbar-buttons {
  text-align: center;
}
.cid-tZQtMhSEof button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZQtMhSEof button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tZQtMhSEof button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZQtMhSEof button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZQtMhSEof button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZQtMhSEof button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZQtMhSEof nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZQtMhSEof nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZQtMhSEof nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZQtMhSEof nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZQtMhSEof .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZQtMhSEof a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tZQtMhSEof .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZQtMhSEof .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-tZQtMhSEof .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZQtMhSEof .navbar {
    height: 77px;
  }
  .cid-tZQtMhSEof .navbar.opened {
    height: auto;
  }
  .cid-tZQtMhSEof .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZQtMirAZr {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZQtMirAZr .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZQtMirAZr .content {
    padding: 0 2rem;
  }
}
.cid-tZQtMirAZr .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.cid-tZQtMirAZr .img-col {
  padding: 0;
}
.cid-tZQtMirAZr .icon-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZQtMirAZr .icon-wrap h3 {
  margin: 0;
}
.cid-tZQtMirAZr .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZQtMirAZr .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZQtMirAZr .icon-title,
.cid-tZQtMirAZr .mbr-iconfont {
  color: #181818;
}
.cid-tZQtMirAZr .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZQtMirAZr .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZQtMirAZr .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tZQtMirAZr .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZQtMirAZr H1 {
  text-align: center;
  color: #ffffff;
}
.cid-tZQtMiN2L0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ed6436;
}
.cid-tZQtMiN2L0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQtMiN2L0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQtMiN2L0 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZQtMiN2L0 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZQtMiN2L0 .container {
    padding: 0 24px;
  }
}
.cid-tZQtMiN2L0 .row {
  justify-content: center;
}
.cid-tZQtMiN2L0 .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZQtMiN2L0 .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZQtMiN2L0 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-tZQtMiN2L0 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZQtMiN2L0 .mbr-section-title {
  color: #141414;
}
.cid-tZQtMiN2L0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZQtMiN2L0 .mbr-desc,
.cid-tZQtMiN2L0 .desc-wrapper {
  text-align: center;
}
.cid-tZUO5ydzOy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
.cid-tZUO5ydzOy .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZUO5ydzOy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZUO5ydzOy .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZUO5ydzOy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZUO5ydzOy .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tZQCuYeA2y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ed6436;
  flex-direction: column;
  justify-content: center;
}
.cid-tZQCuYeA2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZQCuYeA2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZQCuYeA2y .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .container {
    padding: 0 16px;
  }
}
.cid-tZQCuYeA2y .row {
  justify-content: center;
}
.cid-tZQCuYeA2y .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-tZQCuYeA2y .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .list {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZQCuYeA2y .list .item-wrap:hover,
.cid-tZQCuYeA2y .list .item-wrap:focus {
  color: #181818;
}
.cid-tZQCuYeA2y .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZQCuYeA2y .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZQCuYeA2y .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-tZQCuYeA2y .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap:hover,
.cid-tZQCuYeA2y .contacts-wrapper .list .item-wrap:focus {
  color: #181818;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #181818;
}
.cid-tZQCuYeA2y .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.cid-tZQCuYeA2y .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tZQCuYeA2y .list-title {
  color: #becdc2;
}
.cid-tZQCuYeA2y .list,
.cid-tZQCuYeA2y .item-wrap {
  color: #ffffff;
}
.cid-tZQCuYeA2y .list-title,
.cid-tZQCuYeA2y .social-wrapper {
  color: #ffffff;
}
.cid-tZUVm9E3xf .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-tZUVm9E3xf .nav-item:focus,
.cid-tZUVm9E3xf .nav-link:focus {
  outline: none;
}
.cid-tZUVm9E3xf .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tZUVm9E3xf .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-tZUVm9E3xf .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tZUVm9E3xf .dropdown .dropdown-menu .dropdown-item:active,
.cid-tZUVm9E3xf .dropdown .dropdown-menu .dropdown-item:focus {
  color: #f7ed4a !important;
}
.cid-tZUVm9E3xf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUVm9E3xf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZUVm9E3xf .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-tZUVm9E3xf .navbar-caption:hover {
  color: inherit!important;
}
.cid-tZUVm9E3xf .container {
  max-width: 1380px;
}
.cid-tZUVm9E3xf .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tZUVm9E3xf .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tZUVm9E3xf .nav-link:hover,
.cid-tZUVm9E3xf .nav-link:active,
.cid-tZUVm9E3xf .nav-link:focus {
  border-bottom: 3px solid #f7ed4a;
  color: #f7ed4a !important;
}
.cid-tZUVm9E3xf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ed6436;
}
.cid-tZUVm9E3xf .navbar.opened {
  transition: all .3s;
  background: #ed6436 !important;
}
.cid-tZUVm9E3xf .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZUVm9E3xf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUVm9E3xf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUVm9E3xf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUVm9E3xf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tZUVm9E3xf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZUVm9E3xf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUVm9E3xf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUVm9E3xf .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-tZUVm9E3xf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUVm9E3xf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZUVm9E3xf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZUVm9E3xf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUVm9E3xf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUVm9E3xf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZUVm9E3xf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUVm9E3xf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUVm9E3xf .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-tZUVm9E3xf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZUVm9E3xf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUVm9E3xf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUVm9E3xf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZUVm9E3xf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZUVm9E3xf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZUVm9E3xf .navbar.navbar-short {
  background: #ed6436 !important;
  min-height: 60px;
}
.cid-tZUVm9E3xf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZUVm9E3xf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZUVm9E3xf .icons-menu span {
  color: #ed6436 !important;
}
.cid-tZUVm9E3xf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUVm9E3xf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUVm9E3xf .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-tZUVm9E3xf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUVm9E3xf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUVm9E3xf .dropdown-item.active,
.cid-tZUVm9E3xf .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUVm9E3xf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUVm9E3xf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUVm9E3xf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUVm9E3xf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ed6436;
}
.cid-tZUVm9E3xf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUVm9E3xf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUVm9E3xf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZUVm9E3xf .navbar-buttons {
  text-align: center;
}
.cid-tZUVm9E3xf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZUVm9E3xf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tZUVm9E3xf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZUVm9E3xf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZUVm9E3xf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZUVm9E3xf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZUVm9E3xf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZUVm9E3xf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZUVm9E3xf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZUVm9E3xf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZUVm9E3xf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZUVm9E3xf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tZUVm9E3xf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZUVm9E3xf .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-tZUVm9E3xf .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZUVm9E3xf .navbar {
    height: 77px;
  }
  .cid-tZUVm9E3xf .navbar.opened {
    height: auto;
  }
  .cid-tZUVm9E3xf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUVmaswlq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZUVmaswlq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmaswlq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmaswlq .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZUVmaswlq .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmaswlq .container {
    padding: 0 24px;
  }
}
.cid-tZUVmaswlq .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-tZUVmaswlq .content-wrapper {
    padding: 0;
  }
}
.cid-tZUVmaswlq .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tZUVmaswlq .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #ed6436;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-tZUVmaswlq .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-tZUVmaswlq .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmaswlq .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-tZUVmaswlq .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZUVmaswlq .mbr-section-title {
  color: #141414;
}
.cid-tZUVmaswlq .mbr-desc {
  color: #141414;
}
.cid-tZUVmaswlq .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZUVmaswlq .mbr-section-title,
.cid-tZUVmaswlq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmbgB4H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
.cid-tZUVmbgB4H li {
  list-style: none;
}
.cid-tZUVmbgB4H .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tZUVmbgB4H .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-tZUVmbgB4H .mbr-iconfont {
  font-size: 22px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-tZUVmbgB4H h4 {
  margin: 0;
}
.cid-tZUVmbgB4H ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tZUVmbgB4H .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-tZUVmbgB4H .col-title2 {
  color: #ed6436;
}
.cid-tZUVmbgB4H .mbr-text,
.cid-tZUVmbgB4H .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmbgB4H .item1 {
  color: #ffffff;
}
.cid-tZUVmbKa77 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZUVmbKa77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmbKa77 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmbKa77 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZUVmbKa77 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmbKa77 .container {
    padding: 0 24px;
  }
}
.cid-tZUVmbKa77 .row {
  justify-content: center;
}
.cid-tZUVmbKa77 .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZUVmbKa77 .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZUVmbKa77 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-tZUVmbKa77 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZUVmbKa77 .mbr-section-title {
  color: #141414;
}
.cid-tZUVmbKa77 .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-tZUVmbYkZK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZUVmbYkZK .mbr-text {
  color: #767676;
}
.cid-tZUVmbYkZK .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem !important;
}
.cid-tZUVmbYkZK .card-img {
  margin-bottom: 3rem;
}
.cid-tZUVmbYkZK .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZUVmbYkZK .link {
  margin: 0;
}
.cid-tZUVmbYkZK p {
  font-weight: 400;
}
.cid-tZUVmbYkZK .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tZUVmbYkZK .link a:hover {
  color: #181818 !important;
}
.cid-tZUVmbYkZK .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZUVmbYkZK .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZUVmbYkZK .card {
    margin-bottom: 3rem;
  }
}
.cid-tZUVmbYkZK .mbr-text,
.cid-tZUVmbYkZK .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZUVmbYkZK .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZUVmbYkZK .card-title,
.cid-tZUVmbYkZK .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmczlSZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZUVmczlSZ .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZUVmczlSZ .content {
    padding: 0 2rem;
  }
}
.cid-tZUVmczlSZ .img-col {
  padding: 0;
}
.cid-tZUVmczlSZ .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZUVmczlSZ .icon-wrap h3 {
  margin: 0;
}
.cid-tZUVmczlSZ .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZUVmczlSZ .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZUVmczlSZ .icon-title,
.cid-tZUVmczlSZ .mbr-iconfont {
  color: #181818;
}
.cid-tZUVmczlSZ .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZUVmczlSZ .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZUVmczlSZ .icons-wrap {
    flex-direction: column;
  }
  .cid-tZUVmczlSZ .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZUVmd6S5s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ed6436;
}
.cid-tZUVmd6S5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmd6S5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmd6S5s .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZUVmd6S5s .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmd6S5s .container {
    padding: 0 24px;
  }
}
.cid-tZUVmd6S5s .row {
  justify-content: center;
}
.cid-tZUVmd6S5s .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZUVmd6S5s .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZUVmd6S5s .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ed6436;
  border-radius: .75rem;
}
.cid-tZUVmd6S5s .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZUVmd6S5s .mbr-section-title {
  color: #141414;
}
.cid-tZUVmd6S5s .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZUVmd6S5s .mbr-desc,
.cid-tZUVmd6S5s .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmdwuaO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZUVmdwuaO .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZUVmdwuaO .content {
    padding: 0 2rem;
  }
}
.cid-tZUVmdwuaO .row {
  justify-content: flex-end;
}
.cid-tZUVmdwuaO .img-col {
  padding: 0;
}
.cid-tZUVmdwuaO .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZUVmdwuaO .icon-wrap h3 {
  margin: 0;
}
.cid-tZUVmdwuaO .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZUVmdwuaO .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZUVmdwuaO .icon-title,
.cid-tZUVmdwuaO .mbr-iconfont {
  color: #181818;
}
.cid-tZUVmdwuaO .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZUVmdwuaO .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZUVmdwuaO .icons-wrap {
    flex-direction: column;
  }
  .cid-tZUVmdwuaO .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZUVmdwuaO H1 {
  text-align: center;
}
.cid-tZUVmdwuaO .mbr-text,
.cid-tZUVmdwuaO .mbr-section-btn,
.cid-tZUVmdwuaO .content {
  text-align: center;
}
.cid-tZUVmdQgi8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZUVmdQgi8 .mbr-text {
  color: #767676;
}
.cid-tZUVmdQgi8 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem!important;
}
.cid-tZUVmdQgi8 .card-img {
  margin-bottom: 3rem;
}
.cid-tZUVmdQgi8 .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZUVmdQgi8 .link {
  margin: 0;
}
.cid-tZUVmdQgi8 p {
  font-weight: 400;
}
.cid-tZUVmdQgi8 .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s;
}
.cid-tZUVmdQgi8 .link a:hover {
  color: #181818 !important;
}
.cid-tZUVmdQgi8 .link a:after {
  position: absolute;
  content: "\e967";
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZUVmdQgi8 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZUVmdQgi8 .card {
    margin-bottom: 3rem;
  }
}
.cid-tZUVmdQgi8 .mbr-text,
.cid-tZUVmdQgi8 .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZUVmdQgi8 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZUVmdQgi8 .card-title,
.cid-tZUVmdQgi8 .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmejIGh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #7aba59;
}
.cid-tZUVmejIGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmejIGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmejIGh .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZUVmejIGh .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZUVmejIGh .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmejIGh .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZUVmejIGh .container {
    padding: 0 16px;
  }
}
.cid-tZUVmejIGh .row {
  padding: 60px 44px;
  background-color: #7aba59;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-tZUVmejIGh .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmejIGh .row {
    padding: 25px 9px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmejIGh .title-wrapper {
    margin-bottom: 16px;
  }
}
.cid-tZUVmejIGh .title-wrapper .icon-wrapper {
  margin-bottom: 32px;
}
.cid-tZUVmejIGh .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 180px;
  display: inline-flex;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tZUVmejIGh .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tZUVmejIGh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tZUVmejIGh .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tZUVmejIGh .content-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tZUVmejIGh .content-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-tZUVmejIGh .content-wrapper .mbr-name {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid #979797;
}
.cid-tZUVmejIGh .mbr-section-title {
  color: #000000;
}
.cid-tZUVmejIGh .mbr-text {
  color: #000000;
}
.cid-tZUVmejIGh .mbr-name {
  color: #000000;
}
.cid-tZUVmejIGh .mbr-section-title,
.cid-tZUVmejIGh .icon-wrapper {
  text-align: center;
}
.cid-tZUVmeAsRb {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ed6436;
}
.cid-tZUVmeAsRb .accordion .card {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tZUVmeAsRb .acc {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZUVmeAsRb .acc {
    padding: 0 2rem;
  }
}
.cid-tZUVmeAsRb .img-col {
  padding: 0;
}
.cid-tZUVmeAsRb .card {
  border: 1px solid lightgray!important;
  border-radius: 20px!important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-tZUVmeAsRb .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-tZUVmeAsRb .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-tZUVmeAsRb .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tZUVmeAsRb .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
}
.cid-tZUVmeAsRb .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tZUVmeAsRb .card .panel-body {
  color: #767676;
}
.cid-tZUVmeAsRb .card:hover {
  background: #7aba59;
}
.cid-tZUVmeAsRb .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-tZUVmeAsRb .panel-title {
  display: flex!important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-tZUVmeAsRb .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tZUVmeAsRb .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-tZUVmeAsRb .panel-collapse {
  margin-top: -1px;
}
.cid-tZUVmeAsRb H4 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZUVmeAsRb .img-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUVmeAsRb .panel-text {
    padding: 0 0.5rem;
  }
  .cid-tZUVmeAsRb .icon-left {
    margin-left: 0.5rem;
  }
  .cid-tZUVmeAsRb .sign {
    margin-right: 0.5rem;
  }
}
.cid-tZUVmeAsRb H2 {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmf3sQz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZUVmf3sQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmf3sQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmf3sQz .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZUVmf3sQz .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZUVmf3sQz .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmf3sQz .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZUVmf3sQz .container {
    padding: 0 16px;
  }
}
.cid-tZUVmf3sQz .row {
  justify-content: center;
}
.cid-tZUVmf3sQz .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZUVmf3sQz .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZUVmf3sQz .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZUVmf3sQz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZUVmf3sQz .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZUVmf3sQz .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZUVmfm0mP {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
@media (min-width: 992px) {
  .cid-tZUVmfm0mP .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZUVmfm0mP .content {
    padding: 0 2rem;
  }
}
.cid-tZUVmfm0mP .row {
  justify-content: flex-end;
}
.cid-tZUVmfm0mP .img-col {
  padding: 0;
}
.cid-tZUVmfm0mP .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tZUVmfm0mP .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-tZUVmfm0mP .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZUVmfm0mP .mbr-iconfont {
  font-size: 3.5rem;
  color: #ffffff !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-tZUVmfm0mP .icon-title,
.cid-tZUVmfm0mP .mbr-iconfont {
  color: #ffffff;
}
.cid-tZUVmfm0mP .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZUVmfm0mP .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZUVmfm0mP .icons-wrap {
    flex-direction: column;
  }
  .cid-tZUVmfm0mP .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-tZUVmfm0mP .link-wrap {
    margin: auto;
  }
  .cid-tZUVmfm0mP .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-tZUVmfm0mP .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tZUVmfm0mP .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-tZUVmfm0mP .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-tZUVmfm0mP .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-tZUVmfm0mP .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-tZUVmfm0mP H1 {
  text-align: center;
}
.cid-tZUVmfm0mP .mbr-text,
.cid-tZUVmfm0mP .mbr-section-btn,
.cid-tZUVmfm0mP .content {
  text-align: left;
  color: #ffffff;
}
.cid-tZUVmfm0mP H3 {
  color: #ffffff;
}
.cid-tZUVmfKA4c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZUVmfKA4c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmfKA4c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmfKA4c .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZUVmfKA4c .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZUVmfKA4c .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmfKA4c .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZUVmfKA4c .container {
    padding: 0 16px;
  }
}
.cid-tZUVmfKA4c .row {
  justify-content: center;
}
.cid-tZUVmfKA4c .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZUVmfKA4c .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZUVmfKA4c .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZUVmfKA4c .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZUVmfKA4c .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tZUVmfKA4c .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZVrcP2ung {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ed6436;
}
.cid-tZVrcP2ung .accordion .card {
  overflow: hidden;
}
.cid-tZVrcP2ung .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-tZVrcP2ung .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-tZVrcP2ung .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-tZVrcP2ung .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tZVrcP2ung .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-tZVrcP2ung .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tZVrcP2ung .card .panel-body {
  color: #767676;
}
.cid-tZVrcP2ung .card:hover {
  background: #7aba59;
}
.cid-tZVrcP2ung .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-tZVrcP2ung .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-tZVrcP2ung .mbri-arrow-down:before {
  content: '\e960';
}
.cid-tZVrcP2ung .panel-text {
  padding: 0rem;
  color: #141414;
}
.cid-tZVrcP2ung .panel-collapse {
  margin-top: -1px;
}
.cid-tZVrcP2ung H4 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZVrcP2ung .panel-text {
    padding: 0 0.5rem;
  }
  .cid-tZVrcP2ung .icon-left {
    margin-left: 0.5rem;
  }
  .cid-tZVrcP2ung .sign {
    margin-right: 0.5rem;
  }
}
.cid-tZVrcP2ung .text {
  text-align: center;
  color: #ffffff;
}
.cid-tZUVmg3veF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
.cid-tZUVmg3veF .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZUVmg3veF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZUVmg3veF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZUVmg3veF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZUVmg3veF .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tZUVmgmsP4 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ed6436;
  flex-direction: column;
  justify-content: center;
}
.cid-tZUVmgmsP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUVmgmsP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUVmgmsP4 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZUVmgmsP4 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZUVmgmsP4 .container {
    padding: 0 16px;
  }
}
.cid-tZUVmgmsP4 .row {
  justify-content: center;
}
.cid-tZUVmgmsP4 .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZUVmgmsP4 .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZUVmgmsP4 .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-tZUVmgmsP4 .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZUVmgmsP4 .list {
    margin-bottom: 40px;
  }
}
.cid-tZUVmgmsP4 .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZUVmgmsP4 .list .item-wrap:hover,
.cid-tZUVmgmsP4 .list .item-wrap:focus {
  color: #181818;
}
.cid-tZUVmgmsP4 .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZUVmgmsP4 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZUVmgmsP4 .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-tZUVmgmsP4 .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-tZUVmgmsP4 .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZUVmgmsP4 .contacts-wrapper .list .item-wrap:hover,
.cid-tZUVmgmsP4 .contacts-wrapper .list .item-wrap:focus {
  color: #181818;
}
.cid-tZUVmgmsP4 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tZUVmgmsP4 .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-tZUVmgmsP4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-tZUVmgmsP4 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #181818;
}
.cid-tZUVmgmsP4 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.cid-tZUVmgmsP4 .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tZUVmgmsP4 .list-title {
  color: #becdc2;
}
.cid-tZUVmgmsP4 .list,
.cid-tZUVmgmsP4 .item-wrap {
  color: #ffffff;
}
.cid-tZUVmgmsP4 .list-title,
.cid-tZUVmgmsP4 .social-wrapper {
  color: #ffffff;
}
.cid-tZVuI7i6fG .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-tZVuI7i6fG .nav-item:focus,
.cid-tZVuI7i6fG .nav-link:focus {
  outline: none;
}
.cid-tZVuI7i6fG .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tZVuI7i6fG .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-tZVuI7i6fG .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tZVuI7i6fG .dropdown .dropdown-menu .dropdown-item:active,
.cid-tZVuI7i6fG .dropdown .dropdown-menu .dropdown-item:focus {
  color: #f7ed4a !important;
}
.cid-tZVuI7i6fG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZVuI7i6fG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZVuI7i6fG .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-tZVuI7i6fG .navbar-caption:hover {
  color: inherit!important;
}
.cid-tZVuI7i6fG .container {
  max-width: 1380px;
}
.cid-tZVuI7i6fG .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tZVuI7i6fG .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tZVuI7i6fG .nav-link:hover,
.cid-tZVuI7i6fG .nav-link:active,
.cid-tZVuI7i6fG .nav-link:focus {
  border-bottom: 3px solid #f7ed4a;
  color: #f7ed4a !important;
}
.cid-tZVuI7i6fG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ed6436;
}
.cid-tZVuI7i6fG .navbar.opened {
  transition: all .3s;
  background: #ed6436 !important;
}
.cid-tZVuI7i6fG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZVuI7i6fG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZVuI7i6fG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZVuI7i6fG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZVuI7i6fG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tZVuI7i6fG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZVuI7i6fG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZVuI7i6fG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZVuI7i6fG .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-tZVuI7i6fG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZVuI7i6fG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZVuI7i6fG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZVuI7i6fG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZVuI7i6fG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZVuI7i6fG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZVuI7i6fG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZVuI7i6fG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZVuI7i6fG .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-tZVuI7i6fG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZVuI7i6fG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZVuI7i6fG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZVuI7i6fG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZVuI7i6fG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZVuI7i6fG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZVuI7i6fG .navbar.navbar-short {
  background: #ed6436 !important;
  min-height: 60px;
}
.cid-tZVuI7i6fG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZVuI7i6fG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZVuI7i6fG .icons-menu span {
  color: #ed6436 !important;
}
.cid-tZVuI7i6fG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZVuI7i6fG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZVuI7i6fG .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-tZVuI7i6fG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZVuI7i6fG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZVuI7i6fG .dropdown-item.active,
.cid-tZVuI7i6fG .dropdown-item:active {
  background-color: transparent;
}
.cid-tZVuI7i6fG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZVuI7i6fG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZVuI7i6fG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZVuI7i6fG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ed6436;
}
.cid-tZVuI7i6fG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZVuI7i6fG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZVuI7i6fG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZVuI7i6fG .navbar-buttons {
  text-align: center;
}
.cid-tZVuI7i6fG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZVuI7i6fG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tZVuI7i6fG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZVuI7i6fG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZVuI7i6fG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZVuI7i6fG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZVuI7i6fG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZVuI7i6fG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZVuI7i6fG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZVuI7i6fG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZVuI7i6fG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZVuI7i6fG a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tZVuI7i6fG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZVuI7i6fG .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-tZVuI7i6fG .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZVuI7i6fG .navbar {
    height: 77px;
  }
  .cid-tZVuI7i6fG .navbar.opened {
    height: auto;
  }
  .cid-tZVuI7i6fG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZVuI801xT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZVuI801xT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuI801xT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuI801xT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZVuI801xT .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuI801xT .container {
    padding: 0 24px;
  }
}
.cid-tZVuI801xT .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-tZVuI801xT .content-wrapper {
    padding: 0;
  }
}
.cid-tZVuI801xT .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tZVuI801xT .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #ed6436;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-tZVuI801xT .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-tZVuI801xT .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tZVuI801xT .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-tZVuI801xT .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZVuI801xT .mbr-section-title {
  color: #141414;
}
.cid-tZVuI801xT .mbr-desc {
  color: #141414;
}
.cid-tZVuI801xT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZVuI801xT .mbr-section-title,
.cid-tZVuI801xT .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuI8ua0s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
.cid-tZVuI8ua0s li {
  list-style: none;
}
.cid-tZVuI8ua0s .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tZVuI8ua0s .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-tZVuI8ua0s .mbr-iconfont {
  font-size: 22px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-tZVuI8ua0s h4 {
  margin: 0;
}
.cid-tZVuI8ua0s ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tZVuI8ua0s .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-tZVuI8ua0s .col-title2 {
  color: #ed6436;
}
.cid-tZVuI8ua0s .mbr-text,
.cid-tZVuI8ua0s .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuI8ua0s .item1 {
  color: #ffffff;
}
.cid-tZVuI8YKUu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZVuI8YKUu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuI8YKUu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuI8YKUu .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZVuI8YKUu .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuI8YKUu .container {
    padding: 0 24px;
  }
}
.cid-tZVuI8YKUu .row {
  justify-content: center;
}
.cid-tZVuI8YKUu .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZVuI8YKUu .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZVuI8YKUu .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-tZVuI8YKUu .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVuI8YKUu .mbr-section-title {
  color: #141414;
}
.cid-tZVuI8YKUu .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-tZVuI9dULf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZVuI9dULf .mbr-text {
  color: #767676;
}
.cid-tZVuI9dULf .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem !important;
}
.cid-tZVuI9dULf .card-img {
  margin-bottom: 3rem;
}
.cid-tZVuI9dULf .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZVuI9dULf .link {
  margin: 0;
}
.cid-tZVuI9dULf p {
  font-weight: 400;
}
.cid-tZVuI9dULf .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tZVuI9dULf .link a:hover {
  color: #181818 !important;
}
.cid-tZVuI9dULf .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZVuI9dULf .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZVuI9dULf .card {
    margin-bottom: 3rem;
  }
}
.cid-tZVuI9dULf .mbr-text,
.cid-tZVuI9dULf .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZVuI9dULf .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZVuI9dULf .card-title,
.cid-tZVuI9dULf .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuI9GfdG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZVuI9GfdG .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVuI9GfdG .content {
    padding: 0 2rem;
  }
}
.cid-tZVuI9GfdG .img-col {
  padding: 0;
}
.cid-tZVuI9GfdG .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZVuI9GfdG .icon-wrap h3 {
  margin: 0;
}
.cid-tZVuI9GfdG .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZVuI9GfdG .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZVuI9GfdG .icon-title,
.cid-tZVuI9GfdG .mbr-iconfont {
  color: #181818;
}
.cid-tZVuI9GfdG .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZVuI9GfdG .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZVuI9GfdG .icons-wrap {
    flex-direction: column;
  }
  .cid-tZVuI9GfdG .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZVuIa2Kg2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ed6436;
}
.cid-tZVuIa2Kg2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuIa2Kg2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuIa2Kg2 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZVuIa2Kg2 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIa2Kg2 .container {
    padding: 0 24px;
  }
}
.cid-tZVuIa2Kg2 .row {
  justify-content: center;
}
.cid-tZVuIa2Kg2 .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZVuIa2Kg2 .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZVuIa2Kg2 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ed6436;
  border-radius: .75rem;
}
.cid-tZVuIa2Kg2 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVuIa2Kg2 .mbr-section-title {
  color: #141414;
}
.cid-tZVuIa2Kg2 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZVuIa2Kg2 .mbr-desc,
.cid-tZVuIa2Kg2 .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuIajd50 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZVuIajd50 .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVuIajd50 .content {
    padding: 0 2rem;
  }
}
.cid-tZVuIajd50 .row {
  justify-content: flex-end;
}
.cid-tZVuIajd50 .img-col {
  padding: 0;
}
.cid-tZVuIajd50 .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZVuIajd50 .icon-wrap h3 {
  margin: 0;
}
.cid-tZVuIajd50 .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZVuIajd50 .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZVuIajd50 .icon-title,
.cid-tZVuIajd50 .mbr-iconfont {
  color: #181818;
}
.cid-tZVuIajd50 .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZVuIajd50 .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZVuIajd50 .icons-wrap {
    flex-direction: column;
  }
  .cid-tZVuIajd50 .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZVuIajd50 H1 {
  text-align: center;
}
.cid-tZVuIajd50 .mbr-text,
.cid-tZVuIajd50 .mbr-section-btn,
.cid-tZVuIajd50 .content {
  text-align: center;
}
.cid-tZVuIaAYzT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZVuIaAYzT .mbr-text {
  color: #767676;
}
.cid-tZVuIaAYzT .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem!important;
}
.cid-tZVuIaAYzT .card-img {
  margin-bottom: 3rem;
}
.cid-tZVuIaAYzT .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZVuIaAYzT .link {
  margin: 0;
}
.cid-tZVuIaAYzT p {
  font-weight: 400;
}
.cid-tZVuIaAYzT .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s;
}
.cid-tZVuIaAYzT .link a:hover {
  color: #181818 !important;
}
.cid-tZVuIaAYzT .link a:after {
  position: absolute;
  content: "\e967";
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZVuIaAYzT .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZVuIaAYzT .card {
    margin-bottom: 3rem;
  }
}
.cid-tZVuIaAYzT .mbr-text,
.cid-tZVuIaAYzT .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZVuIaAYzT .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZVuIaAYzT .card-title,
.cid-tZVuIaAYzT .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuIb1bte {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #7aba59;
}
.cid-tZVuIb1bte .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuIb1bte .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuIb1bte .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZVuIb1bte .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVuIb1bte .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIb1bte .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVuIb1bte .container {
    padding: 0 16px;
  }
}
.cid-tZVuIb1bte .row {
  padding: 60px 44px;
  background-color: #7aba59;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-tZVuIb1bte .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIb1bte .row {
    padding: 25px 9px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIb1bte .title-wrapper {
    margin-bottom: 16px;
  }
}
.cid-tZVuIb1bte .title-wrapper .icon-wrapper {
  margin-bottom: 32px;
}
.cid-tZVuIb1bte .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 180px;
  display: inline-flex;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tZVuIb1bte .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tZVuIb1bte .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tZVuIb1bte .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tZVuIb1bte .content-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tZVuIb1bte .content-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-tZVuIb1bte .content-wrapper .mbr-name {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid #979797;
}
.cid-tZVuIb1bte .mbr-section-title {
  color: #000000;
}
.cid-tZVuIb1bte .mbr-text {
  color: #000000;
}
.cid-tZVuIb1bte .mbr-name {
  color: #000000;
}
.cid-tZVuIb1bte .mbr-section-title,
.cid-tZVuIb1bte .icon-wrapper {
  text-align: center;
}
.cid-tZVuIbnELW {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ed6436;
}
.cid-tZVuIbnELW .accordion .card {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tZVuIbnELW .acc {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVuIbnELW .acc {
    padding: 0 2rem;
  }
}
.cid-tZVuIbnELW .img-col {
  padding: 0;
}
.cid-tZVuIbnELW .card {
  border: 1px solid lightgray!important;
  border-radius: 20px!important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-tZVuIbnELW .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-tZVuIbnELW .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-tZVuIbnELW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tZVuIbnELW .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
}
.cid-tZVuIbnELW .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tZVuIbnELW .card .panel-body {
  color: #767676;
}
.cid-tZVuIbnELW .card:hover {
  background: #7aba59;
}
.cid-tZVuIbnELW .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-tZVuIbnELW .panel-title {
  display: flex!important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-tZVuIbnELW .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tZVuIbnELW .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-tZVuIbnELW .panel-collapse {
  margin-top: -1px;
}
.cid-tZVuIbnELW H4 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZVuIbnELW .img-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZVuIbnELW .panel-text {
    padding: 0 0.5rem;
  }
  .cid-tZVuIbnELW .icon-left {
    margin-left: 0.5rem;
  }
  .cid-tZVuIbnELW .sign {
    margin-right: 0.5rem;
  }
}
.cid-tZVuIbnELW H2 {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuIbSVTN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZVuIbSVTN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuIbSVTN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuIbSVTN .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZVuIbSVTN .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVuIbSVTN .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIbSVTN .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVuIbSVTN .container {
    padding: 0 16px;
  }
}
.cid-tZVuIbSVTN .row {
  justify-content: center;
}
.cid-tZVuIbSVTN .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZVuIbSVTN .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZVuIbSVTN .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVuIbSVTN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZVuIbSVTN .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZVuIbSVTN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZVuIc7Dek {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
@media (min-width: 992px) {
  .cid-tZVuIc7Dek .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVuIc7Dek .content {
    padding: 0 2rem;
  }
}
.cid-tZVuIc7Dek .row {
  justify-content: flex-end;
}
.cid-tZVuIc7Dek .img-col {
  padding: 0;
}
.cid-tZVuIc7Dek .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tZVuIc7Dek .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-tZVuIc7Dek .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZVuIc7Dek .mbr-iconfont {
  font-size: 3.5rem;
  color: #ffffff !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-tZVuIc7Dek .icon-title,
.cid-tZVuIc7Dek .mbr-iconfont {
  color: #ffffff;
}
.cid-tZVuIc7Dek .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZVuIc7Dek .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZVuIc7Dek .icons-wrap {
    flex-direction: column;
  }
  .cid-tZVuIc7Dek .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-tZVuIc7Dek .link-wrap {
    margin: auto;
  }
  .cid-tZVuIc7Dek .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-tZVuIc7Dek .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tZVuIc7Dek .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-tZVuIc7Dek .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-tZVuIc7Dek .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-tZVuIc7Dek .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-tZVuIc7Dek H1 {
  text-align: center;
}
.cid-tZVuIc7Dek .mbr-text,
.cid-tZVuIc7Dek .mbr-section-btn,
.cid-tZVuIc7Dek .content {
  text-align: left;
  color: #ffffff;
}
.cid-tZVuIc7Dek H3 {
  color: #ffffff;
}
.cid-tZVuIctqYA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZVuIctqYA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuIctqYA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuIctqYA .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZVuIctqYA .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVuIctqYA .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIctqYA .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVuIctqYA .container {
    padding: 0 16px;
  }
}
.cid-tZVuIctqYA .row {
  justify-content: center;
}
.cid-tZVuIctqYA .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZVuIctqYA .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZVuIctqYA .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVuIctqYA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZVuIctqYA .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZVuIctqYA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZVuIcMzWL {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ed6436;
}
.cid-tZVuIcMzWL .accordion .card {
  overflow: hidden;
}
.cid-tZVuIcMzWL .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-tZVuIcMzWL .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-tZVuIcMzWL .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-tZVuIcMzWL .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tZVuIcMzWL .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-tZVuIcMzWL .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tZVuIcMzWL .card .panel-body {
  color: #767676;
}
.cid-tZVuIcMzWL .card:hover {
  background: #7aba59;
}
.cid-tZVuIcMzWL .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-tZVuIcMzWL .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-tZVuIcMzWL .mbri-arrow-down:before {
  content: '\e960';
}
.cid-tZVuIcMzWL .panel-text {
  padding: 0rem;
  color: #141414;
}
.cid-tZVuIcMzWL .panel-collapse {
  margin-top: -1px;
}
.cid-tZVuIcMzWL H4 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZVuIcMzWL .panel-text {
    padding: 0 0.5rem;
  }
  .cid-tZVuIcMzWL .icon-left {
    margin-left: 0.5rem;
  }
  .cid-tZVuIcMzWL .sign {
    margin-right: 0.5rem;
  }
}
.cid-tZVuIcMzWL .text {
  text-align: center;
  color: #ffffff;
}
.cid-tZVuIdxuT1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
.cid-tZVuIdxuT1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZVuIdxuT1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZVuIdxuT1 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZVuIdxuT1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZVuIdxuT1 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tZVuIeaADq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ed6436;
  flex-direction: column;
  justify-content: center;
}
.cid-tZVuIeaADq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVuIeaADq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVuIeaADq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZVuIeaADq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZVuIeaADq .container {
    padding: 0 16px;
  }
}
.cid-tZVuIeaADq .row {
  justify-content: center;
}
.cid-tZVuIeaADq .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZVuIeaADq .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZVuIeaADq .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-tZVuIeaADq .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZVuIeaADq .list {
    margin-bottom: 40px;
  }
}
.cid-tZVuIeaADq .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZVuIeaADq .list .item-wrap:hover,
.cid-tZVuIeaADq .list .item-wrap:focus {
  color: #181818;
}
.cid-tZVuIeaADq .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZVuIeaADq .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZVuIeaADq .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-tZVuIeaADq .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-tZVuIeaADq .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZVuIeaADq .contacts-wrapper .list .item-wrap:hover,
.cid-tZVuIeaADq .contacts-wrapper .list .item-wrap:focus {
  color: #181818;
}
.cid-tZVuIeaADq .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tZVuIeaADq .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-tZVuIeaADq .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-tZVuIeaADq .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #181818;
}
.cid-tZVuIeaADq .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.cid-tZVuIeaADq .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tZVuIeaADq .list-title {
  color: #becdc2;
}
.cid-tZVuIeaADq .list,
.cid-tZVuIeaADq .item-wrap {
  color: #ffffff;
}
.cid-tZVuIeaADq .list-title,
.cid-tZVuIeaADq .social-wrapper {
  color: #ffffff;
}
.cid-tZVzFdyJ1M .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-tZVzFdyJ1M .nav-item:focus,
.cid-tZVzFdyJ1M .nav-link:focus {
  outline: none;
}
.cid-tZVzFdyJ1M .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tZVzFdyJ1M .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-tZVzFdyJ1M .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tZVzFdyJ1M .dropdown .dropdown-menu .dropdown-item:active,
.cid-tZVzFdyJ1M .dropdown .dropdown-menu .dropdown-item:focus {
  color: #f7ed4a !important;
}
.cid-tZVzFdyJ1M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZVzFdyJ1M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZVzFdyJ1M .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-tZVzFdyJ1M .navbar-caption:hover {
  color: inherit!important;
}
.cid-tZVzFdyJ1M .container {
  max-width: 1380px;
}
.cid-tZVzFdyJ1M .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tZVzFdyJ1M .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tZVzFdyJ1M .nav-link:hover,
.cid-tZVzFdyJ1M .nav-link:active,
.cid-tZVzFdyJ1M .nav-link:focus {
  border-bottom: 3px solid #f7ed4a;
  color: #f7ed4a !important;
}
.cid-tZVzFdyJ1M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ed6436;
}
.cid-tZVzFdyJ1M .navbar.opened {
  transition: all .3s;
  background: #ed6436 !important;
}
.cid-tZVzFdyJ1M .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZVzFdyJ1M .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZVzFdyJ1M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZVzFdyJ1M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZVzFdyJ1M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tZVzFdyJ1M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZVzFdyJ1M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZVzFdyJ1M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZVzFdyJ1M .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-tZVzFdyJ1M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZVzFdyJ1M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZVzFdyJ1M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZVzFdyJ1M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZVzFdyJ1M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZVzFdyJ1M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZVzFdyJ1M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZVzFdyJ1M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZVzFdyJ1M .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-tZVzFdyJ1M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZVzFdyJ1M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZVzFdyJ1M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZVzFdyJ1M .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZVzFdyJ1M .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZVzFdyJ1M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZVzFdyJ1M .navbar.navbar-short {
  background: #ed6436 !important;
  min-height: 60px;
}
.cid-tZVzFdyJ1M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZVzFdyJ1M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZVzFdyJ1M .icons-menu span {
  color: #ed6436 !important;
}
.cid-tZVzFdyJ1M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZVzFdyJ1M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZVzFdyJ1M .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-tZVzFdyJ1M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZVzFdyJ1M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZVzFdyJ1M .dropdown-item.active,
.cid-tZVzFdyJ1M .dropdown-item:active {
  background-color: transparent;
}
.cid-tZVzFdyJ1M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZVzFdyJ1M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZVzFdyJ1M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZVzFdyJ1M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ed6436;
}
.cid-tZVzFdyJ1M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZVzFdyJ1M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZVzFdyJ1M ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZVzFdyJ1M .navbar-buttons {
  text-align: center;
}
.cid-tZVzFdyJ1M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZVzFdyJ1M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tZVzFdyJ1M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZVzFdyJ1M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZVzFdyJ1M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZVzFdyJ1M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZVzFdyJ1M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZVzFdyJ1M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZVzFdyJ1M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZVzFdyJ1M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZVzFdyJ1M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZVzFdyJ1M a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tZVzFdyJ1M .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tZVzFdyJ1M .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-tZVzFdyJ1M .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZVzFdyJ1M .navbar {
    height: 77px;
  }
  .cid-tZVzFdyJ1M .navbar.opened {
    height: auto;
  }
  .cid-tZVzFdyJ1M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZVzFermND {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZVzFermND .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFermND .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFermND .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZVzFermND .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFermND .container {
    padding: 0 24px;
  }
}
.cid-tZVzFermND .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-tZVzFermND .content-wrapper {
    padding: 0;
  }
}
.cid-tZVzFermND .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tZVzFermND .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #ed6436;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-tZVzFermND .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-tZVzFermND .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFermND .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-tZVzFermND .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-tZVzFermND .mbr-section-title {
  color: #141414;
}
.cid-tZVzFermND .mbr-desc {
  color: #141414;
}
.cid-tZVzFermND .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZVzFermND .mbr-section-title,
.cid-tZVzFermND .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFf0RF6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
.cid-tZVzFf0RF6 li {
  list-style: none;
}
.cid-tZVzFf0RF6 .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tZVzFf0RF6 .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-tZVzFf0RF6 .mbr-iconfont {
  font-size: 22px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-tZVzFf0RF6 h4 {
  margin: 0;
}
.cid-tZVzFf0RF6 ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tZVzFf0RF6 .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-tZVzFf0RF6 .col-title2 {
  color: #ed6436;
}
.cid-tZVzFf0RF6 .mbr-text,
.cid-tZVzFf0RF6 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFf0RF6 .item1 {
  color: #ffffff;
}
.cid-tZVzFfn9Ym {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #7aba59;
}
.cid-tZVzFfn9Ym .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFfn9Ym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFfn9Ym .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZVzFfn9Ym .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFfn9Ym .container {
    padding: 0 24px;
  }
}
.cid-tZVzFfn9Ym .row {
  justify-content: center;
}
.cid-tZVzFfn9Ym .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZVzFfn9Ym .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZVzFfn9Ym .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-tZVzFfn9Ym .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVzFfn9Ym .mbr-section-title {
  color: #141414;
}
.cid-tZVzFfn9Ym .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-tZVzFfD5QD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZVzFfD5QD .mbr-text {
  color: #767676;
}
.cid-tZVzFfD5QD .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem !important;
}
.cid-tZVzFfD5QD .card-img {
  margin-bottom: 3rem;
}
.cid-tZVzFfD5QD .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZVzFfD5QD .link {
  margin: 0;
}
.cid-tZVzFfD5QD p {
  font-weight: 400;
}
.cid-tZVzFfD5QD .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tZVzFfD5QD .link a:hover {
  color: #181818 !important;
}
.cid-tZVzFfD5QD .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZVzFfD5QD .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZVzFfD5QD .card {
    margin-bottom: 3rem;
  }
}
.cid-tZVzFfD5QD .mbr-text,
.cid-tZVzFfD5QD .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZVzFfD5QD .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZVzFfD5QD .card-title,
.cid-tZVzFfD5QD .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFg7ZQX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZVzFg7ZQX .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVzFg7ZQX .content {
    padding: 0 2rem;
  }
}
.cid-tZVzFg7ZQX .img-col {
  padding: 0;
}
.cid-tZVzFg7ZQX .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZVzFg7ZQX .icon-wrap h3 {
  margin: 0;
}
.cid-tZVzFg7ZQX .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZVzFg7ZQX .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZVzFg7ZQX .icon-title,
.cid-tZVzFg7ZQX .mbr-iconfont {
  color: #181818;
}
.cid-tZVzFg7ZQX .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZVzFg7ZQX .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZVzFg7ZQX .icons-wrap {
    flex-direction: column;
  }
  .cid-tZVzFg7ZQX .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZVzFgpzmZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ed6436;
}
.cid-tZVzFgpzmZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFgpzmZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFgpzmZ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tZVzFgpzmZ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFgpzmZ .container {
    padding: 0 24px;
  }
}
.cid-tZVzFgpzmZ .row {
  justify-content: center;
}
.cid-tZVzFgpzmZ .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tZVzFgpzmZ .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tZVzFgpzmZ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ed6436;
  border-radius: .75rem;
}
.cid-tZVzFgpzmZ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVzFgpzmZ .mbr-section-title {
  color: #141414;
}
.cid-tZVzFgpzmZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tZVzFgpzmZ .mbr-desc,
.cid-tZVzFgpzmZ .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFgKCuN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #7aba59;
}
@media (min-width: 992px) {
  .cid-tZVzFgKCuN .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVzFgKCuN .content {
    padding: 0 2rem;
  }
}
.cid-tZVzFgKCuN .row {
  justify-content: flex-end;
}
.cid-tZVzFgKCuN .img-col {
  padding: 0;
}
.cid-tZVzFgKCuN .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-tZVzFgKCuN .icon-wrap h3 {
  margin: 0;
}
.cid-tZVzFgKCuN .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZVzFgKCuN .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-tZVzFgKCuN .icon-title,
.cid-tZVzFgKCuN .mbr-iconfont {
  color: #181818;
}
.cid-tZVzFgKCuN .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZVzFgKCuN .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZVzFgKCuN .icons-wrap {
    flex-direction: column;
  }
  .cid-tZVzFgKCuN .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-tZVzFgKCuN H1 {
  text-align: center;
}
.cid-tZVzFgKCuN .mbr-text,
.cid-tZVzFgKCuN .mbr-section-btn,
.cid-tZVzFgKCuN .content {
  text-align: center;
}
.cid-tZVzFh1K15 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ed6436;
}
.cid-tZVzFh1K15 .mbr-text {
  color: #767676;
}
.cid-tZVzFh1K15 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4rem!important;
}
.cid-tZVzFh1K15 .card-img {
  margin-bottom: 3rem;
}
.cid-tZVzFh1K15 .card-wrapper {
  background: #ed6436;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tZVzFh1K15 .link {
  margin: 0;
}
.cid-tZVzFh1K15 p {
  font-weight: 400;
}
.cid-tZVzFh1K15 .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s;
}
.cid-tZVzFh1K15 .link a:hover {
  color: #181818 !important;
}
.cid-tZVzFh1K15 .link a:after {
  position: absolute;
  content: "\e967";
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tZVzFh1K15 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tZVzFh1K15 .card {
    margin-bottom: 3rem;
  }
}
.cid-tZVzFh1K15 .mbr-text,
.cid-tZVzFh1K15 .link {
  color: #383838;
}
@media (max-width: 767px) {
  .cid-tZVzFh1K15 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tZVzFh1K15 .card-title,
.cid-tZVzFh1K15 .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFhwu6K {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #7aba59;
}
.cid-tZVzFhwu6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFhwu6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFhwu6K .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZVzFhwu6K .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVzFhwu6K .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFhwu6K .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVzFhwu6K .container {
    padding: 0 16px;
  }
}
.cid-tZVzFhwu6K .row {
  padding: 60px 44px;
  background-color: #7aba59;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-tZVzFhwu6K .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFhwu6K .row {
    padding: 25px 9px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFhwu6K .title-wrapper {
    margin-bottom: 16px;
  }
}
.cid-tZVzFhwu6K .title-wrapper .icon-wrapper {
  margin-bottom: 32px;
}
.cid-tZVzFhwu6K .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 180px;
  display: inline-flex;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tZVzFhwu6K .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tZVzFhwu6K .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tZVzFhwu6K .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tZVzFhwu6K .content-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tZVzFhwu6K .content-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-tZVzFhwu6K .content-wrapper .mbr-name {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid #979797;
}
.cid-tZVzFhwu6K .mbr-section-title {
  color: #000000;
}
.cid-tZVzFhwu6K .mbr-text {
  color: #000000;
}
.cid-tZVzFhwu6K .mbr-name {
  color: #000000;
}
.cid-tZVzFhwu6K .mbr-section-title,
.cid-tZVzFhwu6K .icon-wrapper {
  text-align: center;
}
.cid-tZVzFhMk8m {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ed6436;
}
.cid-tZVzFhMk8m .accordion .card {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tZVzFhMk8m .acc {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVzFhMk8m .acc {
    padding: 0 2rem;
  }
}
.cid-tZVzFhMk8m .img-col {
  padding: 0;
}
.cid-tZVzFhMk8m .card {
  border: 1px solid lightgray!important;
  border-radius: 20px!important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-tZVzFhMk8m .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-tZVzFhMk8m .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-tZVzFhMk8m .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tZVzFhMk8m .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
}
.cid-tZVzFhMk8m .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tZVzFhMk8m .card .panel-body {
  color: #767676;
}
.cid-tZVzFhMk8m .card:hover {
  background: #7aba59;
}
.cid-tZVzFhMk8m .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-tZVzFhMk8m .panel-title {
  display: flex!important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-tZVzFhMk8m .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tZVzFhMk8m .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-tZVzFhMk8m .panel-collapse {
  margin-top: -1px;
}
.cid-tZVzFhMk8m H4 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZVzFhMk8m .img-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZVzFhMk8m .panel-text {
    padding: 0 0.5rem;
  }
  .cid-tZVzFhMk8m .icon-left {
    margin-left: 0.5rem;
  }
  .cid-tZVzFhMk8m .sign {
    margin-right: 0.5rem;
  }
}
.cid-tZVzFhMk8m H2 {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFiiS3I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZVzFiiS3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFiiS3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFiiS3I .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZVzFiiS3I .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVzFiiS3I .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFiiS3I .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVzFiiS3I .container {
    padding: 0 16px;
  }
}
.cid-tZVzFiiS3I .row {
  justify-content: center;
}
.cid-tZVzFiiS3I .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZVzFiiS3I .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZVzFiiS3I .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVzFiiS3I .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZVzFiiS3I .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZVzFiiS3I .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZVzFiIywz {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ed6436;
}
@media (min-width: 992px) {
  .cid-tZVzFiIywz .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-tZVzFiIywz .content {
    padding: 0 2rem;
  }
}
.cid-tZVzFiIywz .row {
  justify-content: flex-end;
}
.cid-tZVzFiIywz .img-col {
  padding: 0;
}
.cid-tZVzFiIywz .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tZVzFiIywz .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-tZVzFiIywz .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-tZVzFiIywz .mbr-iconfont {
  font-size: 3.5rem;
  color: #ffffff !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-tZVzFiIywz .icon-title,
.cid-tZVzFiIywz .mbr-iconfont {
  color: #ffffff;
}
.cid-tZVzFiIywz .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tZVzFiIywz .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tZVzFiIywz .icons-wrap {
    flex-direction: column;
  }
  .cid-tZVzFiIywz .icon-wrap {
    margin-right: 0rem;
    flex-direction: column;
  }
  .cid-tZVzFiIywz .link-wrap {
    margin: auto;
  }
  .cid-tZVzFiIywz .align-wrap {
    width: 100%;
    text-align: center;
  }
  .cid-tZVzFiIywz .mbr-iconfont {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tZVzFiIywz .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-tZVzFiIywz .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-tZVzFiIywz .link-wrap h3 {
  z-index: 10;
  margin: 0;
  transform: rotate(-6deg);
}
.cid-tZVzFiIywz .link-wrap:hover {
  transform: rotate(12deg);
}
.cid-tZVzFiIywz H1 {
  text-align: center;
}
.cid-tZVzFiIywz .mbr-text,
.cid-tZVzFiIywz .mbr-section-btn,
.cid-tZVzFiIywz .content {
  text-align: left;
  color: #ffffff;
}
.cid-tZVzFiIywz H3 {
  color: #ffffff;
}
.cid-tZVzFj4GtL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7aba59;
}
.cid-tZVzFj4GtL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFj4GtL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFj4GtL .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tZVzFj4GtL .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVzFj4GtL .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFj4GtL .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-tZVzFj4GtL .container {
    padding: 0 16px;
  }
}
.cid-tZVzFj4GtL .row {
  justify-content: center;
}
.cid-tZVzFj4GtL .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-tZVzFj4GtL .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tZVzFj4GtL .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tZVzFj4GtL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZVzFj4GtL .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tZVzFj4GtL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tZVHs3O8tR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tZVHs3O8tR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVHs3O8tR .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-tZVHs3O8tR .container {
    padding: 0 20px;
  }
}
.cid-tZVHs3O8tR .row {
  margin: 0;
}
.cid-tZVHs3O8tR .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tZVHs3O8tR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tZVHs3O8tR .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tZVHs3O8tR .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tZVHs3O8tR .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tZVHs3O8tR .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tZVHs3O8tR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZVzFjkM8Z {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ed6436;
}
.cid-tZVzFjkM8Z .accordion .card {
  overflow: hidden;
}
.cid-tZVzFjkM8Z .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-tZVzFjkM8Z .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-tZVzFjkM8Z .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-tZVzFjkM8Z .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tZVzFjkM8Z .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-tZVzFjkM8Z .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tZVzFjkM8Z .card .panel-body {
  color: #767676;
}
.cid-tZVzFjkM8Z .card:hover {
  background: #7aba59;
}
.cid-tZVzFjkM8Z .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #7aba59;
}
.cid-tZVzFjkM8Z .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-tZVzFjkM8Z .mbri-arrow-down:before {
  content: '\e960';
}
.cid-tZVzFjkM8Z .panel-text {
  padding: 0rem;
  color: #141414;
}
.cid-tZVzFjkM8Z .panel-collapse {
  margin-top: -1px;
}
.cid-tZVzFjkM8Z H4 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZVzFjkM8Z .panel-text {
    padding: 0 0.5rem;
  }
  .cid-tZVzFjkM8Z .icon-left {
    margin-left: 0.5rem;
  }
  .cid-tZVzFjkM8Z .sign {
    margin-right: 0.5rem;
  }
}
.cid-tZVzFjkM8Z .text {
  text-align: center;
  color: #ffffff;
}
.cid-tZVzFjGq7Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #7aba59;
}
.cid-tZVzFjGq7Y .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZVzFjGq7Y .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZVzFjGq7Y .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZVzFjGq7Y .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZVzFjGq7Y .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tZVzFk3roV {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ed6436;
  flex-direction: column;
  justify-content: center;
}
.cid-tZVzFk3roV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZVzFk3roV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZVzFk3roV .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZVzFk3roV .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZVzFk3roV .container {
    padding: 0 16px;
  }
}
.cid-tZVzFk3roV .row {
  justify-content: center;
}
.cid-tZVzFk3roV .logo-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZVzFk3roV .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZVzFk3roV .logo-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cid-tZVzFk3roV .list {
  padding: 0;
  margin-bottom: 128px;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tZVzFk3roV .list {
    margin-bottom: 40px;
  }
}
.cid-tZVzFk3roV .list .item-wrap {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZVzFk3roV .list .item-wrap:hover,
.cid-tZVzFk3roV .list .item-wrap:focus {
  color: #181818;
}
.cid-tZVzFk3roV .contacts-wrapper {
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-tZVzFk3roV .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tZVzFk3roV .contacts-wrapper .list-title {
  margin-bottom: 20px;
}
.cid-tZVzFk3roV .contacts-wrapper .list {
  margin-bottom: 20px;
  padding: 0;
  list-style-type: none;
}
.cid-tZVzFk3roV .contacts-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-tZVzFk3roV .contacts-wrapper .list .item-wrap:hover,
.cid-tZVzFk3roV .contacts-wrapper .list .item-wrap:focus {
  color: #181818;
}
.cid-tZVzFk3roV .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tZVzFk3roV .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}
.cid-tZVzFk3roV .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-tZVzFk3roV .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #181818;
}
.cid-tZVzFk3roV .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 24px;
  color: #181818;
  transition: all 0.3s ease-in-out;
}
.cid-tZVzFk3roV .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-tZVzFk3roV .list-title {
  color: #becdc2;
}
.cid-tZVzFk3roV .list,
.cid-tZVzFk3roV .item-wrap {
  color: #ffffff;
}
.cid-tZVzFk3roV .list-title,
.cid-tZVzFk3roV .social-wrapper {
  color: #ffffff;
}
