body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Pacifico', handwriting;
  font-size: 2.6rem;
}
.display-2 {
  font-family: 'Courgette', handwriting;
  font-size: 1.8rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: 0.92rem;
    font-size: calc( 1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #88b337 !important;
}
.bg-success {
  background-color: #575c52 !important;
}
.bg-info {
  background-color: #a3b337 !important;
}
.bg-warning {
  background-color: #e8fa69 !important;
}
.bg-danger {
  background-color: #dbdfbc !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #88b337 !important;
  border-color: #88b337 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #5c7825 !important;
  border-color: #5c7825 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #5c7825 !important;
  border-color: #5c7825 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #79b337 !important;
  border-color: #79b337 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #517825 !important;
  border-color: #517825 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #517825 !important;
  border-color: #517825 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #a3b337 !important;
  border-color: #a3b337 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #6e7825 !important;
  border-color: #6e7825 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #6e7825 !important;
  border-color: #6e7825 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #575c52 !important;
  border-color: #575c52 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #31342e !important;
  border-color: #31342e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #31342e !important;
  border-color: #31342e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e8fa69 !important;
  border-color: #e8fa69 !important;
  color: #556103 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #556103 !important;
  background-color: #ddf81f !important;
  border-color: #ddf81f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #556103 !important;
  background-color: #ddf81f !important;
  border-color: #ddf81f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #dbdfbc !important;
  border-color: #dbdfbc !important;
  color: #636a32 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #636a32 !important;
  background-color: #bfc688 !important;
  border-color: #bfc688 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #636a32 !important;
  background-color: #bfc688 !important;
  border-color: #bfc688 !important;
}
.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.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.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.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,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #4d651f;
  color: #4d651f !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #88b337;
  border-color: #88b337;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #88b337 !important;
  border-color: #88b337 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #44651f;
  color: #44651f !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #79b337;
  border-color: #79b337;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #79b337 !important;
  border-color: #79b337 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #5c651f;
  color: #5c651f !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #a3b337;
  border-color: #a3b337;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a3b337 !important;
  border-color: #a3b337 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #242622;
  color: #242622 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #575c52;
  border-color: #575c52;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #575c52 !important;
  border-color: #575c52 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #d7f508;
  color: #d7f508 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #556103 !important;
  background-color: #e8fa69;
  border-color: #e8fa69;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #556103 !important;
  background-color: #e8fa69 !important;
  border-color: #e8fa69 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b6be77;
  color: #b6be77 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #636a32 !important;
  background-color: #dbdfbc;
  border-color: #dbdfbc;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #636a32 !important;
  background-color: #dbdfbc !important;
  border-color: #dbdfbc !important;
}
.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.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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;
}
.text-primary {
  color: #88b337 !important;
}
.text-secondary {
  color: #79b337 !important;
}
.text-success {
  color: #575c52 !important;
}
.text-info {
  color: #a3b337 !important;
}
.text-warning {
  color: #e8fa69 !important;
}
.text-danger {
  color: #dbdfbc !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #4d651f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #44651f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #242622 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5c651f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #d7f508 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b6be77 !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: #575c52;
}
.alert-info {
  background-color: #a3b337;
}
.alert-warning {
  background-color: #e8fa69;
}
.alert-danger {
  background-color: #dbdfbc;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.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: 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: #88b337;
  border-color: #88b337;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #88b337;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c1dc8d;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #979d91;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d2dc8d;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #88b337;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 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;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #88b337;
  color: #ffffff;
}
.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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #88b337;
  border-bottom-color: #88b337;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #88b337 !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: #79b337 !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='%2388b337' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rc2glPg6iG {
  background: #ffffff;
}
.cid-rc2glPg6iG .container-fluid {
  padding: 0 3rem;
}
.cid-rc2glPg6iG .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rc2glPg6iG .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rc2glPg6iG .container-fluid {
    padding: 0 1rem;
  }
  .cid-rc2glPg6iG .image-block {
    width: 100% !important;
  }
}
.cid-rc2jxy00ju {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/spring-276015.jpeg");
}
.cid-rc2jxy00ju .mbr-section-title {
  text-align: center;
}
.cid-rc2jxy00ju .mbr-section-subtitle {
  text-align: center;
}
.cid-rc2jxy00ju .mbr-section-title,
.cid-rc2jxy00ju .mbr-section-btn {
  color: #254302;
  text-align: center;
}
.cid-t0amKDffBJ {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t0amKDffBJ .mbr-section-subtitle {
  color: #000000;
}
.cid-t0amKDffBJ .mbr-section-title {
  color: #89a259;
}
.cid-t0amwXUmhu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t0amwXUmhu blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-t0amwXUmhu .mbr-text,
.cid-t0amwXUmhu .blockquote-quote {
  color: #232323;
}
.cid-t0amwXUmhu footer {
  font-style: normal;
  color: #575c52;
}
.cid-sZHQxXu4NA {
  padding-top: 0px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
@media (min-width: 1500px) {
  .cid-sZHQxXu4NA .container {
    max-width: 1400px;
  }
}
.cid-sZHQxXu4NA img {
  margin-bottom: -2.5rem;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  transform: translateY(-100px);
  object-fit: cover;
}
.cid-sZHQxXu4NA .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-sZHQxXu4NA .card-wrapper {
  background: #ffffff;
  background-position: center;
  padding: 0 4rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
@media (max-width: 700px) {
  .cid-sZHQxXu4NA .card-wrapper {
    padding: 0 1.5rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 383px) {
  .cid-sZHQxXu4NA .card-wrapper {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }
}
.cid-sZHQxXu4NA .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #6a941c;
}
.cid-sZHQxXu4NA .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-sZHQxXu4NA .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-sZHQxXu4NA .card-subtitle {
  color: #89a259;
}
.cid-sZHQxXu4NA .mbr-price {
  color: #303822;
}
.cid-sZHQxXu4NA .mbr-section-subtitle {
  color: #d58f76;
}
.cid-sZHQxXu4NA .mbr-text,
.cid-sZHQxXu4NA .link-align {
  color: #999999;
}
.cid-sZIeu55qmw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sZIeu55qmw .mbr-section-subtitle {
  color: #767676;
}
.cid-sZIeu55qmw .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #88b337;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.cid-sZIeu55qmw .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sZIeu55qmw .btn-social:hover {
  color: #fff;
  background: #88b337;
}
.cid-sZIeu55qmw .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-sZIeu55qmw .btn-social {
  border: none !important;
  background: #6a941c;
  color: #ffffff;
}
.cid-sZIeu55qmw .btn-social:after {
  border-color: #6a941c;
}
.cid-sZIeu55qmw [class^="socicon-"]:before,
.cid-sZIeu55qmw [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sZIeu55qmw .btn {
    font-size: 20px !important;
  }
}
.cid-rc2dpR4XXn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rc2dpR4XXn .nav-item,
.cid-rc2dpR4XXn .nav-link,
.cid-rc2dpR4XXn .navbar-caption {
  font-weight: normal;
}
.cid-rc2dpR4XXn .nav-item:focus,
.cid-rc2dpR4XXn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rc2dpR4XXn .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rc2dpR4XXn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rc2dpR4XXn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rc2dpR4XXn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rc2dpR4XXn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rc2dpR4XXn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rc2dpR4XXn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rc2dpR4XXn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rc2dpR4XXn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rc2dpR4XXn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rc2dpR4XXn .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rc2dpR4XXn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rc2dpR4XXn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rc2dpR4XXn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rc2dpR4XXn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rc2dpR4XXn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rc2dpR4XXn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rc2dpR4XXn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rc2dpR4XXn .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-rc2dpR4XXn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rc2dpR4XXn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rc2dpR4XXn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rc2dpR4XXn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rc2dpR4XXn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rc2dpR4XXn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rc2dpR4XXn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rc2dpR4XXn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rc2dpR4XXn .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-rc2dpR4XXn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rc2dpR4XXn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rc2dpR4XXn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rc2dpR4XXn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rc2dpR4XXn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rc2dpR4XXn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rc2dpR4XXn .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rc2dpR4XXn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rc2dpR4XXn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rc2dpR4XXn .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-rc2dpR4XXn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rc2dpR4XXn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rc2dpR4XXn .dropdown-item.active,
.cid-rc2dpR4XXn .dropdown-item:active {
  background-color: transparent;
}
.cid-rc2dpR4XXn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rc2dpR4XXn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rc2dpR4XXn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rc2dpR4XXn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rc2dpR4XXn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rc2dpR4XXn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rc2dpR4XXn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rc2dpR4XXn .navbar-buttons {
  text-align: center;
}
.cid-rc2dpR4XXn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rc2dpR4XXn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #575c52;
}
.cid-rc2dpR4XXn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rc2dpR4XXn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rc2dpR4XXn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rc2dpR4XXn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rc2dpR4XXn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rc2dpR4XXn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rc2dpR4XXn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rc2dpR4XXn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rc2dpR4XXn .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rc2dpR4XXn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rc2dpR4XXn .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rc2dpR4XXn .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rc2dpR4XXn .soc-item {
  margin: .5rem .3rem;
}
.cid-rc2dpR4XXn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rc2dpR4XXn .navbar {
    height: 77px;
  }
  .cid-rc2dpR4XXn .navbar.opened {
    height: auto;
  }
  .cid-rc2dpR4XXn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rInfXAHQ2o {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bande-3774x127.jpg");
}
@media (max-width: 767px) {
  .cid-rInfXAHQ2o .content {
    text-align: center;
  }
  .cid-rInfXAHQ2o .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rInfXAHQ2o .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rInfXAHQ2o .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rInfXAHQ2o .media-wrap img {
  height: 6rem;
}
.cid-rInfXAHQ2o .mbr-text {
  color: #8d97ad;
}
.cid-rInfXAHQ2o .p-title {
  font-size: 17px;
}
.cid-rInfXAHQ2o .p-title span {
  color: #111111;
}
.cid-rInfXAHQ2o .title-card {
  font-size: 1.3rem;
}
.cid-rInfXAHQ2o .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rInfXAHQ2o .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-rInfXAHQ2o .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-rInfXAHQ2o .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-rInfXAHQ2o .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-rInfXAHQ2o .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rInfXAHQ2o .copyright img {
  margin-right: 10px;
}
.cid-rInfXAHQ2o .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #6a941c;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rInfXAHQ2o .icon-transition span:hover {
  background-color: #82c703;
}
@media (max-width: 767px) {
  .cid-rInfXAHQ2o .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rInfXAHQ2o .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-rInfXAHQ2o .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rInfXAHQ2o .p-title,
.cid-rInfXAHQ2o .social-media {
  color: #465052;
}
.cid-rcBkrSNSW8 {
  background: #ffffff;
}
.cid-rcBkrSNSW8 .container-fluid {
  padding: 0 3rem;
}
.cid-rcBkrSNSW8 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rcBkrSNSW8 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rcBkrSNSW8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rcBkrSNSW8 .image-block {
    width: 100% !important;
  }
}
.cid-rcBkrTvgkD {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/leaves-5591442.jpg");
}
.cid-rcBkrTvgkD .mbr-section-title {
  text-align: center;
}
.cid-rcBkrTvgkD .mbr-section-subtitle {
  text-align: center;
}
.cid-rcBkrTvgkD .mbr-section-title,
.cid-rcBkrTvgkD .mbr-section-btn {
  color: #254302;
  text-align: center;
}
.cid-rcBkrTvgkD .mbr-section-title,
.cid-rcBkrTvgkD .mbr-section-btn SPAN {
  color: #254302;
}
.cid-rcBkrTvgkD .mbr-section-title,
.cid-rcBkrTvgkD .mbr-section-btn DIV {
  color: #254302;
}
.cid-rcBkrVthSs .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcBkrVthSs .nav-item,
.cid-rcBkrVthSs .nav-link,
.cid-rcBkrVthSs .navbar-caption {
  font-weight: normal;
}
.cid-rcBkrVthSs .nav-item:focus,
.cid-rcBkrVthSs .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rcBkrVthSs .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rcBkrVthSs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcBkrVthSs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rcBkrVthSs .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rcBkrVthSs .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rcBkrVthSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rcBkrVthSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcBkrVthSs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rcBkrVthSs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rcBkrVthSs .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rcBkrVthSs .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rcBkrVthSs .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rcBkrVthSs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rcBkrVthSs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rcBkrVthSs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rcBkrVthSs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rcBkrVthSs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rcBkrVthSs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rcBkrVthSs .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-rcBkrVthSs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rcBkrVthSs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rcBkrVthSs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rcBkrVthSs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rcBkrVthSs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rcBkrVthSs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rcBkrVthSs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rcBkrVthSs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rcBkrVthSs .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-rcBkrVthSs .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rcBkrVthSs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rcBkrVthSs .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rcBkrVthSs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rcBkrVthSs .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rcBkrVthSs .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rcBkrVthSs .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rcBkrVthSs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rcBkrVthSs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rcBkrVthSs .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-rcBkrVthSs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rcBkrVthSs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rcBkrVthSs .dropdown-item.active,
.cid-rcBkrVthSs .dropdown-item:active {
  background-color: transparent;
}
.cid-rcBkrVthSs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rcBkrVthSs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rcBkrVthSs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rcBkrVthSs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rcBkrVthSs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rcBkrVthSs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rcBkrVthSs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rcBkrVthSs .navbar-buttons {
  text-align: center;
}
.cid-rcBkrVthSs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rcBkrVthSs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #575c52;
}
.cid-rcBkrVthSs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rcBkrVthSs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rcBkrVthSs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rcBkrVthSs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rcBkrVthSs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcBkrVthSs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rcBkrVthSs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rcBkrVthSs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcBkrVthSs .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rcBkrVthSs a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcBkrVthSs .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rcBkrVthSs .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rcBkrVthSs .soc-item {
  margin: .5rem .3rem;
}
.cid-rcBkrVthSs .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rcBkrVthSs .navbar {
    height: 77px;
  }
  .cid-rcBkrVthSs .navbar.opened {
    height: auto;
  }
  .cid-rcBkrVthSs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rcBn4BKYdk {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rcBn4BKYdk .mbr-text {
  text-align: center;
}
.cid-rcBmUY7sc1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #edfdff;
}
.cid-rcBmUY7sc1 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rcBmUY7sc1 .row-element,
.cid-rcBmUY7sc1 .image-element {
  padding: 0;
}
.cid-rcBmUY7sc1 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rcBmUY7sc1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rcBmUY7sc1 .text-content {
  padding: 3rem;
}
.cid-rcBmUY7sc1 .mbr-figure {
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-rcBmUY7sc1 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rcBmUY7sc1 .mbr-title,
  .cid-rcBmUY7sc1 .mbr-text,
  .cid-rcBmUY7sc1 .mbr-section-btn,
  .cid-rcBmUY7sc1 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-rcBmUY7sc1 .mbr-text,
.cid-rcBmUY7sc1 .mbr-section-btn {
  color: #000000;
}
.cid-rcBmUY7sc1 .mbr-title SPAN {
  color: #48690b;
}
.cid-rcBo9Ad5vc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7faa2f;
}
.cid-rcBo9Ad5vc .row-element,
.cid-rcBo9Ad5vc .image-element {
  padding: 0;
}
.cid-rcBo9Ad5vc .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rcBo9Ad5vc .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rcBo9Ad5vc .text-content {
  padding: 3rem;
}
.cid-rcBo9Ad5vc .mbr-figure {
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-rcBo9Ad5vc .text-content {
    padding: 2rem 1rem;
  }
  .cid-rcBo9Ad5vc .mbr-title,
  .cid-rcBo9Ad5vc .mbr-text,
  .cid-rcBo9Ad5vc .mbr-section-btn,
  .cid-rcBo9Ad5vc .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-rcBoLkNFvL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rcBoLkNFvL .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rcBoLkNFvL .row-element,
.cid-rcBoLkNFvL .image-element {
  padding: 0;
}
.cid-rcBoLkNFvL .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rcBoLkNFvL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rcBoLkNFvL .text-content {
  padding: 3rem;
}
.cid-rcBoLkNFvL .mbr-figure {
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-rcBoLkNFvL .text-content {
    padding: 2rem 1rem;
  }
  .cid-rcBoLkNFvL .mbr-title,
  .cid-rcBoLkNFvL .mbr-text,
  .cid-rcBoLkNFvL .mbr-section-btn,
  .cid-rcBoLkNFvL .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-rcBoLkNFvL .mbr-title SPAN {
  color: #48690b;
}
.cid-rcBoLkNFvL .mbr-text,
.cid-rcBoLkNFvL .mbr-section-btn {
  color: #77a71e;
}
.cid-sZIeqm21g8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sZIeqm21g8 .mbr-section-subtitle {
  color: #767676;
}
.cid-sZIeqm21g8 .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #88b337;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.cid-sZIeqm21g8 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sZIeqm21g8 .btn-social:hover {
  color: #fff;
  background: #88b337;
}
.cid-sZIeqm21g8 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-sZIeqm21g8 .btn-social {
  border: none !important;
  background: #6a941c;
  color: #ffffff;
}
.cid-sZIeqm21g8 .btn-social:after {
  border-color: #6a941c;
}
.cid-sZIeqm21g8 [class^="socicon-"]:before,
.cid-sZIeqm21g8 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sZIeqm21g8 .btn {
    font-size: 20px !important;
  }
}
.cid-sZHdsT7RzN {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bande-1-3774x127.jpg");
}
@media (max-width: 767px) {
  .cid-sZHdsT7RzN .content {
    text-align: center;
  }
  .cid-sZHdsT7RzN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZHdsT7RzN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sZHdsT7RzN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sZHdsT7RzN .media-wrap img {
  height: 6rem;
}
.cid-sZHdsT7RzN .mbr-text {
  color: #8d97ad;
}
.cid-sZHdsT7RzN .p-title {
  font-size: 17px;
}
.cid-sZHdsT7RzN .p-title span {
  color: #111111;
}
.cid-sZHdsT7RzN .title-card {
  font-size: 1.3rem;
}
.cid-sZHdsT7RzN .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZHdsT7RzN .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sZHdsT7RzN .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sZHdsT7RzN .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sZHdsT7RzN .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sZHdsT7RzN .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZHdsT7RzN .copyright img {
  margin-right: 10px;
}
.cid-sZHdsT7RzN .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #6a941c;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZHdsT7RzN .icon-transition span:hover {
  background-color: #82c703;
}
@media (max-width: 767px) {
  .cid-sZHdsT7RzN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sZHdsT7RzN .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sZHdsT7RzN .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZHdsT7RzN .p-title,
.cid-sZHdsT7RzN .social-media {
  color: #465052;
}
.cid-rcB630ozGc {
  background: #ffffff;
}
.cid-rcB630ozGc .container-fluid {
  padding: 0 3rem;
}
.cid-rcB630ozGc .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rcB630ozGc .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rcB630ozGc .container-fluid {
    padding: 0 1rem;
  }
  .cid-rcB630ozGc .image-block {
    width: 100% !important;
  }
}
.cid-rcB631o8IP {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/smoothies-3176371.jpg");
}
.cid-rcB631o8IP .mbr-section-title {
  text-align: center;
}
.cid-rcB631o8IP .mbr-section-subtitle {
  text-align: center;
}
.cid-rcB631o8IP .mbr-section-title,
.cid-rcB631o8IP .mbr-section-btn {
  color: #254302;
  text-align: center;
}
.cid-rcB632Ty0x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rcB632Ty0x .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rcB632Ty0x .row-element,
.cid-rcB632Ty0x .image-element {
  padding: 0;
}
.cid-rcB632Ty0x .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rcB632Ty0x .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rcB632Ty0x .text-content {
  padding: 3rem;
}
.cid-rcB632Ty0x .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rcB632Ty0x .text-content {
    padding: 2rem 1rem;
  }
  .cid-rcB632Ty0x .mbr-title,
  .cid-rcB632Ty0x .underline,
  .cid-rcB632Ty0x .mbr-text,
  .cid-rcB632Ty0x .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rcB632Ty0x .mbr-text,
