body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #6592e6 !important;
}
.bg-success {
  background-color: #bbe5b3 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0b4714 !important;
  border-color: #0b4714 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #bbe5b3 !important;
  border-color: #bbe5b3 !important;
  color: #337227 !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: #81cf72 !important;
  border-color: #81cf72 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #337227 !important;
  background-color: #81cf72 !important;
  border-color: #81cf72 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b4714;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !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: #0b4714 !important;
  border-color: #0b4714 !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: #bbe5b3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #81cf72 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #337227 !important;
  background-color: #bbe5b3 !important;
  border-color: #bbe5b3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #6592e6 !important;
}
.text-secondary {
  color: #0b4714 !important;
}
.text-success {
  color: #bbe5b3 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #77cb67 !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: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #ffffff;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0b4714 !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='%236592e6' %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-tQtVhXh874 .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-tQtVhXh874 .nav-item:focus,
.cid-tQtVhXh874 .nav-link:focus {
  outline: none;
}
.cid-tQtVhXh874 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQtVhXh874 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQtVhXh874 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQtVhXh874 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQtVhXh874 .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-tQtVhXh874 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQtVhXh874 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQtVhXh874 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQtVhXh874 .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQtVhXh874 .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQtVhXh874 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQtVhXh874 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQtVhXh874 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQtVhXh874 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQtVhXh874 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQtVhXh874 .navbar.collapsed .navbar-collapse.show,
.cid-tQtVhXh874 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQtVhXh874 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQtVhXh874 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQtVhXh874 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQtVhXh874 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQtVhXh874 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQtVhXh874 .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-tQtVhXh874 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQtVhXh874 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQtVhXh874 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQtVhXh874 .navbar.collapsed .right-menu,
.cid-tQtVhXh874 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQtVhXh874 .navbar .navbar-collapse.show,
  .cid-tQtVhXh874 .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQtVhXh874 .navbar .navbar-collapse.show .brand-container,
  .cid-tQtVhXh874 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQtVhXh874 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQtVhXh874 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQtVhXh874 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQtVhXh874 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQtVhXh874 .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-tQtVhXh874 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQtVhXh874 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQtVhXh874 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQtVhXh874 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQtVhXh874 .navbar .right-menu,
  .cid-tQtVhXh874 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQtVhXh874 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQtVhXh874 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQtVhXh874 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQtVhXh874 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQtVhXh874 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQtVhXh874 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQtVhXh874 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQtVhXh874 .dropdown-item.active,
.cid-tQtVhXh874 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQtVhXh874 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQtVhXh874 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQtVhXh874 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQtVhXh874 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQtVhXh874 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQtVhXh874 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQtVhXh874 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQtVhXh874 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQtVhXh874 .navbar-buttons {
  margin-left: auto;
}
.cid-tQtVhXh874 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQtVhXh874 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQtVhXh874 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQtVhXh874 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQtVhXh874 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQtVhXh874 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQtVhXh874 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQtVhXh874 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQtVhXh874 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQtVhXh874 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQtVhXh874 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQtVhXh874 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQtVhXh874 .right-menu,
.cid-tQtVhXh874 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQtVhXh874 .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQtVhXh874 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQtVhXh874 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQtVhXh874 .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQtVhXh874 .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQtVhXh874 .card-wrapper {
  z-index: 3;
}
.cid-tQtVhXh874 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQtVhXh874 .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQtVhXh874 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQtY00ZdQS {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/tronc2.jpg");
}
.cid-tQtY00ZdQS .text {
  display: flex;
  align-items: center;
}
.cid-tQtY00ZdQS .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #ffffff;
}
.cid-tQtY00ZdQS .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-tQtY00ZdQS .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-tQtY00ZdQS .btn:hover {
  box-shadow: none;
}
.cid-tQtY00ZdQS .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tQtY00ZdQS .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tQtY00ZdQS .image-wrapper img {
  width: 372px;
  margin-top: 4rem;
  margin-LEFT: 20rem;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tQtY00ZdQS .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tQtY00ZdQS .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-tQtY00ZdQS .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tQtY00ZdQS .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tQtY00ZdQS .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-tQtY00ZdQS .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-tQtY00ZdQS .row:hover img {
  transform: rotate(0deg);
}
.cid-tQtY00ZdQS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQtY00ZdQS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQu4nNbssJ {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #e6e6e6;
}
.cid-tQu4nNbssJ .row {
  align-items: center;
}
.cid-tQu4nNbssJ .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .cid-tQu4nNbssJ .image-wrapper {
    padding: 0 30px;
    padding-left: 2.5rem;
  }
}
.cid-tQu4nNbssJ .image-wrapper img {
  width: auto;
  max-width: 100%;
  align-self: flex-end;
  object-fit: cover;
}
.cid-tQu4nNbssJ .image-wrapper img:last-child {
  align-self: flex-start;
  margin-top: -25%;
}
@media (max-width: 991px) {
  .cid-tQu4nNbssJ .image-wrapper img {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tQu4nNbssJ .col-text {
    padding-bottom: 4.8rem;
  }
}
@media (min-width: 992px) {
  .cid-tQu4nNbssJ .col-text {
    padding: 0 30px;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQu4nNbssJ .col-text {
    text-align: center;
  }
}
.cid-tQu4nNbssJ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tQu4nNbssJ .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #0b4714;
}
@media (max-width: 767px) {
  .cid-tQu4nNbssJ .label-text {
    text-align: center !important;
  }
}
.cid-tQu4nNbssJ .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tQu4nNbssJ .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tQu4nNbssJ .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQu4nNbssJ .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tQu4nNbssJ .lists-container {
    justify-content: center;
  }
}
.cid-tQu4nNbssJ .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-tQu4nNbssJ .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-tQu4nNbssJ .list {
    align-items: center;
  }
}
.cid-tQu4nNbssJ .list-item {
  display: flex;
  align-items: center;
}
.cid-tQu4nNbssJ .icon-wrapper {
  margin-right: 5px;
}
.cid-tQu4nNbssJ .icon-wrapper span {
  color: #0b4714;
  font-size: 21px;
}
.cid-tQu4nNbssJ .list-item-text {
  flex-grow: 1;
}
.cid-tQu4nNbssJ .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQu4nNbssJ .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-tQu4nNbssJ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tQu4nNbssJ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tQu4nNbssJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQu4nNbssJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuiOOiC5g {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0b4714;
}
.cid-tQuiOOiC5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQuiOOiC5g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuiOOiC5g .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tQuiOOiC5g .container {
    max-width: 1400px;
  }
}
.cid-tQuiOOiC5g .card {
  margin: auto;
}
.cid-tQuiOOiC5g .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tQuiOOiC5g .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQuiOOiC5g .row {
  justify-content: center;
}
.cid-tQuiOOiC5g H3 {
  text-align: left;
  color: #ffffff;
}
.cid-tQuiOOiC5g .card-title,
.cid-tQuiOOiC5g .card-box {
  color: #ffffff;
}
.cid-u6IKpRxzOZ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fffaf5;
  overflow: hidden;
}
.cid-u6IKpRxzOZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6IKpRxzOZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6IKpRxzOZ .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u6IKpRxzOZ .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u6IKpRxzOZ .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u6IKpRxzOZ .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u6IKpRxzOZ .container {
    padding: 0 16px;
  }
}
.cid-u6IKpRxzOZ .row {
  justify-content: space-between;
}
.cid-u6IKpRxzOZ .row:hover,
.cid-u6IKpRxzOZ .row:focus {
  cursor: pointer;
}
.cid-u6IKpRxzOZ .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u6IKpRxzOZ .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u6IKpRxzOZ .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-u6IKpRxzOZ .image-wrapper img {
    height: 300px;
  }
}
.cid-u6IKpRxzOZ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u6IKpRxzOZ .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-u6IKpRxzOZ .mbr-section-title {
  color: #000000;
}
.cid-u6IKpRxzOZ .mbr-text {
  color: #000000;
}
.cid-tQRgvW0UuW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQRgvW0UuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQRgvW0UuW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRgvW0UuW .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQRgvW0UuW .mbr-section-title {
  color: #181817;
}
.cid-tQRgvW0UuW .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQRgvW0UuW .card-row {
  align-items: stretch;
}
.cid-tQRgvW0UuW .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQRgvW0UuW .item {
    width: 20% !important;
  }
}
.cid-tQRgvW0UuW .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQRgvW0UuW .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQRgvW0UuW .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQRgvW0UuW .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQRgvW0UuW .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQRgvW0UuW .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQRgvW0UuW .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQRgvW0UuW .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQRgvW0UuW .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQRgvW0UuW .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQRgvW0UuW .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQRgvW0UuW .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQRgvW0UuW .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQRgvW0UuW .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQRgvW0UuW .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQRgvW0UuW .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQRgvW0UuW .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQRgvW0UuW .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQRgvW0UuW .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQRgvW0UuW .mbr-section-btn {
    width: auto;
  }
  .cid-tQRgvW0UuW .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-u6ICAuOan6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u6ICAuOan6 img,
