body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Acme', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Acme', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Indie Flower', handwriting;
  font-size: 2.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fffc7e !important;
}
.bg-success {
  background-color: #1c4d23 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #1d7329 !important;
}
.bg-danger {
  background-color: #ffff00 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fffc7e !important;
  border-color: #fffc7e !important;
  color: #7e7b00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #272600 !important;
  background-color: #fffa27 !important;
  border-color: #fffa27 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #7e7b00 !important;
  background-color: #fffa27 !important;
  border-color: #fffa27 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #1c4d23 !important;
  border-color: #1c4d23 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #050d06 !important;
  border-color: #050d06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #050d06 !important;
  border-color: #050d06 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #1d7329 !important;
  border-color: #1d7329 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0c2e10 !important;
  border-color: #0c2e10 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0c2e10 !important;
  border-color: #0c2e10 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffff00 !important;
  border-color: #ffff00 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a8a800 !important;
  border-color: #a8a800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #a8a800 !important;
  border-color: #a8a800 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fffc7e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #fffa27 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #7e7b00 !important;
  background-color: #fffc7e !important;
  border-color: #fffc7e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1c4d23;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #050d06 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1c4d23 !important;
  border-color: #1c4d23 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1d7329;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0c2e10 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1d7329 !important;
  border-color: #1d7329 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffff00;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a8a800 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #ffff00 !important;
  border-color: #ffff00 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fffc7e !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #1c4d23 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #1d7329 !important;
}
.text-danger {
  color: #ffff00 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #fffa18 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #010201 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #08220c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #999900 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fffc7e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #1d7329;
}
.alert-danger {
  background-color: #ffff00;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fffc7e;
  border-color: #fffc7e;
  color: #989400;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fffc7e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7ed08a;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #41cf54;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffcc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fffc7e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #fffc7e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fffc7e;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fffc7e;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fffc7e;
  border-bottom-color: #fffc7e;
}
.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: #fffc7e !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: #ff6666 !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%;
  width: 100%;
  height: auto;
}
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='%23fffc7e' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tzQoiWr9AF {
  background-image: url("../../../assets/images/snowflake-index-2000x1405.png");
}
.cid-tzQoiWr9AF .mbr-section-title,
.cid-tzQoiWr9AF .mbr-section-subtitle {
  color: #000000;
}
.cid-tzQoiWr9AF .mbr-section-text {
  color: #232323;
}
.cid-tzQoiWr9AF .mbr-text,
.cid-tzQoiWr9AF .typed-text,
.cid-tzQoiWr9AF .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-tzQoiWr9AF .btn {
  margin-left: 4px !important;
}
.cid-tzQoiWr9AF .animated-element {
  color: #fffc7e;
}
.cid-tzQoiWr9AF .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fffc7e;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tzQoiWr9AF .mbr-section-subtitle,
.cid-tzQoiWr9AF .typed-text {
  color: #4479d9;
}
.cid-tzQoiWr9AF .mbr-section-title {
  color: #ffff00;
}
.cid-tzQokKfN9z {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-4666-2000x2666.jpg");
}
@media (max-width: 767px) {
  .cid-tzQokKfN9z .content {
    text-align: center;
  }
  .cid-tzQokKfN9z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tzQokKfN9z .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tzQokKfN9z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tzQokKfN9z .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tzQokKfN9z .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQokKfN9z .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tzQokKfN9z .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tzQokKfN9z .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tzQokKfN9z .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tzQokKfN9z .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tzQokKfN9z .google-map {
  height: 25rem;
  position: relative;
}
.cid-tzQokKfN9z .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tzQokKfN9z .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tzQokKfN9z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tzQokKfN9z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tzQokKfN9z P {
  color: #fffc7e;
  text-align: center;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .nav-item:focus,
.cid-tzQnkWucmn .nav-link:focus {
  outline: none;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzQnkWucmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzQnkWucmn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzQnkWucmn .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tzQnkWucmn .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tzQnkWucmn .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tzQnkWucmn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzQnkWucmn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzQnkWucmn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzQnkWucmn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tzQnkWucmn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzQnkWucmn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzQnkWucmn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzQnkWucmn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tzQnkWucmn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tzQnkWucmn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzQnkWucmn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzQnkWucmn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzQnkWucmn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzQnkWucmn .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tzQnkWucmn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzQnkWucmn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzQnkWucmn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzQnkWucmn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzQnkWucmn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzQnkWucmn .dropdown-item.active,
.cid-tzQnkWucmn .dropdown-item:active {
  background-color: transparent;
}
.cid-tzQnkWucmn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzQnkWucmn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzQnkWucmn .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzQnkWucmn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tzQnkWucmn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzQnkWucmn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzQnkWucmn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQnkWucmn .navbar-buttons {
  text-align: center;
}
.cid-tzQnkWucmn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQnkWucmn .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tzQnkWucmn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzQnkWucmn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzQnkWucmn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tzQnkWucmn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzQnkWucmn .navbar {
    height: 77px;
  }
  .cid-tzQnkWucmn .navbar.opened {
    height: auto;
  }
  .cid-tzQnkWucmn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzQnkWSihc {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/home-1.jpeg");
}
.cid-tzQnkWSihc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQnkWSihc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tzQnkWSihc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzQnkWSihc .row {
  flex-direction: row-reverse;
}
.cid-tzQnkWSihc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzQnkWSihc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzQnkWSihc .mbr-section-title {
  text-align: center;
  color: #fffc7e;
}
.cid-tzQnkWSihc .mbr-text {
  color: #fffc7e;
  text-align: center;
}
.cid-tFGMGqxz8d {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/home-2-2000x1123.jpg");
}
.cid-tFGMGqxz8d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFGMGqxz8d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFGMGqxz8d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFGMGqxz8d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tFGMGqxz8d .text-wrapper {
    padding: 2rem;
  }
}
.cid-tFGMGqxz8d .mbr-section-title {
  text-align: center;
  color: #fffc7e;
}
.cid-tFGMGqxz8d .mbr-text {
  text-align: center;
  color: #fffc7e;
}
.cid-tzQnkXxKaN {
  background-image: url("../../../assets/images/home-3-640x427.jpeg");
  background-position: right;
}
.cid-tzQnkXxKaN .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-tzQnkXxKaN .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-tzQnkXxKaN .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-tzQnkXxKaN img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tzQnkXxKaN .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tzQnkXxKaN H1 {
  color: #fffc7e;
  text-align: center;
}
.cid-tzQnkXxKaN .mbr-text,
.cid-tzQnkXxKaN .mbr-section-btn {
  color: #fffc7e;
  text-align: center;
}
.cid-tzQnkXRhY8 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/home-4-2000x1123.jpeg");
}
.cid-tzQnkXRhY8 .link {
  position: relative;
  letter-spacing: 2px;
  color: #1c4d23;
}
.cid-tzQnkXRhY8 .link:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-tzQnkXRhY8 .card {
  position: relative;
}
.cid-tzQnkXRhY8 .card:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.7;
  transition: all 0.6s;
}
.cid-tzQnkXRhY8 .card:hover:before {
  opacity: 0.9;
}
.cid-tzQnkXRhY8 .card-box {
  padding: 4rem 1rem;
  z-index: 2;
}
.cid-tzQnkXRhY8 .mbr-text {
  color: #1c4d23;
}
.cid-tzQnkXRhY8 .card-title {
  color: #1c4d23;
}
.cid-tFGSBqPSOu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/for-video-1920x1080.png");
}
.cid-tFGSBqPSOu .mbr-media {
  position: relative;
}
.cid-tFGSBqPSOu .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFGSBqPSOu .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-tFGSBqPSOu .box {
    min-height: 300px;
  }
}
.cid-tFGSBqPSOu .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #fffc7e;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFGSBqPSOu .icon-wrap a {
  height: 20px;
}
.cid-tFGSBqPSOu .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #fffc7e;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-tFGSBqPSOu .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #5e71db;
}
.cid-tFGSBqPSOu .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFGSBqPSOu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFGSBqPSOu .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFGSBqPSOu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFGSBqPSOu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFGSBqPSOu .mbr-section-title {
  color: #fffc7e;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .nav-item:focus,
.cid-tzQnkWucmn .nav-link:focus {
  outline: none;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzQnkWucmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzQnkWucmn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzQnkWucmn .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tzQnkWucmn .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tzQnkWucmn .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tzQnkWucmn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzQnkWucmn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzQnkWucmn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzQnkWucmn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tzQnkWucmn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzQnkWucmn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzQnkWucmn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzQnkWucmn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tzQnkWucmn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tzQnkWucmn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzQnkWucmn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzQnkWucmn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzQnkWucmn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzQnkWucmn .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tzQnkWucmn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzQnkWucmn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzQnkWucmn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzQnkWucmn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzQnkWucmn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzQnkWucmn .dropdown-item.active,
.cid-tzQnkWucmn .dropdown-item:active {
  background-color: transparent;
}
.cid-tzQnkWucmn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzQnkWucmn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzQnkWucmn .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzQnkWucmn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tzQnkWucmn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzQnkWucmn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzQnkWucmn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQnkWucmn .navbar-buttons {
  text-align: center;
}
.cid-tzQnkWucmn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQnkWucmn .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tzQnkWucmn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzQnkWucmn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzQnkWucmn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tzQnkWucmn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzQnkWucmn .navbar {
    height: 77px;
  }
  .cid-tzQnkWucmn .navbar.opened {
    height: auto;
  }
  .cid-tzQnkWucmn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFSjHuux6I {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #1c6426;
}
.cid-tFSjHuux6I [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-tFSjHuux6I .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-tFSjHuux6I .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-tFSjHuux6I .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tFSjHuux6I .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-tFSjHuux6I .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-tFSjHuux6I .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-tFSjHuux6I .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-tFSjHuux6I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tFSjHuux6I .card-sub-title {
  text-align: center;
}
.cid-tFSjHuux6I .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-tFSuDcLbQV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1c6426;
}
.cid-tFSuDcLbQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFSuDcLbQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tFSuDcLbQV .container {
    padding: 0 30px;
  }
}
.cid-tFSuDcLbQV .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tFSuDcLbQV .row {
    border-radius: 0;
  }
}
.cid-tFSuDcLbQV .card {
  padding: 0;
}
.cid-tFSuDcLbQV .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tFSuDcLbQV .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-tFSuDcLbQV .mbr-date {
  color: #ffffff;
}
.cid-tFSuDcLbQV .mbr-link {
  color: #ffffff;
}
.cid-tFSlWUgqOa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1c6426;
}
.cid-tFSlWUgqOa [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-tFSlWUgqOa .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-tFSlWUgqOa .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-tFSlWUgqOa .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tFSlWUgqOa .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-tFSlWUgqOa .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-tFSlWUgqOa .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-tFSlWUgqOa .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-tFSlWUgqOa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tFSlWUgqOa .card-sub-title {
  text-align: center;
}
.cid-tFSlWUgqOa .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-tFSx0rOa8I {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1c6426;
}
.cid-tFSx0rOa8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFSx0rOa8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tFSx0rOa8I .container {
    padding: 0 30px;
  }
}
.cid-tFSx0rOa8I .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tFSx0rOa8I .row {
    border-radius: 0;
  }
}
.cid-tFSx0rOa8I .card {
  padding: 0;
}
.cid-tFSx0rOa8I .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tFSx0rOa8I .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-tFSx0rOa8I .mbr-date {
  color: #ffffff;
}
.cid-tFSx0rOa8I .mbr-link {
  color: #ffffff;
}
.cid-tFSy0Qfkkc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1c6426;
}
.cid-tFSy0Qfkkc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFSy0Qfkkc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tFSy0Qfkkc .container {
    padding: 0 30px;
  }
}
.cid-tFSy0Qfkkc .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tFSy0Qfkkc .row {
    border-radius: 0;
  }
}
.cid-tFSy0Qfkkc .card {
  padding: 0;
}
.cid-tFSy0Qfkkc .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tFSy0Qfkkc .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-tFSy0Qfkkc .mbr-date {
  color: #ffffff;
}
.cid-tFSy0Qfkkc .mbr-link {
  color: #ffffff;
}
.cid-tzQ7oUKumg .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-tzQ7oUKumg .nav-item:focus,
.cid-tzQ7oUKumg .nav-link:focus {
  outline: none;
}
.cid-tzQ7oUKumg .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-tzQ7oUKumg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzQ7oUKumg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tzQ7oUKumg .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-tzQ7oUKumg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzQ7oUKumg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzQ7oUKumg .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tzQ7oUKumg .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tzQ7oUKumg .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tzQ7oUKumg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzQ7oUKumg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzQ7oUKumg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzQ7oUKumg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tzQ7oUKumg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzQ7oUKumg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzQ7oUKumg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzQ7oUKumg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tzQ7oUKumg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tzQ7oUKumg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzQ7oUKumg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzQ7oUKumg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzQ7oUKumg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzQ7oUKumg .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tzQ7oUKumg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzQ7oUKumg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzQ7oUKumg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzQ7oUKumg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzQ7oUKumg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzQ7oUKumg .dropdown-item.active,
.cid-tzQ7oUKumg .dropdown-item:active {
  background-color: transparent;
}
.cid-tzQ7oUKumg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzQ7oUKumg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzQ7oUKumg .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzQ7oUKumg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tzQ7oUKumg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzQ7oUKumg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzQ7oUKumg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQ7oUKumg .navbar-buttons {
  text-align: center;
}
.cid-tzQ7oUKumg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tzQ7oUKumg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzQ7oUKumg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzQ7oUKumg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tzQ7oUKumg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzQ7oUKumg .navbar {
    height: 77px;
  }
  .cid-tzQ7oUKumg .navbar.opened {
    height: auto;
  }
  .cid-tzQ7oUKumg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzQpbTsqNI {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #1c4d23;
}
.cid-tzQpbTsqNI .mbr-section-title {
  color: #fffc7e;
}
.cid-tzQphilklC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1c6426;
}
.cid-tzQphilklC .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-tzQphilklC .counter-container ul li {
  margin-bottom: 0.2rem;
}
.cid-tzQphilklC .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-tzQphilklC img {
    width: 90%;
  }
}
.cid-tzQphilklC .mbr-text,
.cid-tzQphilklC .mbr-section-btn {
  text-align: center;
  color: #fffc7e;
}
.cid-tzQphilklC .mbr-text,
.cid-tzQphilklC .mbr-section-btn UL {
  text-align: left;
}
.cid-tzQpjOB3jJ {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/spread-lids-2000x1123.jpeg");
}
.cid-tzQpjOB3jJ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-tzQpjOB3jJ .rev,
.cid-tzQpjOB3jJ .mbr-iconfont {
  display: inline-block;
}
.cid-tzQpjOB3jJ .card-img {
  position: relative;
}
.cid-tzQpjOB3jJ .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-tzQpjOB3jJ .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-tzQpjOB3jJ .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-tzQpjOB3jJ .card-box {
  padding: 1.5rem;
}
.cid-tzQpjOB3jJ .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-tzQpjOB3jJ .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-tzQpjOB3jJ .mbr-section-title,
.cid-tzQpjOB3jJ .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-tzQpjOB3jJ .card-text,
.cid-tzQpjOB3jJ .mbr-section-btn,
.cid-tzQpjOB3jJ .ico-line {
  text-align: left;
  color: #767676;
}
.cid-tzQpjOB3jJ .mbr-text,
.cid-tzQpjOB3jJ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tzQpjOB3jJ .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-tzQpjOB3jJ .mbr-text {
  color: #fffc7e;
}
.cid-tzQpkRD1mj {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #1c4d23;
}
.cid-tzQpkRD1mj .mbr-section-title {
  color: #fffc7e;
}
.cid-tzQpkRD1mj .mbr-section-subtitle {
  color: #fffc7e;
}
.cid-tzQB8b3xGf {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #1c6426;
}
.cid-tzQB8b3xGf .card {
  display: block;
  position: relative;
}
.cid-tzQB8b3xGf .card .card-wrapper {
  background: #1c4d23;
  height: 1%;
}
.cid-tzQB8b3xGf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tzQB8b3xGf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tzQB8b3xGf .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: #1c4d23;
}
.cid-tzQB8b3xGf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tzQB8b3xGf .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tzQB8b3xGf .mbr-card-text {
  margin: 0;
}
.cid-tzQB8b3xGf .mbr-section-title {
  text-align: center;
}
.cid-tzQB8b3xGf .mbr-card-text,
.cid-tzQB8b3xGf .mbr-section-btn {
  color: #fffc7e;
}
.cid-tzQB8b3xGf .img-text {
  color: #fffc7e;
}
.cid-tzQpooVQVt {
  overflow-x: hidden !important;
}
.cid-tzQpooVQVt,
.cid-tzQpooVQVt .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-tzQpooVQVt .mbr-section-title {
  color: #ffffff;
}
.cid-tzQpooVQVt .mbr-section-title span {
  color: #fffc7e;
}
.cid-tzQpooVQVt .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-tzQpooVQVt .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 11s !important;
  animation-duration: 11s;
  background-image: url("../../../assets/images/img-134-2000x1123.jpeg");
}
.cid-tzQpooVQVt .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-tzQpooVQVt .mbr-overlay {
  z-index: 1;
}
.cid-tzQpooVQVt .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-tzQ7oUKumg .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-tzQ7oUKumg .nav-item:focus,
.cid-tzQ7oUKumg .nav-link:focus {
  outline: none;
}
.cid-tzQ7oUKumg .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-tzQ7oUKumg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzQ7oUKumg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tzQ7oUKumg .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-tzQ7oUKumg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzQ7oUKumg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzQ7oUKumg .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tzQ7oUKumg .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tzQ7oUKumg .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tzQ7oUKumg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzQ7oUKumg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzQ7oUKumg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzQ7oUKumg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tzQ7oUKumg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzQ7oUKumg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzQ7oUKumg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzQ7oUKumg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzQ7oUKumg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tzQ7oUKumg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tzQ7oUKumg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzQ7oUKumg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzQ7oUKumg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzQ7oUKumg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzQ7oUKumg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzQ7oUKumg .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tzQ7oUKumg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzQ7oUKumg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzQ7oUKumg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzQ7oUKumg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzQ7oUKumg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzQ7oUKumg .dropdown-item.active,
.cid-tzQ7oUKumg .dropdown-item:active {
  background-color: transparent;
}
.cid-tzQ7oUKumg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzQ7oUKumg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzQ7oUKumg .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzQ7oUKumg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tzQ7oUKumg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzQ7oUKumg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzQ7oUKumg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQ7oUKumg .navbar-buttons {
  text-align: center;
}
.cid-tzQ7oUKumg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQ7oUKumg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzQ7oUKumg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQ7oUKumg .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tzQ7oUKumg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzQ7oUKumg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzQ7oUKumg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tzQ7oUKumg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzQ7oUKumg .navbar {
    height: 77px;
  }
  .cid-tzQ7oUKumg .navbar.opened {
    height: auto;
  }
  .cid-tzQ7oUKumg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzQrR0iI49 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tzQrR0iI49 P {
  color: #767676;
}
.cid-tzQrR0iI49 H1 {
  color: #fffc7e;
}
.cid-tzQGtTeAGu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tzQGtTeAGu .mbr-section-title {
  margin: 0;
}
.cid-tzQGtTeAGu .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tzQGtTeAGu .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tzQGtTeAGu .media-row {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzQGtTeAGu .team-item {
  transition: all .2s;
  margin: 2rem 0;
}
.cid-tzQGtTeAGu .team-item .item-image {
  position: relative !important;
}
.cid-tzQGtTeAGu .team-item .item-image img {
  width: 100%;
}
.cid-tzQGtTeAGu .team-item .item-image::after {
  background: #000000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}
.cid-tzQGtTeAGu .team-item .item-name p {
  margin-bottom: 0;
}
.cid-tzQGtTeAGu .team-item .item-role p {
  margin-bottom: 0;
}
.cid-tzQGtTeAGu .team-item .item-caption {
  background: #1c6426;
}
.cid-tzQGtTeAGu .item-social {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.cid-tzQGtTeAGu .item-social li {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-tzQGtTeAGu .item-social li a span {
  border-radius: 50%;
  background-color: #444444;
  color: white;
  font-size: 14px;
  width: 3em;
  margin: 2px;
  height: 3em;
  line-height: 3em;
  display: block;
  padding: 0.1rem 0.9rem;
}
.cid-tzQGtTeAGu .item-social li a span:hover {
  background-color: #ffbc00;
  color: #000000;
}
.cid-tzQGtTeAGu .team-item:hover .item-social > li.social-1 {
  transition-delay: .1s;
  opacity: 1;
  visibility: visible;
}
.cid-tzQGtTeAGu .team-item:hover .item-social > li.social-2 {
  transition-delay: .2s;
  opacity: 1;
  visibility: visible;
}
.cid-tzQGtTeAGu .team-item:hover .item-social > li.social-3 {
  transition-delay: .3s;
  opacity: 1;
  visibility: visible;
}
.cid-tzQGtTeAGu .team-item:hover .item-social > li.social-4 {
  transition-delay: .4s;
  opacity: 1;
  visibility: visible;
}
.cid-tzQGtTeAGu .team-item:hover .item-social > li.social-5 {
  transition-delay: .5s;
  opacity: 1;
  visibility: visible;
}
.cid-tzQGtTeAGu .team-item:hover .item-social > li.social-6 {
  transition-delay: .6s;
  opacity: 1;
  visibility: visible;
}
.cid-tzQGtTeAGu .builderCard .item-image::after {
  border-bottom-left-radius: 5rem;
}
.cid-tzQGtTeAGu .item-name {
  color: #fffc7e;
}
.cid-tzQGtTeAGu .item-role P {
  color: #fffc7e;
}
.cid-tzQrWQFOLv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tzQrWQFOLv H2 {
  color: #fffc7e;
}
.cid-tzQrWQFOLv .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-tzQsl0ZRD7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tzQsl0ZRD7 .card {
  align-self: stretch;
}
.cid-tzQsl0ZRD7 .card-box {
  height: 100%;
  background-color: #1c6426;
  padding: 2rem;
}
.cid-tzQsl0ZRD7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tzQsl0ZRD7 p {
  color: #767676;
  text-align: left;
}
.cid-tzQsl0ZRD7 .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tzQsl0ZRD7 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tzQsl0ZRD7 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tzQsl0ZRD7 P {
  text-align: center;
  color: #fffc7e;
}
.cid-tzQsl0ZRD7 .card-title {
  color: #fff0b0;
  text-align: center;
}
.cid-tzQsxXT2cT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #1c4d23;
}
.cid-tzQsxXT2cT P {
  color: #767676;
}
.cid-tzQsxXT2cT H1 {
  color: #fffc7e;
}
.cid-uba9gqjk2E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-uba9gqjk2E .card {
  align-self: stretch;
}
.cid-uba9gqjk2E .card-box {
  height: 100%;
  background-color: #1c6426;
  padding: 2rem;
}
.cid-uba9gqjk2E h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uba9gqjk2E p {
  color: #767676;
  text-align: left;
}
.cid-uba9gqjk2E .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uba9gqjk2E .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-uba9gqjk2E .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-uba9gqjk2E P {
  text-align: center;
  color: #fffc7e;
}
.cid-uba9gqjk2E .card-title {
  color: #fff0b0;
  text-align: center;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .nav-item:focus,
.cid-tzQnkWucmn .nav-link:focus {
  outline: none;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzQnkWucmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tzQnkWucmn .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-tzQnkWucmn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzQnkWucmn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzQnkWucmn .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tzQnkWucmn .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tzQnkWucmn .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tzQnkWucmn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzQnkWucmn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzQnkWucmn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzQnkWucmn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tzQnkWucmn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzQnkWucmn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzQnkWucmn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzQnkWucmn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzQnkWucmn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tzQnkWucmn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tzQnkWucmn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzQnkWucmn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzQnkWucmn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tzQnkWucmn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tzQnkWucmn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzQnkWucmn .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tzQnkWucmn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzQnkWucmn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzQnkWucmn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzQnkWucmn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzQnkWucmn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzQnkWucmn .dropdown-item.active,
.cid-tzQnkWucmn .dropdown-item:active {
  background-color: transparent;
}
.cid-tzQnkWucmn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzQnkWucmn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzQnkWucmn .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzQnkWucmn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tzQnkWucmn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzQnkWucmn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzQnkWucmn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQnkWucmn .navbar-buttons {
  text-align: center;
}
.cid-tzQnkWucmn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzQnkWucmn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzQnkWucmn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzQnkWucmn .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tzQnkWucmn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tzQnkWucmn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzQnkWucmn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tzQnkWucmn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzQnkWucmn .navbar {
    height: 77px;
  }
  .cid-tzQnkWucmn .navbar.opened {
    height: auto;
  }
  .cid-tzQnkWucmn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzQsP8tLWS {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-6821-2000x1123.jpg");
}
.cid-tzQsP8tLWS .mbr-section-title {
  margin-bottom: 0;
  color: #fffc7e;
}
.cid-tzQsP8tLWS .subscribe__form {
  margin-top: 50px;
}
.cid-tzQsP8tLWS .form-group {
  margin-bottom: 0;
}
.cid-tzQsP8tLWS .dragArea .form-control {
  color: #fffc7e;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 252, 126, 0.4) !important;
  padding: 0 25px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  background-color: #fff6d2 !important;
  background-color: transparent !important;
}
.cid-tzQsP8tLWS .dragArea textarea {
  margin-bottom: 40px !important;
  height: 170px !important;
  border-radius: 10px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  resize: none;
}
.cid-tzQsP8tLWS .dragArea input::placeholder {
  color: #fffc7e;
  opacity: .6;
}
.cid-tzQsP8tLWS .dragArea textarea::placeholder {
  color: #fffc7e;
  opacity: .6;
}
.cid-tzQsP8tLWS .dragArea .form-check {
  margin-bottom: 20px;
}
.cid-tzQsP8tLWS .dragArea .form-check input[type="checkbox"] + label:before {
  content: "";
  border: 2px solid rgba(255, 252, 126, 0.4) !important;
  border-radius: 6px;
  transition: all .25s;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 20px;
  margin-right: 10px;
}
.cid-tzQsP8tLWS .dragArea .form-check input[type="checkbox"]:checked + label:before {
  border-color: #1c4d23 !important;
  background-color: #1c4d23 !important;
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32.296 32.296' style='enable-background:new 0 0 32.296 32.296;' xml:space='preserve'%3E%3Cg%3E%3Cpath style='fill:%23030104;' d='M31.923,9.14L13.417,27.642c-0.496,0.494-1.299,0.494-1.793,0L0.37,16.316 c-0.494-0.496-0.494-1.302,0-1.795l2.689-2.687c0.496-0.495,1.299-0.495,1.793,0l7.678,7.729L27.438,4.654 c0.494-0.494,1.297-0.494,1.795,0l2.689,2.691C32.421,7.84,32.421,8.646,31.923,9.14z'/%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
}
.cid-tzQsP8tLWS .dragArea .form-check-input {
  display: none;
  margin-top: .6rem;
}
.cid-tzQsP8tLWS .dragArea .form-check-label {
  font-size: 16px;
  line-height: 24px;
}
.cid-tzQsP8tLWS .dragArea .input-group-btn .btn {
  font-weight: 500;
}
.cid-tzQsP8tLWS .info__bottom {
  margin-top: 55px;
  width: 100%;
}
.cid-tzQsP8tLWS .info__bottom .text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tzQsP8tLWS .info__bottom .text:before {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid rgba(255, 252, 126, 0.2) !important;
}
.cid-tzQsP8tLWS .info__bottom .text:after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid rgba(255, 252, 126, 0.2) !important;
}
.cid-tzQsP8tLWS .info__bottom .text .mbr-text {
  margin: 0 10px;
  letter-spacing: 2px;
}
.cid-tzQsP8tLWS .tel {
  transition: all .25s;
  margin-top: 35px;
}
.cid-tzQsP8tLWS .tel:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tzQsP8tLWS .form-group {
    text-align: center;
  }
  .cid-tzQsP8tLWS .form-check {
    padding-left: 0;
  }
  .cid-tzQsP8tLWS .input-group-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tzQsP8tLWS .row:first-child {
    margin: 0;
  }
}
.cid-tzQsP8tLWS LABEL {
  color: #fffc7e;
}
.cid-tzQsP8tLWS .mbr-text {
  color: #fff6d2;
}
.cid-tzQt1HzVKR {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/img-4666-2000x2666.jpg");
}
@media (max-width: 767px) {
  .cid-tzQt1HzVKR .content {
    text-align: center;
  }
  .cid-tzQt1HzVKR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tzQt1HzVKR .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tzQt1HzVKR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tzQt1HzVKR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tzQt1HzVKR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tzQt1HzVKR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tzQt1HzVKR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tzQt1HzVKR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tzQt1HzVKR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tzQt1HzVKR .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tzQt1HzVKR .google-map {
  height: 25rem;
  position: relative;
}
.cid-tzQt1HzVKR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tzQt1HzVKR .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tzQt1HzVKR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tzQt1HzVKR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tzQt1HzVKR P {
  color: #fffc7e;
  text-align: center;
}
.cid-tG93eLdtRk .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-tG93eLdtRk .nav-item:focus,
.cid-tG93eLdtRk .nav-link:focus {
  outline: none;
}
.cid-tG93eLdtRk .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-tG93eLdtRk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG93eLdtRk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tG93eLdtRk .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-tG93eLdtRk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG93eLdtRk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG93eLdtRk .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tG93eLdtRk .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tG93eLdtRk .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tG93eLdtRk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG93eLdtRk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG93eLdtRk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG93eLdtRk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tG93eLdtRk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tG93eLdtRk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG93eLdtRk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG93eLdtRk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tG93eLdtRk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG93eLdtRk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG93eLdtRk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG93eLdtRk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG93eLdtRk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG93eLdtRk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tG93eLdtRk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG93eLdtRk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG93eLdtRk .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tG93eLdtRk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tG93eLdtRk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG93eLdtRk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG93eLdtRk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tG93eLdtRk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tG93eLdtRk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG93eLdtRk .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tG93eLdtRk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tG93eLdtRk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tG93eLdtRk .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG93eLdtRk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG93eLdtRk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG93eLdtRk .dropdown-item.active,
.cid-tG93eLdtRk .dropdown-item:active {
  background-color: transparent;
}
.cid-tG93eLdtRk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG93eLdtRk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG93eLdtRk .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG93eLdtRk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tG93eLdtRk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG93eLdtRk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG93eLdtRk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tG93eLdtRk .navbar-buttons {
  text-align: center;
}
.cid-tG93eLdtRk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tG93eLdtRk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG93eLdtRk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG93eLdtRk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93eLdtRk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93eLdtRk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG93eLdtRk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93eLdtRk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG93eLdtRk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG93eLdtRk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93eLdtRk .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tG93eLdtRk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG93eLdtRk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG93eLdtRk .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tG93eLdtRk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG93eLdtRk .navbar {
    height: 77px;
  }
  .cid-tG93eLdtRk .navbar.opened {
    height: auto;
  }
  .cid-tG93eLdtRk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG93eLIq1E {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/home-1.jpeg");
}
.cid-tG93eLIq1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG93eLIq1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG93eLIq1E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG93eLIq1E .row {
  flex-direction: row-reverse;
}
.cid-tG93eLIq1E img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tG93eLIq1E .text-wrapper {
    padding: 2rem;
  }
}
.cid-tG93eLIq1E .mbr-section-title {
  text-align: center;
  color: #fffc7e;
}
.cid-tG93eLIq1E .mbr-text {
  color: #fffc7e;
  text-align: center;
}
.cid-tG93eM5jzD {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/home-2-2000x1123.jpg");
}
.cid-tG93eM5jzD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG93eM5jzD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG93eM5jzD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG93eM5jzD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tG93eM5jzD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tG93eM5jzD .mbr-section-title {
  text-align: center;
  color: #fffc7e;
}
.cid-tG93eM5jzD .mbr-text {
  text-align: center;
  color: #fffc7e;
}
.cid-tG93eMoCfL {
  background-image: url("../../../assets/images/home-3-640x427.jpeg");
  background-position: right;
}
.cid-tG93eMoCfL .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-tG93eMoCfL .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-tG93eMoCfL .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-tG93eMoCfL img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tG93eMoCfL .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tG93eMoCfL H1 {
  color: #fffc7e;
  text-align: center;
}
.cid-tG93eMoCfL .mbr-text,
.cid-tG93eMoCfL .mbr-section-btn {
  color: #fffc7e;
  text-align: center;
}
.cid-tG93eMI16g {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/home-4-2000x1123.jpeg");
}
.cid-tG93eMI16g .link {
  position: relative;
  letter-spacing: 2px;
  color: #1d7329;
}
.cid-tG93eMI16g .link:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-tG93eMI16g .card {
  position: relative;
}
.cid-tG93eMI16g .card:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.7;
  transition: all 0.6s;
}
.cid-tG93eMI16g .card:hover:before {
  opacity: 0.9;
}
.cid-tG93eMI16g .card-box {
  padding: 4rem 1rem;
  z-index: 2;
}
.cid-tG93eMI16g .mbr-text {
  color: #1c4d23;
}
.cid-tG93eMI16g .card-title {
  color: #1c4d23;
}
.cid-tG93eN14s5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/for-video-1920x1080.png");
}
.cid-tG93eN14s5 .mbr-media {
  position: relative;
}
.cid-tG93eN14s5 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tG93eN14s5 .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-tG93eN14s5 .box {
    min-height: 300px;
  }
}
.cid-tG93eN14s5 .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #fffc7e;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tG93eN14s5 .icon-wrap a {
  height: 20px;
}
.cid-tG93eN14s5 .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #fffc7e;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-tG93eN14s5 .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #5e71db;
}
.cid-tG93eN14s5 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tG93eN14s5 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tG93eN14s5 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tG93eN14s5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG93eN14s5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG93eN14s5 .mbr-section-title {
  color: #fffc7e;
}
.cid-tG93qRrDYb .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-tG93qRrDYb .nav-item:focus,
.cid-tG93qRrDYb .nav-link:focus {
  outline: none;
}
.cid-tG93qRrDYb .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-tG93qRrDYb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG93qRrDYb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tG93qRrDYb .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-tG93qRrDYb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG93qRrDYb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG93qRrDYb .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tG93qRrDYb .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tG93qRrDYb .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tG93qRrDYb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG93qRrDYb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG93qRrDYb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG93qRrDYb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tG93qRrDYb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tG93qRrDYb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG93qRrDYb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG93qRrDYb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tG93qRrDYb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG93qRrDYb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG93qRrDYb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG93qRrDYb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG93qRrDYb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG93qRrDYb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tG93qRrDYb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG93qRrDYb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG93qRrDYb .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tG93qRrDYb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tG93qRrDYb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG93qRrDYb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG93qRrDYb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tG93qRrDYb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tG93qRrDYb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG93qRrDYb .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tG93qRrDYb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tG93qRrDYb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tG93qRrDYb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG93qRrDYb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG93qRrDYb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG93qRrDYb .dropdown-item.active,
.cid-tG93qRrDYb .dropdown-item:active {
  background-color: transparent;
}
.cid-tG93qRrDYb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG93qRrDYb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG93qRrDYb .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG93qRrDYb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tG93qRrDYb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG93qRrDYb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG93qRrDYb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tG93qRrDYb .navbar-buttons {
  text-align: center;
}
.cid-tG93qRrDYb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tG93qRrDYb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG93qRrDYb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG93qRrDYb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93qRrDYb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93qRrDYb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG93qRrDYb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93qRrDYb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG93qRrDYb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG93qRrDYb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93qRrDYb .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tG93qRrDYb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG93qRrDYb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG93qRrDYb .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tG93qRrDYb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG93qRrDYb .navbar {
    height: 77px;
  }
  .cid-tG93qRrDYb .navbar.opened {
    height: auto;
  }
  .cid-tG93qRrDYb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG93qRP3Z6 {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #1c4d23;
}
.cid-tG93qRP3Z6 .mbr-section-title {
  color: #fffc7e;
}
.cid-tG93qS66YC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1c6426;
}
.cid-tG93qS66YC .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-tG93qS66YC .counter-container ul li {
  margin-bottom: 0.2rem;
}
.cid-tG93qS66YC .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-tG93qS66YC img {
    width: 90%;
  }
}
.cid-tG93qS66YC .mbr-text,
.cid-tG93qS66YC .mbr-section-btn {
  text-align: center;
  color: #fffc7e;
}
.cid-tG93qS66YC .mbr-text,
.cid-tG93qS66YC .mbr-section-btn UL {
  text-align: left;
}
.cid-tG93qSmZyK {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/spread-lids-2000x1123.jpeg");
}
.cid-tG93qSmZyK .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-tG93qSmZyK .rev,
.cid-tG93qSmZyK .mbr-iconfont {
  display: inline-block;
}
.cid-tG93qSmZyK .card-img {
  position: relative;
}
.cid-tG93qSmZyK .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-tG93qSmZyK .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-tG93qSmZyK .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-tG93qSmZyK .card-box {
  padding: 1.5rem;
}
.cid-tG93qSmZyK .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-tG93qSmZyK .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-tG93qSmZyK .mbr-section-title,
.cid-tG93qSmZyK .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-tG93qSmZyK .card-text,
.cid-tG93qSmZyK .mbr-section-btn,
.cid-tG93qSmZyK .ico-line {
  text-align: left;
  color: #767676;
}
.cid-tG93qSmZyK .mbr-text,
.cid-tG93qSmZyK .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tG93qSmZyK .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-tG93qSmZyK .mbr-text {
  color: #fffc7e;
}
.cid-tG93qSPfSc {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #1c4d23;
}
.cid-tG93qSPfSc .mbr-section-title {
  color: #fffc7e;
}
.cid-tG93qSPfSc .mbr-section-subtitle {
  color: #fffc7e;
}
.cid-tG93qT6eyy {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #1c6426;
}
.cid-tG93qT6eyy .card {
  display: block;
  position: relative;
}
.cid-tG93qT6eyy .card .card-wrapper {
  background: #1c4d23;
  height: 1%;
}
.cid-tG93qT6eyy .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tG93qT6eyy .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tG93qT6eyy .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: #1c4d23;
}
.cid-tG93qT6eyy .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tG93qT6eyy .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tG93qT6eyy .mbr-card-text {
  margin: 0;
}
.cid-tG93qT6eyy .mbr-section-title {
  text-align: center;
}
.cid-tG93qT6eyy .mbr-card-text,
.cid-tG93qT6eyy .mbr-section-btn {
  color: #fffc7e;
}
.cid-tG93qT6eyy .img-text {
  color: #fffc7e;
}
.cid-tG93qTxkVr {
  overflow-x: hidden !important;
}
.cid-tG93qTxkVr,
.cid-tG93qTxkVr .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-tG93qTxkVr .mbr-section-title {
  color: #ffffff;
}
.cid-tG93qTxkVr .mbr-section-title span {
  color: #fffc7e;
}
.cid-tG93qTxkVr .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-tG93qTxkVr .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 11s !important;
  animation-duration: 11s;
  background-image: url("../../../assets/images/img-134-2000x1123.jpeg");
}
.cid-tG93qTxkVr .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-tG93qTxkVr .mbr-overlay {
  z-index: 1;
}
.cid-tG93qTxkVr .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-tG93xDC3UB .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-tG93xDC3UB .nav-item:focus,
.cid-tG93xDC3UB .nav-link:focus {
  outline: none;
}
.cid-tG93xDC3UB .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-tG93xDC3UB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG93xDC3UB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tG93xDC3UB .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-tG93xDC3UB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG93xDC3UB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG93xDC3UB .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tG93xDC3UB .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tG93xDC3UB .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tG93xDC3UB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG93xDC3UB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG93xDC3UB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG93xDC3UB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tG93xDC3UB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tG93xDC3UB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG93xDC3UB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG93xDC3UB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tG93xDC3UB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG93xDC3UB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG93xDC3UB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG93xDC3UB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG93xDC3UB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG93xDC3UB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tG93xDC3UB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG93xDC3UB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG93xDC3UB .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tG93xDC3UB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tG93xDC3UB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG93xDC3UB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG93xDC3UB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tG93xDC3UB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tG93xDC3UB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG93xDC3UB .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tG93xDC3UB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tG93xDC3UB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tG93xDC3UB .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG93xDC3UB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG93xDC3UB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG93xDC3UB .dropdown-item.active,
.cid-tG93xDC3UB .dropdown-item:active {
  background-color: transparent;
}
.cid-tG93xDC3UB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG93xDC3UB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG93xDC3UB .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG93xDC3UB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tG93xDC3UB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG93xDC3UB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG93xDC3UB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tG93xDC3UB .navbar-buttons {
  text-align: center;
}
.cid-tG93xDC3UB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tG93xDC3UB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG93xDC3UB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG93xDC3UB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93xDC3UB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93xDC3UB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG93xDC3UB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93xDC3UB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG93xDC3UB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG93xDC3UB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93xDC3UB .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tG93xDC3UB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG93xDC3UB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG93xDC3UB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tG93xDC3UB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG93xDC3UB .navbar {
    height: 77px;
  }
  .cid-tG93xDC3UB .navbar.opened {
    height: auto;
  }
  .cid-tG93xDC3UB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG93xDZCAV {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tG93xDZCAV P {
  color: #767676;
}
.cid-tG93xDZCAV H1 {
  color: #fffc7e;
}
.cid-tG93xEf8E6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tG93xEf8E6 .mbr-section-title {
  margin: 0;
}
.cid-tG93xEf8E6 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tG93xEf8E6 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tG93xEf8E6 .media-row {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG93xEf8E6 .team-item {
  transition: all .2s;
  margin: 2rem 0;
}
.cid-tG93xEf8E6 .team-item .item-image {
  position: relative !important;
}
.cid-tG93xEf8E6 .team-item .item-image img {
  width: 100%;
}
.cid-tG93xEf8E6 .team-item .item-image::after {
  background: #000000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}
.cid-tG93xEf8E6 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-tG93xEf8E6 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-tG93xEf8E6 .team-item .item-caption {
  background: #1c6426;
}
.cid-tG93xEf8E6 .item-social {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.cid-tG93xEf8E6 .item-social li {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-tG93xEf8E6 .item-social li a span {
  border-radius: 50%;
  background-color: #444444;
  color: white;
  font-size: 14px;
  width: 3em;
  margin: 2px;
  height: 3em;
  line-height: 3em;
  display: block;
  padding: 0.1rem 0.9rem;
}
.cid-tG93xEf8E6 .item-social li a span:hover {
  background-color: #ffbc00;
  color: #000000;
}
.cid-tG93xEf8E6 .team-item:hover .item-social > li.social-1 {
  transition-delay: .1s;
  opacity: 1;
  visibility: visible;
}
.cid-tG93xEf8E6 .team-item:hover .item-social > li.social-2 {
  transition-delay: .2s;
  opacity: 1;
  visibility: visible;
}
.cid-tG93xEf8E6 .team-item:hover .item-social > li.social-3 {
  transition-delay: .3s;
  opacity: 1;
  visibility: visible;
}
.cid-tG93xEf8E6 .team-item:hover .item-social > li.social-4 {
  transition-delay: .4s;
  opacity: 1;
  visibility: visible;
}
.cid-tG93xEf8E6 .team-item:hover .item-social > li.social-5 {
  transition-delay: .5s;
  opacity: 1;
  visibility: visible;
}
.cid-tG93xEf8E6 .team-item:hover .item-social > li.social-6 {
  transition-delay: .6s;
  opacity: 1;
  visibility: visible;
}
.cid-tG93xEf8E6 .builderCard .item-image::after {
  border-bottom-left-radius: 5rem;
}
.cid-tG93xEf8E6 .item-name {
  color: #fffc7e;
}
.cid-tG93xEf8E6 .item-role P {
  color: #fffc7e;
}
.cid-tG93xEIWkl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tG93xEIWkl H2 {
  color: #fffc7e;
}
.cid-tG93xEIWkl .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-tG93xEZ9en {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-tG93xEZ9en .card {
  align-self: stretch;
}
.cid-tG93xEZ9en .card-box {
  height: 100%;
  background-color: #1c6426;
  padding: 2rem;
}
.cid-tG93xEZ9en h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tG93xEZ9en p {
  color: #767676;
  text-align: left;
}
.cid-tG93xEZ9en .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tG93xEZ9en .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tG93xEZ9en .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tG93xEZ9en P {
  text-align: center;
  color: #fffc7e;
}
.cid-tG93xEZ9en .card-title {
  color: #fff0b0;
  text-align: center;
}
.cid-tG93xFjgqN {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #1c4d23;
}
.cid-tG93xFjgqN P {
  color: #767676;
}
.cid-tG93xFjgqN H1 {
  color: #fffc7e;
}
.cid-ubaa663JOl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1c4d23;
}
.cid-ubaa663JOl .card {
  align-self: stretch;
}
.cid-ubaa663JOl .card-box {
  height: 100%;
  background-color: #1c6426;
  padding: 2rem;
}
.cid-ubaa663JOl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ubaa663JOl p {
  color: #767676;
  text-align: left;
}
.cid-ubaa663JOl .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-ubaa663JOl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-ubaa663JOl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-ubaa663JOl P {
  text-align: center;
  color: #fffc7e;
}
.cid-ubaa663JOl .card-title {
  color: #fff0b0;
  text-align: center;
}
.cid-tG93HsYcuJ .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-tG93HsYcuJ .nav-item:focus,
.cid-tG93HsYcuJ .nav-link:focus {
  outline: none;
}
.cid-tG93HsYcuJ .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-tG93HsYcuJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG93HsYcuJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tG93HsYcuJ .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-tG93HsYcuJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG93HsYcuJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG93HsYcuJ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #1c6426;
}
.cid-tG93HsYcuJ .navbar.opened {
  transition: all 0.3s;
  background: #1c6426 !important;
}
.cid-tG93HsYcuJ .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tG93HsYcuJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG93HsYcuJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG93HsYcuJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG93HsYcuJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tG93HsYcuJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tG93HsYcuJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG93HsYcuJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG93HsYcuJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tG93HsYcuJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG93HsYcuJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG93HsYcuJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG93HsYcuJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG93HsYcuJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG93HsYcuJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tG93HsYcuJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG93HsYcuJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG93HsYcuJ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tG93HsYcuJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tG93HsYcuJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG93HsYcuJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG93HsYcuJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tG93HsYcuJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tG93HsYcuJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG93HsYcuJ .navbar.navbar-short {
  background: #1c6426 !important;
  min-height: 60px;
}
.cid-tG93HsYcuJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tG93HsYcuJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tG93HsYcuJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG93HsYcuJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG93HsYcuJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG93HsYcuJ .dropdown-item.active,
.cid-tG93HsYcuJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tG93HsYcuJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG93HsYcuJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG93HsYcuJ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG93HsYcuJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1c6426;
}
.cid-tG93HsYcuJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG93HsYcuJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG93HsYcuJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tG93HsYcuJ .navbar-buttons {
  text-align: center;
}
.cid-tG93HsYcuJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tG93HsYcuJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG93HsYcuJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG93HsYcuJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93HsYcuJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG93HsYcuJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG93HsYcuJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93HsYcuJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG93HsYcuJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG93HsYcuJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG93HsYcuJ .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-tG93HsYcuJ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tG93HsYcuJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG93HsYcuJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-tG93HsYcuJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG93HsYcuJ .navbar {
    height: 77px;
  }
  .cid-tG93HsYcuJ .navbar.opened {
    height: auto;
  }
  .cid-tG93HsYcuJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG93Htl5Rz {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-6821-2000x1123.jpg");
}
.cid-tG93Htl5Rz .mbr-section-title {
  margin-bottom: 0;
  color: #fffc7e;
}
.cid-tG93Htl5Rz .subscribe__form {
  margin-top: 50px;
}
.cid-tG93Htl5Rz .form-group {
  margin-bottom: 0;
}
.cid-tG93Htl5Rz .dragArea .form-control {
  color: #fffc7e;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 252, 126, 0.4) !important;
  padding: 0 25px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  background-color: #fff6d2 !important;
  background-color: transparent !important;
}
.cid-tG93Htl5Rz .dragArea textarea {
  margin-bottom: 40px !important;
  height: 170px !important;
  border-radius: 10px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  resize: none;
}
.cid-tG93Htl5Rz .dragArea input::placeholder {
  color: #fffc7e;
  opacity: .6;
}
.cid-tG93Htl5Rz .dragArea textarea::placeholder {
  color: #fffc7e;
  opacity: .6;
}
.cid-tG93Htl5Rz .dragArea .form-check {
  margin-bottom: 20px;
}
.cid-tG93Htl5Rz .dragArea .form-check input[type="checkbox"] + label:before {
  content: "";
  border: 2px solid rgba(255, 252, 126, 0.4) !important;
  border-radius: 6px;
  transition: all .25s;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 20px;
  margin-right: 10px;
}
.cid-tG93Htl5Rz .dragArea .form-check input[type="checkbox"]:checked + label:before {
  border-color: #1c4d23 !important;
  background-color: #1c4d23 !important;
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32.296 32.296' style='enable-background:new 0 0 32.296 32.296;' xml:space='preserve'%3E%3Cg%3E%3Cpath style='fill:%23030104;' d='M31.923,9.14L13.417,27.642c-0.496,0.494-1.299,0.494-1.793,0L0.37,16.316 c-0.494-0.496-0.494-1.302,0-1.795l2.689-2.687c0.496-0.495,1.299-0.495,1.793,0l7.678,7.729L27.438,4.654 c0.494-0.494,1.297-0.494,1.795,0l2.689,2.691C32.421,7.84,32.421,8.646,31.923,9.14z'/%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
}
.cid-tG93Htl5Rz .dragArea .form-check-input {
  display: none;
  margin-top: .6rem;
}
.cid-tG93Htl5Rz .dragArea .form-check-label {
  font-size: 16px;
  line-height: 24px;
}
.cid-tG93Htl5Rz .dragArea .input-group-btn .btn {
  font-weight: 500;
}
.cid-tG93Htl5Rz .info__bottom {
  margin-top: 55px;
  width: 100%;
}
.cid-tG93Htl5Rz .info__bottom .text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tG93Htl5Rz .info__bottom .text:before {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid rgba(255, 252, 126, 0.2) !important;
}
.cid-tG93Htl5Rz .info__bottom .text:after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid rgba(255, 252, 126, 0.2) !important;
}
.cid-tG93Htl5Rz .info__bottom .text .mbr-text {
  margin: 0 10px;
  letter-spacing: 2px;
}
.cid-tG93Htl5Rz .tel {
  transition: all .25s;
  margin-top: 35px;
}
.cid-tG93Htl5Rz .tel:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tG93Htl5Rz .form-group {
    text-align: center;
  }
  .cid-tG93Htl5Rz .form-check {
    padding-left: 0;
  }
  .cid-tG93Htl5Rz .input-group-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tG93Htl5Rz .row:first-child {
    margin: 0;
  }
}
.cid-tG93Htl5Rz LABEL {
  color: #fffc7e;
}
.cid-tG93Htl5Rz .mbr-text {
  color: #fff6d2;
}
.cid-tG93HtC9DJ {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/img-4666-2000x2666.jpg");
}
@media (max-width: 767px) {
  .cid-tG93HtC9DJ .content {
    text-align: center;
  }
  .cid-tG93HtC9DJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tG93HtC9DJ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tG93HtC9DJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tG93HtC9DJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tG93HtC9DJ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tG93HtC9DJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tG93HtC9DJ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tG93HtC9DJ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tG93HtC9DJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tG93HtC9DJ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tG93HtC9DJ .google-map {
  height: 25rem;
  position: relative;
}
.cid-tG93HtC9DJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tG93HtC9DJ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tG93HtC9DJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tG93HtC9DJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tG93HtC9DJ P {
  color: #fffc7e;
  text-align: center;
}
