body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: #17992b !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !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: #0d5618;
  border-color: #0d5618;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #17992b !important;
  border-color: #17992b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0d5618 !important;
  border-color: #0d5618 !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: #0d5618 !important;
  border-color: #0d5618 !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: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !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: #fe0613 !important;
  border-color: #fe0613 !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: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e !important;
  border-color: #13709e !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: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #82acb6 !important;
  border-color: #82acb6 !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: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !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: #59524b !important;
  border-color: #59524b !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: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !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: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !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: #17992b;
  border-color: #17992b;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0a4012;
  color: #0a4012 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #17992b;
  border-color: #17992b;
}
.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: #17992b !important;
  border-color: #17992b !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: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #fe525b !important;
  border-color: #fe525b !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: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.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: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.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: #82786e !important;
  border-color: #82786e !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: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.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: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !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: #17992b !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0a4012 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !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: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.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: #17992b;
  border-color: #17992b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #17992b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4be463;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1rem;
}
blockquote {
  border-color: #17992b;
}
/* 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: #17992b;
  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: #17992b;
  border-bottom-color: #17992b;
}
.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: #17992b !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: #fe525b !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='%2317992b' %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-qFMn8MivHY .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-qFMn8MivHY .nav-item:focus,
.cid-qFMn8MivHY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qFMn8MivHY .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qFMn8MivHY .nav-item .nav-link {
    position: relative;
  }
  .cid-qFMn8MivHY .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #17992b, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qFMn8MivHY .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qFMn8MivHY .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qFMn8MivHY .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-qFMn8MivHY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qFMn8MivHY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qFMn8MivHY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0e4817;
  background: none;
}
.cid-qFMn8MivHY .navbar.opened {
  transition: all .3s;
  background: #0e4817 !important;
}
.cid-qFMn8MivHY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qFMn8MivHY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qFMn8MivHY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qFMn8MivHY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qFMn8MivHY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qFMn8MivHY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qFMn8MivHY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qFMn8MivHY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qFMn8MivHY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qFMn8MivHY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qFMn8MivHY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qFMn8MivHY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qFMn8MivHY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qFMn8MivHY .navbar.navbar-short {
  background: #0e4817 !important;
  min-height: 60px;
}
.cid-qFMn8MivHY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qFMn8MivHY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qFMn8MivHY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qFMn8MivHY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qFMn8MivHY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qFMn8MivHY .dropdown-item.active,
.cid-qFMn8MivHY .dropdown-item:active {
  background-color: transparent;
}
.cid-qFMn8MivHY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qFMn8MivHY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qFMn8MivHY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qFMn8MivHY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e4817;
}
.cid-qFMn8MivHY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qFMn8MivHY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qFMn8MivHY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qFMn8MivHY .navbar-buttons {
  text-align: center;
}
.cid-qFMn8MivHY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMn8MivHY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qFMn8MivHY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qFMn8MivHY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qFMn8MivHY .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qFMn8MivHY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qFMn8MivHY .navbar {
    height: 77px;
  }
  .cid-qFMn8MivHY .navbar.opened {
    height: auto;
  }
  .cid-qFMn8MivHY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUAF1vtuUZ .container-fluid {
  padding: 0 3rem;
}
.cid-tUAF1vtuUZ .media-container-column {
  padding: 0 2rem;
}
.cid-tUAF1vtuUZ .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tUAF1vtuUZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qFMr31zHNw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qFMr31zHNw .mbr-text,
.cid-qFMr31zHNw blockquote {
  color: #232323;
}
.cid-qFMr31zHNw .mbr-text DIV {
  color: #0e4817;
  text-align: center;
}
.cid-tUwzCBDSaF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e4817;
}
.cid-tUwzCBDSaF .container-fluid {
  padding: 0 3rem;
}
.cid-tUwzCBDSaF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #17992b, #fe525b);
  display: inline-block;
}
.cid-tUwzCBDSaF .card {
  display: block;
}
.cid-tUwzCBDSaF .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-tUwzCBDSaF .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tUwzCBDSaF .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tUwzCBDSaF .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tUwzCBDSaF .container-fluid {
    padding: 0 1rem;
  }
  .cid-tUwzCBDSaF .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tUwBtNF0Tm {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/image-10-901x600.jpg");
}
.cid-tUwBtNF0Tm .container-fluid {
  padding: 0 3rem;
}
.cid-tUwBtNF0Tm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #17992b, #fe525b);
  display: inline-block;
}
.cid-tUwBtNF0Tm .card {
  display: block;
}
.cid-tUwBtNF0Tm .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-tUwBtNF0Tm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tUwBtNF0Tm .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tUwBtNF0Tm .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tUwBtNF0Tm .container-fluid {
    padding: 0 1rem;
  }
  .cid-tUwBtNF0Tm .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uf0KY3ebUZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uf0KY3ebUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf0KY3ebUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf0KY3ebUZ .card-title {
  min-width: 250px;
}
.cid-uf0KY3ebUZ .card-text {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .cid-uf0KY3ebUZ .card-text {
    padding-left: 0rem;
  }
}
.cid-uf0KY3ebUZ .mbr-iconfont {
  font-size: 1rem;
  color: #fe525b;
  border-radius: 50%;
  background: #17992b;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.cid-uf0KY3ebUZ .card-wrapper {
  display: flex;
  transition: all 0.3s;
  justify-content: space-between;
  align-items: center;
  background: #17992b;
  margin-bottom: 1rem;
  padding: 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .cid-uf0KY3ebUZ .card-wrapper {
    flex-direction: column;
  }
}
.cid-uf0KY3ebUZ .card-wrapper:hover {
  background: #fe525b;
  color: white;
}
.cid-uf0KY3ebUZ .text-wrap {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uf0KY3ebUZ .text-wrap {
    flex-direction: column;
    padding-bottom: 1rem;
  }
}
.cid-uf0KY3ebUZ .card-text,
.cid-uf0KY3ebUZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uf0KY3ebUZ .mbr-section-title {
  color: #17992b;
}
.cid-uf0KY3ebUZ .card-title,
.cid-uf0KY3ebUZ .iconfont-wrapper,
.cid-uf0KY3ebUZ .card-wrapper {
  color: #ffffff;
}
.cid-uaNo8Phjui {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uaNo8Phjui .container-fluid {
  padding: 0 3rem;
}
.cid-uaNo8Phjui .media-container-column {
  padding: 0 2rem;
}
.cid-uaNo8Phjui .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #16a16c;
}
@media (max-width: 767px) {
  .cid-uaNo8Phjui .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uaNofdYE1w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uaNofdYE1w .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uaNofdYE1w .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uaNofdYE1w .history-item {
    margin-top: 100px;
  }
}
.cid-uaNofdYE1w .history-item-first {
  margin-top: 0;
}
.cid-uaNofdYE1w .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uaNofdYE1w .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uaNofdYE1w .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .image-wrapper {
    max-width: 550px;
  }
}
.cid-uaNofdYE1w .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uaNofdYE1w .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uaNofdYE1w .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uaNofdYE1w .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uaNofdYE1w .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uaNofdYE1w .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .text-wrapper {
    max-width: 550px;
  }
}
.cid-uaNofdYE1w .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uaNofdYE1w .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uaNofdYE1w .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uaNofdYE1w .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uaNofdYE1w .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uaNofdYE1w .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uaNofdYE1w .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uaNofdYE1w .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-tVyTKDY3GY {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
  background: linear-gradient(90deg, #ffffff, #0e4817);
}
.cid-tVyTKDY3GY .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tVyTKDY3GY .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #17992b, #fe525b);
  display: inline-block;
}
.cid-tVyTKDY3GY .container-fluid {
  padding: 0 3rem;
}
.cid-tVyTKDY3GY .mbr-iconfont {
  color: #cccccc;
  font-size: 1.6rem;
}
.cid-tVyTKDY3GY .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-tVyTKDY3GY .image-wrap img {
  border-radius: 50%;
  width: 70%;
  height: 70%;
}
.cid-tVyTKDY3GY .mbr-title {
  margin-bottom: 0;
}
.cid-tVyTKDY3GY .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tVyTKDY3GY .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-tVyTKDY3GY .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-tVyTKDY3GY .card-wrap {
    padding: 0 1rem;
  }
  .cid-tVyTKDY3GY .container-fluid {
    padding: 0 1rem;
  }
  .cid-tVyTKDY3GY .mbr-role {
    margin-top: .5rem;
  }
}
.cid-tVyTKDY3GY .mbr-role {
  color: #ffffff;
}
.cid-tXnJ00FzII {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e4817;
}
.cid-tXnJ00FzII ul {
  padding: 0;
  margin: 0;
}
.cid-tXnJ00FzII ul li {
  list-style: none;
}
.cid-tXnJ00FzII ul li h4 {
  margin: 0;
}
.cid-tXnJ00FzII ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tXnJ00FzII .item {
  color: #cacaca;
}
.cid-tXnJ00FzII .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-tXnJ00FzII .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-tXnJ00FzII .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-tXnJ00FzII .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-tXnJ00FzII .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-tXnJ00FzII .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-qFe1Ae6HGH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/links2-1-800x40051.jpg");
}
.cid-qFe1Ae6HGH .container-fluid {
  padding: 0 3rem;
}
.cid-qFe1Ae6HGH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #17992b 50%, #fe525b 120%);
  display: inline-block;
}
.cid-qFe1Ae6HGH .mbr-section-subtitle {
  color: #767676;
}
.cid-qFe1Ae6HGH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qFe1Ae6HGH .table-wrapper {
  margin: 0 auto;
}
.cid-qFe1Ae6HGH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qFe1Ae6HGH table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #cccccc;
  color: white;
  vertical-align: middle;
}
.cid-qFe1Ae6HGH table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-qFe1Ae6HGH tr:hover {
  background-color: #efefef !important;
}
.cid-qFe1Ae6HGH .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-qFe1Ae6HGH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qFe1Ae6HGH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qFe1Ae6HGH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qFe1Ae6HGH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-qFe1Ae6HGH .dataTables_wrapper {
  display: block;
}
.cid-qFe1Ae6HGH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qFe1Ae6HGH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qFe1Ae6HGH .head-item:after,
.cid-qFe1Ae6HGH .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-qFe1Ae6HGH .dataTables_filter {
    text-align: center;
  }
  .cid-qFe1Ae6HGH .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-qFe1Ae6HGH .dataTables_filter {
    text-align: center;
  }
  .cid-qFe1Ae6HGH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-qFe1Ae6HGH .container-fluid {
    padding: 0 1rem;
  }
  .cid-qFe1Ae6HGH table th,
  .cid-qFe1Ae6HGH table td {
    padding: .75rem;
  }
}
.cid-qFe1Ae6HGH .body-item {
  text-align: center;
}
.cid-qFe1Ae6HGH .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-qFMgklVUQk .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-qFMgklVUQk .nav-item:focus,
.cid-qFMgklVUQk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qFMgklVUQk .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qFMgklVUQk .nav-item .nav-link {
    position: relative;
  }
  .cid-qFMgklVUQk .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #17992b, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qFMgklVUQk .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qFMgklVUQk .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qFMgklVUQk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qFMgklVUQk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qFMgklVUQk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qFMgklVUQk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qFMgklVUQk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qFMgklVUQk .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-qFMgklVUQk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qFMgklVUQk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qFMgklVUQk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0e4817;
  background: none;
}
.cid-qFMgklVUQk .navbar.opened {
  transition: all .3s;
  background: #0e4817 !important;
}
.cid-qFMgklVUQk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qFMgklVUQk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qFMgklVUQk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qFMgklVUQk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qFMgklVUQk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qFMgklVUQk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qFMgklVUQk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qFMgklVUQk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qFMgklVUQk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qFMgklVUQk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qFMgklVUQk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qFMgklVUQk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qFMgklVUQk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qFMgklVUQk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qFMgklVUQk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qFMgklVUQk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qFMgklVUQk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qFMgklVUQk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qFMgklVUQk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qFMgklVUQk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qFMgklVUQk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qFMgklVUQk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qFMgklVUQk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qFMgklVUQk .navbar.navbar-short {
  background: #0e4817 !important;
  min-height: 60px;
}
.cid-qFMgklVUQk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qFMgklVUQk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qFMgklVUQk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qFMgklVUQk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qFMgklVUQk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qFMgklVUQk .dropdown-item.active,
.cid-qFMgklVUQk .dropdown-item:active {
  background-color: transparent;
}
.cid-qFMgklVUQk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qFMgklVUQk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qFMgklVUQk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qFMgklVUQk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e4817;
}
.cid-qFMgklVUQk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qFMgklVUQk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qFMgklVUQk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qFMgklVUQk .navbar-buttons {
  text-align: center;
}
.cid-qFMgklVUQk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qFMgklVUQk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qFMgklVUQk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qFMgklVUQk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMgklVUQk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMgklVUQk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qFMgklVUQk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMgklVUQk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qFMgklVUQk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qFMgklVUQk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMgklVUQk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qFMgklVUQk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qFMgklVUQk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qFMgklVUQk .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qFMgklVUQk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qFMgklVUQk .navbar {
    height: 77px;
  }
  .cid-qFMgklVUQk .navbar.opened {
    height: auto;
  }
  .cid-qFMgklVUQk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qFMiNvSwK3 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bandltanz-621x46662.jpg");
}
.cid-qFMiNvSwK3 .container-fluid {
  padding: 0 3rem;
}
.cid-qFMiNvSwK3 .mbr-text {
  color: #000000;
}
.cid-qFMiNvSwK3 .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-qFMiNvSwK3 p {
  text-align: left;
}
.cid-qFMiNvSwK3 .card-img {
  text-align: left;
}
.cid-qFMiNvSwK3 .card .card-img span {
  color: #ffa0a4;
  font-size: 60px;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-qFMiNvSwK3 .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-qFMiNvSwK3 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qFMiNvSwK3 .card-title,
.cid-qFMiNvSwK3 .card-img {
  color: #fe525b;
}
.cid-tXnOOBw8OE {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnOOBw8OE .container-fluid {
  padding: 0 3rem;
}
.cid-tXnOOBw8OE .media-container-column {
  padding: 0 2rem;
}
.cid-tXnOOBw8OE .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-tXnOOBw8OE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnOOBw8OE .mbr-section-subtitle {
  color: #a3e9c7;
}
.cid-tXnMrofYjY {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/screenshot-02-11-2023-20.37.47-1098x764.png");
}
.cid-tXnMrofYjY .container-fluid {
  padding: 0 3rem;
}
.cid-tXnMrofYjY .mbr-text {
  color: #000000;
}
.cid-tXnMrofYjY .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-tXnMrofYjY p {
  text-align: left;
}
.cid-tXnMrofYjY .card-img {
  text-align: left;
}
.cid-tXnMrofYjY .card .card-img span {
  color: #ffa0a4;
  font-size: 60px;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-tXnMrofYjY .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-tXnMrofYjY .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tXnMrofYjY .card-title,
.cid-tXnMrofYjY .card-img {
  color: #fe525b;
}
.cid-tXzVZ2KPBg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e4817;
}
.cid-tXzVZ2KPBg ul {
  padding: 0;
  margin: 0;
}
.cid-tXzVZ2KPBg ul li {
  list-style: none;
}
.cid-tXzVZ2KPBg ul li h4 {
  margin: 0;
}
.cid-tXzVZ2KPBg ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tXzVZ2KPBg .item {
  color: #cacaca;
}
.cid-tXzVZ2KPBg .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-tXzVZ2KPBg .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-tXzVZ2KPBg .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-tXzVZ2KPBg .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-tXzVZ2KPBg .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-tXzVZ2KPBg .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-qFMgf4OdV4 .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-qFMgf4OdV4 .nav-item:focus,
.cid-qFMgf4OdV4 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qFMgf4OdV4 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qFMgf4OdV4 .nav-item .nav-link {
    position: relative;
  }
  .cid-qFMgf4OdV4 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #17992b, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qFMgf4OdV4 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qFMgf4OdV4 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qFMgf4OdV4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qFMgf4OdV4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qFMgf4OdV4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qFMgf4OdV4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qFMgf4OdV4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qFMgf4OdV4 .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-qFMgf4OdV4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qFMgf4OdV4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qFMgf4OdV4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0e4817;
  background: none;
}
.cid-qFMgf4OdV4 .navbar.opened {
  transition: all .3s;
  background: #0e4817 !important;
}
.cid-qFMgf4OdV4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qFMgf4OdV4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qFMgf4OdV4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qFMgf4OdV4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qFMgf4OdV4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qFMgf4OdV4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qFMgf4OdV4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qFMgf4OdV4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qFMgf4OdV4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qFMgf4OdV4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qFMgf4OdV4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qFMgf4OdV4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qFMgf4OdV4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qFMgf4OdV4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qFMgf4OdV4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qFMgf4OdV4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qFMgf4OdV4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qFMgf4OdV4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qFMgf4OdV4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qFMgf4OdV4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qFMgf4OdV4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qFMgf4OdV4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qFMgf4OdV4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qFMgf4OdV4 .navbar.navbar-short {
  background: #0e4817 !important;
  min-height: 60px;
}
.cid-qFMgf4OdV4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qFMgf4OdV4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qFMgf4OdV4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qFMgf4OdV4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qFMgf4OdV4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qFMgf4OdV4 .dropdown-item.active,
.cid-qFMgf4OdV4 .dropdown-item:active {
  background-color: transparent;
}
.cid-qFMgf4OdV4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qFMgf4OdV4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qFMgf4OdV4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qFMgf4OdV4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e4817;
}
.cid-qFMgf4OdV4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qFMgf4OdV4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qFMgf4OdV4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qFMgf4OdV4 .navbar-buttons {
  text-align: center;
}
.cid-qFMgf4OdV4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qFMgf4OdV4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qFMgf4OdV4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qFMgf4OdV4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMgf4OdV4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMgf4OdV4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qFMgf4OdV4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMgf4OdV4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qFMgf4OdV4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qFMgf4OdV4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMgf4OdV4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qFMgf4OdV4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qFMgf4OdV4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qFMgf4OdV4 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qFMgf4OdV4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qFMgf4OdV4 .navbar {
    height: 77px;
  }
  .cid-qFMgf4OdV4 .navbar.opened {
    height: auto;
  }
  .cid-qFMgf4OdV4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qFMbTp1uhe {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/kalender-1000x37473.jpg");
}
.cid-qFMbTp1uhe .container-fluid {
  padding: 0 3rem;
}
.cid-qFMbTp1uhe .media-container-column {
  padding: 0 2rem;
}
.cid-qFMbTp1uhe .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qFMbTp1uhe .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tUEPUbl86I {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUEPUbl86I .container-fluid {
  padding: 0 3rem;
}
.cid-tUEPUbl86I .media-container-column {
  padding: 0 2rem;
}
.cid-tUEPUbl86I .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tUEPUbl86I .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLzaIcCq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e4817;
}
.cid-tXnLzaIcCq ul {
  padding: 0;
  margin: 0;
}
.cid-tXnLzaIcCq ul li {
  list-style: none;
}
.cid-tXnLzaIcCq ul li h4 {
  margin: 0;
}
.cid-tXnLzaIcCq ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tXnLzaIcCq .item {
  color: #cacaca;
}
.cid-tXnLzaIcCq .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-tXnLzaIcCq .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-tXnLzaIcCq .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-tXnLzaIcCq .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-tXnLzaIcCq .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-tXnLzaIcCq .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-tViW1q68co {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0e4817;
}
.cid-tViW1q68co .container-fluid {
  padding: 0 3rem;
}
.cid-tViW1q68co .media-container-column {
  padding: 0 2rem;
}
.cid-tViW1q68co .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tViW1q68co .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tViGg4XvBi {
  background: #000000;
}
.cid-tViGg4XvBi .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 768px) {
  .cid-tViGg4XvBi .video-block {
    width: 100% !important;
  }
}
.cid-tViYi3ve0Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0e4817;
}
.cid-tViYi3ve0Y .container-fluid {
  padding: 0 3rem;
}
.cid-tViYi3ve0Y .media-container-column {
  padding: 0 2rem;
}
.cid-tViYi3ve0Y .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tViYi3ve0Y .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qFMn8MivHY .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-qFMn8MivHY .nav-item:focus,
.cid-qFMn8MivHY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qFMn8MivHY .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qFMn8MivHY .nav-item .nav-link {
    position: relative;
  }
  .cid-qFMn8MivHY .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #17992b, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qFMn8MivHY .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qFMn8MivHY .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qFMn8MivHY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qFMn8MivHY .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-qFMn8MivHY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qFMn8MivHY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qFMn8MivHY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0e4817;
  background: none;
}
.cid-qFMn8MivHY .navbar.opened {
  transition: all .3s;
  background: #0e4817 !important;
}
.cid-qFMn8MivHY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qFMn8MivHY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qFMn8MivHY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qFMn8MivHY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qFMn8MivHY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qFMn8MivHY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qFMn8MivHY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qFMn8MivHY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qFMn8MivHY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qFMn8MivHY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qFMn8MivHY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qFMn8MivHY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qFMn8MivHY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qFMn8MivHY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qFMn8MivHY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qFMn8MivHY .navbar.navbar-short {
  background: #0e4817 !important;
  min-height: 60px;
}
.cid-qFMn8MivHY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qFMn8MivHY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qFMn8MivHY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qFMn8MivHY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qFMn8MivHY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qFMn8MivHY .dropdown-item.active,
.cid-qFMn8MivHY .dropdown-item:active {
  background-color: transparent;
}
.cid-qFMn8MivHY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qFMn8MivHY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qFMn8MivHY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qFMn8MivHY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e4817;
}
.cid-qFMn8MivHY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qFMn8MivHY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qFMn8MivHY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qFMn8MivHY .navbar-buttons {
  text-align: center;
}
.cid-qFMn8MivHY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qFMn8MivHY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qFMn8MivHY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qFMn8MivHY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qFMn8MivHY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qFMn8MivHY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qFMn8MivHY .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qFMn8MivHY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qFMn8MivHY .navbar {
    height: 77px;
  }
  .cid-qFMn8MivHY .navbar.opened {
    height: auto;
  }
  .cid-qFMn8MivHY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXnLY3BaRM .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-tXnLY3BaRM .nav-item:focus,
.cid-tXnLY3BaRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tXnLY3BaRM .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tXnLY3BaRM .nav-item .nav-link {
    position: relative;
  }
  .cid-tXnLY3BaRM .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #17992b, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tXnLY3BaRM .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tXnLY3BaRM .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXnLY3BaRM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXnLY3BaRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXnLY3BaRM .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tXnLY3BaRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tXnLY3BaRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tXnLY3BaRM .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-tXnLY3BaRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXnLY3BaRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXnLY3BaRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0e4817;
  background: none;
}
.cid-tXnLY3BaRM .navbar.opened {
  transition: all .3s;
  background: #0e4817 !important;
}
.cid-tXnLY3BaRM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tXnLY3BaRM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXnLY3BaRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXnLY3BaRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXnLY3BaRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXnLY3BaRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXnLY3BaRM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXnLY3BaRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXnLY3BaRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXnLY3BaRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tXnLY3BaRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXnLY3BaRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXnLY3BaRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXnLY3BaRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXnLY3BaRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXnLY3BaRM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXnLY3BaRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXnLY3BaRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXnLY3BaRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXnLY3BaRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXnLY3BaRM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXnLY3BaRM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXnLY3BaRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXnLY3BaRM .navbar.navbar-short {
  background: #0e4817 !important;
  min-height: 60px;
}
.cid-tXnLY3BaRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXnLY3BaRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXnLY3BaRM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXnLY3BaRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXnLY3BaRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXnLY3BaRM .dropdown-item.active,
.cid-tXnLY3BaRM .dropdown-item:active {
  background-color: transparent;
}
.cid-tXnLY3BaRM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXnLY3BaRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXnLY3BaRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXnLY3BaRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e4817;
}
.cid-tXnLY3BaRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXnLY3BaRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXnLY3BaRM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXnLY3BaRM .navbar-buttons {
  text-align: center;
}
.cid-tXnLY3BaRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tXnLY3BaRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXnLY3BaRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXnLY3BaRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXnLY3BaRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXnLY3BaRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXnLY3BaRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXnLY3BaRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXnLY3BaRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXnLY3BaRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXnLY3BaRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tXnLY3BaRM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXnLY3BaRM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXnLY3BaRM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXnLY3BaRM .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXnLY3BaRM .navbar {
    height: 77px;
  }
  .cid-tXnLY3BaRM .navbar.opened {
    height: auto;
  }
  .cid-tXnLY3BaRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXnLY4xHR2 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bandltanz-621x46662.jpg");
}
.cid-tXnLY4xHR2 .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY4xHR2 .mbr-text {
  color: #000000;
}
.cid-tXnLY4xHR2 .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-tXnLY4xHR2 p {
  text-align: left;
}
.cid-tXnLY4xHR2 .card-img {
  text-align: left;
}
.cid-tXnLY4xHR2 .card .card-img span {
  color: #ffa0a4;
  font-size: 60px;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-tXnLY4xHR2 .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-tXnLY4xHR2 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tXnLY4xHR2 .card-title,
.cid-tXnLY4xHR2 .card-img {
  color: #fe525b;
}
.cid-tXnLY5cDte {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnLY5cDte .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY5cDte .media-container-column {
  padding: 0 2rem;
}
.cid-tXnLY5cDte .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tXnLY5cDte .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLY5og3C {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tXnLY5og3C .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tXnLY5og3C .video-block {
    width: 100% !important;
  }
}
.cid-tXnLY5zbcT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnLY5zbcT .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY5zbcT .media-container-column {
  padding: 0 2rem;
}
.cid-tXnLY5zbcT .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tXnLY5zbcT .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLY5MUfX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tXnLY5MUfX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tXnLY5MUfX .video-block {
    width: 100% !important;
  }
}
.cid-tXnLY5WXn6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnLY5WXn6 .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY5WXn6 .media-container-column {
  padding: 0 2rem;
}
.cid-tXnLY5WXn6 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tXnLY5WXn6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLY6c1ba {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tXnLY6c1ba .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tXnLY6c1ba .video-block {
    width: 100% !important;
  }
}
.cid-tXnLY6nMew {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnLY6nMew .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY6nMew .media-container-column {
  padding: 0 2rem;
}
.cid-tXnLY6nMew .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tXnLY6nMew .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLY6AsLT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tXnLY6AsLT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tXnLY6AsLT .video-block {
    width: 100% !important;
  }
}
.cid-tXnLY6MZBE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnLY6MZBE .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY6MZBE .media-container-column {
  padding: 0 2rem;
}
.cid-tXnLY6MZBE .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tXnLY6MZBE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLY6Xj9T {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tXnLY6Xj9T .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tXnLY6Xj9T .video-block {
    width: 100% !important;
  }
}
.cid-tXnLY76W7H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #0e4817;
}
.cid-tXnLY76W7H .container-fluid {
  padding: 0 3rem;
}
.cid-tXnLY76W7H .media-container-column {
  padding: 0 2rem;
}
.cid-tXnLY76W7H .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tXnLY76W7H .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tXnLY7hGiy {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tXnLY7hGiy .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tXnLY7hGiy .video-block {
    width: 100% !important;
  }
}
.cid-tXnLY7si5m {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e4817;
}
.cid-tXnLY7si5m ul {
  padding: 0;
  margin: 0;
}
.cid-tXnLY7si5m ul li {
  list-style: none;
}
.cid-tXnLY7si5m ul li h4 {
  margin: 0;
}
.cid-tXnLY7si5m ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tXnLY7si5m .item {
  color: #cacaca;
}
.cid-tXnLY7si5m .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-tXnLY7si5m .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-tXnLY7si5m .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-tXnLY7si5m .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-tXnLY7si5m .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-tXnLY7si5m .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uf0ZkEOTaV .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-uf0ZkEOTaV .nav-item:focus,
.cid-uf0ZkEOTaV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uf0ZkEOTaV .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uf0ZkEOTaV .nav-item .nav-link {
    position: relative;
  }
  .cid-uf0ZkEOTaV .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #17992b, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uf0ZkEOTaV .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uf0ZkEOTaV .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uf0ZkEOTaV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uf0ZkEOTaV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uf0ZkEOTaV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uf0ZkEOTaV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uf0ZkEOTaV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uf0ZkEOTaV .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-uf0ZkEOTaV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uf0ZkEOTaV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uf0ZkEOTaV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0e4817;
  background: none;
}
.cid-uf0ZkEOTaV .navbar.opened {
  transition: all .3s;
  background: #0e4817 !important;
}
.cid-uf0ZkEOTaV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uf0ZkEOTaV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uf0ZkEOTaV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uf0ZkEOTaV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uf0ZkEOTaV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uf0ZkEOTaV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uf0ZkEOTaV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uf0ZkEOTaV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uf0ZkEOTaV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uf0ZkEOTaV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uf0ZkEOTaV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uf0ZkEOTaV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uf0ZkEOTaV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uf0ZkEOTaV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uf0ZkEOTaV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uf0ZkEOTaV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uf0ZkEOTaV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uf0ZkEOTaV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uf0ZkEOTaV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uf0ZkEOTaV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uf0ZkEOTaV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uf0ZkEOTaV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uf0ZkEOTaV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uf0ZkEOTaV .navbar.navbar-short {
  background: #0e4817 !important;
  min-height: 60px;
}
.cid-uf0ZkEOTaV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uf0ZkEOTaV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uf0ZkEOTaV .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uf0ZkEOTaV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uf0ZkEOTaV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uf0ZkEOTaV .dropdown-item.active,
.cid-uf0ZkEOTaV .dropdown-item:active {
  background-color: transparent;
}
.cid-uf0ZkEOTaV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uf0ZkEOTaV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uf0ZkEOTaV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uf0ZkEOTaV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e4817;
}
.cid-uf0ZkEOTaV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uf0ZkEOTaV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uf0ZkEOTaV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uf0ZkEOTaV .navbar-buttons {
  text-align: center;
}
.cid-uf0ZkEOTaV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uf0ZkEOTaV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uf0ZkEOTaV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uf0ZkEOTaV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uf0ZkEOTaV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uf0ZkEOTaV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uf0ZkEOTaV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uf0ZkEOTaV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uf0ZkEOTaV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uf0ZkEOTaV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uf0ZkEOTaV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uf0ZkEOTaV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uf0ZkEOTaV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uf0ZkEOTaV .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uf0ZkEOTaV .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uf0ZkEOTaV .navbar {
    height: 77px;
  }
  .cid-uf0ZkEOTaV .navbar.opened {
    height: auto;
  }
  .cid-uf0ZkEOTaV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uf10wwEoyv {
  padding-top: 150px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/t1-7-900x600.jpg");
}
.cid-uf10wwEoyv .container-fluid {
  padding: 0 3rem;
}
.cid-uf10wwEoyv .media-container-column {
  padding: 0 2rem;
}
.cid-uf10wwEoyv .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uf10wwEoyv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uz6yoF6kO9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uz6yoF6kO9 .container-fluid {
  padding: 0 3rem;
}
.cid-uz6yoF6kO9 .media-container-column {
  padding: 0 2rem;
}
.cid-uz6yoF6kO9 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #16a16c;
}
@media (max-width: 767px) {
  .cid-uz6yoF6kO9 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-v7SXtZKBrK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-v7SXtZKBrK .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-v7SXtZKBrK .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-v7SXtZKBrK .history-item {
    margin-top: 100px;
  }
}
.cid-v7SXtZKBrK .history-item-first {
  margin-top: 0;
}
.cid-v7SXtZKBrK .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXtZKBrK .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-v7SXtZKBrK .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .image-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXtZKBrK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7SXtZKBrK .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXtZKBrK .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXtZKBrK .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXtZKBrK .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-v7SXtZKBrK .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .text-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXtZKBrK .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-v7SXtZKBrK .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-v7SXtZKBrK .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-v7SXtZKBrK .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-v7SXtZKBrK .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7SXtZKBrK .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-v7SXtZKBrK .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-v7SXtZKBrK .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-v7SXvjd77T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-v7SXvjd77T .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-v7SXvjd77T .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-v7SXvjd77T .history-item {
    margin-top: 100px;
  }
}
.cid-v7SXvjd77T .history-item-first {
  margin-top: 0;
}
.cid-v7SXvjd77T .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXvjd77T .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-v7SXvjd77T .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .image-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXvjd77T .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7SXvjd77T .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXvjd77T .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXvjd77T .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXvjd77T .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-v7SXvjd77T .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .text-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXvjd77T .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-v7SXvjd77T .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-v7SXvjd77T .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-v7SXvjd77T .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-v7SXvjd77T .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7SXvjd77T .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-v7SXvjd77T .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-v7SXvjd77T .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-v7SXwSFOFJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-v7SXwSFOFJ .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-v7SXwSFOFJ .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-v7SXwSFOFJ .history-item {
    margin-top: 100px;
  }
}
.cid-v7SXwSFOFJ .history-item-first {
  margin-top: 0;
}
.cid-v7SXwSFOFJ .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXwSFOFJ .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-v7SXwSFOFJ .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .image-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXwSFOFJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7SXwSFOFJ .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXwSFOFJ .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXwSFOFJ .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXwSFOFJ .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-v7SXwSFOFJ .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .text-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXwSFOFJ .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-v7SXwSFOFJ .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-v7SXwSFOFJ .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-v7SXwSFOFJ .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-v7SXwSFOFJ .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7SXwSFOFJ .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-v7SXwSFOFJ .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-v7SXwSFOFJ .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-v7SXy7zfb8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-v7SXy7zfb8 .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-v7SXy7zfb8 .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-v7SXy7zfb8 .history-item {
    margin-top: 100px;
  }
}
.cid-v7SXy7zfb8 .history-item-first {
  margin-top: 0;
}
.cid-v7SXy7zfb8 .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXy7zfb8 .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-v7SXy7zfb8 .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .image-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXy7zfb8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7SXy7zfb8 .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-v7SXy7zfb8 .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXy7zfb8 .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-v7SXy7zfb8 .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-v7SXy7zfb8 .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .text-wrapper {
    max-width: 550px;
  }
}
.cid-v7SXy7zfb8 .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-v7SXy7zfb8 .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-v7SXy7zfb8 .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-v7SXy7zfb8 .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-v7SXy7zfb8 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7SXy7zfb8 .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-v7SXy7zfb8 .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-v7SXy7zfb8 .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-v7SXrUkUhU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7SXrUkUhU .container-fluid {
  padding: 0 3rem;
}
.cid-v7SXrUkUhU .media-container-column {
  padding: 0 2rem;
}
.cid-v7SXrUkUhU .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #16a16c;
}
@media (max-width: 767px) {
  .cid-v7SXrUkUhU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uz6yqpPz09 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uz6yqpPz09 .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uz6yqpPz09 .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uz6yqpPz09 .history-item {
    margin-top: 100px;
  }
}
.cid-uz6yqpPz09 .history-item-first {
  margin-top: 0;
}
.cid-uz6yqpPz09 .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6yqpPz09 .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uz6yqpPz09 .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .image-wrapper {
    max-width: 550px;
  }
}
.cid-uz6yqpPz09 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uz6yqpPz09 .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6yqpPz09 .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uz6yqpPz09 .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uz6yqpPz09 .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uz6yqpPz09 .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .text-wrapper {
    max-width: 550px;
  }
}
.cid-uz6yqpPz09 .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uz6yqpPz09 .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uz6yqpPz09 .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uz6yqpPz09 .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uz6yqpPz09 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uz6yqpPz09 .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uz6yqpPz09 .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uz6yqpPz09 .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uz6yrq1I4T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uz6yrq1I4T .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uz6yrq1I4T .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uz6yrq1I4T .history-item {
    margin-top: 100px;
  }
}
.cid-uz6yrq1I4T .history-item-first {
  margin-top: 0;
}
.cid-uz6yrq1I4T .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6yrq1I4T .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uz6yrq1I4T .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .image-wrapper {
    max-width: 550px;
  }
}
.cid-uz6yrq1I4T .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uz6yrq1I4T .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6yrq1I4T .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uz6yrq1I4T .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uz6yrq1I4T .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uz6yrq1I4T .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .text-wrapper {
    max-width: 550px;
  }
}
.cid-uz6yrq1I4T .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uz6yrq1I4T .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uz6yrq1I4T .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uz6yrq1I4T .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uz6yrq1I4T .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uz6yrq1I4T .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uz6yrq1I4T .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uz6yrq1I4T .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uz6zPaZ0t1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uz6zPaZ0t1 .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uz6zPaZ0t1 .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uz6zPaZ0t1 .history-item {
    margin-top: 100px;
  }
}
.cid-uz6zPaZ0t1 .history-item-first {
  margin-top: 0;
}
.cid-uz6zPaZ0t1 .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6zPaZ0t1 .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uz6zPaZ0t1 .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .image-wrapper {
    max-width: 550px;
  }
}
.cid-uz6zPaZ0t1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uz6zPaZ0t1 .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6zPaZ0t1 .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uz6zPaZ0t1 .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uz6zPaZ0t1 .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uz6zPaZ0t1 .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .text-wrapper {
    max-width: 550px;
  }
}
.cid-uz6zPaZ0t1 .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uz6zPaZ0t1 .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uz6zPaZ0t1 .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uz6zPaZ0t1 .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uz6zPaZ0t1 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uz6zPaZ0t1 .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uz6zPaZ0t1 .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uz6zPaZ0t1 .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uz6BoE5QbA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uz6BoE5QbA .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uz6BoE5QbA .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uz6BoE5QbA .history-item {
    margin-top: 100px;
  }
}
.cid-uz6BoE5QbA .history-item-first {
  margin-top: 0;
}
.cid-uz6BoE5QbA .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6BoE5QbA .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uz6BoE5QbA .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .image-wrapper {
    max-width: 550px;
  }
}
.cid-uz6BoE5QbA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uz6BoE5QbA .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uz6BoE5QbA .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uz6BoE5QbA .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uz6BoE5QbA .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uz6BoE5QbA .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .text-wrapper {
    max-width: 550px;
  }
}
.cid-uz6BoE5QbA .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uz6BoE5QbA .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uz6BoE5QbA .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uz6BoE5QbA .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uz6BoE5QbA .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uz6BoE5QbA .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uz6BoE5QbA .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uz6BoE5QbA .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uf0ZkHepbF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uf0ZkHepbF .container-fluid {
  padding: 0 3rem;
}
.cid-uf0ZkHepbF .media-container-column {
  padding: 0 2rem;
}
.cid-uf0ZkHepbF .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #16a16c;
}
@media (max-width: 767px) {
  .cid-uf0ZkHepbF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uf0ZkIqDJ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uf0ZkIqDJ4 .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uf0ZkIqDJ4 .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uf0ZkIqDJ4 .history-item {
    margin-top: 100px;
  }
}
.cid-uf0ZkIqDJ4 .history-item-first {
  margin-top: 0;
}
.cid-uf0ZkIqDJ4 .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uf0ZkIqDJ4 .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uf0ZkIqDJ4 .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .image-wrapper {
    max-width: 550px;
  }
}
.cid-uf0ZkIqDJ4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uf0ZkIqDJ4 .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uf0ZkIqDJ4 .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uf0ZkIqDJ4 .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uf0ZkIqDJ4 .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uf0ZkIqDJ4 .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .text-wrapper {
    max-width: 550px;
  }
}
.cid-uf0ZkIqDJ4 .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uf0ZkIqDJ4 .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uf0ZkIqDJ4 .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uf0ZkIqDJ4 .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uf0ZkIqDJ4 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uf0ZkIqDJ4 .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uf0ZkIqDJ4 .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uf0ZkIqDJ4 .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uf0ZkIKFWX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a3e9c7;
}
.cid-uf0ZkIKFWX .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uf0ZkIKFWX .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uf0ZkIKFWX .history-item {
    margin-top: 100px;
  }
}
.cid-uf0ZkIKFWX .history-item-first {
  margin-top: 0;
}
.cid-uf0ZkIKFWX .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uf0ZkIKFWX .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uf0ZkIKFWX .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .image-wrapper {
    max-width: 550px;
  }
}
.cid-uf0ZkIKFWX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uf0ZkIKFWX .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uf0ZkIKFWX .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uf0ZkIKFWX .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uf0ZkIKFWX .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uf0ZkIKFWX .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .text-wrapper {
    max-width: 550px;
  }
}
.cid-uf0ZkIKFWX .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uf0ZkIKFWX .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uf0ZkIKFWX .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uf0ZkIKFWX .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uf0ZkIKFWX .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uf0ZkIKFWX .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uf0ZkIKFWX .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uf0ZkIKFWX .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uf0ZkJ4S92 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #a3e9c7;
}
.cid-uf0ZkJ4S92 .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uf0ZkJ4S92 .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uf0ZkJ4S92 .history-item {
    margin-top: 100px;
  }
}
.cid-uf0ZkJ4S92 .history-item-first {
  margin-top: 0;
}
.cid-uf0ZkJ4S92 .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uf0ZkJ4S92 .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uf0ZkJ4S92 .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .image-wrapper {
    max-width: 550px;
  }
}
.cid-uf0ZkJ4S92 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uf0ZkJ4S92 .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uf0ZkJ4S92 .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uf0ZkJ4S92 .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uf0ZkJ4S92 .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uf0ZkJ4S92 .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .text-wrapper {
    max-width: 550px;
  }
}
.cid-uf0ZkJ4S92 .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uf0ZkJ4S92 .card-subtitle {
  width: 100%;
  color: #2d10a3;
  margin-top: 16px;
}
.cid-uf0ZkJ4S92 .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uf0ZkJ4S92 .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uf0ZkJ4S92 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uf0ZkJ4S92 .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uf0ZkJ4S92 .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #a3e9c7;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uf0ZkJ4S92 .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uf0ZkKqK8W {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e4817;
}
.cid-uf0ZkKqK8W ul {
  padding: 0;
  margin: 0;
}
.cid-uf0ZkKqK8W ul li {
  list-style: none;
}
.cid-uf0ZkKqK8W ul li h4 {
  margin: 0;
}
.cid-uf0ZkKqK8W ul li h4.display-4 {
  line-height: 1.75;
}
.cid-uf0ZkKqK8W .item {
  color: #cacaca;
}
.cid-uf0ZkKqK8W .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-uf0ZkKqK8W .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-uf0ZkKqK8W .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uf0ZkKqK8W .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-uf0ZkKqK8W .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-uf0ZkKqK8W .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