.cid-u6ICAuOan6 .item-img {
  width: 100%;
}
.cid-u6ICAuOan6 .item:focus,
.cid-u6ICAuOan6 span:focus {
  outline: none;
}
.cid-u6ICAuOan6 .item-wrapper {
  position: relative;
}
.cid-u6ICAuOan6 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6ICAuOan6 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6ICAuOan6 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-u6ICAuOan6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6ICAuOan6 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-u6ICAuOan6 .mbr-text,
.cid-u6ICAuOan6 .mbr-section-btn {
  text-align: left;
}
.cid-u6ICAuOan6 .item-title {
  text-align: left;
}
.cid-u6ICAuOan6 .item-subtitle {
  text-align: left;
}
.cid-u6ICAuOan6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-u6ICAuOan6 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u6ICAuOan6 .embla__button--next,
.cid-u6ICAuOan6 .embla__button--prev {
  display: flex;
}
.cid-u6ICAuOan6 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-u6ICAuOan6 .embla__button {
    display: none;
  }
}
.cid-u6ICAuOan6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u6ICAuOan6 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-u6ICAuOan6 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6ICAuOan6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u6ICAuOan6 .embla__button {
    top: auto;
  }
}
.cid-u6ICAuOan6 .embla {
  position: relative;
  width: 100%;
}
.cid-u6ICAuOan6 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u6ICAuOan6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u6ICAuOan6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u6ICAuOan6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tQuoCjWFaP {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/r.jpg");
}
.cid-tQuoCjWFaP .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQuoCjWFaP input,
.cid-tQuoCjWFaP textarea {
  border-radius: 0;
}
.cid-tQuoCjWFaP input:hover,
.cid-tQuoCjWFaP textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQuoCjWFaP textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQuoCjWFaP .col-auto {
    margin: auto;
  }
}
.cid-tQuoCjWFaP .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQuoCjWFaP .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQuoCjWFaP .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQuoCjWFaP .btn {
  padding: 1rem 3rem;
}
.cid-tQuoCjWFaP .mbr-section-text {
  color: #ffffff;
}
.cid-tQuoCjWFaP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQuqzJvPgH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tQuLSXPll8 .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-tQuLSXPll8 .nav-item:focus,
.cid-tQuLSXPll8 .nav-link:focus {
  outline: none;
}
.cid-tQuLSXPll8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQuLSXPll8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQuLSXPll8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQuLSXPll8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQuLSXPll8 .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-tQuLSXPll8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQuLSXPll8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQuLSXPll8 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQuLSXPll8 .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQuLSXPll8 .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQuLSXPll8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQuLSXPll8 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQuLSXPll8 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQuLSXPll8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQuLSXPll8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQuLSXPll8 .navbar.collapsed .navbar-collapse.show,
.cid-tQuLSXPll8 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQuLSXPll8 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQuLSXPll8 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQuLSXPll8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQuLSXPll8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQuLSXPll8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQuLSXPll8 .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-tQuLSXPll8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQuLSXPll8 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQuLSXPll8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQuLSXPll8 .navbar.collapsed .right-menu,
.cid-tQuLSXPll8 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQuLSXPll8 .navbar .navbar-collapse.show,
  .cid-tQuLSXPll8 .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQuLSXPll8 .navbar .navbar-collapse.show .brand-container,
  .cid-tQuLSXPll8 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQuLSXPll8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQuLSXPll8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQuLSXPll8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQuLSXPll8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQuLSXPll8 .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-tQuLSXPll8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQuLSXPll8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQuLSXPll8 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQuLSXPll8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQuLSXPll8 .navbar .right-menu,
  .cid-tQuLSXPll8 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQuLSXPll8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQuLSXPll8 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQuLSXPll8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQuLSXPll8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQuLSXPll8 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQuLSXPll8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQuLSXPll8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQuLSXPll8 .dropdown-item.active,