.cid-rcB632Ty0x .mbr-section-btn B {
  color: #000000;
}
.cid-rcBeqFF5U7 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rcBaUpGBGz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #dbe1c2;
}
.cid-rcBaUpGBGz .mbr-section-subtitle {
  color: #767676;
}
.cid-sZIpW88uua {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZIpW88uua blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-sZIpW88uua .mbr-text,
.cid-sZIpW88uua .blockquote-quote {
  color: #879a9f;
}
.cid-sZIpW88uua footer {
  font-style: normal;
  color: #575c52;
}
.cid-sZIekFsd0V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sZIekFsd0V .mbr-section-subtitle {
  color: #767676;
}
.cid-sZIekFsd0V .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #88b337;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.cid-sZIekFsd0V .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sZIekFsd0V .btn-social:hover {
  color: #fff;
  background: #88b337;
}
.cid-sZIekFsd0V .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-sZIekFsd0V .btn-social {
  border: none !important;
  background: #6a941c;
  color: #ffffff;
}
.cid-sZIekFsd0V .btn-social:after {
  border-color: #6a941c;
}
.cid-sZIekFsd0V [class^="socicon-"]:before,
.cid-sZIekFsd0V [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sZIekFsd0V .btn {
    font-size: 20px !important;
  }
}
.cid-sZHdAPoTE4 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bande-1-3774x127.jpg");
}
@media (max-width: 767px) {
  .cid-sZHdAPoTE4 .content {
    text-align: center;
  }
  .cid-sZHdAPoTE4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZHdAPoTE4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sZHdAPoTE4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sZHdAPoTE4 .media-wrap img {
  height: 6rem;
}
.cid-sZHdAPoTE4 .mbr-text {
  color: #8d97ad;
}
.cid-sZHdAPoTE4 .p-title {
  font-size: 17px;
}
.cid-sZHdAPoTE4 .p-title span {
  color: #111111;
}
.cid-sZHdAPoTE4 .title-card {
  font-size: 1.3rem;
}
.cid-sZHdAPoTE4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZHdAPoTE4 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sZHdAPoTE4 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sZHdAPoTE4 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sZHdAPoTE4 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sZHdAPoTE4 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZHdAPoTE4 .copyright img {
  margin-right: 10px;
}
.cid-sZHdAPoTE4 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #6a941c;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZHdAPoTE4 .icon-transition span:hover {
  background-color: #82c703;
}
@media (max-width: 767px) {
  .cid-sZHdAPoTE4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sZHdAPoTE4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sZHdAPoTE4 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZHdAPoTE4 .p-title,
.cid-sZHdAPoTE4 .social-media {
  color: #465052;
}
.cid-rcB633BUOY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcB633BUOY .nav-item,
.cid-rcB633BUOY .nav-link,
.cid-rcB633BUOY .navbar-caption {
  font-weight: normal;
}
.cid-rcB633BUOY .nav-item:focus,
.cid-rcB633BUOY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rcB633BUOY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rcB633BUOY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcB633BUOY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rcB633BUOY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rcB633BUOY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rcB633BUOY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rcB633BUOY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcB633BUOY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rcB633BUOY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rcB633BUOY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rcB633BUOY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rcB633BUOY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rcB633BUOY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rcB633BUOY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rcB633BUOY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rcB633BUOY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rcB633BUOY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rcB633BUOY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rcB633BUOY .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-rcB633BUOY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rcB633BUOY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rcB633BUOY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rcB633BUOY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rcB633BUOY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rcB633BUOY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rcB633BUOY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rcB633BUOY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rcB633BUOY .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-rcB633BUOY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rcB633BUOY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rcB633BUOY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rcB633BUOY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rcB633BUOY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rcB633BUOY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rcB633BUOY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rcB633BUOY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rcB633BUOY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rcB633BUOY .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-rcB633BUOY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rcB633BUOY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rcB633BUOY .dropdown-item.active,
.cid-rcB633BUOY .dropdown-item:active {
  background-color: transparent;
}
.cid-rcB633BUOY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rcB633BUOY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rcB633BUOY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rcB633BUOY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rcB633BUOY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rcB633BUOY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rcB633BUOY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rcB633BUOY .navbar-buttons {
  text-align: center;
}
.cid-rcB633BUOY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rcB633BUOY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #575c52;
}
.cid-rcB633BUOY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rcB633BUOY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rcB633BUOY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rcB633BUOY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rcB633BUOY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcB633BUOY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rcB633BUOY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rcB633BUOY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcB633BUOY .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rcB633BUOY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcB633BUOY .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rcB633BUOY .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rcB633BUOY .soc-item {
  margin: .5rem .3rem;
}
.cid-rcB633BUOY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rcB633BUOY .navbar {
    height: 77px;
  }
  .cid-rcB633BUOY .navbar.opened {
    height: auto;
  }
  .cid-rcB633BUOY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rcBR4buqJd {
  background: #ffffff;
}
.cid-rcBR4buqJd .container-fluid {
  padding: 0 3rem;
}
.cid-rcBR4buqJd .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rcBR4buqJd .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rcBR4buqJd .container-fluid {
    padding: 0 1rem;
  }
  .cid-rcBR4buqJd .image-block {
    width: 100% !important;
  }
}
.cid-rcBR4cbpFI {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/radish-2217030.jpeg");
}
.cid-rcBR4cbpFI .mbr-section-title {
  text-align: center;
}
.cid-rcBR4cbpFI .mbr-section-subtitle {
  text-align: center;
}
.cid-rcBR4cbpFI .mbr-section-title,
.cid-rcBR4cbpFI .mbr-section-btn {
  color: #254302;
  text-align: center;
}
.cid-rcBR4cbpFI .mbr-section-title,
.cid-rcBR4cbpFI .mbr-section-btn SPAN {
  color: #254302;
}
.cid-rcBR4cbpFI .mbr-section-title,
.cid-rcBR4cbpFI .mbr-section-btn DIV {
  color: #254302;
}
.cid-rcBR4cW53c .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcBR4cW53c .nav-item,
.cid-rcBR4cW53c .nav-link,
.cid-rcBR4cW53c .navbar-caption {
  font-weight: normal;
}
.cid-rcBR4cW53c .nav-item:focus,
.cid-rcBR4cW53c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rcBR4cW53c .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rcBR4cW53c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcBR4cW53c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rcBR4cW53c .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rcBR4cW53c .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rcBR4cW53c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rcBR4cW53c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcBR4cW53c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rcBR4cW53c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rcBR4cW53c .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rcBR4cW53c .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rcBR4cW53c .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rcBR4cW53c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rcBR4cW53c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rcBR4cW53c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rcBR4cW53c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rcBR4cW53c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rcBR4cW53c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rcBR4cW53c .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-rcBR4cW53c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rcBR4cW53c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rcBR4cW53c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rcBR4cW53c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rcBR4cW53c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rcBR4cW53c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rcBR4cW53c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rcBR4cW53c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rcBR4cW53c .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-rcBR4cW53c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rcBR4cW53c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rcBR4cW53c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rcBR4cW53c .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rcBR4cW53c .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rcBR4cW53c .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rcBR4cW53c .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rcBR4cW53c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rcBR4cW53c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rcBR4cW53c .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-rcBR4cW53c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rcBR4cW53c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rcBR4cW53c .dropdown-item.active,
.cid-rcBR4cW53c .dropdown-item:active {
  background-color: transparent;
}
.cid-rcBR4cW53c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rcBR4cW53c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rcBR4cW53c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rcBR4cW53c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rcBR4cW53c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rcBR4cW53c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rcBR4cW53c ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rcBR4cW53c .navbar-buttons {
  text-align: center;
}
.cid-rcBR4cW53c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rcBR4cW53c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #575c52;
}
.cid-rcBR4cW53c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rcBR4cW53c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rcBR4cW53c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rcBR4cW53c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rcBR4cW53c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcBR4cW53c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rcBR4cW53c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rcBR4cW53c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcBR4cW53c .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rcBR4cW53c a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcBR4cW53c .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rcBR4cW53c .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rcBR4cW53c .soc-item {
  margin: .5rem .3rem;
}
.cid-rcBR4cW53c .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rcBR4cW53c .navbar {
    height: 77px;
  }
  .cid-rcBR4cW53c .navbar.opened {
    height: auto;
  }
  .cid-rcBR4cW53c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rcBSbcNNkj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rcBSbcNNkj .card {
  display: block;
  position: relative;
}
.cid-rcBSbcNNkj .card .card-wrapper {
  background: #eff5d4;
  height: 1%;
}
.cid-rcBSbcNNkj .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rcBSbcNNkj .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rcBSbcNNkj .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ca364b;
}
.cid-rcBSbcNNkj .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rcBSbcNNkj .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rcBSbcNNkj .mbr-card-text {
  margin: 0;
}
.cid-rcBSbcNNkj .mbr-section-title {
  text-align: center;
}
.cid-rcCkFBpgTq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ca364b;
}
.cid-rcCkFBpgTq .mbr-section-subtitle {
  color: #e9eed6;
}
@media (max-width: 767px) {
  .cid-rcCkFBpgTq .mbr-section-btn,
  .cid-rcCkFBpgTq .mbr-section-subtitle,
  .cid-rcCkFBpgTq .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sZIdQMCUdM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sZIdQMCUdM .mbr-section-subtitle {
  color: #767676;
}
.cid-sZIdQMCUdM .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #88b337;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.cid-sZIdQMCUdM .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sZIdQMCUdM .btn-social:hover {
  color: #fff;
  background: #88b337;
}
.cid-sZIdQMCUdM .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-sZIdQMCUdM .btn-social {
  border: none !important;
  background: #6a941c;
  color: #ffffff;
}
.cid-sZIdQMCUdM .btn-social:after {
  border-color: #6a941c;
}
.cid-sZIdQMCUdM [class^="socicon-"]:before,
.cid-sZIdQMCUdM [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sZIdQMCUdM .btn {
    font-size: 20px !important;
  }
}
.cid-sZHdmk9x2z {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bande-1-3774x127.jpg");
}
@media (max-width: 767px) {
  .cid-sZHdmk9x2z .content {
    text-align: center;
  }
  .cid-sZHdmk9x2z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZHdmk9x2z .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sZHdmk9x2z .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sZHdmk9x2z .media-wrap img {
  height: 6rem;
}
.cid-sZHdmk9x2z .mbr-text {
  color: #8d97ad;
}
.cid-sZHdmk9x2z .p-title {
  font-size: 17px;
}
.cid-sZHdmk9x2z .p-title span {
  color: #111111;
}
.cid-sZHdmk9x2z .title-card {
  font-size: 1.3rem;
}
.cid-sZHdmk9x2z .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZHdmk9x2z .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sZHdmk9x2z .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sZHdmk9x2z .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sZHdmk9x2z .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sZHdmk9x2z .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZHdmk9x2z .copyright img {
  margin-right: 10px;
}
.cid-sZHdmk9x2z .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #6a941c;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZHdmk9x2z .icon-transition span:hover {
  background-color: #82c703;
}
@media (max-width: 767px) {
  .cid-sZHdmk9x2z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sZHdmk9x2z .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sZHdmk9x2z .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZHdmk9x2z .p-title,
.cid-sZHdmk9x2z .social-media {
  color: #465052;
}
.cid-rcGJlihQFD {
  background: #ffffff;
}
.cid-rcGJlihQFD .container-fluid {
  padding: 0 3rem;
}
.cid-rcGJlihQFD .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rcGJlihQFD .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rcGJlihQFD .container-fluid {
    padding: 0 1rem;
  }
  .cid-rcGJlihQFD .image-block {
    width: 100% !important;
  }
}
.cid-rcGJliS8sD {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/pousse.jpg");
}
.cid-rcGJliS8sD .mbr-section-title {
  text-align: center;
}
.cid-rcGJliS8sD .mbr-section-subtitle {
  text-align: center;
}
.cid-rcGJliS8sD .mbr-section-title,
.cid-rcGJliS8sD .mbr-section-btn {
  color: #254302;
  text-align: center;
}
.cid-rcGJlkLoF6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9eed6;
}
.cid-rcGJlkLoF6 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rcGJlkLoF6 .row-element,
.cid-rcGJlkLoF6 .image-element {
  padding: 0;
}
.cid-rcGJlkLoF6 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rcGJlkLoF6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rcGJlkLoF6 .text-content {
  padding: 3rem;
}
.cid-rcGJlkLoF6 .mbr-figure {
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-rcGJlkLoF6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rcGJlkLoF6 .mbr-title,
  .cid-rcGJlkLoF6 .mbr-text,
  .cid-rcGJlkLoF6 .mbr-section-btn,
  .cid-rcGJlkLoF6 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-rcGJlkLoF6 .mbr-section-subtitle {
  color: #303822;
}
.cid-rcGJlkLoF6 .mbr-title {
  color: #303822;
}
.cid-rcGJlkLoF6 .mbr-text,
.cid-rcGJlkLoF6 .mbr-section-btn {
  color: #303822;
}
.cid-rcGJlltMdA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcGJlltMdA .nav-item,
.cid-rcGJlltMdA .nav-link,
.cid-rcGJlltMdA .navbar-caption {
  font-weight: normal;
}
.cid-rcGJlltMdA .nav-item:focus,
.cid-rcGJlltMdA .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rcGJlltMdA .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rcGJlltMdA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcGJlltMdA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rcGJlltMdA .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rcGJlltMdA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rcGJlltMdA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rcGJlltMdA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rcGJlltMdA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rcGJlltMdA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rcGJlltMdA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rcGJlltMdA .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rcGJlltMdA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rcGJlltMdA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rcGJlltMdA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rcGJlltMdA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rcGJlltMdA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rcGJlltMdA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rcGJlltMdA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rcGJlltMdA .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-rcGJlltMdA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rcGJlltMdA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rcGJlltMdA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rcGJlltMdA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rcGJlltMdA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rcGJlltMdA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rcGJlltMdA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rcGJlltMdA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rcGJlltMdA .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-rcGJlltMdA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rcGJlltMdA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rcGJlltMdA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rcGJlltMdA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rcGJlltMdA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rcGJlltMdA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rcGJlltMdA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rcGJlltMdA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rcGJlltMdA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rcGJlltMdA .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-rcGJlltMdA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rcGJlltMdA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rcGJlltMdA .dropdown-item.active,
.cid-rcGJlltMdA .dropdown-item:active {
  background-color: transparent;
}
.cid-rcGJlltMdA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rcGJlltMdA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rcGJlltMdA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rcGJlltMdA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rcGJlltMdA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rcGJlltMdA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rcGJlltMdA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rcGJlltMdA .navbar-buttons {
  text-align: center;
}
.cid-rcGJlltMdA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rcGJlltMdA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #575c52;
}
.cid-rcGJlltMdA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rcGJlltMdA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rcGJlltMdA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rcGJlltMdA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rcGJlltMdA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcGJlltMdA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rcGJlltMdA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rcGJlltMdA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rcGJlltMdA .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rcGJlltMdA a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcGJlltMdA .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rcGJlltMdA .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rcGJlltMdA .soc-item {
  margin: .5rem .3rem;
}
.cid-rcGJlltMdA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rcGJlltMdA .navbar {
    height: 77px;
  }
  .cid-rcGJlltMdA .navbar.opened {
    height: auto;
  }
  .cid-rcGJlltMdA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rcGMnGSlnJ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rcGMnGSlnJ .mbr-text {
  color: #767676;
}
.cid-rcGMnGSlnJ .mbr-section-subtitle {
  color: #767676;
}
.cid-rcGMnGSlnJ .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcGMnGSlnJ .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rcGMnGSlnJ .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rcGMnGSlnJ .card-text {
  padding-top: 2rem;
}
.cid-rcGMnGSlnJ .card-box {
  padding-bottom: 1rem;
}
.cid-rcGMnGSlnJ .num {
  color: #77a71e;
}
@media (max-width: 767px) {
  .cid-rcGMnGSlnJ .num,
  .cid-rcGMnGSlnJ .card-title,
  .cid-rcGMnGSlnJ .mbr-text,
  .cid-rcGMnGSlnJ .mbr-title,
  .cid-rcGMnGSlnJ .mbr-section-subtitle,
  .cid-rcGMnGSlnJ .mbr-section-btn,
  .cid-rcGMnGSlnJ .mbr-section-title {
    text-align: center !important;
  }
  .cid-rcGMnGSlnJ .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rcGMnGSlnJ .mbr-section-title {
  text-align: center;
}
.cid-rcGNSUL7O5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rcGNSUL7O5 .mbr-text {
  color: #767676;
}
.cid-rcGNSUL7O5 .mbr-section-subtitle {
  color: #767676;
}
.cid-rcGNSUL7O5 .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcGNSUL7O5 .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rcGNSUL7O5 .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rcGNSUL7O5 .card-text {
  padding-top: 2rem;
}
.cid-rcGNSUL7O5 .card-box {
  padding-bottom: 1rem;
}
.cid-rcGNSUL7O5 .num {
  color: #77a71e;
}
@media (max-width: 767px) {
  .cid-rcGNSUL7O5 .num,
  .cid-rcGNSUL7O5 .card-title,
  .cid-rcGNSUL7O5 .mbr-text,
  .cid-rcGNSUL7O5 .mbr-title,
  .cid-rcGNSUL7O5 .mbr-section-subtitle,
  .cid-rcGNSUL7O5 .mbr-section-btn,
  .cid-rcGNSUL7O5 .mbr-section-title {
    text-align: center !important;
  }
  .cid-rcGNSUL7O5 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rcGNSUL7O5 .mbr-section-title {
  text-align: center;
}
.cid-rcGPaUXjzN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rcGPaUXjzN .mbr-text {
  color: #767676;
}
.cid-rcGPaUXjzN .mbr-section-subtitle {
  color: #767676;
}
.cid-rcGPaUXjzN .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rcGPaUXjzN .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rcGPaUXjzN .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rcGPaUXjzN .card-text {
  padding-top: 2rem;
}
.cid-rcGPaUXjzN .card-box {
  padding-bottom: 1rem;
}
.cid-rcGPaUXjzN .num {
  color: #77a71e;
}
@media (max-width: 767px) {
  .cid-rcGPaUXjzN .num,
  .cid-rcGPaUXjzN .card-title,
  .cid-rcGPaUXjzN .mbr-text,
  .cid-rcGPaUXjzN .mbr-title,
  .cid-rcGPaUXjzN .mbr-section-subtitle,
  .cid-rcGPaUXjzN .mbr-section-btn,
  .cid-rcGPaUXjzN .mbr-section-title {
    text-align: center !important;
  }
  .cid-rcGPaUXjzN .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rcGPaUXjzN .mbr-section-title {
  text-align: center;
}
.cid-rcGJlmTv9P {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rcGJlk9nut {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #dbe1c2;
}
.cid-rcGJlk9nut .mbr-section-subtitle {
  color: #767676;
}
.cid-sZN4JcQkRm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sZN4JcQkRm .mbr-text {
  text-align: center;
}
.cid-sZIeg5bYQK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sZIeg5bYQK .mbr-section-subtitle {
  color: #767676;
}
.cid-sZIeg5bYQK .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #88b337;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.cid-sZIeg5bYQK .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sZIeg5bYQK .btn-social:hover {
  color: #fff;
  background: #88b337;
}
.cid-sZIeg5bYQK .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-sZIeg5bYQK .btn-social {
  border: none !important;
  background: #6a941c;
  color: #ffffff;
}
.cid-sZIeg5bYQK .btn-social:after {
  border-color: #6a941c;
}
.cid-sZIeg5bYQK [class^="socicon-"]:before,
.cid-sZIeg5bYQK [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sZIeg5bYQK .btn {
    font-size: 20px !important;
  }
}
.cid-sZHe0B0d0u {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bande-1-3774x127.jpg");
}
@media (max-width: 767px) {
  .cid-sZHe0B0d0u .content {
    text-align: center;
  }
  .cid-sZHe0B0d0u .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZHe0B0d0u .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sZHe0B0d0u .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sZHe0B0d0u .media-wrap img {
  height: 6rem;
}
.cid-sZHe0B0d0u .mbr-text {
  color: #8d97ad;
}
.cid-sZHe0B0d0u .p-title {
  font-size: 17px;
}
.cid-sZHe0B0d0u .p-title span {
  color: #111111;
}
.cid-sZHe0B0d0u .title-card {
  font-size: 1.3rem;
}
.cid-sZHe0B0d0u .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZHe0B0d0u .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sZHe0B0d0u .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sZHe0B0d0u .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sZHe0B0d0u .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sZHe0B0d0u .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZHe0B0d0u .copyright img {
  margin-right: 10px;
}
.cid-sZHe0B0d0u .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #6a941c;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZHe0B0d0u .icon-transition span:hover {
  background-color: #82c703;
}
@media (max-width: 767px) {
  .cid-sZHe0B0d0u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sZHe0B0d0u .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sZHe0B0d0u .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZHe0B0d0u .p-title,
.cid-sZHe0B0d0u .social-media {
  color: #465052;
}
