body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'KGJustGiveMeAReason';
  font-size: 10rem;
}
.display-2 {
  font-family: 'Comfortaa', display;
  font-size: 2.4rem;
}
.display-4 {
  font-family: 'Comfortaa', display;
  font-size: 1.4rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 0.9rem;
}
/* ---- 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: 8rem;
    font-size: calc( 4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #bd8c3d !important;
}
.bg-success {
  background-color: #545454 !important;
}
.bg-info {
  background-color: #bd8c3d !important;
}
.bg-warning {
  background-color: #29622b !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #83612a;
  border-color: #83612a;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #bd8c3d !important;
  border-color: #bd8c3d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #83612a !important;
  border-color: #83612a !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #83612a !important;
  border-color: #83612a !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #261811 !important;
  border-color: #261811 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #83612a;
  border-color: #83612a;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #bd8c3d !important;
  border-color: #bd8c3d !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #83612a !important;
  border-color: #83612a !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #83612a !important;
  border-color: #83612a !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #2e2e2e;
  border-color: #2e2e2e;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #545454 !important;
  border-color: #545454 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2e2e2e !important;
  border-color: #2e2e2e !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2e2e2e !important;
  border-color: #2e2e2e !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #122c13;
  border-color: #122c13;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #29622b !important;
  border-color: #29622b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #122c13 !important;
  border-color: #122c13 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #122c13 !important;
  border-color: #122c13 !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #bd8c3d;
  border-color: #bd8c3d;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #705324;
  color: #705324 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #bd8c3d;
  border-color: #bd8c3d;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bd8c3d !important;
  border-color: #bd8c3d !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #261811;
  border-color: #261811;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #261811;
  border-color: #261811;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #261811 !important;
  border-color: #261811 !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #bd8c3d;
  border-color: #bd8c3d;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #705324;
  color: #705324 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #bd8c3d;
  border-color: #bd8c3d;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bd8c3d !important;
  border-color: #bd8c3d !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #545454;
  border-color: #545454;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #212121;
  color: #212121 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #545454;
  border-color: #545454;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #545454 !important;
  border-color: #545454 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #29622b;
  border-color: #29622b;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #0b1a0b;
  color: #0b1a0b !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #29622b;
  border-color: #29622b;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #29622b !important;
  border-color: #29622b !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #bd8c3d !important;
}
.text-secondary {
  color: #261811 !important;
}
.text-success {
  color: #545454 !important;
}
.text-info {
  color: #bd8c3d !important;
}
.text-warning {
  color: #29622b !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #705324 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #212121 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #705324 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0b1a0b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #545454;
}
.alert-info {
  background-color: #bd8c3d;
}
.alert-warning {
  background-color: #29622b;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bd8c3d;
  border-color: #bd8c3d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bd8c3d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dfc59b;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c7c7c7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dfc59b;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #53b757;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 0.9rem;
}
blockquote {
  border-color: #bd8c3d;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #bd8c3d;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bd8c3d;
  border-bottom-color: #bd8c3d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #bd8c3d !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: #261811 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23bd8c3d' %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-qZnwZkahVh .navbar {
  padding: .5rem 0;
  background: #29622b;
  transition: none;
  min-height: 50px;
}
.cid-qZnwZkahVh .navbar-dropdown.bg-color.transparent.opened {
  background: #29622b;
}
.cid-qZnwZkahVh a {
  font-style: normal;
}
.cid-qZnwZkahVh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qZnwZkahVh .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qZnwZkahVh .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;
  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-qZnwZkahVh .content-text {
  margin-bottom: 0;
}
.cid-qZnwZkahVh .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qZnwZkahVh .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #bd8c3d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qZnwZkahVh .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qZnwZkahVh .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qZnwZkahVh .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qZnwZkahVh .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnwZkahVh .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnwZkahVh .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qZnwZkahVh .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qZnwZkahVh .nav-dropdown .link {
  font-weight: 400;
}
.cid-qZnwZkahVh .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qZnwZkahVh .content-right-side {
  text-align: center;
}
.cid-qZnwZkahVh .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qZnwZkahVh .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qZnwZkahVh .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qZnwZkahVh .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qZnwZkahVh .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qZnwZkahVh .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qZnwZkahVh .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qZnwZkahVh .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qZnwZkahVh .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qZnwZkahVh .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qZnwZkahVh .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qZnwZkahVh .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
}
@media (min-width: 992px) {
  .cid-qZnwZkahVh .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qZnwZkahVh .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qZnwZkahVh .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qZnwZkahVh .navbar {
    display: block;
    padding: 0;
  }
  .cid-qZnwZkahVh .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qZnwZkahVh .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qZnwZkahVh .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qZnwZkahVh .navbar-toggler {
    display: none;
  }
  .cid-qZnwZkahVh .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-qZnwZkahVh .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qZnwZkahVh .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qZnwZkahVh .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qZnwZkahVh .menu-logo {
  margin-right: auto;
}
.cid-qZnwZkahVh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qZnwZkahVh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qZnwZkahVh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qZnwZkahVh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qZnwZkahVh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qZnwZkahVh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qZnwZkahVh .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qZnwZkahVh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qZnwZkahVh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qZnwZkahVh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qZnwZkahVh .dropdown .dropdown-menu {
  background: #29622b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qZnwZkahVh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qZnwZkahVh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qZnwZkahVh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qZnwZkahVh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qZnwZkahVh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qZnwZkahVh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qZnwZkahVh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qZnwZkahVh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qZnwZkahVh .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qZnwZkahVh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qZnwZkahVh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qZnwZkahVh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qZnwZkahVh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qZnwZkahVh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qZnwZkahVh button.navbar-toggler:focus {
  outline: none;
}
.cid-qZnwZkahVh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-qZnwZkahVh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qZnwZkahVh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnwZkahVh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnwZkahVh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qZnwZkahVh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnwZkahVh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qZnwZkahVh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qZnwZkahVh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnwZkahVh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qZnwZkahVh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qZnwZkahVh .collapsed .btn {
  display: flex;
}
.cid-qZnwZkahVh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qZnwZkahVh .collapsed .navbar-collapse.collapsing,
.cid-qZnwZkahVh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qZnwZkahVh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qZnwZkahVh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qZnwZkahVh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qZnwZkahVh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qZnwZkahVh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qZnwZkahVh .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qZnwZkahVh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qZnwZkahVh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qZnwZkahVh .collapsed button.navbar-toggler {
  display: block;
}
.cid-qZnwZkahVh .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qZnwZkahVh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qZnwZkahVh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qZnwZkahVh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qZnwZkahVh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qZnwZkahVh .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qZnwZkahVh .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qZnwZkahVh .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qZnwZkahVh img {
    height: 3.8rem !important;
  }
  .cid-qZnwZkahVh .btn {
    display: flex;
  }
  .cid-qZnwZkahVh button.navbar-toggler {
    display: block;
  }
  .cid-qZnwZkahVh .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qZnwZkahVh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qZnwZkahVh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qZnwZkahVh .navbar-collapse.collapsing,
  .cid-qZnwZkahVh .navbar-collapse.show {
    display: block !important;
  }
  .cid-qZnwZkahVh .navbar-collapse.collapsing .navbar-nav,
  .cid-qZnwZkahVh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qZnwZkahVh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qZnwZkahVh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qZnwZkahVh .navbar-collapse.collapsing .navbar-buttons,
  .cid-qZnwZkahVh .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qZnwZkahVh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qZnwZkahVh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qZnwZkahVh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qZnwZkahVh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qZnwZkahVh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qZnwZkahVh .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qZnwZkahVh .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qZnwZkahVh .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qZnwZkahVh .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qZnwZkahVh .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qZnwZkahVh .nav-link:focus {
  outline: none;
}
.cid-qZnwZkahVh .navbar-toggler {
  position: relative;
}
.cid-qZnwZkahVh .dropdown-item.active,
.cid-qZnwZkahVh .dropdown-item:active {
  background: #29622b;
  color: initial;
}
.cid-qZnwZkahVh .nav-link:hover,
.cid-qZnwZkahVh .dropdown-item:hover {
  color: #000000;
}
.cid-qZnwZkahVh .widget-title,
.cid-qZnwZkahVh .widget-icon {
  color: #ffffff;
  text-align: center;
}
.cid-qZnwZkahVh .widget-text {
  color: #ffffff;
  text-align: center;
}
.cid-tvJQiJF0LH {
  overflow: visible;
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/africanimage-39-2000x1288.webp");
}
.cid-tvJQiJF0LH .mbr-overlay {
  background: #ffffff;
}
.cid-tvJQiJF0LH .animation {
  pointer-events: none;
}
.cid-tvJQiJF0LH .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tvJQiJF0LH .mbr-section-title {
  margin-bottom: 27px;
}
.cid-tvJQiJF0LH .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
.cid-tvJQiJF0LH .image__block {
  margin-top: 60px;
  margin-bottom: -160px;
  position: relative;
  z-index: 5;
}
.cid-tvJQiJF0LH .image__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tvJQiJF0LH .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-tvJQiJF0LH .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tvJQiJF0LH .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-tvJQiJF0LH .image__block {
    margin-bottom: -100px;
  }
}
.cid-qZ72qXBvzJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #29622b;
}
.cid-qZ72qXBvzJ .container-fluid {
  padding: 0 3rem;
}
.cid-qZ72qXBvzJ .mbr-text {
  color: #efe8cd;
}
.cid-qZ72qXBvzJ .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-qZ72qXBvzJ p {
  text-align: left;
}
.cid-qZ72qXBvzJ .card-img {
  text-align: left;
}
.cid-qZ72qXBvzJ .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: linear-gradient(45deg, #ffffff, #bd8c3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-qZ72qXBvzJ .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-qZ72qXBvzJ .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qZ72qXBvzJ .card-title,
.cid-qZ72qXBvzJ .card-img {
  color: #f4eac6;
}
.cid-tvJlEOQQHP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ba9a65;
}
.cid-tvJlEOQQHP .mbr-section-subtitle {
  color: #767676;
}
.cid-tvJlEOQQHP .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tvJlEOQQHP .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
.cid-tvJlEOQQHP .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-tvJlEOQQHP .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tvJlEOQQHP .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #000000;
}
.cid-tvJlEOQQHP .card-overlay {
  display: none;
}
.cid-tvJlEOQQHP .mbr-section-title,
.cid-tvJlEOQQHP .underline,
.cid-tvJlEOQQHP .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-tvJlEOQQHP .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJlEOQQHP .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJlEOQQHP .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJlEOQQHP .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJlEOQQHP .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJlEOQQHP .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJlEOQQHP .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJlEOQQHP .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJlEOQQHP .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-tvJlEOQQHP .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-tvJlEOQQHP .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-tvJlEOQQHP .underline .line {
    height: 2px;
  }
  .cid-tvJlEOQQHP .card-title,
  .cid-tvJlEOQQHP .underline,
  .cid-tvJlEOQQHP .mbr-text,
  .cid-tvJlEOQQHP .mbr-section-btn,
  .cid-tvJlEOQQHP .mbr-section-subtitle,
  .cid-tvJlEOQQHP .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-tvJlEOQQHP .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-tvJlEOQQHP .mbr-section-title,
  .cid-tvJlEOQQHP .underline,
  .cid-tvJlEOQQHP .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-tvJlEOQQHP .mbr-section-title,
.cid-tvJlEOQQHP .underline {
  color: #ffffff;
}
.cid-tvJlEOQQHP H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tvJlEOQQHP .mbr-text,
.cid-tvJlEOQQHP .mbr-section-btn {
  text-align: center;
}
.cid-tvJmk1bEXv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ba9a65;
}
.cid-tvJmk1bEXv .mbr-section-subtitle {
  color: #767676;
}
.cid-tvJmk1bEXv .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tvJmk1bEXv .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
.cid-tvJmk1bEXv .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-tvJmk1bEXv .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tvJmk1bEXv .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #bbbbbb;
}
.cid-tvJmk1bEXv .card-overlay {
  display: none;
}
.cid-tvJmk1bEXv .mbr-section-title,
.cid-tvJmk1bEXv .underline,
.cid-tvJmk1bEXv .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-tvJmk1bEXv .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJmk1bEXv .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJmk1bEXv .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJmk1bEXv .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-tvJmk1bEXv .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJmk1bEXv .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJmk1bEXv .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJmk1bEXv .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tvJmk1bEXv .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-tvJmk1bEXv .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-tvJmk1bEXv .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-tvJmk1bEXv .underline .line {
    height: 2px;
  }
  .cid-tvJmk1bEXv .card-title,
  .cid-tvJmk1bEXv .underline,
  .cid-tvJmk1bEXv .mbr-text,
  .cid-tvJmk1bEXv .mbr-section-btn,
  .cid-tvJmk1bEXv .mbr-section-subtitle,
  .cid-tvJmk1bEXv .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-tvJmk1bEXv .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-tvJmk1bEXv .mbr-section-title,
  .cid-tvJmk1bEXv .underline,
  .cid-tvJmk1bEXv .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-tvJmk1bEXv H3 {
  text-align: center;
}
.cid-tvJmk1bEXv .mbr-text,
.cid-tvJmk1bEXv .mbr-section-btn {
  text-align: center;
}
.cid-tJfMve9C27 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/5.1-2000x1333.webp");
}
.cid-tJfMve9C27 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tJfMve9C27 .card .card-block {
  background: #29622b;
  padding: 2rem;
  position: relative;
}
.cid-tJfMve9C27 .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #29622b;
  content: '';
  display: block;
}
.cid-tJfMve9C27 .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-tJfMve9C27 .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tJfMve9C27 .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-tJfMve9C27 .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tJfMve9C27 .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tJfMve9C27 .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-tJfMve9C27 .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-tJfMve9C27 .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-tJfMve9C27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJfMve9C27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJfMve9C27 .card-block P {
  color: #ffffff;
}
.cid-tJfOZ5P1Lx {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #29622b;
  background: linear-gradient(180deg, #29622b, #ba9a65);
}
.cid-tJfOZ5P1Lx .mbr-iconfont-social {
  font-size: 32px;
  color: #29622b;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tJfOZ5P1Lx .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tJfOZ5P1Lx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tJfOZ5P1Lx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
.cid-tJfOZ5P1Lx .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tJfOZ5P1Lx .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tJfOZ5P1Lx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJfOZ5P1Lx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJfOZ5P1Lx .mbr-section-title,
.cid-tJfOZ5P1Lx .social-list,
.cid-tJfOZ5P1Lx .underline {
  color: #ffffff;
}
.cid-tvK72HWPCc {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #29622b;
}
.cid-tvK72HWPCc svg {
  position: absolute;
  top: 0;
}
.cid-tvK72HWPCc .svg-1 {
  fill: #ba9a65;
}
.cid-tvK72HWPCc .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tvK72HWPCc {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-tvK72HWPCc .mbr-text {
  color: #ffffff;
}
.cid-tvK72HWPCc a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-qZnMx2ouMB .navbar {
  padding: .5rem 0;
  background: #29622b;
  transition: none;
  min-height: 50px;
}
.cid-qZnMx2ouMB .navbar-dropdown.bg-color.transparent.opened {
  background: #29622b;
}
.cid-qZnMx2ouMB a {
  font-style: normal;
}
.cid-qZnMx2ouMB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qZnMx2ouMB .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qZnMx2ouMB .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;
  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-qZnMx2ouMB .content-text {
  margin-bottom: 0;
}
.cid-qZnMx2ouMB .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qZnMx2ouMB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #bd8c3d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qZnMx2ouMB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qZnMx2ouMB .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qZnMx2ouMB .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qZnMx2ouMB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnMx2ouMB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnMx2ouMB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qZnMx2ouMB .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qZnMx2ouMB .nav-dropdown .link {
  font-weight: 400;
}
.cid-qZnMx2ouMB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qZnMx2ouMB .content-right-side {
  text-align: center;
}
.cid-qZnMx2ouMB .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qZnMx2ouMB .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qZnMx2ouMB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qZnMx2ouMB .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qZnMx2ouMB .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qZnMx2ouMB .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qZnMx2ouMB .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qZnMx2ouMB .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qZnMx2ouMB .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qZnMx2ouMB .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qZnMx2ouMB .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qZnMx2ouMB .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
}
@media (min-width: 992px) {
  .cid-qZnMx2ouMB .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qZnMx2ouMB .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qZnMx2ouMB .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qZnMx2ouMB .navbar {
    display: block;
    padding: 0;
  }
  .cid-qZnMx2ouMB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qZnMx2ouMB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qZnMx2ouMB .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qZnMx2ouMB .navbar-toggler {
    display: none;
  }
  .cid-qZnMx2ouMB .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-qZnMx2ouMB .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qZnMx2ouMB .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qZnMx2ouMB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qZnMx2ouMB .menu-logo {
  margin-right: auto;
}
.cid-qZnMx2ouMB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qZnMx2ouMB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qZnMx2ouMB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qZnMx2ouMB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qZnMx2ouMB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qZnMx2ouMB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qZnMx2ouMB .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qZnMx2ouMB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qZnMx2ouMB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qZnMx2ouMB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qZnMx2ouMB .dropdown .dropdown-menu {
  background: #29622b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qZnMx2ouMB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qZnMx2ouMB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qZnMx2ouMB .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qZnMx2ouMB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qZnMx2ouMB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qZnMx2ouMB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qZnMx2ouMB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qZnMx2ouMB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qZnMx2ouMB button.navbar-toggler:focus {
  outline: none;
}
.cid-qZnMx2ouMB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-qZnMx2ouMB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qZnMx2ouMB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnMx2ouMB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnMx2ouMB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qZnMx2ouMB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnMx2ouMB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qZnMx2ouMB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qZnMx2ouMB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnMx2ouMB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qZnMx2ouMB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qZnMx2ouMB .collapsed .btn {
  display: flex;
}
.cid-qZnMx2ouMB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qZnMx2ouMB .collapsed .navbar-collapse.collapsing,
.cid-qZnMx2ouMB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qZnMx2ouMB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qZnMx2ouMB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qZnMx2ouMB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qZnMx2ouMB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qZnMx2ouMB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qZnMx2ouMB .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qZnMx2ouMB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qZnMx2ouMB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qZnMx2ouMB .collapsed button.navbar-toggler {
  display: block;
}
.cid-qZnMx2ouMB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qZnMx2ouMB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qZnMx2ouMB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qZnMx2ouMB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qZnMx2ouMB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qZnMx2ouMB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qZnMx2ouMB .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qZnMx2ouMB .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qZnMx2ouMB img {
    height: 3.8rem !important;
  }
  .cid-qZnMx2ouMB .btn {
    display: flex;
  }
  .cid-qZnMx2ouMB button.navbar-toggler {
    display: block;
  }
  .cid-qZnMx2ouMB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qZnMx2ouMB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qZnMx2ouMB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qZnMx2ouMB .navbar-collapse.collapsing,
  .cid-qZnMx2ouMB .navbar-collapse.show {
    display: block !important;
  }
  .cid-qZnMx2ouMB .navbar-collapse.collapsing .navbar-nav,
  .cid-qZnMx2ouMB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qZnMx2ouMB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qZnMx2ouMB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qZnMx2ouMB .navbar-collapse.collapsing .navbar-buttons,
  .cid-qZnMx2ouMB .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qZnMx2ouMB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qZnMx2ouMB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qZnMx2ouMB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qZnMx2ouMB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qZnMx2ouMB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qZnMx2ouMB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qZnMx2ouMB .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qZnMx2ouMB .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qZnMx2ouMB .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qZnMx2ouMB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qZnMx2ouMB .nav-link:focus {
  outline: none;
}
.cid-qZnMx2ouMB .navbar-toggler {
  position: relative;
}
.cid-qZnMx2ouMB .dropdown-item.active,
.cid-qZnMx2ouMB .dropdown-item:active {
  background: #29622b;
  color: initial;
}
.cid-qZnMx2ouMB .nav-link:hover,
.cid-qZnMx2ouMB .dropdown-item:hover {
  color: #000000;
}
.cid-qZnMx2ouMB .widget-title,
.cid-qZnMx2ouMB .widget-icon {
  color: #ffffff;
  text-align: center;
}
.cid-qZnMx2ouMB .widget-text {
  color: #ffffff;
  text-align: center;
}
.cid-qZ77MRQ9cn {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qZ77MRQ9cn p {
  color: #767676;
}
.cid-qZ77MRQ9cn .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qZ77MRQ9cn .row-element,
.cid-qZ77MRQ9cn .image-element {
  padding: 0;
}
.cid-qZ77MRQ9cn .image-element {
  display: flex;
  justify-content: center;
}
.cid-qZ77MRQ9cn .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qZ77MRQ9cn .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZ77MRQ9cn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qZ77MRQ9cn .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qZ77MRQ9cn .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qZ77MRQ9cn .text-content {
    padding: 2rem 1rem;
  }
  .cid-qZ77MRQ9cn .underline .line {
    height: 2px;
  }
  .cid-qZ77MRQ9cn .mbr-title,
  .cid-qZ77MRQ9cn .underline,
  .cid-qZ77MRQ9cn .mbr-text,
  .cid-qZ77MRQ9cn .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qZ784CTIau {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #29622b;
}
.cid-qZ784CTIau h2 {
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
  color: #efe8cd;
}
.cid-qZ784CTIau .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZ784CTIau .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZ784CTIau .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZ784CTIau .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZ784CTIau .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZ784CTIau .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZ784CTIau .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-qZ784CTIau .mbr-gallery-filter-all > a {
  padding: 30px;
  background-color: transparent !important;
  color: #888888;
}
.cid-qZ784CTIau .mbr-section-title {
  padding-bottom: 2rem;
  margin: 0;
}
.cid-qZ784CTIau .mbr-section-title p {
  margin: 0;
}
.cid-qZ784CTIau .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-qZ784CTIau .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #888888;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-qZ784CTIau .mbr-gallery-filter .btn:hover {
  background-color: transparent;
}
.cid-qZ784CTIau .mbr-gallery-filter li.active .btn {
  background-color: transparent;
  color: #000000;
}
.cid-qZ784CTIau .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZ784CTIau .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZ7aZ1nuha {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qZ7aZ1nuha p {
  color: #767676;
}
.cid-qZ7aZ1nuha .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qZ7aZ1nuha .row-element,
.cid-qZ7aZ1nuha .image-element {
  padding: 0;
}
.cid-qZ7aZ1nuha .image-element {
  display: flex;
  justify-content: center;
}
.cid-qZ7aZ1nuha .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qZ7aZ1nuha .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZ7aZ1nuha .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qZ7aZ1nuha .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qZ7aZ1nuha .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qZ7aZ1nuha .text-content {
    padding: 2rem 1rem;
  }
  .cid-qZ7aZ1nuha .underline .line {
    height: 2px;
  }
  .cid-qZ7aZ1nuha .mbr-title,
  .cid-qZ7aZ1nuha .underline,
  .cid-qZ7aZ1nuha .mbr-text,
  .cid-qZ7aZ1nuha .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qZ7b8u63KM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/eden-unit-1-2000x1335-800x534.webp");
}
.cid-qZ7b8u63KM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZ7b8u63KM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZ7b8u63KM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZ7b8u63KM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZ7b8u63KM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #362b28);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZ7b8u63KM .icon-focus {
  display: none;
}
.cid-qZ7b8u63KM .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-qZ7b8u63KM ul {
  font-size: 0;
}
.cid-qZ7b8u63KM .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qZ7b8u63KM .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qZ7b8u63KM .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
}
.cid-qZ7b8u63KM .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qZ7b8u63KM .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qZ7b8u63KM .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-qZ7b8u63KM .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZ7b8u63KM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
.cid-qZ7b8u63KM .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qZ7b8u63KM .btn:hover {
  background: transparent !important;
}
.cid-qZ7b8u63KM .btn:hover:before {
  background: transparent !important;
}
.cid-qZ7b8u63KM .btn:before {
  background-color: transparent !important;
}
.cid-qZ7b8u63KM .btn:focus {
  box-shadow: none;
}
.cid-sKjEkIbCPY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKjEkIbCPY p {
  color: #767676;
}
.cid-sKjEkIbCPY .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sKjEkIbCPY .row-element,
.cid-sKjEkIbCPY .image-element {
  padding: 0;
}
.cid-sKjEkIbCPY .image-element {
  display: flex;
  justify-content: center;
}
.cid-sKjEkIbCPY .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sKjEkIbCPY .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sKjEkIbCPY .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sKjEkIbCPY .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sKjEkIbCPY .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sKjEkIbCPY .text-content {
    padding: 2rem 1rem;
  }
  .cid-sKjEkIbCPY .underline .line {
    height: 2px;
  }
  .cid-sKjEkIbCPY .mbr-title,
  .cid-sKjEkIbCPY .underline,
  .cid-sKjEkIbCPY .mbr-text,
  .cid-sKjEkIbCPY .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sKjEXZQowF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #29622b;
}
.cid-sKjEXZQowF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sKjEXZQowF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKjEXZQowF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sKjEXZQowF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sKjEXZQowF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #362b28);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sKjEXZQowF .icon-focus {
  display: none;
}
.cid-sKjEXZQowF .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sKjEXZQowF ul {
  font-size: 0;
}
.cid-sKjEXZQowF .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sKjEXZQowF .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sKjEXZQowF .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
}
.cid-sKjEXZQowF .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-sKjEXZQowF .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-sKjEXZQowF .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-sKjEXZQowF .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sKjEXZQowF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
.cid-sKjEXZQowF .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-sKjEXZQowF .btn:hover {
  background: transparent !important;
}
.cid-sKjEXZQowF .btn:hover:before {
  background: transparent !important;
}
.cid-sKjEXZQowF .btn:before {
  background-color: transparent !important;
}
.cid-sKjEXZQowF .btn:focus {
  box-shadow: none;
}
.cid-tJzdMKrBdf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #29622b;
}
.cid-tJzdMKrBdf img {
  border-radius: 0px;
  width: 100%;
}
.cid-tJzdMKrBdf .col-12 {
  padding: 0;
}
.cid-tJzdMKrBdf .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-tJzdMKrBdf .container-fluid {
  padding: 0;
}
.cid-tJzdMKrBdf .row {
  margin: 0;
}
.cid-tJzdMKrBdf .l2 {
  color: #0c5b47;
}
.cid-tJzdMKrBdf .l1 {
  color: #0c5b47;
}
.cid-tvK72HWPCc {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #29622b;
}
.cid-tvK72HWPCc svg {
  position: absolute;
  top: 0;
}
.cid-tvK72HWPCc .svg-1 {
  fill: #ba9a65;
}
.cid-tvK72HWPCc .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tvK72HWPCc {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}
.cid-tvK72HWPCc .mbr-text {
  color: #ffffff;
}
.cid-tvK72HWPCc a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-qZnMRsSFUo .navbar {
  padding: .5rem 0;
  background: #29622b;
  transition: none;
  min-height: 50px;
}
.cid-qZnMRsSFUo .navbar-dropdown.bg-color.transparent.opened {
  background: #29622b;
}
.cid-qZnMRsSFUo a {
  font-style: normal;
}
.cid-qZnMRsSFUo .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qZnMRsSFUo .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qZnMRsSFUo .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;
  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-qZnMRsSFUo .content-text {
  margin-bottom: 0;
}
.cid-qZnMRsSFUo .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qZnMRsSFUo .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #bd8c3d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qZnMRsSFUo .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qZnMRsSFUo .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qZnMRsSFUo .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qZnMRsSFUo .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnMRsSFUo .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnMRsSFUo .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qZnMRsSFUo .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qZnMRsSFUo .nav-dropdown .link {
  font-weight: 400;
}
.cid-qZnMRsSFUo .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qZnMRsSFUo .content-right-side {
  text-align: center;
}
.cid-qZnMRsSFUo .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qZnMRsSFUo .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qZnMRsSFUo .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qZnMRsSFUo .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qZnMRsSFUo .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qZnMRsSFUo .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qZnMRsSFUo .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qZnMRsSFUo .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qZnMRsSFUo .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qZnMRsSFUo .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qZnMRsSFUo .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qZnMRsSFUo .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
}
@media (min-width: 992px) {
  .cid-qZnMRsSFUo .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qZnMRsSFUo .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qZnMRsSFUo .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qZnMRsSFUo .navbar {
    display: block;
    padding: 0;
  }
  .cid-qZnMRsSFUo .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qZnMRsSFUo .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qZnMRsSFUo .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qZnMRsSFUo .navbar-toggler {
    display: none;
  }
  .cid-qZnMRsSFUo .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-qZnMRsSFUo .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qZnMRsSFUo .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qZnMRsSFUo .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qZnMRsSFUo .menu-logo {
  margin-right: auto;
}
.cid-qZnMRsSFUo .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qZnMRsSFUo .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qZnMRsSFUo .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qZnMRsSFUo .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qZnMRsSFUo .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qZnMRsSFUo .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qZnMRsSFUo .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qZnMRsSFUo .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qZnMRsSFUo .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qZnMRsSFUo .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qZnMRsSFUo .dropdown .dropdown-menu {
  background: #29622b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qZnMRsSFUo .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qZnMRsSFUo .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qZnMRsSFUo .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qZnMRsSFUo .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qZnMRsSFUo .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qZnMRsSFUo .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qZnMRsSFUo .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qZnMRsSFUo button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qZnMRsSFUo button.navbar-toggler:focus {
  outline: none;
}
.cid-qZnMRsSFUo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-qZnMRsSFUo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qZnMRsSFUo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnMRsSFUo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnMRsSFUo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qZnMRsSFUo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnMRsSFUo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qZnMRsSFUo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qZnMRsSFUo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnMRsSFUo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qZnMRsSFUo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qZnMRsSFUo .collapsed .btn {
  display: flex;
}
.cid-qZnMRsSFUo .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qZnMRsSFUo .collapsed .navbar-collapse.collapsing,
.cid-qZnMRsSFUo .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qZnMRsSFUo .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qZnMRsSFUo .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qZnMRsSFUo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qZnMRsSFUo .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qZnMRsSFUo .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qZnMRsSFUo .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qZnMRsSFUo .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qZnMRsSFUo .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qZnMRsSFUo .collapsed button.navbar-toggler {
  display: block;
}
.cid-qZnMRsSFUo .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qZnMRsSFUo .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qZnMRsSFUo .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qZnMRsSFUo .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qZnMRsSFUo .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qZnMRsSFUo .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qZnMRsSFUo .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qZnMRsSFUo .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qZnMRsSFUo img {
    height: 3.8rem !important;
  }
  .cid-qZnMRsSFUo .btn {
    display: flex;
  }
  .cid-qZnMRsSFUo button.navbar-toggler {
    display: block;
  }
  .cid-qZnMRsSFUo .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qZnMRsSFUo .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qZnMRsSFUo .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qZnMRsSFUo .navbar-collapse.collapsing,
  .cid-qZnMRsSFUo .navbar-collapse.show {
    display: block !important;
  }
  .cid-qZnMRsSFUo .navbar-collapse.collapsing .navbar-nav,
  .cid-qZnMRsSFUo .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qZnMRsSFUo .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qZnMRsSFUo .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qZnMRsSFUo .navbar-collapse.collapsing .navbar-buttons,
  .cid-qZnMRsSFUo .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qZnMRsSFUo .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qZnMRsSFUo .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qZnMRsSFUo .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qZnMRsSFUo .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qZnMRsSFUo .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qZnMRsSFUo .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qZnMRsSFUo .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qZnMRsSFUo .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qZnMRsSFUo .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qZnMRsSFUo .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qZnMRsSFUo .nav-link:focus {
  outline: none;
}
.cid-qZnMRsSFUo .navbar-toggler {
  position: relative;
}
.cid-qZnMRsSFUo .dropdown-item.active,
.cid-qZnMRsSFUo .dropdown-item:active {
  background: #29622b;
  color: initial;
}
.cid-qZnMRsSFUo .nav-link:hover,
.cid-qZnMRsSFUo .dropdown-item:hover {
  color: #000000;
}
.cid-qZnMRsSFUo .widget-title,
.cid-qZnMRsSFUo .widget-icon {
  color: #ffffff;
  text-align: center;
}
.cid-qZnMRsSFUo .widget-text {
  color: #ffffff;
  text-align: center;
}
.cid-sKjKjgTcV0 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/5.1-2000x1333.webp");
}
.cid-sKjKjgTcV0 .container-fluid {
  padding: 0 3rem;
}
.cid-sKjKjgTcV0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #bd8c3d 50%, #261811 120%);
  display: inline-block;
}
.cid-sKjKjgTcV0 .card {
  border-radius: 25px !important;
  margin-bottom: 2rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sKjKjgTcV0 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-sKjKjgTcV0 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
  padding-right: 2rem;
}
.cid-sKjKjgTcV0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sKjKjgTcV0 .card .card-header a.panel-title:hover .sign {
  background-color: #bd8c3d !important;
}
.cid-sKjKjgTcV0 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #29622b;
  padding: 2rem;
  padding-top: 26px;
  color: white;
}
.cid-sKjKjgTcV0 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sKjKjgTcV0 .card .card-header a.panel-title h4 .toggle-title {
  user-select: initial;
  pointer-events: auto;
}
.cid-sKjKjgTcV0 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-sKjKjgTcV0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sKjKjgTcV0 .header-text {
    padding: 1rem !important;
  }
  .cid-sKjKjgTcV0 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-sKjKjgTcV0 .panel-body {
    width: calc(100% - 48px);
  }
}
.cid-tvK72HWPCc {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #29622b;
}
.cid-tvK72HWPCc svg {
  position: absolute;
  top: 0;
}
.cid-tvK72HWPCc .svg-1 {
  fill: #ba9a65;
}
.cid-tvK72HWPCc .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tvK72HWPCc {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}
.cid-tvK72HWPCc .mbr-text {
  color: #ffffff;
}
.cid-tvK72HWPCc a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-tvKfBbILXJ {
  background-image: url("../../../assets/images/africanimage-49-2000x1335.webp");
}
.cid-tvKfBbILXJ h3 {
  position: relative;
}
.cid-tvKfBbILXJ h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tvKfBbILXJ svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-tvKfBbILXJ g rect {
  fill: #29622b;
}
.cid-qZnN0EpWNm .navbar {
  padding: .5rem 0;
  background: #29622b;
  transition: none;
  min-height: 50px;
}
.cid-qZnN0EpWNm .navbar-dropdown.bg-color.transparent.opened {
  background: #29622b;
}
.cid-qZnN0EpWNm a {
  font-style: normal;
}
.cid-qZnN0EpWNm .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qZnN0EpWNm .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qZnN0EpWNm .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;
  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-qZnN0EpWNm .content-text {
  margin-bottom: 0;
}
.cid-qZnN0EpWNm .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qZnN0EpWNm .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #bd8c3d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qZnN0EpWNm .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qZnN0EpWNm .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qZnN0EpWNm .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qZnN0EpWNm .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnN0EpWNm .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qZnN0EpWNm .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qZnN0EpWNm .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qZnN0EpWNm .nav-dropdown .link {
  font-weight: 400;
}
.cid-qZnN0EpWNm .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qZnN0EpWNm .content-right-side {
  text-align: center;
}
.cid-qZnN0EpWNm .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qZnN0EpWNm .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qZnN0EpWNm .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qZnN0EpWNm .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qZnN0EpWNm .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qZnN0EpWNm .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qZnN0EpWNm .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qZnN0EpWNm .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qZnN0EpWNm .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qZnN0EpWNm .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qZnN0EpWNm .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qZnN0EpWNm .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
}
@media (min-width: 992px) {
  .cid-qZnN0EpWNm .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qZnN0EpWNm .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qZnN0EpWNm .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qZnN0EpWNm .navbar {
    display: block;
    padding: 0;
  }
  .cid-qZnN0EpWNm .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qZnN0EpWNm .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qZnN0EpWNm .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qZnN0EpWNm .navbar-toggler {
    display: none;
  }
  .cid-qZnN0EpWNm .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-qZnN0EpWNm .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qZnN0EpWNm .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qZnN0EpWNm .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qZnN0EpWNm .menu-logo {
  margin-right: auto;
}
.cid-qZnN0EpWNm .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qZnN0EpWNm .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qZnN0EpWNm .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qZnN0EpWNm .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qZnN0EpWNm .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qZnN0EpWNm .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qZnN0EpWNm .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qZnN0EpWNm .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qZnN0EpWNm .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qZnN0EpWNm .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qZnN0EpWNm .dropdown .dropdown-menu {
  background: #29622b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qZnN0EpWNm .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qZnN0EpWNm .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qZnN0EpWNm .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qZnN0EpWNm .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qZnN0EpWNm .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qZnN0EpWNm .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qZnN0EpWNm .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qZnN0EpWNm button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qZnN0EpWNm button.navbar-toggler:focus {
  outline: none;
}
.cid-qZnN0EpWNm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-qZnN0EpWNm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qZnN0EpWNm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnN0EpWNm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qZnN0EpWNm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qZnN0EpWNm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnN0EpWNm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qZnN0EpWNm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qZnN0EpWNm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZnN0EpWNm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qZnN0EpWNm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qZnN0EpWNm .collapsed .btn {
  display: flex;
}
.cid-qZnN0EpWNm .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qZnN0EpWNm .collapsed .navbar-collapse.collapsing,
.cid-qZnN0EpWNm .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qZnN0EpWNm .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qZnN0EpWNm .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qZnN0EpWNm .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qZnN0EpWNm .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qZnN0EpWNm .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qZnN0EpWNm .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qZnN0EpWNm .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qZnN0EpWNm .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qZnN0EpWNm .collapsed button.navbar-toggler {
  display: block;
}
.cid-qZnN0EpWNm .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qZnN0EpWNm .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qZnN0EpWNm .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qZnN0EpWNm .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qZnN0EpWNm .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qZnN0EpWNm .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qZnN0EpWNm .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qZnN0EpWNm .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qZnN0EpWNm img {
    height: 3.8rem !important;
  }
  .cid-qZnN0EpWNm .btn {
    display: flex;
  }
  .cid-qZnN0EpWNm button.navbar-toggler {
    display: block;
  }
  .cid-qZnN0EpWNm .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qZnN0EpWNm .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qZnN0EpWNm .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qZnN0EpWNm .navbar-collapse.collapsing,
  .cid-qZnN0EpWNm .navbar-collapse.show {
    display: block !important;
  }
  .cid-qZnN0EpWNm .navbar-collapse.collapsing .navbar-nav,
  .cid-qZnN0EpWNm .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qZnN0EpWNm .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qZnN0EpWNm .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qZnN0EpWNm .navbar-collapse.collapsing .navbar-buttons,
  .cid-qZnN0EpWNm .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qZnN0EpWNm .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qZnN0EpWNm .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qZnN0EpWNm .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qZnN0EpWNm .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qZnN0EpWNm .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qZnN0EpWNm .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qZnN0EpWNm .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qZnN0EpWNm .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qZnN0EpWNm .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qZnN0EpWNm .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qZnN0EpWNm .nav-link:focus {
  outline: none;
}
.cid-qZnN0EpWNm .navbar-toggler {
  position: relative;
}
.cid-qZnN0EpWNm .dropdown-item.active,
.cid-qZnN0EpWNm .dropdown-item:active {
  background: #29622b;
  color: initial;
}
.cid-qZnN0EpWNm .nav-link:hover,
.cid-qZnN0EpWNm .dropdown-item:hover {
  color: #000000;
}
.cid-qZnN0EpWNm .widget-title,
.cid-qZnN0EpWNm .widget-icon {
  color: #ffffff;
  text-align: center;
}
.cid-qZnN0EpWNm .widget-text {
  color: #ffffff;
  text-align: center;
}
.cid-qZbfpNzlbD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/africanimage-39-2000x1288.webp");
  padding-left: 0;
  padding-right: 0;
}
.cid-qZbfpNzlbD ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-qZbfpNzlbD ul li {
  padding: 1rem 0;
}
.cid-qZbfpNzlbD ul li:hover {
  color: #bd8c3d;
}
.cid-qZbfpNzlbD .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-qZbfpNzlbD .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-qZbfpNzlbD .google-map {
  height: 100%;
  position: relative;
}
.cid-qZbfpNzlbD .map {
  padding: 0;
  height: inherit !important;
}
.cid-qZbfpNzlbD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.cid-qZbfpNzlbD .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-qZbfpNzlbD .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qZbfpNzlbD .social-list a:hover {
  opacity: 1;
}
.cid-qZbfpNzlbD .row-element,
.cid-qZbfpNzlbD .image-element {
  padding: 0;
}
.cid-qZbfpNzlbD .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZbfpNzlbD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #bd8c3d, #261811);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qZbfpNzlbD .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qZbfpNzlbD .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qZbfpNzlbD .text-content {
    padding: 2rem 1rem;
  }
  .cid-qZbfpNzlbD .underline .line {
    height: 2px;
  }
  .cid-qZbfpNzlbD .mbr-title,
  .cid-qZbfpNzlbD .underline,
  .cid-qZbfpNzlbD .mbr-text,
  .cid-qZbfpNzlbD .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qZbfpNzlbD .mbr-title,
.cid-qZbfpNzlbD .underline {
  color: #ffffff;
}
.cid-qZbfpNzlbD .mbr-text,
.cid-qZbfpNzlbD .mbr-section-btn {
  color: #ffffff;
}
.cid-qZbfpNzlbD mbr-list LI {
  color: #ffffff;
}
.cid-qZbfpNzlbD mbr-list {
  text-align: center;
}
.cid-qZbfpNzlbD .mbr-list,
.cid-qZbfpNzlbD .social-list mbr-list {
  color: #ffffff;
}
.cid-qZbfpNzlbD .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-qZbfpNzlbD .mbr-list,
.cid-qZbfpNzlbD .social-list {
  color: #ffffff;
}
.cid-tvK72HWPCc {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #29622b;
}
.cid-tvK72HWPCc svg {
  position: absolute;
  top: 0;
}
.cid-tvK72HWPCc .svg-1 {
  fill: #ba9a65;
}
.cid-tvK72HWPCc .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tvK72HWPCc {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}
.cid-tvK72HWPCc .mbr-text {
  color: #ffffff;
}
.cid-tvK72HWPCc a {
  text-decoration: underline;
  font-weight: 400 !important;
}