.cid-tQuLSXPll8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQuLSXPll8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQuLSXPll8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQuLSXPll8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQuLSXPll8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQuLSXPll8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQuLSXPll8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQuLSXPll8 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQuLSXPll8 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQuLSXPll8 .navbar-buttons {
  margin-left: auto;
}
.cid-tQuLSXPll8 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQuLSXPll8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQuLSXPll8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQuLSXPll8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQuLSXPll8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQuLSXPll8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQuLSXPll8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQuLSXPll8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQuLSXPll8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQuLSXPll8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQuLSXPll8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQuLSXPll8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQuLSXPll8 .right-menu,
.cid-tQuLSXPll8 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQuLSXPll8 .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQuLSXPll8 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQuLSXPll8 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQuLSXPll8 .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQuLSXPll8 .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQuLSXPll8 .card-wrapper {
  z-index: 3;
}
.cid-tQuLSXPll8 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQuLSXPll8 .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQuLSXPll8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQuNccCeq8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/wallpaperflare2.jpg");
}
.cid-tQuNccCeq8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQuNccCeq8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuNccCeq8 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-tQuNccCeq8 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tQuNccCeq8 .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQuNccCeq8 .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQuNccCeq8 .mbr-section-btn {
  margin-top: 28px;
}
.cid-tQuNccCeq8 iframe,
.cid-tQuNccCeq8 img,
.cid-tQuNccCeq8 video {
  width: 100%;
}
.cid-tQuNccCeq8 .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-tQuNccCeq8 .mbr-media span {
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.2s;
}
.cid-tQuNccCeq8 .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-tQuNccCeq8 .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tQuNccCeq8 .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-tQuNccCeq8 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tQuNccCeq8 .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tQuNccCeq8 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tQuNccCeq8 .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tQuNccCeq8 .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-tQuNccCeq8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQuRDC9MLo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQuRDC9MLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQuRDC9MLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuRDC9MLo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tQuRDC9MLo .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tQuRDC9MLo .container {
    padding: 0 20px;
  }
}
.cid-tQuRDC9MLo .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQuRDC9MLo .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tQuRDC9MLo .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQuRDC9MLo .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tQuRDC9MLo .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQuRDC9MLo .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tQuRDC9MLo .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tQuRDC9MLo .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tQuRDC9MLo .image-wrapper img {
    height: 300px;
  }
}
.cid-tQuRDC9MLo .mbr-section-title {
  color: #c2b299;
}
.cid-tQuRDC9MLo .mbr-text {
  color: #000000;
}
.cid-tQuRDC9MLo .mbr-section-title,
.cid-tQuRDC9MLo .mbr-section-btn {
  color: #0b4714;
}
.cid-tQz52whsSk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
@media (min-width: 1400px) {
  .cid-tQz52whsSk .container {
    max-width: 1162px;
  }
}
.cid-tQz52whsSk .btn {
  padding: 24px 60px;
  color: #000000;
  border-radius: 60px;
}
.cid-tQz52whsSk .btn:hover,
.cid-tQz52whsSk .btn:focus {
  border-color: #ffff33 !important;
  background-color: #ffff33 !important;
}
@media (min-width: 768px) {
  .cid-tQz52whsSk .mbr-section-head {
    display: flex;
    justify-content: space-between;
  }
}
.cid-tQz52whsSk img,
.cid-tQz52whsSk .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-tQz52whsSk .item-img {
  height: 100%;
}
.cid-tQz52whsSk .item-img img {
  height: 500px;
  object-fit: cover;
}
.cid-tQz52whsSk .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-tQz52whsSk .item-content {
  z-index: 3;
  min-width: 250px;
  text-align: center;
  top: 60%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tQz52whsSk .mbr-text,
.cid-tQz52whsSk .mbr-section-btn {
  color: #ffffff;
}
.cid-tQz52whsSk .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tQz52whsSk .item-wrapper:hover img {
  -webkit-filter: brightness(30%);
  filter: brightness(30%);
}
.cid-tQz52whsSk .item:focus,
.cid-tQz52whsSk span:focus {
  outline: none;
}
.cid-tQz52whsSk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tQz52whsSk .Bg {
  padding: 0.5rem 1rem;
  background-color: #ffff33;
}
.cid-tQuLT2xamc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0b4714;
}
.cid-tQuLT2xamc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQuLT2xamc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuLT2xamc .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tQuLT2xamc .container {
    max-width: 1400px;
  }
}
.cid-tQuLT2xamc .card {
  margin: auto;
}
.cid-tQuLT2xamc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tQuLT2xamc .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQuLT2xamc .row {
  justify-content: center;
}
.cid-tQuLT2xamc H3 {
  text-align: left;
  color: #ffffff;
}
.cid-tQuLT2xamc .card-title,
.cid-tQuLT2xamc .card-box {
  color: #ffffff;
}
.cid-tQRgAwlFNQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQRgAwlFNQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQRgAwlFNQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRgAwlFNQ .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQRgAwlFNQ .mbr-section-title {
  color: #181817;
}
.cid-tQRgAwlFNQ .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQRgAwlFNQ .card-row {
  align-items: stretch;
}
.cid-tQRgAwlFNQ .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQRgAwlFNQ .item {
    width: 20% !important;
  }
}
.cid-tQRgAwlFNQ .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQRgAwlFNQ .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQRgAwlFNQ .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQRgAwlFNQ .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQRgAwlFNQ .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQRgAwlFNQ .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQRgAwlFNQ .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQRgAwlFNQ .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQRgAwlFNQ .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQRgAwlFNQ .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQRgAwlFNQ .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQRgAwlFNQ .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQRgAwlFNQ .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQRgAwlFNQ .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQRgAwlFNQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQRgAwlFNQ .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQRgAwlFNQ .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQRgAwlFNQ .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQRgAwlFNQ .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQRgAwlFNQ .mbr-section-btn {
    width: auto;
  }
  .cid-tQRgAwlFNQ .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-tQuLT5NrI5 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/r.jpg");
}
.cid-tQuLT5NrI5 .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQuLT5NrI5 input,
.cid-tQuLT5NrI5 textarea {
  border-radius: 0;
}
.cid-tQuLT5NrI5 input:hover,
.cid-tQuLT5NrI5 textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQuLT5NrI5 textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQuLT5NrI5 .col-auto {
    margin: auto;
  }
}
.cid-tQuLT5NrI5 .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQuLT5NrI5 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQuLT5NrI5 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQuLT5NrI5 .btn {
  padding: 1rem 3rem;
}
.cid-tQuLT5NrI5 .mbr-section-text {
  color: #ffffff;
}
.cid-tQuLT5NrI5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQuLT7a9lT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tQz6GNYeDM .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-tQz6GNYeDM .nav-item:focus,
.cid-tQz6GNYeDM .nav-link:focus {
  outline: none;
}
.cid-tQz6GNYeDM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQz6GNYeDM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQz6GNYeDM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQz6GNYeDM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQz6GNYeDM .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-tQz6GNYeDM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQz6GNYeDM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQz6GNYeDM .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQz6GNYeDM .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQz6GNYeDM .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQz6GNYeDM .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQz6GNYeDM .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQz6GNYeDM .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQz6GNYeDM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQz6GNYeDM .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQz6GNYeDM .navbar.collapsed .navbar-collapse.show,
.cid-tQz6GNYeDM .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQz6GNYeDM .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQz6GNYeDM .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQz6GNYeDM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQz6GNYeDM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQz6GNYeDM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQz6GNYeDM .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-tQz6GNYeDM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQz6GNYeDM .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQz6GNYeDM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQz6GNYeDM .navbar.collapsed .right-menu,
.cid-tQz6GNYeDM .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQz6GNYeDM .navbar .navbar-collapse.show,
  .cid-tQz6GNYeDM .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQz6GNYeDM .navbar .navbar-collapse.show .brand-container,
  .cid-tQz6GNYeDM .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQz6GNYeDM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQz6GNYeDM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQz6GNYeDM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQz6GNYeDM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQz6GNYeDM .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-tQz6GNYeDM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQz6GNYeDM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQz6GNYeDM .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQz6GNYeDM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQz6GNYeDM .navbar .right-menu,
  .cid-tQz6GNYeDM .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQz6GNYeDM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQz6GNYeDM .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQz6GNYeDM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQz6GNYeDM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQz6GNYeDM .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQz6GNYeDM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQz6GNYeDM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQz6GNYeDM .dropdown-item.active,
