body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.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: #0d700b !important;
}
.bg-success {
  background-color: #044905 !important;
}
.bg-info {
  background-color: #20fa1d !important;
}
.bg-warning {
  background-color: #0f2c62 !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: #052a04;
  border-color: #052a04;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0d700b !important;
  border-color: #0d700b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #052a04 !important;
  border-color: #052a04 !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: #052a04 !important;
  border-color: #052a04 !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: #06abc2;
  border-color: #06abc2;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1cdef8 !important;
  border-color: #1cdef8 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #06abc2 !important;
  border-color: #06abc2 !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: #06abc2 !important;
  border-color: #06abc2 !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: #07c604;
  border-color: #07c604;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #20fa1d !important;
  border-color: #20fa1d !important;
  color: #011701 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #011701 !important;
  background-color: #07c604 !important;
  border-color: #07c604 !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: #011701 !important;
  background-color: #07c604 !important;
  border-color: #07c604 !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: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #044905 !important;
  border-color: #044905 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !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: #050e20;
  border-color: #050e20;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #0f2c62 !important;
  border-color: #0f2c62 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #050e20 !important;
  border-color: #050e20 !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: #050e20 !important;
  border-color: #050e20 !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: #0d700b;
  border-color: #0d700b;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #021302;
  color: #021302 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #0d700b;
  border-color: #0d700b;
}
.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: #0d700b !important;
  border-color: #0d700b !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: #1cdef8;
  border-color: #1cdef8;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #0595a9;
  color: #0595a9 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #1cdef8;
  border-color: #1cdef8;
}
.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: #1cdef8 !important;
  border-color: #1cdef8 !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: #20fa1d;
  border-color: #20fa1d;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #06ad04;
  color: #06ad04 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #011701 !important;
  background-color: #20fa1d;
  border-color: #20fa1d;
}
.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: #011701 !important;
  background-color: #20fa1d !important;
  border-color: #20fa1d !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: #044905;
  border-color: #044905;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #044905;
  border-color: #044905;
}
.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: #044905 !important;
  border-color: #044905 !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: #0f2c62;
  border-color: #0f2c62;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #01040a;
  color: #01040a !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #0f2c62;
  border-color: #0f2c62;
}
.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: #0f2c62 !important;
  border-color: #0f2c62 !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: #0d700b !important;
}
.text-secondary {
  color: #1cdef8 !important;
}
.text-success {
  color: #044905 !important;
}
.text-info {
  color: #20fa1d !important;
}
.text-warning {
  color: #0f2c62 !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: #021302 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0595a9 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #06ad04 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #01040a !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: #044905;
}
.alert-info {
  background-color: #20fa1d;
}
.alert-warning {
  background-color: #0f2c62;
}
.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: #0d700b;
  border-color: #0d700b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0d700b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1ae416;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3ef441;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e5fee5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #205ed1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #0d700b;
}
/* 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: #0d700b;
  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: #0d700b;
  border-bottom-color: #0d700b;
}
.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: #0d700b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #1cdef8 !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='%230d700b' %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;
}
@media (min-width: 992px) {
  .cid-tzq8yEE2tg .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    width: 0px;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link {
    position: relative;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0px;
    bottom: 0rem;
    left: 0%;
    background: linear-gradient(0deg, #0d700b, #1cdef8);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tzq8yEE2tg .nav-item.open .nav-link::before {
    bottom: 0rem;
    width: 0% !important;
    left: 0% !important;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-tzq8yEE2tg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzq8yEE2tg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzq8yEE2tg .navbar {
  min-height: 0px;
  transition: all 0s;
  background: #000000;
  background: none;
}
.cid-tzq8yEE2tg .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tzq8yEE2tg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-tzq8yEE2tg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzq8yEE2tg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzq8yEE2tg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzq8yEE2tg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 0rem);
  }
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzq8yEE2tg .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-tzq8yEE2tg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzq8yEE2tg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzq8yEE2tg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzq8yEE2tg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzq8yEE2tg .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-tzq8yEE2tg .navbar .navbar-logo img {
    height: 0rem !important;
  }
  .cid-tzq8yEE2tg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzq8yEE2tg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzq8yEE2tg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzq8yEE2tg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzq8yEE2tg .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tzq8yEE2tg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzq8yEE2tg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzq8yEE2tg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzq8yEE2tg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzq8yEE2tg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzq8yEE2tg .dropdown-item.active,
.cid-tzq8yEE2tg .dropdown-item:active {
  background-color: transparent;
}
.cid-tzq8yEE2tg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzq8yEE2tg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzq8yEE2tg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzq8yEE2tg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzq8yEE2tg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzq8yEE2tg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzq8yEE2tg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzq8yEE2tg .navbar-buttons {
  text-align: center;
}
.cid-tzq8yEE2tg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #20fa1d;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzq8yEE2tg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzq8yEE2tg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzq8yEE2tg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzq8yEE2tg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tzq8yEE2tg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzq8yEE2tg .navbar {
    height: 77px;
  }
  .cid-tzq8yEE2tg .navbar.opened {
    height: auto;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzxzo401IB {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo22-1.svg");
}
.cid-tzxzo401IB .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-tzxzo401IB img,
.cid-tzxzo401IB .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzxzo401IB .item:focus,
.cid-tzxzo401IB span:focus {
  outline: none;
}
.cid-tzxzo401IB .item {
  padding: 30% !important;
  margin-bottom: 100px !important;
}
@media (max-width: 1440px) {
  .cid-tzxzo401IB .item {
    margin-bottom: 0px !important;
  }
}
.cid-tzxzo401IB .item-wrap {
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tzxzo401IB .img-wrap {
  position: relative;
  background: transparent;
  height: 0%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 15px;
}
.cid-tzxzo401IB .item-img {
  width: 0%;
  height: 0%;
  overflow: hidden;
}
.cid-tzxzo401IB .item-img img {
  width: 0%;
}
.cid-tzxzo401IB .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tzxzo401IB .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tzxzo401IB .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tzxzo401IB .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tzxzo401IB .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tzxzo401IB .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tzfXRIDhxd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #137d11;
  overflow: hidden;
}
.cid-tzfXRIDhxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfXRIDhxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzfXRIDhxd .mbr-section-title {
  color: #20fa1d;
  text-align: left;
}
.cid-tzfXRIDhxd .mbr-section-subtitle {
  color: #303030;
}
.cid-tzfYiUPb8j {
  padding-top: 9rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/hojas-1.svg");
}
.cid-tzfYiUPb8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfYiUPb8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzfYiUPb8j .container {
    padding: 0 30px;
  }
}
.cid-tzfYiUPb8j .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzfYiUPb8j .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tzfYiUPb8j .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tzfYiUPb8j .mbr-section-btn {
    display: block;
  }
}
.cid-tzfYiUPb8j .mbr-section-title {
  color: #ffffff;
}
.cid-tzfYiUPb8j .mbr-section-title,
.cid-tzfYiUPb8j .mbr-section-btn {
  color: #ffffff;
}
.cid-tzg0b0ojPe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a930d;
  overflow: hidden;
}
.cid-tzg0b0ojPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzg0b0ojPe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzg0b0ojPe .mbr-section-title {
  color: #20fa1d;
  text-align: left;
}
.cid-tzg0b0ojPe .mbr-section-subtitle {
  color: #303030;
}
.cid-tzg0m1blvg {
  padding-top: 9rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/hojas-1.svg");
}
.cid-tzg0m1blvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzg0m1blvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzg0m1blvg .container {
    padding: 0 30px;
  }
}
.cid-tzg0m1blvg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzg0m1blvg .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tzg0m1blvg .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tzg0m1blvg .mbr-section-btn {
    display: block;
  }
}
.cid-tzg0m1blvg .mbr-section-title {
  color: #ffffff;
}
.cid-tzg0m1blvg .mbr-section-title,
.cid-tzg0m1blvg .mbr-section-btn {
  color: #ffffff;
}
.cid-tzg3PH2uxw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #096693;
  overflow: hidden;
}
.cid-tzg3PH2uxw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzg3PH2uxw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzg3PH2uxw .mbr-section-title {
  color: #0f2c62;
  text-align: left;
}
.cid-tzg3PH2uxw .mbr-section-subtitle {
  color: #303030;
}
.cid-tzg3UxNr0c {
  padding-top: 9rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-image: url("../../../assets/images/peces.svg");
}
.cid-tzg3UxNr0c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzg3UxNr0c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzg3UxNr0c .container {
    padding: 0 30px;
  }
}
.cid-tzg3UxNr0c .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzg3UxNr0c .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tzg3UxNr0c .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tzg3UxNr0c .mbr-section-btn {
    display: block;
  }
}
.cid-tzg3UxNr0c .mbr-section-title {
  color: #ffffff;
}
.cid-tzg3UxNr0c .mbr-section-title,
.cid-tzg3UxNr0c .mbr-section-btn {
  color: #ffffff;
}
.cid-tzpKkAeXer {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-flamenco2-1920x1080.jpg");
}
.cid-tzpKkAeXer .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-tzpKkAeXer img,
.cid-tzpKkAeXer .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzpKkAeXer .item:focus,
.cid-tzpKkAeXer span:focus {
  outline: none;
}
.cid-tzpKkAeXer .item {
  padding: 30% !important;
  margin-bottom: 100px !important;
}
@media (max-width: 1440px) {
  .cid-tzpKkAeXer .item {
    margin-bottom: 0px !important;
  }
}
.cid-tzpKkAeXer .item-wrap {
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tzpKkAeXer .img-wrap {
  position: relative;
  background: transparent;
  height: 0%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 15px;
}
.cid-tzpKkAeXer .item-img {
  width: 0%;
  height: 0%;
  overflow: hidden;
}
.cid-tzpKkAeXer .item-img img {
  width: 0%;
}
.cid-tzpKkAeXer .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tzpKkAeXer .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tzpKkAeXer .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tzpKkAeXer .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tzpKkAeXer .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tzpKkAeXer .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tzsh091uVN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #044905;
}
.cid-tzsh091uVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzsh091uVN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzsh091uVN .container-fluid {
  margin: 0;
  padding: 0 16px;
}
.cid-tzsh091uVN .container-fluid .row {
  padding: 0;
}
.cid-tzsh091uVN .row {
  justify-content: center;
}
.cid-tzsh091uVN .card {
  padding: 0;
  border-top: 1px solid #14cb22;
  border-bottom: 1px solid #14cb22;
  border-radius: 0;
}
.cid-tzsh091uVN .title-wrapper {
  padding: 14px 0 18px;
  white-space: nowrap;
  overflow: hidden;
}
.cid-tzsh091uVN .title-wrapper:last-child {
  padding: 18px 14px;
  border-top: 1px solid #14cb22;
}
.cid-tzsh091uVN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzsh091uVN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tzsh091uVN .mbr-title {
  color: #ffffff;
  text-align: center;
}
.cid-tBoXkF23ax {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #044905;
}
.cid-tzDU2KTr0u {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #044905;
}
.cid-tzDU2KTr0u .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzDU2KTr0u .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzDU2KTr0u .container-fluid {
  padding: 0 3rem;
}
.cid-tzDU2KTr0u .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-tzDU2KTr0u .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-tzDU2KTr0u .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-tzDU2KTr0u .mbr-title {
  margin-bottom: 0;
}
.cid-tzDU2KTr0u .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tzDU2KTr0u .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-tzDU2KTr0u .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-tzDU2KTr0u .card-wrap {
    padding: 0 1rem;
  }
  .cid-tzDU2KTr0u .container-fluid {
    padding: 0 1rem;
  }
  .cid-tzDU2KTr0u .mbr-role {
    margin-top: .5rem;
  }
}
.cid-tzskvEUKWT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzskvEUKWT .container-fluid {
  padding: 0 3rem;
}
.cid-tzskvEUKWT .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzskvEUKWT .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzskvEUKWT .card {
  margin-bottom: 2rem;
}
.cid-tzskvEUKWT .card-img {
  width: auto !important;
}
.cid-tzskvEUKWT .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzskvEUKWT .content-row {
  word-wrap: break-word;
}
.cid-tzskvEUKWT .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzskvEUKWT .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzskvEUKWT .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzskvEUKWT .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzskvEUKWT .card-title,
  .cid-tzskvEUKWT .card-box {
    text-align: left;
  }
  .cid-tzskvEUKWT .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzskvEUKWT .mbr-section-subtitle {
  color: #044905;
}
.cid-tzsnaIdFE8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzsnaIdFE8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzsnaIdFE8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzsnaIdFE8 .row {
    padding: 0 13px;
  }
}
.cid-tzsnaIdFE8 .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzsnaIdFE8 .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzsnaIdFE8 .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzsnaIdFE8 .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzsnaIdFE8 .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzsnaIdFE8 .text-wrapper {
    padding: 0;
  }
}
.cid-tzsnaIdFE8 .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzsnaIdFE8 .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzsnaIdFE8 .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzsnaIdFE8 .mbr-text {
  color: #ffffff;
}
.cid-tzsnaIdFE8 .mbr-name {
  color: #ffffff;
}
.cid-tzsnaIdFE8 .mbr-role {
  color: #ffffff;
}
.cid-tzOrVveewz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzOrVveewz .container-fluid {
  padding: 0 3rem;
}
.cid-tzOrVveewz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzOrVveewz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzOrVveewz .card {
  margin-bottom: 2rem;
}
.cid-tzOrVveewz .card-img {
  width: auto !important;
}
.cid-tzOrVveewz .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzOrVveewz .content-row {
  word-wrap: break-word;
}
.cid-tzOrVveewz .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzOrVveewz .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzOrVveewz .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzOrVveewz .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzOrVveewz .card-title,
  .cid-tzOrVveewz .card-box {
    text-align: left;
  }
  .cid-tzOrVveewz .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzOrVveewz .mbr-section-subtitle {
  color: #044905;
}
.cid-tzOsiwl6ut {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzOsiwl6ut .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzOsiwl6ut .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzOsiwl6ut .row {
    padding: 0 13px;
  }
}
.cid-tzOsiwl6ut .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzOsiwl6ut .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzOsiwl6ut .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzOsiwl6ut .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzOsiwl6ut .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzOsiwl6ut .text-wrapper {
    padding: 0;
  }
}
.cid-tzOsiwl6ut .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzOsiwl6ut .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzOsiwl6ut .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzOsiwl6ut .mbr-text {
  color: #ffffff;
}
.cid-tzOsiwl6ut .mbr-name {
  color: #ffffff;
}
.cid-tzOsiwl6ut .mbr-role {
  color: #ffffff;
}
.cid-tzsoU3xUzl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzsoU3xUzl .container-fluid {
  padding: 0 3rem;
}
.cid-tzsoU3xUzl .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzsoU3xUzl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzsoU3xUzl .card {
  margin-bottom: 2rem;
}
.cid-tzsoU3xUzl .card-img {
  width: auto !important;
}
.cid-tzsoU3xUzl .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzsoU3xUzl .content-row {
  word-wrap: break-word;
}
.cid-tzsoU3xUzl .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzsoU3xUzl .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzsoU3xUzl .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzsoU3xUzl .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzsoU3xUzl .card-title,
  .cid-tzsoU3xUzl .card-box {
    text-align: left;
  }
  .cid-tzsoU3xUzl .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzsoU3xUzl .mbr-section-subtitle {
  color: #044905;
}
.cid-tzxr3RZ7pA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzxr3RZ7pA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzxr3RZ7pA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzxr3RZ7pA .row {
    padding: 0 13px;
  }
}
.cid-tzxr3RZ7pA .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzxr3RZ7pA .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzxr3RZ7pA .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzxr3RZ7pA .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzxr3RZ7pA .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzxr3RZ7pA .text-wrapper {
    padding: 0;
  }
}
.cid-tzxr3RZ7pA .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzxr3RZ7pA .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzxr3RZ7pA .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzxr3RZ7pA .mbr-text {
  color: #ffffff;
}
.cid-tzxr3RZ7pA .mbr-name {
  color: #ffffff;
}
.cid-tzxr3RZ7pA .mbr-role {
  color: #ffffff;
}
.cid-tzOsYOKgSR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzOsYOKgSR .container-fluid {
  padding: 0 3rem;
}
.cid-tzOsYOKgSR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzOsYOKgSR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzOsYOKgSR .card {
  margin-bottom: 2rem;
}
.cid-tzOsYOKgSR .card-img {
  width: auto !important;
}
.cid-tzOsYOKgSR .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzOsYOKgSR .content-row {
  word-wrap: break-word;
}
.cid-tzOsYOKgSR .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzOsYOKgSR .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzOsYOKgSR .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzOsYOKgSR .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzOsYOKgSR .card-title,
  .cid-tzOsYOKgSR .card-box {
    text-align: left;
  }
  .cid-tzOsYOKgSR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzOsYOKgSR .mbr-section-subtitle {
  color: #044905;
}
.cid-tzxrlIX631 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzxrlIX631 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzxrlIX631 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzxrlIX631 .row {
    padding: 0 13px;
  }
}
.cid-tzxrlIX631 .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzxrlIX631 .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzxrlIX631 .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzxrlIX631 .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzxrlIX631 .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzxrlIX631 .text-wrapper {
    padding: 0;
  }
}
.cid-tzxrlIX631 .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzxrlIX631 .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzxrlIX631 .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzxrlIX631 .mbr-text {
  color: #ffffff;
}
.cid-tzxrlIX631 .mbr-name {
  color: #ffffff;
}
.cid-tzxrlIX631 .mbr-role {
  color: #ffffff;
}
.cid-tzx9bnVK7f {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzx9bnVK7f .container-fluid {
  padding: 0 3rem;
}
.cid-tzx9bnVK7f .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzx9bnVK7f .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzx9bnVK7f .card {
  margin-bottom: 2rem;
}
.cid-tzx9bnVK7f .card-img {
  width: auto !important;
}
.cid-tzx9bnVK7f .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzx9bnVK7f .content-row {
  word-wrap: break-word;
}
.cid-tzx9bnVK7f .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzx9bnVK7f .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzx9bnVK7f .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzx9bnVK7f .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzx9bnVK7f .card-title,
  .cid-tzx9bnVK7f .card-box {
    text-align: left;
  }
  .cid-tzx9bnVK7f .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzx9bnVK7f .mbr-section-subtitle {
  color: #044905;
}
.cid-tzxaU8XEJj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzxaU8XEJj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzxaU8XEJj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzxaU8XEJj .row {
    padding: 0 13px;
  }
}
.cid-tzxaU8XEJj .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzxaU8XEJj .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzxaU8XEJj .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzxaU8XEJj .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzxaU8XEJj .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzxaU8XEJj .text-wrapper {
    padding: 0;
  }
}
.cid-tzxaU8XEJj .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzxaU8XEJj .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzxaU8XEJj .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzxaU8XEJj .mbr-text {
  color: #ffffff;
}
.cid-tzxaU8XEJj .mbr-name {
  color: #ffffff;
}
.cid-tzxaU8XEJj .mbr-role {
  color: #ffffff;
}
.cid-tzxbTdM7HS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzxbTdM7HS .container-fluid {
  padding: 0 3rem;
}
.cid-tzxbTdM7HS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzxbTdM7HS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzxbTdM7HS .card {
  margin-bottom: 2rem;
}
.cid-tzxbTdM7HS .card-img {
  width: auto !important;
}
.cid-tzxbTdM7HS .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzxbTdM7HS .content-row {
  word-wrap: break-word;
}
.cid-tzxbTdM7HS .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzxbTdM7HS .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzxbTdM7HS .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzxbTdM7HS .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzxbTdM7HS .card-title,
  .cid-tzxbTdM7HS .card-box {
    text-align: left;
  }
  .cid-tzxbTdM7HS .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzxbTdM7HS .mbr-section-subtitle {
  color: #044905;
}
.cid-tzOw7oDZkB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
}
.cid-tzOw7oDZkB .section-border-item {
  background-color: #fcdb42;
}
.cid-tzOw7oDZkB .section-border-item_center {
  left: calc(5vw + 21rem);
  transform: translateX(0);
}
@media (max-width: 991px) {
  .cid-tzOw7oDZkB .section-border-item_center {
    display: none;
  }
}
.cid-tzOw7oDZkB .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 15rem;
  padding: 2rem 0;
}
@media (max-width: 991px) {
  .cid-tzOw7oDZkB .content-container {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .cid-tzOw7oDZkB .content-container {
    flex-wrap: wrap;
  }
}
.cid-tzOw7oDZkB .mbr-section-head {
  width: 100%;
  max-width: 21rem;
}
@media (max-width: 991px) {
  .cid-tzOw7oDZkB .mbr-section-head {
    max-width: 16rem;
  }
}
@media (max-width: 767px) {
  .cid-tzOw7oDZkB .mbr-section-head {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tzOw7oDZkB .mbr-section-title {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzOw7oDZkB .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tzOw7oDZkB .mbr-section-subtitle {
  color: #fff;
}
@media (max-width: 767px) {
  .cid-tzOw7oDZkB .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tzOw7oDZkB .card-row {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  align-items: center;
  padding-left: 5vw;
}
@media (max-width: 991px) {
  .cid-tzOw7oDZkB .card-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tzOw7oDZkB .card-row {
    row-gap: 1rem;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tzOw7oDZkB .card-row {
    row-gap: 0;
    padding-left: 0;
  }
}
.cid-tzOw7oDZkB .card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 575px) {
  .cid-tzOw7oDZkB .card {
    padding: 0.75rem 1rem;
  }
}
.cid-tzOw7oDZkB .card img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-tzOw7oDZkB .card img {
    max-width: 8rem;
  }
}
@media (max-width: 575px) {
  .cid-tzOw7oDZkB .card img {
    max-width: 7rem;
  }
}
.cid-tzOBfCUZi9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
}
.cid-tzOBfCUZi9 .section-border-item {
  background-color: #fcdb42;
}
.cid-tzOBfCUZi9 .section-border-item_center {
  left: calc(5vw + 21rem);
  transform: translateX(0);
}
@media (max-width: 991px) {
  .cid-tzOBfCUZi9 .section-border-item_center {
    display: none;
  }
}
.cid-tzOBfCUZi9 .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 15rem;
  padding: 2rem 0;
}
@media (max-width: 991px) {
  .cid-tzOBfCUZi9 .content-container {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .cid-tzOBfCUZi9 .content-container {
    flex-wrap: wrap;
  }
}
.cid-tzOBfCUZi9 .mbr-section-head {
  width: 100%;
  max-width: 21rem;
}
@media (max-width: 991px) {
  .cid-tzOBfCUZi9 .mbr-section-head {
    max-width: 16rem;
  }
}
@media (max-width: 767px) {
  .cid-tzOBfCUZi9 .mbr-section-head {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tzOBfCUZi9 .mbr-section-title {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzOBfCUZi9 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tzOBfCUZi9 .mbr-section-subtitle {
  color: #fff;
}
@media (max-width: 767px) {
  .cid-tzOBfCUZi9 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tzOBfCUZi9 .card-row {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  align-items: center;
  padding-left: 5vw;
}
@media (max-width: 991px) {
  .cid-tzOBfCUZi9 .card-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tzOBfCUZi9 .card-row {
    row-gap: 1rem;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tzOBfCUZi9 .card-row {
    row-gap: 0;
    padding-left: 0;
  }
}
.cid-tzOBfCUZi9 .card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 575px) {
  .cid-tzOBfCUZi9 .card {
    padding: 0.75rem 1rem;
  }
}
.cid-tzOBfCUZi9 .card img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-tzOBfCUZi9 .card img {
    max-width: 8rem;
  }
}
@media (max-width: 575px) {
  .cid-tzOBfCUZi9 .card img {
    max-width: 7rem;
  }
}
.cid-tzOOm8JJcj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzOOm8JJcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzOOm8JJcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzOOm8JJcj .row {
    padding: 0 13px;
  }
}
.cid-tzOOm8JJcj .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzOOm8JJcj .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzOOm8JJcj .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzOOm8JJcj .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzOOm8JJcj .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzOOm8JJcj .text-wrapper {
    padding: 0;
  }
}
.cid-tzOOm8JJcj .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzOOm8JJcj .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzOOm8JJcj .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzOOm8JJcj .mbr-text {
  color: #ffffff;
}
.cid-tzOOm8JJcj .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzOOm8JJcj .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzOTL1ROHY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzOTL1ROHY .container-fluid {
  padding: 0 3rem;
}
.cid-tzOTL1ROHY .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzOTL1ROHY .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzOTL1ROHY .card {
  margin-bottom: 2rem;
}
.cid-tzOTL1ROHY .card-img {
  width: auto !important;
}
.cid-tzOTL1ROHY .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzOTL1ROHY .content-row {
  word-wrap: break-word;
}
.cid-tzOTL1ROHY .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzOTL1ROHY .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzOTL1ROHY .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzOTL1ROHY .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzOTL1ROHY .card-title,
  .cid-tzOTL1ROHY .card-box {
    text-align: left;
  }
  .cid-tzOTL1ROHY .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzOTL1ROHY .mbr-section-subtitle {
  color: #044905;
}
.cid-tzOUccds0c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzOUccds0c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzOUccds0c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzOUccds0c .row {
    padding: 0 13px;
  }
}
.cid-tzOUccds0c .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzOUccds0c .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzOUccds0c .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzOUccds0c .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzOUccds0c .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzOUccds0c .text-wrapper {
    padding: 0;
  }
}
.cid-tzOUccds0c .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzOUccds0c .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzOUccds0c .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzOUccds0c .mbr-text {
  color: #ffffff;
}
.cid-tzOUccds0c .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzOUccds0c .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzPEganSpR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzPEganSpR .container-fluid {
  padding: 0 3rem;
}
.cid-tzPEganSpR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzPEganSpR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzPEganSpR .card {
  margin-bottom: 2rem;
}
.cid-tzPEganSpR .card-img {
  width: auto !important;
}
.cid-tzPEganSpR .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzPEganSpR .content-row {
  word-wrap: break-word;
}
.cid-tzPEganSpR .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzPEganSpR .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzPEganSpR .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzPEganSpR .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzPEganSpR .card-title,
  .cid-tzPEganSpR .card-box {
    text-align: left;
  }
  .cid-tzPEganSpR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzPEganSpR .mbr-section-subtitle {
  color: #044905;
}
.cid-tzPEVxKGgO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzPEVxKGgO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPEVxKGgO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzPEVxKGgO .row {
    padding: 0 13px;
  }
}
.cid-tzPEVxKGgO .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzPEVxKGgO .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzPEVxKGgO .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzPEVxKGgO .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzPEVxKGgO .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzPEVxKGgO .text-wrapper {
    padding: 0;
  }
}
.cid-tzPEVxKGgO .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzPEVxKGgO .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzPEVxKGgO .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzPEVxKGgO .mbr-text {
  color: #ffffff;
}
.cid-tzPEVxKGgO .mbr-name {
  color: #ffffff;
}
.cid-tzPEVxKGgO .mbr-role {
  color: #ffffff;
}
.cid-tzPFX4TUGk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzPFX4TUGk .container-fluid {
  padding: 0 3rem;
}
.cid-tzPFX4TUGk .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzPFX4TUGk .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzPFX4TUGk .card {
  margin-bottom: 2rem;
}
.cid-tzPFX4TUGk .card-img {
  width: auto !important;
}
.cid-tzPFX4TUGk .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzPFX4TUGk .content-row {
  word-wrap: break-word;
}
.cid-tzPFX4TUGk .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzPFX4TUGk .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzPFX4TUGk .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzPFX4TUGk .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzPFX4TUGk .card-title,
  .cid-tzPFX4TUGk .card-box {
    text-align: left;
  }
  .cid-tzPFX4TUGk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzPFX4TUGk .mbr-section-subtitle {
  color: #044905;
}
.cid-tzPGP54YOj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzPGP54YOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPGP54YOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzPGP54YOj .row {
    padding: 0 13px;
  }
}
.cid-tzPGP54YOj .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzPGP54YOj .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzPGP54YOj .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzPGP54YOj .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzPGP54YOj .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzPGP54YOj .text-wrapper {
    padding: 0;
  }
}
.cid-tzPGP54YOj .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzPGP54YOj .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzPGP54YOj .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzPGP54YOj .mbr-text {
  color: #ffffff;
}
.cid-tzPGP54YOj .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzPGP54YOj .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzxeitDm6l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzxeitDm6l .container-fluid {
  padding: 0 3rem;
}
.cid-tzxeitDm6l .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzxeitDm6l .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzxeitDm6l .card {
  margin-bottom: 2rem;
}
.cid-tzxeitDm6l .card-img {
  width: auto !important;
}
.cid-tzxeitDm6l .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzxeitDm6l .content-row {
  word-wrap: break-word;
}
.cid-tzxeitDm6l .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzxeitDm6l .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzxeitDm6l .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzxeitDm6l .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzxeitDm6l .card-title,
  .cid-tzxeitDm6l .card-box {
    text-align: left;
  }
  .cid-tzxeitDm6l .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzPHWrOBd2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzPHWrOBd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPHWrOBd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzPHWrOBd2 .row {
    padding: 0 13px;
  }
}
.cid-tzPHWrOBd2 .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzPHWrOBd2 .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzPHWrOBd2 .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzPHWrOBd2 .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzPHWrOBd2 .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzPHWrOBd2 .text-wrapper {
    padding: 0;
  }
}
.cid-tzPHWrOBd2 .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzPHWrOBd2 .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzPHWrOBd2 .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzPHWrOBd2 .mbr-text {
  color: #ffffff;
}
.cid-tzPHWrOBd2 .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzPHWrOBd2 .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzPJb9M2gL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzPJb9M2gL .container-fluid {
  padding: 0 3rem;
}
.cid-tzPJb9M2gL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzPJb9M2gL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzPJb9M2gL .card {
  margin-bottom: 2rem;
}
.cid-tzPJb9M2gL .card-img {
  width: auto !important;
}
.cid-tzPJb9M2gL .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzPJb9M2gL .content-row {
  word-wrap: break-word;
}
.cid-tzPJb9M2gL .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzPJb9M2gL .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzPJb9M2gL .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzPJb9M2gL .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzPJb9M2gL .card-title,
  .cid-tzPJb9M2gL .card-box {
    text-align: left;
  }
  .cid-tzPJb9M2gL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzPJKIY1CI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzPJKIY1CI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPJKIY1CI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzPJKIY1CI .row {
    padding: 0 13px;
  }
}
.cid-tzPJKIY1CI .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzPJKIY1CI .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzPJKIY1CI .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzPJKIY1CI .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzPJKIY1CI .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzPJKIY1CI .text-wrapper {
    padding: 0;
  }
}
.cid-tzPJKIY1CI .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzPJKIY1CI .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzPJKIY1CI .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzPJKIY1CI .mbr-text {
  color: #ffffff;
}
.cid-tzPJKIY1CI .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzPJKIY1CI .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzPKatG8Cw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzPKatG8Cw .container-fluid {
  padding: 0 3rem;
}
.cid-tzPKatG8Cw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzPKatG8Cw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzPKatG8Cw .card {
  margin-bottom: 2rem;
}
.cid-tzPKatG8Cw .card-img {
  width: auto !important;
}
.cid-tzPKatG8Cw .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzPKatG8Cw .content-row {
  word-wrap: break-word;
}
.cid-tzPKatG8Cw .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzPKatG8Cw .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzPKatG8Cw .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzPKatG8Cw .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzPKatG8Cw .card-title,
  .cid-tzPKatG8Cw .card-box {
    text-align: left;
  }
  .cid-tzPKatG8Cw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzPKatG8Cw .mbr-section-subtitle {
  color: #044905;
}
.cid-tzxfv4VeMt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzxfv4VeMt .container-fluid {
  padding: 0 3rem;
}
.cid-tzxfv4VeMt .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzxfv4VeMt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzxfv4VeMt .card {
  margin-bottom: 2rem;
}
.cid-tzxfv4VeMt .card-img {
  width: auto !important;
}
.cid-tzxfv4VeMt .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzxfv4VeMt .content-row {
  word-wrap: break-word;
}
.cid-tzxfv4VeMt .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzxfv4VeMt .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzxfv4VeMt .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzxfv4VeMt .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzxfv4VeMt .card-title,
  .cid-tzxfv4VeMt .card-box {
    text-align: left;
  }
  .cid-tzxfv4VeMt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzxfv4VeMt .mbr-section-subtitle {
  color: #044905;
}
.cid-tzxihQzfQi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzxihQzfQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzxihQzfQi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzxihQzfQi .row {
    padding: 0 13px;
  }
}
.cid-tzxihQzfQi .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzxihQzfQi .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzxihQzfQi .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzxihQzfQi .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzxihQzfQi .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzxihQzfQi .text-wrapper {
    padding: 0;
  }
}
.cid-tzxihQzfQi .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzxihQzfQi .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzxihQzfQi .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzxihQzfQi .mbr-text {
  color: #ffffff;
}
.cid-tzxihQzfQi .mbr-name {
  color: #ffffff;
}
.cid-tzxihQzfQi .mbr-role {
  color: #ffffff;
}
.cid-tzYucMEqz3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzYucMEqz3 .container-fluid {
  padding: 0 3rem;
}
.cid-tzYucMEqz3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzYucMEqz3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzYucMEqz3 .card {
  margin-bottom: 2rem;
}
.cid-tzYucMEqz3 .card-img {
  width: auto !important;
}
.cid-tzYucMEqz3 .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzYucMEqz3 .content-row {
  word-wrap: break-word;
}
.cid-tzYucMEqz3 .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzYucMEqz3 .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzYucMEqz3 .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzYucMEqz3 .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzYucMEqz3 .card-title,
  .cid-tzYucMEqz3 .card-box {
    text-align: left;
  }
  .cid-tzYucMEqz3 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzYuHSdbTS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzYuHSdbTS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzYuHSdbTS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzYuHSdbTS .row {
    padding: 0 13px;
  }
}
.cid-tzYuHSdbTS .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzYuHSdbTS .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzYuHSdbTS .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzYuHSdbTS .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzYuHSdbTS .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzYuHSdbTS .text-wrapper {
    padding: 0;
  }
}
.cid-tzYuHSdbTS .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzYuHSdbTS .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzYuHSdbTS .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzYuHSdbTS .mbr-text {
  color: #ffffff;
}
.cid-tzYuHSdbTS .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzYuHSdbTS .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzJqR7eB8G {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzJqR7eB8G .container-fluid {
  padding: 0 3rem;
}
.cid-tzJqR7eB8G .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzJqR7eB8G .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzJqR7eB8G .card {
  margin-bottom: 2rem;
}
.cid-tzJqR7eB8G .card-img {
  width: auto !important;
}
.cid-tzJqR7eB8G .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzJqR7eB8G .content-row {
  word-wrap: break-word;
}
.cid-tzJqR7eB8G .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzJqR7eB8G .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzJqR7eB8G .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzJqR7eB8G .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzJqR7eB8G .card-title,
  .cid-tzJqR7eB8G .card-box {
    text-align: left;
  }
  .cid-tzJqR7eB8G .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzJqR7eB8G .mbr-section-subtitle {
  color: #044905;
}
.cid-tzYyBItTJZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzYyBItTJZ .container-fluid {
  padding: 0 3rem;
}
.cid-tzYyBItTJZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzYyBItTJZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzYyBItTJZ .card {
  margin-bottom: 2rem;
}
.cid-tzYyBItTJZ .card-img {
  width: auto !important;
}
.cid-tzYyBItTJZ .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzYyBItTJZ .content-row {
  word-wrap: break-word;
}
.cid-tzYyBItTJZ .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzYyBItTJZ .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzYyBItTJZ .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzYyBItTJZ .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzYyBItTJZ .card-title,
  .cid-tzYyBItTJZ .card-box {
    text-align: left;
  }
  .cid-tzYyBItTJZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzYyBItTJZ .mbr-section-subtitle {
  color: #044905;
}
.cid-tzPMvYMn1E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzPMvYMn1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPMvYMn1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzPMvYMn1E .row {
    padding: 0 13px;
  }
}
.cid-tzPMvYMn1E .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzPMvYMn1E .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzPMvYMn1E .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzPMvYMn1E .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzPMvYMn1E .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzPMvYMn1E .text-wrapper {
    padding: 0;
  }
}
.cid-tzPMvYMn1E .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzPMvYMn1E .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzPMvYMn1E .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzPMvYMn1E .mbr-text {
  color: #ffffff;
}
.cid-tzPMvYMn1E .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzPMvYMn1E .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzxjiZBu0g {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzxjiZBu0g .container-fluid {
  padding: 0 3rem;
}
.cid-tzxjiZBu0g .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzxjiZBu0g .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzxjiZBu0g .card {
  margin-bottom: 2rem;
}
.cid-tzxjiZBu0g .card-img {
  width: auto !important;
}
.cid-tzxjiZBu0g .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzxjiZBu0g .content-row {
  word-wrap: break-word;
}
.cid-tzxjiZBu0g .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzxjiZBu0g .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzxjiZBu0g .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzxjiZBu0g .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzxjiZBu0g .card-title,
  .cid-tzxjiZBu0g .card-box {
    text-align: left;
  }
  .cid-tzxjiZBu0g .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzxjiZBu0g .mbr-section-subtitle {
  color: #044905;
}
.cid-tzPNoACPy8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzPNoACPy8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPNoACPy8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzPNoACPy8 .row {
    padding: 0 13px;
  }
}
.cid-tzPNoACPy8 .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzPNoACPy8 .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzPNoACPy8 .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzPNoACPy8 .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzPNoACPy8 .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzPNoACPy8 .text-wrapper {
    padding: 0;
  }
}
.cid-tzPNoACPy8 .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzPNoACPy8 .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzPNoACPy8 .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzPNoACPy8 .mbr-text {
  color: #ffffff;
}
.cid-tzPNoACPy8 .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tzPNoACPy8 .mbr-role {
  color: #ffffff;
  text-align: left;
}
.cid-tzPOinebz5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzPOinebz5 .container-fluid {
  padding: 0 3rem;
}
.cid-tzPOinebz5 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzPOinebz5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzPOinebz5 .card {
  margin-bottom: 2rem;
}
.cid-tzPOinebz5 .card-img {
  width: auto !important;
}
.cid-tzPOinebz5 .card-img .mbr-iconfont {
  color: #145f15;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #145f15, #2ae538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tzPOinebz5 .content-row {
  word-wrap: break-word;
}
.cid-tzPOinebz5 .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tzPOinebz5 .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-tzPOinebz5 .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-tzPOinebz5 .card-title {
  color: #044905;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tzPOinebz5 .card-title,
  .cid-tzPOinebz5 .card-box {
    text-align: left;
  }
  .cid-tzPOinebz5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tzPOinebz5 .mbr-section-subtitle {
  color: #044905;
}
.cid-tzxkMIOB0A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzxkMIOB0A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzxkMIOB0A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzxkMIOB0A .row {
    padding: 0 13px;
  }
}
.cid-tzxkMIOB0A .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzxkMIOB0A .image-wrap .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tzxkMIOB0A .image-wrap .image-wrapper img {
  height: 210px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tzxkMIOB0A .image-wrap .image-wrapper img {
    max-width: 240px;
    margin: 0 auto;
  }
}
.cid-tzxkMIOB0A .text-wrapper {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzxkMIOB0A .text-wrapper {
    padding: 0;
  }
}
.cid-tzxkMIOB0A .text-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzxkMIOB0A .text-wrapper .mbr-name {
  margin: 34px 0 0;
  opacity: .85;
}
.cid-tzxkMIOB0A .text-wrapper .mbr-role {
  margin: 24px 0 0;
  opacity: .85;
}
.cid-tzxkMIOB0A .mbr-text {
  color: #ffffff;
}
.cid-tzxkMIOB0A .mbr-name {
  color: #ffffff;
}
.cid-tzxkMIOB0A .mbr-role {
  color: #ffffff;
}
.cid-tzEb807AXS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
  position: relative;
  margin-top: -1px;
}
.cid-tzEb807AXS .section-border-item {
  background-color: #fcdb42;
}
.cid-tzEb807AXS .section-border-item_center {
  left: calc(5vw + 21rem);
  transform: translateX(0);
}
@media (max-width: 991px) {
  .cid-tzEb807AXS .section-border-item_center {
    display: none;
  }
}
.cid-tzEb807AXS .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 15rem;
  padding: 2rem 0;
}
@media (max-width: 991px) {
  .cid-tzEb807AXS .content-container {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .cid-tzEb807AXS .content-container {
    flex-wrap: wrap;
  }
}
.cid-tzEb807AXS .mbr-section-head {
  width: 100%;
  max-width: 21rem;
}
@media (max-width: 991px) {
  .cid-tzEb807AXS .mbr-section-head {
    max-width: 16rem;
  }
}
@media (max-width: 767px) {
  .cid-tzEb807AXS .mbr-section-head {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tzEb807AXS .mbr-section-title {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzEb807AXS .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tzEb807AXS .mbr-section-subtitle {
  color: #fff;
}
@media (max-width: 767px) {
  .cid-tzEb807AXS .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tzEb807AXS .card-row {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  align-items: center;
  padding-left: 5vw;
}
@media (max-width: 991px) {
  .cid-tzEb807AXS .card-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tzEb807AXS .card-row {
    row-gap: 1rem;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tzEb807AXS .card-row {
    row-gap: 0;
    padding-left: 0;
  }
}
.cid-tzEb807AXS .card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 575px) {
  .cid-tzEb807AXS .card {
    padding: 0.75rem 1rem;
  }
}
.cid-tzEb807AXS .card img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-tzEb807AXS .card img {
    max-width: 8rem;
  }
}
@media (max-width: 575px) {
  .cid-tzEb807AXS .card img {
    max-width: 7rem;
  }
}
.cid-tzDPI3XKhx {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #c1c1c1;
}
.cid-tzDPI3XKhx .mbr-iconfont-social {
  font-size: 32px;
  color: #044905;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tzDPI3XKhx .mbr-iconfont-social:hover {
  color: #8264fd;
}
.cid-tzDPI3XKhx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tzDPI3XKhx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0d700b, #1cdef8);
  display: inline-block;
}
.cid-tzDPI3XKhx .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tzDPI3XKhx .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tzDPI3XKhx .mbr-section-title,
.cid-tzDPI3XKhx .social-list,
.cid-tzDPI3XKhx .underline {
  color: #044905;
}
.cid-tA4XVYMjDj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tzq8yEE2tg .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    width: 0px;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link {
    position: relative;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0px;
    bottom: 0rem;
    left: 0%;
    background: linear-gradient(0deg, #0d700b, #1cdef8);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tzq8yEE2tg .nav-item.open .nav-link::before {
    bottom: 0rem;
    width: 0% !important;
    left: 0% !important;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-tzq8yEE2tg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzq8yEE2tg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzq8yEE2tg .navbar {
  min-height: 0px;
  transition: all 0s;
  background: #000000;
  background: none;
}
.cid-tzq8yEE2tg .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tzq8yEE2tg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-tzq8yEE2tg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzq8yEE2tg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzq8yEE2tg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzq8yEE2tg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 0rem);
  }
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzq8yEE2tg .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-tzq8yEE2tg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzq8yEE2tg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzq8yEE2tg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzq8yEE2tg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzq8yEE2tg .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-tzq8yEE2tg .navbar .navbar-logo img {
    height: 0rem !important;
  }
  .cid-tzq8yEE2tg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzq8yEE2tg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzq8yEE2tg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzq8yEE2tg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzq8yEE2tg .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tzq8yEE2tg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzq8yEE2tg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzq8yEE2tg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzq8yEE2tg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzq8yEE2tg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzq8yEE2tg .dropdown-item.active,
.cid-tzq8yEE2tg .dropdown-item:active {
  background-color: transparent;
}
.cid-tzq8yEE2tg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzq8yEE2tg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzq8yEE2tg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzq8yEE2tg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzq8yEE2tg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzq8yEE2tg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzq8yEE2tg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzq8yEE2tg .navbar-buttons {
  text-align: center;
}
.cid-tzq8yEE2tg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #20fa1d;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzq8yEE2tg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzq8yEE2tg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzq8yEE2tg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzq8yEE2tg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tzq8yEE2tg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzq8yEE2tg .navbar {
    height: 77px;
  }
  .cid-tzq8yEE2tg .navbar.opened {
    height: auto;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA4UFWL6pr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/fondo-mandala-1920x1080.jpg");
}
.cid-tA4UFWL6pr .container-fluid {
  padding: 0 3rem;
}
.cid-tA4UFWL6pr .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-tA4UFWL6pr .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tA4UFWL6pr .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-tA4UFWL6pr .form-group {
  margin-bottom: 1.4em;
}
.cid-tA4UFWL6pr .form-control {
  background-color: #efefef;
  border-radius: 22px;
  padding: 18px 25px;
}
.cid-tA4UFWL6pr input.form-control {
  border: 1px solid #ddd;
}
.cid-tA4UFWL6pr textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-tA4UFWL6pr .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-tA4UFWL6pr .container-fluid {
    padding: 0 1rem;
  }
  .cid-tA4UFWL6pr .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-tA4UFWL6pr H1 {
  color: #ffffff;
}
.cid-tA4UFWL6pr LABEL {
  color: #ffffff;
}
.cid-tA4XVYMjDj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tzq8yEE2tg .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    width: 0px;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link {
    position: relative;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0px;
    bottom: 0rem;
    left: 0%;
    background: linear-gradient(0deg, #0d700b, #1cdef8);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tzq8yEE2tg .nav-item.open .nav-link::before {
    bottom: 0rem;
    width: 0% !important;
    left: 0% !important;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzq8yEE2tg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-tzq8yEE2tg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzq8yEE2tg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzq8yEE2tg .navbar {
  min-height: 0px;
  transition: all 0s;
  background: #000000;
  background: none;
}
.cid-tzq8yEE2tg .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tzq8yEE2tg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-tzq8yEE2tg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzq8yEE2tg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzq8yEE2tg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzq8yEE2tg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 0rem);
  }
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzq8yEE2tg .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-tzq8yEE2tg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzq8yEE2tg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzq8yEE2tg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzq8yEE2tg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzq8yEE2tg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzq8yEE2tg .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-tzq8yEE2tg .navbar .navbar-logo img {
    height: 0rem !important;
  }
  .cid-tzq8yEE2tg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzq8yEE2tg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzq8yEE2tg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzq8yEE2tg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzq8yEE2tg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzq8yEE2tg .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tzq8yEE2tg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzq8yEE2tg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzq8yEE2tg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzq8yEE2tg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzq8yEE2tg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzq8yEE2tg .dropdown-item.active,
.cid-tzq8yEE2tg .dropdown-item:active {
  background-color: transparent;
}
.cid-tzq8yEE2tg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzq8yEE2tg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzq8yEE2tg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzq8yEE2tg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzq8yEE2tg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzq8yEE2tg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzq8yEE2tg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzq8yEE2tg .navbar-buttons {
  text-align: center;
}
.cid-tzq8yEE2tg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #20fa1d;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzq8yEE2tg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzq8yEE2tg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzq8yEE2tg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzq8yEE2tg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzq8yEE2tg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzq8yEE2tg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tzq8yEE2tg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzq8yEE2tg .navbar {
    height: 77px;
  }
  .cid-tzq8yEE2tg .navbar.opened {
    height: auto;
  }
  .cid-tzq8yEE2tg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzsi6R8JAD {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #044905;
}
.cid-tzsi6R8JAD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzsi6R8JAD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzsi6R8JAD .container-fluid {
  margin: 0;
  padding: 0 16px;
}
.cid-tzsi6R8JAD .container-fluid .row {
  padding: 0;
}
.cid-tzsi6R8JAD .row {
  justify-content: center;
}
.cid-tzsi6R8JAD .card {
  padding: 0;
  border-top: 1px solid #14cb22;
  border-bottom: 1px solid #14cb22;
  border-radius: 0;
}
.cid-tzsi6R8JAD .title-wrapper {
  padding: 14px 0 18px;
  white-space: nowrap;
  overflow: hidden;
}
.cid-tzsi6R8JAD .title-wrapper:last-child {
  padding: 18px 14px;
  border-top: 1px solid #14cb22;
}
.cid-tzsi6R8JAD .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzsi6R8JAD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tzsi6R8JAD .mbr-title {
  color: #ffffff;
  text-align: center;
}
.cid-tzsilYboX0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzsilYboX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzsilYboX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzsilYboX0 .row {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tzsilYboX0 .title-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-tzsilYboX0 .title-wrapper .mbr-desc {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tzsilYboX0 .title-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tzsilYboX0 .title-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tzsilYboX0 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tzsilYboX0 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tzsilYboX0 .nav.nav-tabs {
  border: none;
  display: inline-flex;
  justify-content: center;
}
.cid-tzsilYboX0 .nav.nav-tabs .nav-item {
  margin: 0 15px 15px 0;
}
.cid-tzsilYboX0 .nav.nav-tabs .nav-item .nav-link {
  padding: 0 24px;
  min-height: 60px;
  border: none;
  border-radius: 30px;
  display: flex;
  align-items: center;
  color: #044905;
  background-color: #ffffff;
  position: relative;
}
.cid-tzsilYboX0 .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #cccccc;
}
.cid-tzsilYboX0 .tab-content {
  margin-bottom: 24px;
}
.cid-tzsilYboX0 .tab-content .tab-pane .mbr-text {
  margin-bottom: 0;
}
.cid-tzsilYboX0 .card:first-child {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tzsilYboX0 .card:first-child {
    padding: 0 100px 0 16px;
  }
}
.cid-tzsilYboX0 .card:last-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1100px) {
  .cid-tzsilYboX0 .image-wrapper {
    overflow: hidden;
  }
}
.cid-tzsilYboX0 .image-wrapper .card-wrapper {
  margin: 0 0 20px 0;
  background-color: #0d700b;
  border-radius: 20px;
  max-width: 290px;
  min-width: 200px;
  height: 290px;
}
@media (max-width: 1300px) {
  .cid-tzsilYboX0 .image-wrapper .card-wrapper {
    min-width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-tzsilYboX0 .image-wrapper .card-wrapper {
    display: none;
  }
}
@media (max-width: 992px) {
  .cid-tzsilYboX0 .image-wrapper .image {
    margin-top: 40px;
  }
}
.cid-tzsilYboX0 .image-wrapper .image img {
  max-width: 290px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 20px 20px 0;
}
@media (max-width: 992px) {
  .cid-tzsilYboX0 .image-wrapper .image img {
    max-width: none;
    height: 450px;
    width: 100%;
  }
}
.cid-tzsilYboX0 .image-wrapper:last-child {
  margin-left: 20px;
}
@media (max-width: 992px) {
  .cid-tzsilYboX0 .image-wrapper:last-child {
    display: none;
  }
}
.cid-tzsilYboX0 .image-wrapper:last-child .card-wrapper {
  margin-right: 0;
  min-width: 248px;
  max-width: 290px;
}
@media (max-width: 1300px) {
  .cid-tzsilYboX0 .image-wrapper:last-child .card-wrapper {
    min-width: 150px;
  }
}
.cid-tzsilYboX0 .image-wrapper:last-child .card-wrapper:first-child {
  height: 430px;
}
.cid-tzsilYboX0 .image-wrapper:last-child .card-wrapper:nth-child(2) {
  height: 340px;
}
.cid-tzsilYboX0 .image-wrapper:last-child .card-wrapper:last-child {
  height: 340px;
}
.cid-tzsilYboX0 .mbr-desc {
  color: #ffffff;
}
.cid-tzsilYboX0 .mbr-section-title {
  color: #005c62;
}
.cid-tzsilYboX0 .mbr-text {
  color: #ffffff;
}
.cid-tzsilYboX0 .mbr-section-title,
.cid-tzsilYboX0 .tabs-wrapper,
.cid-tzsilYboX0 .mbr-section-btn {
  color: #ffffff;
}
.cid-tA4XVYMjDj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tzfYVBhY3L {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #044905;
}
.cid-tzfYVBhY3L .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tzfYVBhY3L .mbr-text {
  color: #ffffff;
}
.cid-tzrKB9qWaU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a930d;
}
@media (min-width: 992px) {
  .cid-tzshFekdrJ .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    width: 0px;
  }
  .cid-tzshFekdrJ .nav-item .nav-link {
    position: relative;
  }
  .cid-tzshFekdrJ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0px;
    bottom: 0rem;
    left: 0%;
    background: linear-gradient(0deg, #0d700b, #1cdef8);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tzshFekdrJ .nav-item.open .nav-link::before {
    bottom: 0rem;
    width: 0% !important;
    left: 0% !important;
  }
  .cid-tzshFekdrJ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-tzshFekdrJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzshFekdrJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzshFekdrJ .navbar {
  min-height: 0px;
  transition: all 0s;
  background: #000000;
  background: none;
}
.cid-tzshFekdrJ .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tzshFekdrJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-tzshFekdrJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzshFekdrJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzshFekdrJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzshFekdrJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 0rem);
  }
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzshFekdrJ .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-tzshFekdrJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzshFekdrJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzshFekdrJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzshFekdrJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzshFekdrJ .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-tzshFekdrJ .navbar .navbar-logo img {
    height: 0rem !important;
  }
  .cid-tzshFekdrJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzshFekdrJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzshFekdrJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzshFekdrJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzshFekdrJ .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tzshFekdrJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzshFekdrJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzshFekdrJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzshFekdrJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzshFekdrJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzshFekdrJ .dropdown-item.active,
.cid-tzshFekdrJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tzshFekdrJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzshFekdrJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzshFekdrJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzshFekdrJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzshFekdrJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzshFekdrJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzshFekdrJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzshFekdrJ .navbar-buttons {
  text-align: center;
}
.cid-tzshFekdrJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #20fa1d;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzshFekdrJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzshFekdrJ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzshFekdrJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzshFekdrJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tzshFekdrJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzshFekdrJ .navbar {
    height: 77px;
  }
  .cid-tzshFekdrJ .navbar.opened {
    height: auto;
  }
  .cid-tzshFekdrJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA4XVYMjDj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tzg0X9MDNI {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #044905;
}
.cid-tzg0X9MDNI .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tzg0X9MDNI .mbr-text {
  color: #ffffff;
}
.cid-tzrXvwXyUI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #11690f;
}
@media (min-width: 992px) {
  .cid-tzshFekdrJ .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    width: 0px;
  }
  .cid-tzshFekdrJ .nav-item .nav-link {
    position: relative;
  }
  .cid-tzshFekdrJ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0px;
    bottom: 0rem;
    left: 0%;
    background: linear-gradient(0deg, #0d700b, #1cdef8);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tzshFekdrJ .nav-item.open .nav-link::before {
    bottom: 0rem;
    width: 0% !important;
    left: 0% !important;
  }
  .cid-tzshFekdrJ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-tzshFekdrJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzshFekdrJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzshFekdrJ .navbar {
  min-height: 0px;
  transition: all 0s;
  background: #000000;
  background: none;
}
.cid-tzshFekdrJ .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tzshFekdrJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-tzshFekdrJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzshFekdrJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzshFekdrJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzshFekdrJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 0rem);
  }
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzshFekdrJ .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-tzshFekdrJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzshFekdrJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzshFekdrJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzshFekdrJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzshFekdrJ .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-tzshFekdrJ .navbar .navbar-logo img {
    height: 0rem !important;
  }
  .cid-tzshFekdrJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzshFekdrJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzshFekdrJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzshFekdrJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzshFekdrJ .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tzshFekdrJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzshFekdrJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzshFekdrJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzshFekdrJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzshFekdrJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzshFekdrJ .dropdown-item.active,
.cid-tzshFekdrJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tzshFekdrJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzshFekdrJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzshFekdrJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzshFekdrJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzshFekdrJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzshFekdrJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzshFekdrJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzshFekdrJ .navbar-buttons {
  text-align: center;
}
.cid-tzshFekdrJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #20fa1d;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzshFekdrJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzshFekdrJ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzshFekdrJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzshFekdrJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tzshFekdrJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzshFekdrJ .navbar {
    height: 77px;
  }
  .cid-tzshFekdrJ .navbar.opened {
    height: auto;
  }
  .cid-tzshFekdrJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA4XVYMjDj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tzg4bP4vxY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #096693;
}
.cid-tzg4bP4vxY .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tzg4bP4vxY .mbr-text {
  color: #ffffff;
}
.cid-tzrXQPjDzT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1ba1e2;
}
@media (min-width: 992px) {
  .cid-tzshFekdrJ .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    width: 0px;
  }
  .cid-tzshFekdrJ .nav-item .nav-link {
    position: relative;
  }
  .cid-tzshFekdrJ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0px;
    bottom: 0rem;
    left: 0%;
    background: linear-gradient(0deg, #0d700b, #1cdef8);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tzshFekdrJ .nav-item.open .nav-link::before {
    bottom: 0rem;
    width: 0% !important;
    left: 0% !important;
  }
  .cid-tzshFekdrJ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzshFekdrJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-tzshFekdrJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzshFekdrJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzshFekdrJ .navbar {
  min-height: 0px;
  transition: all 0s;
  background: #000000;
  background: none;
}
.cid-tzshFekdrJ .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tzshFekdrJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-tzshFekdrJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzshFekdrJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzshFekdrJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzshFekdrJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 0rem);
  }
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzshFekdrJ .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-tzshFekdrJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzshFekdrJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzshFekdrJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzshFekdrJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzshFekdrJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzshFekdrJ .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-tzshFekdrJ .navbar .navbar-logo img {
    height: 0rem !important;
  }
  .cid-tzshFekdrJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzshFekdrJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzshFekdrJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzshFekdrJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzshFekdrJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzshFekdrJ .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tzshFekdrJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzshFekdrJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzshFekdrJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzshFekdrJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzshFekdrJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzshFekdrJ .dropdown-item.active,
.cid-tzshFekdrJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tzshFekdrJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzshFekdrJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzshFekdrJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzshFekdrJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzshFekdrJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzshFekdrJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzshFekdrJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzshFekdrJ .navbar-buttons {
  text-align: center;
}
.cid-tzshFekdrJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #20fa1d;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzshFekdrJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzshFekdrJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzshFekdrJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzshFekdrJ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzshFekdrJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzshFekdrJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tzshFekdrJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzshFekdrJ .navbar {
    height: 77px;
  }
  .cid-tzshFekdrJ .navbar.opened {
    height: auto;
  }
  .cid-tzshFekdrJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA4XVYMjDj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