.cid-tQz6GNYeDM .dropdown-item:active {
  background-color: transparent;
}
.cid-tQz6GNYeDM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQz6GNYeDM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQz6GNYeDM .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQz6GNYeDM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQz6GNYeDM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQz6GNYeDM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQz6GNYeDM ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQz6GNYeDM ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQz6GNYeDM .navbar-buttons {
  margin-left: auto;
}
.cid-tQz6GNYeDM button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQz6GNYeDM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQz6GNYeDM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQz6GNYeDM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQz6GNYeDM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQz6GNYeDM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQz6GNYeDM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQz6GNYeDM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQz6GNYeDM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQz6GNYeDM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQz6GNYeDM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQz6GNYeDM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQz6GNYeDM .right-menu,
.cid-tQz6GNYeDM .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQz6GNYeDM .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQz6GNYeDM .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQz6GNYeDM .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQz6GNYeDM .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQz6GNYeDM .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQz6GNYeDM .card-wrapper {
  z-index: 3;
}
.cid-tQz6GNYeDM .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQz6GNYeDM .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQz6GNYeDM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQz6GR3QEP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aba.jpeg");
}
.cid-tQz6GR3QEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQz6GR3QEP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQz6GR3QEP .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-tQz6GR3QEP .mbr-section-title {
  color: #FFFFFF;
}
.cid-tQz6GR3QEP .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQz6GR3QEP .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQz6GR3QEP .mbr-section-btn {
  margin-top: 28px;
}
.cid-tQz6GR3QEP iframe,
.cid-tQz6GR3QEP img,
.cid-tQz6GR3QEP video {
  width: 100%;
}
.cid-tQz6GR3QEP .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-tQz6GR3QEP .mbr-media span {
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.2s;
}
.cid-tQz6GR3QEP .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-tQz6GR3QEP .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tQz6GR3QEP .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-tQz6GR3QEP .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tQz6GR3QEP .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tQz6GR3QEP .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tQz6GR3QEP .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tQz6GR3QEP .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-tQz6GR3QEP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQz6GUd3lC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQz6GUd3lC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQz6GUd3lC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQz6GUd3lC .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tQz6GUd3lC .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tQz6GUd3lC .container {
    padding: 0 20px;
  }
}
.cid-tQz6GUd3lC .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQz6GUd3lC .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tQz6GUd3lC .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQz6GUd3lC .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tQz6GUd3lC .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQz6GUd3lC .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tQz6GUd3lC .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tQz6GUd3lC .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tQz6GUd3lC .image-wrapper img {
    height: 300px;
  }
}
.cid-tQz6GUd3lC .mbr-section-title {
  color: #c2b299;
}
.cid-tQz6GUd3lC .mbr-text {
  color: #000000;
}
.cid-tQz6GUd3lC .mbr-section-title,
.cid-tQz6GUd3lC .mbr-section-btn {
  color: #0b4714;
}
.cid-tQz6GYQLyQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
@media (min-width: 1400px) {
  .cid-tQz6GYQLyQ .container {
    max-width: 1162px;
  }
}
.cid-tQz6GYQLyQ .btn {
  padding: 24px 60px;
  color: #000000;
  border-radius: 60px;
}
.cid-tQz6GYQLyQ .btn:hover,
.cid-tQz6GYQLyQ .btn:focus {
  border-color: #ffff33 !important;
  background-color: #ffff33 !important;
}
@media (min-width: 768px) {
  .cid-tQz6GYQLyQ .mbr-section-head {
    display: flex;
    justify-content: space-between;
  }
}
.cid-tQz6GYQLyQ img,
.cid-tQz6GYQLyQ .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-tQz6GYQLyQ .item-img {
  height: 100%;
}
.cid-tQz6GYQLyQ .item-img img {
  height: 500px;
  object-fit: cover;
}
.cid-tQz6GYQLyQ .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-tQz6GYQLyQ .item-content {
  z-index: 3;
  min-width: 250px;
  text-align: center;
  top: 60%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tQz6GYQLyQ .mbr-text,
.cid-tQz6GYQLyQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tQz6GYQLyQ .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tQz6GYQLyQ .item-wrapper:hover img {
  -webkit-filter: brightness(30%);
  filter: brightness(30%);
}
.cid-tQz6GYQLyQ .item:focus,
.cid-tQz6GYQLyQ span:focus {
  outline: none;
}
.cid-tQz6GYQLyQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tQz6GYQLyQ .Bg {
  padding: 0.5rem 1rem;
  background-color: #ffff33;
}
.cid-tQz6H8PIzp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0b4714;
}
.cid-tQz6H8PIzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQz6H8PIzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQz6H8PIzp .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tQz6H8PIzp .container {
    max-width: 1400px;
  }
}
.cid-tQz6H8PIzp .card {
  margin: auto;
}
.cid-tQz6H8PIzp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tQz6H8PIzp .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQz6H8PIzp .row {
  justify-content: center;
}
.cid-tQz6H8PIzp H3 {
  text-align: left;
  color: #ffffff;
}
.cid-tQz6H8PIzp .card-title,
.cid-tQz6H8PIzp .card-box {
  color: #ffffff;
}
.cid-tQRgHnD6CH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQRgHnD6CH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQRgHnD6CH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRgHnD6CH .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQRgHnD6CH .mbr-section-title {
  color: #181817;
}
.cid-tQRgHnD6CH .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQRgHnD6CH .card-row {
  align-items: stretch;
}
.cid-tQRgHnD6CH .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQRgHnD6CH .item {
    width: 20% !important;
  }
}
.cid-tQRgHnD6CH .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQRgHnD6CH .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQRgHnD6CH .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQRgHnD6CH .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQRgHnD6CH .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQRgHnD6CH .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQRgHnD6CH .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQRgHnD6CH .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQRgHnD6CH .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQRgHnD6CH .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQRgHnD6CH .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQRgHnD6CH .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQRgHnD6CH .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQRgHnD6CH .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQRgHnD6CH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQRgHnD6CH .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQRgHnD6CH .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQRgHnD6CH .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQRgHnD6CH .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQRgHnD6CH .mbr-section-btn {
    width: auto;
  }
  .cid-tQRgHnD6CH .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-tQz6HiIzB0 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/r.jpg");
}
.cid-tQz6HiIzB0 .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQz6HiIzB0 input,
.cid-tQz6HiIzB0 textarea {
  border-radius: 0;
}
.cid-tQz6HiIzB0 input:hover,
.cid-tQz6HiIzB0 textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQz6HiIzB0 textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQz6HiIzB0 .col-auto {
    margin: auto;
  }
}
.cid-tQz6HiIzB0 .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQz6HiIzB0 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQz6HiIzB0 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQz6HiIzB0 .btn {
  padding: 1rem 3rem;
}
.cid-tQz6HiIzB0 .mbr-section-text {
  color: #ffffff;
}
.cid-tQz6HiIzB0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQz6HlaZML {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tQzfxyTDLT .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-tQzfxyTDLT .nav-item:focus,
.cid-tQzfxyTDLT .nav-link:focus {
  outline: none;
}
.cid-tQzfxyTDLT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQzfxyTDLT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQzfxyTDLT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQzfxyTDLT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQzfxyTDLT .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-tQzfxyTDLT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQzfxyTDLT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQzfxyTDLT .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQzfxyTDLT .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQzfxyTDLT .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQzfxyTDLT .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQzfxyTDLT .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQzfxyTDLT .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQzfxyTDLT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQzfxyTDLT .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQzfxyTDLT .navbar.collapsed .navbar-collapse.show,
.cid-tQzfxyTDLT .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQzfxyTDLT .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQzfxyTDLT .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQzfxyTDLT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQzfxyTDLT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQzfxyTDLT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQzfxyTDLT .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-tQzfxyTDLT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQzfxyTDLT .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQzfxyTDLT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQzfxyTDLT .navbar.collapsed .right-menu,
.cid-tQzfxyTDLT .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQzfxyTDLT .navbar .navbar-collapse.show,
  .cid-tQzfxyTDLT .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQzfxyTDLT .navbar .navbar-collapse.show .brand-container,
  .cid-tQzfxyTDLT .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQzfxyTDLT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQzfxyTDLT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQzfxyTDLT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQzfxyTDLT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQzfxyTDLT .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-tQzfxyTDLT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQzfxyTDLT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQzfxyTDLT .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQzfxyTDLT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQzfxyTDLT .navbar .right-menu,
  .cid-tQzfxyTDLT .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQzfxyTDLT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQzfxyTDLT .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQzfxyTDLT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQzfxyTDLT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQzfxyTDLT .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQzfxyTDLT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQzfxyTDLT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQzfxyTDLT .dropdown-item.active,
.cid-tQzfxyTDLT .dropdown-item:active {
  background-color: transparent;
}
.cid-tQzfxyTDLT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQzfxyTDLT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQzfxyTDLT .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQzfxyTDLT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQzfxyTDLT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQzfxyTDLT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQzfxyTDLT ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQzfxyTDLT ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQzfxyTDLT .navbar-buttons {
  margin-left: auto;
}
.cid-tQzfxyTDLT button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQzfxyTDLT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQzfxyTDLT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQzfxyTDLT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQzfxyTDLT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQzfxyTDLT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQzfxyTDLT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQzfxyTDLT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQzfxyTDLT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQzfxyTDLT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQzfxyTDLT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQzfxyTDLT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQzfxyTDLT .right-menu,
.cid-tQzfxyTDLT .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQzfxyTDLT .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQzfxyTDLT .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQzfxyTDLT .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQzfxyTDLT .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQzfxyTDLT .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQzfxyTDLT .card-wrapper {
  z-index: 3;
}
.cid-tQzfxyTDLT .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQzfxyTDLT .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQzfxyTDLT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQzfxCnNpT {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/garden4.jpg");
}
.cid-tQzfxCnNpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfxCnNpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzfxCnNpT .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-tQzfxCnNpT .mbr-section-title {
  color: #FFFFFF;
}
.cid-tQzfxCnNpT .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQzfxCnNpT .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQzfxCnNpT .mbr-section-btn {
  margin-top: 28px;
}
.cid-tQzfxCnNpT iframe,
.cid-tQzfxCnNpT img,
.cid-tQzfxCnNpT video {
  width: 100%;
}
.cid-tQzfxCnNpT .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-tQzfxCnNpT .mbr-media span {
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.2s;
}
.cid-tQzfxCnNpT .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-tQzfxCnNpT .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tQzfxCnNpT .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-tQzfxCnNpT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tQzfxCnNpT .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tQzfxCnNpT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tQzfxCnNpT .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tQzfxCnNpT .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-tQzfxCnNpT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQzfxFpWtM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQzfxFpWtM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfxFpWtM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzfxFpWtM .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tQzfxFpWtM .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tQzfxFpWtM .container {
    padding: 0 20px;
  }
}
.cid-tQzfxFpWtM .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQzfxFpWtM .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tQzfxFpWtM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQzfxFpWtM .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tQzfxFpWtM .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQzfxFpWtM .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tQzfxFpWtM .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tQzfxFpWtM .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tQzfxFpWtM .image-wrapper img {
    height: 300px;
  }
}
.cid-tQzfxFpWtM .mbr-section-title {
  color: #c2b299;
}
.cid-tQzfxFpWtM .mbr-text {
  color: #000000;
}
.cid-tQzfxFpWtM .mbr-section-title,
.cid-tQzfxFpWtM .mbr-section-btn {
  color: #0b4714;
}
.cid-tQzfxJmqML {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
@media (min-width: 1400px) {
  .cid-tQzfxJmqML .container {
    max-width: 1162px;
  }
}
.cid-tQzfxJmqML .btn {
  padding: 24px 60px;
  color: #000000;
  border-radius: 60px;
}
.cid-tQzfxJmqML .btn:hover,
.cid-tQzfxJmqML .btn:focus {
  border-color: #ffff33 !important;
  background-color: #ffff33 !important;
}
@media (min-width: 768px) {
  .cid-tQzfxJmqML .mbr-section-head {
    display: flex;
    justify-content: space-between;
  }
}
.cid-tQzfxJmqML img,
.cid-tQzfxJmqML .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-tQzfxJmqML .item-img {
  height: 100%;
}
.cid-tQzfxJmqML .item-img img {
  height: 500px;
  object-fit: cover;
}
.cid-tQzfxJmqML .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-tQzfxJmqML .item-content {
  z-index: 3;
  min-width: 250px;
  text-align: center;
  top: 60%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tQzfxJmqML .mbr-text,
.cid-tQzfxJmqML .mbr-section-btn {
  color: #ffffff;
}
.cid-tQzfxJmqML .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tQzfxJmqML .item-wrapper:hover img {
  -webkit-filter: brightness(30%);
  filter: brightness(30%);
}
.cid-tQzfxJmqML .item:focus,
.cid-tQzfxJmqML span:focus {
  outline: none;
}
.cid-tQzfxJmqML .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tQzfxJmqML .Bg {
  padding: 0.5rem 1rem;
  background-color: #ffff33;
}
.cid-tQQUYlNafS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQQUYlNafS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQUYlNafS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQUYlNafS b,
.cid-tQQUYlNafS strong {
  font-weight: 900;
}
.cid-tQQUYlNafS .mbr-section-title {
  color: #0b4714;
}
.cid-tQQUYlNafS .mbr-section-subtitle {
  color: #17003b;
}
.cid-tQQSmGHgwF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background: #e6e6e6;
}
.cid-tQQSmGHgwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQSmGHgwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQSmGHgwF .container-fluid {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tQQSmGHgwF .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tQQSmGHgwF .container {
    padding: 0 26px;
  }
}
.cid-tQQSmGHgwF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 535px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .cid-tQQSmGHgwF .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tQQSmGHgwF .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tQQSmGHgwF .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tQQSmGHgwF .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tQQSmGHgwF .embla__button--next,
.cid-tQQSmGHgwF .embla__button--prev {
  display: flex;
}
.cid-tQQSmGHgwF .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQQSmGHgwF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tQQSmGHgwF .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-tQQSmGHgwF .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-tQQSmGHgwF .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-tQQSmGHgwF .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tQQSmGHgwF .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-tQQSmGHgwF .embla {
  position: relative;
  width: 100%;
}
.cid-tQQSmGHgwF .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tQQSmGHgwF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tQQSmGHgwF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tQQSmGHgwF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tQzfxRz2tj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0b4714;
}
.cid-tQzfxRz2tj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfxRz2tj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzfxRz2tj .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tQzfxRz2tj .container {
    max-width: 1400px;
  }
}
.cid-tQzfxRz2tj .card {
  margin: auto;
}
.cid-tQzfxRz2tj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tQzfxRz2tj .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzfxRz2tj .row {
  justify-content: center;
}
.cid-tQzfxRz2tj H3 {
  text-align: left;
  color: #ffffff;
}
.cid-tQzfxRz2tj .card-title,
.cid-tQzfxRz2tj .card-box {
  color: #ffffff;
}
.cid-tQRgNIqHI4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQRgNIqHI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQRgNIqHI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRgNIqHI4 .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQRgNIqHI4 .mbr-section-title {
  color: #181817;
}
.cid-tQRgNIqHI4 .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQRgNIqHI4 .card-row {
  align-items: stretch;
}
.cid-tQRgNIqHI4 .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQRgNIqHI4 .item {
    width: 20% !important;
  }
}
.cid-tQRgNIqHI4 .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQRgNIqHI4 .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQRgNIqHI4 .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQRgNIqHI4 .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQRgNIqHI4 .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQRgNIqHI4 .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQRgNIqHI4 .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQRgNIqHI4 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQRgNIqHI4 .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQRgNIqHI4 .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQRgNIqHI4 .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQRgNIqHI4 .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQRgNIqHI4 .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQRgNIqHI4 .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQRgNIqHI4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQRgNIqHI4 .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQRgNIqHI4 .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQRgNIqHI4 .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQRgNIqHI4 .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQRgNIqHI4 .mbr-section-btn {
    width: auto;
  }
  .cid-tQRgNIqHI4 .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-tQzfy3x5Tk {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/r.jpg");
}
.cid-tQzfy3x5Tk .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQzfy3x5Tk input,
.cid-tQzfy3x5Tk textarea {
  border-radius: 0;
}
.cid-tQzfy3x5Tk input:hover,
.cid-tQzfy3x5Tk textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQzfy3x5Tk textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQzfy3x5Tk .col-auto {
    margin: auto;
  }
}
.cid-tQzfy3x5Tk .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQzfy3x5Tk .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQzfy3x5Tk .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQzfy3x5Tk .btn {
  padding: 1rem 3rem;
}
.cid-tQzfy3x5Tk .mbr-section-text {
  color: #ffffff;
}
.cid-tQzfy3x5Tk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQzfy68nFs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tQzfEmJBIS .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-tQzfEmJBIS .nav-item:focus,
.cid-tQzfEmJBIS .nav-link:focus {
  outline: none;
}
.cid-tQzfEmJBIS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQzfEmJBIS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQzfEmJBIS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQzfEmJBIS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQzfEmJBIS .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-tQzfEmJBIS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQzfEmJBIS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQzfEmJBIS .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQzfEmJBIS .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQzfEmJBIS .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQzfEmJBIS .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQzfEmJBIS .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQzfEmJBIS .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQzfEmJBIS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQzfEmJBIS .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQzfEmJBIS .navbar.collapsed .navbar-collapse.show,
.cid-tQzfEmJBIS .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQzfEmJBIS .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQzfEmJBIS .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQzfEmJBIS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQzfEmJBIS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQzfEmJBIS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQzfEmJBIS .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-tQzfEmJBIS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQzfEmJBIS .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQzfEmJBIS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQzfEmJBIS .navbar.collapsed .right-menu,
.cid-tQzfEmJBIS .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQzfEmJBIS .navbar .navbar-collapse.show,
  .cid-tQzfEmJBIS .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQzfEmJBIS .navbar .navbar-collapse.show .brand-container,
  .cid-tQzfEmJBIS .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQzfEmJBIS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQzfEmJBIS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQzfEmJBIS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQzfEmJBIS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQzfEmJBIS .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-tQzfEmJBIS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQzfEmJBIS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQzfEmJBIS .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQzfEmJBIS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQzfEmJBIS .navbar .right-menu,
  .cid-tQzfEmJBIS .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQzfEmJBIS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQzfEmJBIS .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQzfEmJBIS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQzfEmJBIS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQzfEmJBIS .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQzfEmJBIS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQzfEmJBIS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQzfEmJBIS .dropdown-item.active,
.cid-tQzfEmJBIS .dropdown-item:active {
  background-color: transparent;
}
.cid-tQzfEmJBIS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQzfEmJBIS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQzfEmJBIS .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQzfEmJBIS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQzfEmJBIS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQzfEmJBIS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQzfEmJBIS ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQzfEmJBIS ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQzfEmJBIS .navbar-buttons {
  margin-left: auto;
}
.cid-tQzfEmJBIS button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQzfEmJBIS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQzfEmJBIS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQzfEmJBIS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQzfEmJBIS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQzfEmJBIS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQzfEmJBIS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQzfEmJBIS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQzfEmJBIS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQzfEmJBIS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQzfEmJBIS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQzfEmJBIS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQzfEmJBIS .right-menu,
.cid-tQzfEmJBIS .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQzfEmJBIS .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQzfEmJBIS .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQzfEmJBIS .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQzfEmJBIS .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQzfEmJBIS .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQzfEmJBIS .card-wrapper {
  z-index: 3;
}
.cid-tQzfEmJBIS .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQzfEmJBIS .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQzfEmJBIS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQzfEuxyyS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/clot2.jpg");
}
.cid-tQzfEuxyyS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfEuxyyS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzfEuxyyS .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-tQzfEuxyyS .mbr-section-title {
  color: #FFFFFF;
}
.cid-tQzfEuxyyS .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQzfEuxyyS .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQzfEuxyyS .mbr-section-btn {
  margin-top: 28px;
}
.cid-tQzfEuxyyS iframe,
.cid-tQzfEuxyyS img,
.cid-tQzfEuxyyS video {
  width: 100%;
}
.cid-tQzfEuxyyS .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-tQzfEuxyyS .mbr-media span {
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.2s;
}
.cid-tQzfEuxyyS .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-tQzfEuxyyS .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tQzfEuxyyS .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-tQzfEuxyyS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tQzfEuxyyS .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tQzfEuxyyS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tQzfEuxyyS .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tQzfEuxyyS .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-tQzfEuxyyS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQzfExrPid {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQzfExrPid .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfExrPid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzfExrPid .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tQzfExrPid .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tQzfExrPid .container {
    padding: 0 20px;
  }
}
.cid-tQzfExrPid .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQzfExrPid .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tQzfExrPid .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQzfExrPid .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tQzfExrPid .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQzfExrPid .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tQzfExrPid .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tQzfExrPid .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tQzfExrPid .image-wrapper img {
    height: 300px;
  }
}
.cid-tQzfExrPid .mbr-section-title {
  color: #c2b299;
}
.cid-tQzfExrPid .mbr-text {
  color: #000000;
}
.cid-tQzfExrPid .mbr-section-title,
.cid-tQzfExrPid .mbr-section-btn {
  color: #0b4714;
}
.cid-tQzfEDbLhk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0b4714;
}
.cid-tQzfEDbLhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfEDbLhk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzfEDbLhk .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tQzfEDbLhk .container {
    max-width: 1400px;
  }
}
.cid-tQzfEDbLhk .card {
  margin: auto;
}
.cid-tQzfEDbLhk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tQzfEDbLhk .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzfEDbLhk .row {
  justify-content: center;
}
.cid-tQzfEDbLhk H3 {
  text-align: left;
  color: #ffffff;
}
.cid-tQzfEDbLhk .card-title,
.cid-tQzfEDbLhk .card-box {
  color: #ffffff;
}
.cid-tQRgRSuPLR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQRgRSuPLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQRgRSuPLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRgRSuPLR .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQRgRSuPLR .mbr-section-title {
  color: #181817;
}
.cid-tQRgRSuPLR .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQRgRSuPLR .card-row {
  align-items: stretch;
}
.cid-tQRgRSuPLR .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQRgRSuPLR .item {
    width: 20% !important;
  }
}
.cid-tQRgRSuPLR .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQRgRSuPLR .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQRgRSuPLR .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQRgRSuPLR .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQRgRSuPLR .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQRgRSuPLR .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQRgRSuPLR .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQRgRSuPLR .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQRgRSuPLR .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQRgRSuPLR .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQRgRSuPLR .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQRgRSuPLR .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQRgRSuPLR .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQRgRSuPLR .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQRgRSuPLR .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQRgRSuPLR .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQRgRSuPLR .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQRgRSuPLR .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQRgRSuPLR .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQRgRSuPLR .mbr-section-btn {
    width: auto;
  }
  .cid-tQRgRSuPLR .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-tQzfEJ7dwZ {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/r.jpg");
}
.cid-tQzfEJ7dwZ .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQzfEJ7dwZ input,
.cid-tQzfEJ7dwZ textarea {
  border-radius: 0;
}
.cid-tQzfEJ7dwZ input:hover,
.cid-tQzfEJ7dwZ textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQzfEJ7dwZ textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQzfEJ7dwZ .col-auto {
    margin: auto;
  }
}
.cid-tQzfEJ7dwZ .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQzfEJ7dwZ .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQzfEJ7dwZ .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQzfEJ7dwZ .btn {
  padding: 1rem 3rem;
}
.cid-tQzfEJ7dwZ .mbr-section-text {
  color: #ffffff;
}
.cid-tQzfEJ7dwZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQzfELMi1o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tQzfSDM4qz .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-tQzfSDM4qz .nav-item:focus,
.cid-tQzfSDM4qz .nav-link:focus {
  outline: none;
}
.cid-tQzfSDM4qz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQzfSDM4qz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQzfSDM4qz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQzfSDM4qz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQzfSDM4qz .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-tQzfSDM4qz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQzfSDM4qz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQzfSDM4qz .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQzfSDM4qz .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQzfSDM4qz .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQzfSDM4qz .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQzfSDM4qz .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQzfSDM4qz .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQzfSDM4qz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQzfSDM4qz .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQzfSDM4qz .navbar.collapsed .navbar-collapse.show,
.cid-tQzfSDM4qz .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQzfSDM4qz .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQzfSDM4qz .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQzfSDM4qz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQzfSDM4qz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQzfSDM4qz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQzfSDM4qz .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-tQzfSDM4qz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQzfSDM4qz .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQzfSDM4qz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQzfSDM4qz .navbar.collapsed .right-menu,
.cid-tQzfSDM4qz .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQzfSDM4qz .navbar .navbar-collapse.show,
  .cid-tQzfSDM4qz .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQzfSDM4qz .navbar .navbar-collapse.show .brand-container,
  .cid-tQzfSDM4qz .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQzfSDM4qz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQzfSDM4qz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQzfSDM4qz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQzfSDM4qz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQzfSDM4qz .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-tQzfSDM4qz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQzfSDM4qz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQzfSDM4qz .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQzfSDM4qz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQzfSDM4qz .navbar .right-menu,
  .cid-tQzfSDM4qz .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQzfSDM4qz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQzfSDM4qz .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQzfSDM4qz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQzfSDM4qz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQzfSDM4qz .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQzfSDM4qz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQzfSDM4qz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQzfSDM4qz .dropdown-item.active,
.cid-tQzfSDM4qz .dropdown-item:active {
  background-color: transparent;
}
.cid-tQzfSDM4qz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQzfSDM4qz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQzfSDM4qz .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQzfSDM4qz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQzfSDM4qz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQzfSDM4qz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQzfSDM4qz ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQzfSDM4qz ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQzfSDM4qz .navbar-buttons {
  margin-left: auto;
}
.cid-tQzfSDM4qz button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQzfSDM4qz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQzfSDM4qz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQzfSDM4qz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQzfSDM4qz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQzfSDM4qz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQzfSDM4qz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQzfSDM4qz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQzfSDM4qz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQzfSDM4qz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQzfSDM4qz a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQzfSDM4qz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQzfSDM4qz .right-menu,
.cid-tQzfSDM4qz .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQzfSDM4qz .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQzfSDM4qz .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQzfSDM4qz .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQzfSDM4qz .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQzfSDM4qz .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQzfSDM4qz .card-wrapper {
  z-index: 3;
}
.cid-tQzfSDM4qz .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQzfSDM4qz .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQzfSDM4qz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQzfSGCm9U {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/tronc2.jpg");
}
.cid-tQzfSGCm9U .text {
  display: flex;
  align-items: center;
}
.cid-tQzfSGCm9U .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #ffffff;
}
.cid-tQzfSGCm9U .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-tQzfSGCm9U .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-tQzfSGCm9U .btn:hover {
  box-shadow: none;
}
.cid-tQzfSGCm9U .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tQzfSGCm9U .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tQzfSGCm9U .image-wrapper img {
  width: 372px;
  margin-top: 4rem;
  margin-LEFT: 20rem;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tQzfSGCm9U .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tQzfSGCm9U .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-tQzfSGCm9U .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tQzfSGCm9U .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tQzfSGCm9U .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-tQzfSGCm9U .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-tQzfSGCm9U .row:hover img {
  transform: rotate(0deg);
}
.cid-tQzfSGCm9U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQzfSGCm9U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRhwA7LBT {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #e6e6e6;
}
.cid-tQRhwA7LBT .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQRhwA7LBT input,
.cid-tQRhwA7LBT textarea {
  border-radius: 0;
}
.cid-tQRhwA7LBT input:hover,
.cid-tQRhwA7LBT textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQRhwA7LBT textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQRhwA7LBT .col-auto {
    margin: auto;
  }
}
.cid-tQRhwA7LBT .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQRhwA7LBT .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQRhwA7LBT .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQRhwA7LBT .btn {
  padding: 1rem 3rem;
}
.cid-tQRhwA7LBT .mbr-section-text {
  color: #0b4714;
}
.cid-tQRhwA7LBT .mbr-section-title {
  color: #0b4714;
  text-align: center;
}
.cid-tQRhU6aNUa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQRhU6aNUa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQRhU6aNUa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQRhU6aNUa .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQRhU6aNUa .mbr-section-title {
  color: #181817;
}
.cid-tQRhU6aNUa .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQRhU6aNUa .card-row {
  align-items: stretch;
}
.cid-tQRhU6aNUa .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQRhU6aNUa .item {
    width: 20% !important;
  }
}
.cid-tQRhU6aNUa .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQRhU6aNUa .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQRhU6aNUa .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQRhU6aNUa .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQRhU6aNUa .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQRhU6aNUa .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQRhU6aNUa .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQRhU6aNUa .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQRhU6aNUa .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQRhU6aNUa .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQRhU6aNUa .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQRhU6aNUa .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQRhU6aNUa .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQRhU6aNUa .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQRhU6aNUa .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQRhU6aNUa .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQRhU6aNUa .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQRhU6aNUa .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQRhU6aNUa .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQRhU6aNUa .mbr-section-btn {
    width: auto;
  }
  .cid-tQRhU6aNUa .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-tQzfSTSZQm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tQR4J3WflO .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-tQR4J3WflO .nav-item:focus,
.cid-tQR4J3WflO .nav-link:focus {
  outline: none;
}
.cid-tQR4J3WflO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQR4J3WflO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQR4J3WflO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQR4J3WflO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQR4J3WflO .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-tQR4J3WflO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQR4J3WflO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQR4J3WflO .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQR4J3WflO .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
  background: linear-gradient(#bbbbbb, #ffffff);
}
.cid-tQR4J3WflO .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQR4J3WflO .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQR4J3WflO .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQR4J3WflO .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQR4J3WflO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQR4J3WflO .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQR4J3WflO .navbar.collapsed .navbar-collapse.show,
.cid-tQR4J3WflO .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQR4J3WflO .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQR4J3WflO .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQR4J3WflO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQR4J3WflO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQR4J3WflO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQR4J3WflO .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-tQR4J3WflO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQR4J3WflO .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQR4J3WflO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQR4J3WflO .navbar.collapsed .right-menu,
.cid-tQR4J3WflO .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQR4J3WflO .navbar .navbar-collapse.show,
  .cid-tQR4J3WflO .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQR4J3WflO .navbar .navbar-collapse.show .brand-container,
  .cid-tQR4J3WflO .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQR4J3WflO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQR4J3WflO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQR4J3WflO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQR4J3WflO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQR4J3WflO .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-tQR4J3WflO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQR4J3WflO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQR4J3WflO .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQR4J3WflO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQR4J3WflO .navbar .right-menu,
  .cid-tQR4J3WflO .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQR4J3WflO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQR4J3WflO .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#bbbbbb, #ffffff) !important;
}
.cid-tQR4J3WflO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQR4J3WflO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQR4J3WflO .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQR4J3WflO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQR4J3WflO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQR4J3WflO .dropdown-item.active,
.cid-tQR4J3WflO .dropdown-item:active {
  background-color: transparent;
}
.cid-tQR4J3WflO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQR4J3WflO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQR4J3WflO .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQR4J3WflO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQR4J3WflO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQR4J3WflO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQR4J3WflO ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQR4J3WflO ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQR4J3WflO .navbar-buttons {
  margin-left: auto;
}
.cid-tQR4J3WflO button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQR4J3WflO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQR4J3WflO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQR4J3WflO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQR4J3WflO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQR4J3WflO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQR4J3WflO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQR4J3WflO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQR4J3WflO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQR4J3WflO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQR4J3WflO a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQR4J3WflO .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQR4J3WflO .right-menu,
.cid-tQR4J3WflO .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQR4J3WflO .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQR4J3WflO .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQR4J3WflO .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQR4J3WflO .menu-top {
  text-align: center;
  width: 100%;
  background-color: #0b4714;
  padding: 0.5rem 0;
}
.cid-tQR4J3WflO .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQR4J3WflO .card-wrapper {
  z-index: 3;
}
.cid-tQR4J3WflO .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQR4J3WflO .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQR4J3WflO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQR4J6nvJs {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/taillehaie.jpg");
}
.cid-tQR4J6nvJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQR4J6nvJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQR4J6nvJs .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-tQR4J6nvJs .mbr-section-title {
  color: #FFFFFF;
}
.cid-tQR4J6nvJs .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQR4J6nvJs .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tQR4J6nvJs .mbr-section-btn {
  margin-top: 28px;
}
.cid-tQR4J6nvJs iframe,
.cid-tQR4J6nvJs img,
.cid-tQR4J6nvJs video {
  width: 100%;
}
.cid-tQR4J6nvJs .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-tQR4J6nvJs .mbr-media span {
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.2s;
}
.cid-tQR4J6nvJs .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-tQR4J6nvJs .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tQR4J6nvJs .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-tQR4J6nvJs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tQR4J6nvJs .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tQR4J6nvJs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tQR4J6nvJs .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tQR4J6nvJs .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-tQR4J6nvJs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQR4J8qDwI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQR4J8qDwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQR4J8qDwI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQR4J8qDwI .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tQR4J8qDwI .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tQR4J8qDwI .container {
    padding: 0 20px;
  }
}
.cid-tQR4J8qDwI .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQR4J8qDwI .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tQR4J8qDwI .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQR4J8qDwI .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tQR4J8qDwI .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQR4J8qDwI .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tQR4J8qDwI .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tQR4J8qDwI .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tQR4J8qDwI .image-wrapper img {
    height: 300px;
  }
}
.cid-tQR4J8qDwI .mbr-section-title {
  color: #c2b299;
}
.cid-tQR4J8qDwI .mbr-text {
  color: #000000;
}
.cid-tQR4J8qDwI .mbr-section-title,
.cid-tQR4J8qDwI .mbr-section-btn {
  color: #0b4714;
}
.cid-tQR4J9VZk5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
@media (min-width: 1400px) {
  .cid-tQR4J9VZk5 .container {
    max-width: 1162px;
  }
}
.cid-tQR4J9VZk5 .btn {
  padding: 24px 60px;
  color: #000000;
  border-radius: 60px;
}
.cid-tQR4J9VZk5 .btn:hover,
.cid-tQR4J9VZk5 .btn:focus {
  border-color: #ffff33 !important;
  background-color: #ffff33 !important;
}
@media (min-width: 768px) {
  .cid-tQR4J9VZk5 .mbr-section-head {
    display: flex;
    justify-content: space-between;
  }
}
.cid-tQR4J9VZk5 img,
.cid-tQR4J9VZk5 .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-tQR4J9VZk5 .item-img {
  height: 100%;
}
.cid-tQR4J9VZk5 .item-img img {
  height: 500px;
  object-fit: cover;
}
.cid-tQR4J9VZk5 .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-tQR4J9VZk5 .item-content {
  z-index: 3;
  min-width: 250px;
  text-align: center;
  top: 60%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tQR4J9VZk5 .mbr-text,
.cid-tQR4J9VZk5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tQR4J9VZk5 .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tQR4J9VZk5 .item-wrapper:hover img {
  -webkit-filter: brightness(30%);
  filter: brightness(30%);
}
.cid-tQR4J9VZk5 .item:focus,
.cid-tQR4J9VZk5 span:focus {
  outline: none;
}
.cid-tQR4J9VZk5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tQR4J9VZk5 .Bg {
  padding: 0.5rem 1rem;
  background-color: #ffff33;
}
.cid-tQR4Jc6WRa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0b4714;
}
.cid-tQR4Jc6WRa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQR4Jc6WRa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQR4Jc6WRa .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tQR4Jc6WRa .container {
    max-width: 1400px;
  }
}
.cid-tQR4Jc6WRa .card {
  margin: auto;
}
.cid-tQR4Jc6WRa .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tQR4Jc6WRa .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQR4Jc6WRa .row {
  justify-content: center;
}
.cid-tQR4Jc6WRa H3 {
  text-align: left;
  color: #ffffff;
}
.cid-tQR4Jc6WRa .card-title,
.cid-tQR4Jc6WRa .card-box {
  color: #ffffff;
}
.cid-tQR4JdTo6g {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e6e6e6;
}
.cid-tQR4JdTo6g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQR4JdTo6g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQR4JdTo6g .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-tQR4JdTo6g .mbr-section-title {
  color: #181817;
}
.cid-tQR4JdTo6g .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-tQR4JdTo6g .card-row {
  align-items: stretch;
}
.cid-tQR4JdTo6g .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tQR4JdTo6g .item {
    width: 20% !important;
  }
}
.cid-tQR4JdTo6g .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-tQR4JdTo6g .item-wrapper {
    min-height: 360px;
  }
}
.cid-tQR4JdTo6g .item-wrapper:hover .card-box {
  opacity: 0;
}
.cid-tQR4JdTo6g .item-wrapper:hover .bg-overlay {
  display: flex;
}
.cid-tQR4JdTo6g .item-wrapper:hover .bg-overlay:hover .mbr-section-btn {
  transform: translateY(0);
  opacity: 1;
}
.cid-tQR4JdTo6g .item-wrapper:hover .bg-overlay-color {
  opacity: 0.8;
}
.cid-tQR4JdTo6g .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-tQR4JdTo6g .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQR4JdTo6g .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-tQR4JdTo6g .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-tQR4JdTo6g .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-tQR4JdTo6g .card-text {
  color: #f6f6ef;
  margin-bottom: 0;
}
.cid-tQR4JdTo6g .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-tQR4JdTo6g .iconfont-wrapper {
  margin-right: 18px;
}
.cid-tQR4JdTo6g .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-tQR4JdTo6g .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-tQR4JdTo6g .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-tQR4JdTo6g .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-tQR4JdTo6g .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-tQR4JdTo6g .mbr-section-btn {
    width: auto;
  }
  .cid-tQR4JdTo6g .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-tQR4Jg8fh3 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/r.jpg");
}
.cid-tQR4Jg8fh3 .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-tQR4Jg8fh3 input,
.cid-tQR4Jg8fh3 textarea {
  border-radius: 0;
}
.cid-tQR4Jg8fh3 input:hover,
.cid-tQR4Jg8fh3 textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tQR4Jg8fh3 textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tQR4Jg8fh3 .col-auto {
    margin: auto;
  }
}
.cid-tQR4Jg8fh3 .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tQR4Jg8fh3 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tQR4Jg8fh3 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tQR4Jg8fh3 .btn {
  padding: 1rem 3rem;
}
.cid-tQR4Jg8fh3 .mbr-section-text {
  color: #ffffff;
}
.cid-tQR4Jg8fh3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tQR4JhOa29 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
}
