body {
  font-family: Jost;
}
.display-1 {
  font-family: 'ariblk';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'ariblk';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'ariblk';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'ariblk';
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #3c8324 !important;
}
.bg-success {
  background-color: #40b0bf !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: #3c8324 !important;
  border-color: #3c8324 !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: #1d3f11 !important;
  border-color: #1d3f11 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1d3f11 !important;
  border-color: #1d3f11 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #3c8324;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1d3f11 !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: #3c8324 !important;
  border-color: #3c8324 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #3c8324 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !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: #17330e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #3c8324;
}
.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: #3c8324;
  border-color: #3c8324;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3c8324;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #75d156;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: 'ariblk';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #3c8324 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'ariblk';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #3c8324;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3c8324;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3c8324;
}
.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: #3c8324;
  border-bottom-color: #3c8324;
}
.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: #3c8324 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%233c8324' %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-sWRYjIIvVk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sWRYjIIvVk nav.navbar {
  position: fixed;
}
.cid-sWRYjIIvVk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWRYjIIvVk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sWRYjIIvVk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sWRYjIIvVk .dropdown-item:hover,
.cid-sWRYjIIvVk .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-sWRYjIIvVk .dropdown-item:hover span {
  color: white;
}
.cid-sWRYjIIvVk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sWRYjIIvVk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sWRYjIIvVk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sWRYjIIvVk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sWRYjIIvVk .nav-link {
  position: relative;
}
.cid-sWRYjIIvVk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sWRYjIIvVk .container {
    flex-wrap: nowrap;
  }
}
.cid-sWRYjIIvVk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sWRYjIIvVk .dropdown-menu,
.cid-sWRYjIIvVk .navbar.opened {
  background: #ffffff !important;
}
.cid-sWRYjIIvVk .nav-item:focus,
.cid-sWRYjIIvVk .nav-link:focus {
  outline: none;
}
.cid-sWRYjIIvVk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sWRYjIIvVk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sWRYjIIvVk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sWRYjIIvVk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWRYjIIvVk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sWRYjIIvVk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sWRYjIIvVk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sWRYjIIvVk .navbar.opened {
  transition: all 0.3s;
}
.cid-sWRYjIIvVk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sWRYjIIvVk .navbar .navbar-logo img {
  width: auto;
}
.cid-sWRYjIIvVk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sWRYjIIvVk .navbar.collapsed {
  justify-content: center;
}
.cid-sWRYjIIvVk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sWRYjIIvVk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sWRYjIIvVk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-sWRYjIIvVk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sWRYjIIvVk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sWRYjIIvVk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sWRYjIIvVk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sWRYjIIvVk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sWRYjIIvVk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sWRYjIIvVk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sWRYjIIvVk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sWRYjIIvVk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sWRYjIIvVk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sWRYjIIvVk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sWRYjIIvVk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sWRYjIIvVk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sWRYjIIvVk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sWRYjIIvVk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sWRYjIIvVk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sWRYjIIvVk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sWRYjIIvVk .navbar.navbar-short {
  min-height: 60px;
}
.cid-sWRYjIIvVk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sWRYjIIvVk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sWRYjIIvVk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sWRYjIIvVk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sWRYjIIvVk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sWRYjIIvVk .dropdown-item.active,
.cid-sWRYjIIvVk .dropdown-item:active {
  background-color: transparent;
}
.cid-sWRYjIIvVk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sWRYjIIvVk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sWRYjIIvVk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sWRYjIIvVk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sWRYjIIvVk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sWRYjIIvVk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sWRYjIIvVk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sWRYjIIvVk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sWRYjIIvVk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sWRYjIIvVk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sWRYjIIvVk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sWRYjIIvVk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWRYjIIvVk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWRYjIIvVk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sWRYjIIvVk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWRYjIIvVk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sWRYjIIvVk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sWRYjIIvVk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWRYjIIvVk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sWRYjIIvVk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sWRYjIIvVk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sWRYjIIvVk .navbar {
    height: 70px;
  }
  .cid-sWRYjIIvVk .navbar.opened {
    height: auto;
  }
  .cid-sWRYjIIvVk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9g0pX55WH .modal-body .close {
  background: #1b1b1b;
}
.cid-u9g0pX55WH .modal-body .close span {
  font-style: normal;
}
.cid-u9g0pX55WH .carousel-inner > .active,
.cid-u9g0pX55WH .carousel-inner > .next,
.cid-u9g0pX55WH .carousel-inner > .prev {
  display: flex;
}
.cid-u9g0pX55WH .carousel-control .icon-next,
.cid-u9g0pX55WH .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-u9g0pX55WH .carousel-control:hover {
  background: #3c8324;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u9g0pX55WH .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u9g0pX55WH .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-u9g0pX55WH .boxed-slider > div {
  position: relative;
}
.cid-u9g0pX55WH .container img {
  width: 100%;
}
.cid-u9g0pX55WH .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-u9g0pX55WH .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u9g0pX55WH .mbr-table-cell {
  padding: 0;
}
.cid-u9g0pX55WH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u9g0pX55WH .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-u9g0pX55WH .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u9g0pX55WH .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-u9g0pX55WH .carousel-item.active.right,
.cid-u9g0pX55WH .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u9g0pX55WH .carousel-item.active.left,
.cid-u9g0pX55WH .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u9g0pX55WH .carousel-item.active,
.cid-u9g0pX55WH .carousel-item.next.left,
.cid-u9g0pX55WH .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-u9g0pX55WH .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-u9g0pX55WH .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-u9g0pX55WH .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-u9g0pX55WH .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u9g0pX55WH .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u9g0pX55WH .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #3c8324;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u9g0pX55WH .mbr-slider .carousel-indicators li.active,
.cid-u9g0pX55WH .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u9g0pX55WH .mbr-slider .carousel-indicators li::after,
.cid-u9g0pX55WH .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-u9g0pX55WH .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-u9g0pX55WH .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-u9g0pX55WH .mbr-slider > .container img {
  width: 100%;
}
.cid-u9g0pX55WH .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-u9g0pX55WH .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-u9g0pX55WH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u9g0pX55WH .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u9g0pX55WH .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-u9g0pX55WH .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-u9g0pX55WH .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-u9g0pX55WH .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-u9g0pX55WH .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-u9g0pX55WH .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u9g0pX55WH .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-u9g0pX55WH .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-u9g0pX55WH .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-u9g0pX55WH H2 {
  text-align: center;
}
.cid-tBjfgWJSOm {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-tBjfgWJSOm .item-subtitle a {
  color: #bbbbbb;
  font-weight: 600;
}
.cid-tBjfgWJSOm .item-title,
.cid-tBjfgWJSOm .item-subtitle {
  transition: all 0.3s;
}
.cid-tBjfgWJSOm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tBjfgWJSOm .item:hover img {
  transform: scale(1.05);
}
.cid-tBjfgWJSOm .item-img {
  overflow: hidden;
}
.cid-tBjfgWJSOm img,
.cid-tBjfgWJSOm .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tBjfgWJSOm h5 {
  margin: 0;
}
.cid-tBjfgWJSOm .item:focus,
.cid-tBjfgWJSOm span:focus {
  outline: none;
}
.cid-tBjfgWJSOm .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tBjfgWJSOm .item-content {
  padding-top: 2rem;
}
.cid-tBjfgWJSOm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tBjfgWJSOm .item-title {
  color: #bbbbbb;
}
.cid-tBjfgWJSOm .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tBjfgWJSOm .mbr-text,
.cid-tBjfgWJSOm .mbr-section-btn {
  color: #ffffff;
}
.cid-tBjfgWJSOm .item-subtitle {
  color: #ffffff;
}
.cid-tC9ONBaztt {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cover-crop-june-23rd.jpg");
}
.cid-tC9ONBaztt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC9ONBaztt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC9ONBaztt .mbr-text,
.cid-tC9ONBaztt .mbr-section-btn {
  color: #232323;
}
.cid-tC9ONBaztt .card-title,
.cid-tC9ONBaztt .card-box {
  color: #ffffff;
}
.cid-tC9ONBaztt .mbr-text,
.cid-tC9ONBaztt .link-wrap {
  color: #ffffff;
}
.cid-tC9QVYPbQZ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tC9QVYPbQZ .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-tC9QVYPbQZ .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-tC9QVYPbQZ .mbr-section-title {
  color: #ffffff;
}
.cid-tC9QVYPbQZ .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tC9QVYPbQZ .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-tC9QVYPbQZ .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tC9QVYPbQZ form {
  width: 100%;
}
.cid-tC9QVYPbQZ form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tC9QVYPbQZ form p {
  color: #f6f6ef;
}
.cid-tC9QVYPbQZ form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-tC9QVYPbQZ form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-tC9QVYPbQZ form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-tC9QVYPbQZ form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-tC9QVYPbQZ form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form select {
  color: #bbbbbb !important;
}
.cid-tC9QVYPbQZ form textarea {
  height: 200px !important;
  resize: none;
}
.cid-tC9QVYPbQZ form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tC9QVYPbQZ form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tC9QVYPbQZ form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tC9QVYPbQZ form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tC9QVYPbQZ form input,
.cid-tC9QVYPbQZ form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-tC9QVYPbQZ form input:active,
.cid-tC9QVYPbQZ form textarea:active,
.cid-tC9QVYPbQZ form input:focus,
.cid-tC9QVYPbQZ form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-tC9QVYPbQZ form input:active::-webkit-input-placeholder,
.cid-tC9QVYPbQZ form textarea:active::-webkit-input-placeholder,
.cid-tC9QVYPbQZ form input:focus::-webkit-input-placeholder,
.cid-tC9QVYPbQZ form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form input:active::-moz-placeholder,
.cid-tC9QVYPbQZ form textarea:active::-moz-placeholder,
.cid-tC9QVYPbQZ form input:focus::-moz-placeholder,
.cid-tC9QVYPbQZ form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form input:active:-moz-placeholder,
.cid-tC9QVYPbQZ form textarea:active:-moz-placeholder,
.cid-tC9QVYPbQZ form input:focus:-moz-placeholder,
.cid-tC9QVYPbQZ form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form input:active:-ms-input-placeholder,
.cid-tC9QVYPbQZ form textarea:active:-ms-input-placeholder,
.cid-tC9QVYPbQZ form input:focus:-ms-input-placeholder,
.cid-tC9QVYPbQZ form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tC9QVYPbQZ form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tC9QVYPbQZ form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tC9QVYPbQZ form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-tC9QVYPbQZ form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tC9QVYPbQZ form .form-check-input:focus,
.cid-tC9QVYPbQZ form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-tC9QVYPbQZ form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-tBvITLzf29 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tBvITLzf29 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBvITLzf29 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBvITLzf29 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBvITLzf29 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBvITLzf29 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBvITLzf29 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBvITLzf29 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBvITLzf29 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBvITLzf29 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBvITLzf29 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBvITLzf29 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBvITLzf29 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBvITLzf29 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBvITLzf29 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u5vc9gWBmD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5vc9gWBmD nav.navbar {
  position: fixed;
}
.cid-u5vc9gWBmD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5vc9gWBmD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5vc9gWBmD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5vc9gWBmD .dropdown-item:hover,
.cid-u5vc9gWBmD .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u5vc9gWBmD .dropdown-item:hover span {
  color: white;
}
.cid-u5vc9gWBmD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5vc9gWBmD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5vc9gWBmD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5vc9gWBmD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5vc9gWBmD .nav-link {
  position: relative;
}
.cid-u5vc9gWBmD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5vc9gWBmD .container {
    flex-wrap: nowrap;
  }
}
.cid-u5vc9gWBmD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5vc9gWBmD .dropdown-menu,
.cid-u5vc9gWBmD .navbar.opened {
  background: #ffffff !important;
}
.cid-u5vc9gWBmD .nav-item:focus,
.cid-u5vc9gWBmD .nav-link:focus {
  outline: none;
}
.cid-u5vc9gWBmD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5vc9gWBmD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5vc9gWBmD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5vc9gWBmD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5vc9gWBmD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5vc9gWBmD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5vc9gWBmD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u5vc9gWBmD .navbar.opened {
  transition: all 0.3s;
}
.cid-u5vc9gWBmD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5vc9gWBmD .navbar .navbar-logo img {
  width: auto;
}
.cid-u5vc9gWBmD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5vc9gWBmD .navbar.collapsed {
  justify-content: center;
}
.cid-u5vc9gWBmD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5vc9gWBmD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5vc9gWBmD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u5vc9gWBmD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5vc9gWBmD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5vc9gWBmD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5vc9gWBmD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5vc9gWBmD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5vc9gWBmD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5vc9gWBmD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5vc9gWBmD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5vc9gWBmD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5vc9gWBmD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5vc9gWBmD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5vc9gWBmD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5vc9gWBmD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5vc9gWBmD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5vc9gWBmD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5vc9gWBmD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5vc9gWBmD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5vc9gWBmD .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5vc9gWBmD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5vc9gWBmD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5vc9gWBmD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5vc9gWBmD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5vc9gWBmD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5vc9gWBmD .dropdown-item.active,
.cid-u5vc9gWBmD .dropdown-item:active {
  background-color: transparent;
}
.cid-u5vc9gWBmD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5vc9gWBmD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5vc9gWBmD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5vc9gWBmD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5vc9gWBmD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5vc9gWBmD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5vc9gWBmD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5vc9gWBmD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5vc9gWBmD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5vc9gWBmD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5vc9gWBmD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5vc9gWBmD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5vc9gWBmD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5vc9gWBmD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5vc9gWBmD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5vc9gWBmD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5vc9gWBmD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5vc9gWBmD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5vc9gWBmD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5vc9gWBmD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5vc9gWBmD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5vc9gWBmD .navbar {
    height: 70px;
  }
  .cid-u5vc9gWBmD .navbar.opened {
    height: auto;
  }
  .cid-u5vc9gWBmD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5vcv16iYD {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-u5vcv16iYD img,
.cid-u5vcv16iYD .item-img {
  width: 100%;
}
.cid-u5vcv16iYD .item:focus,
.cid-u5vcv16iYD span:focus {
  outline: none;
}
.cid-u5vcv16iYD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u5vcv16iYD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u5vcv16iYD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u5vcv16iYD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u5vcv16iYD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u5vcv16iYD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u5vcv16iYD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u5vcv16iYD .mbr-section-title {
  color: #ffffff;
}
.cid-u5vcv16iYD .mbr-text,
.cid-u5vcv16iYD .mbr-section-btn {
  text-align: left;
}
.cid-u5vcv16iYD .item-title {
  text-align: left;
}
.cid-u5vcv16iYD .item-subtitle {
  text-align: left;
}
.cid-u5vcv16iYD .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u5vc9jhqbP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u5vc9jhqbP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u5vc9jhqbP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u5vc9jhqbP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u5vc9jhqbP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u5vc9jhqbP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u5vc9jhqbP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u5vc9jhqbP .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u5vc9jhqbP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u5vc9jhqbP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u5vc9jhqbP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u5vc9jhqbP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5vc9jhqbP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5vc9jhqbP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u5vc9jhqbP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u5vkIr9Cuh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5vkIr9Cuh nav.navbar {
  position: fixed;
}
.cid-u5vkIr9Cuh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5vkIr9Cuh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5vkIr9Cuh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5vkIr9Cuh .dropdown-item:hover,
.cid-u5vkIr9Cuh .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u5vkIr9Cuh .dropdown-item:hover span {
  color: white;
}
.cid-u5vkIr9Cuh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5vkIr9Cuh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5vkIr9Cuh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5vkIr9Cuh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5vkIr9Cuh .nav-link {
  position: relative;
}
.cid-u5vkIr9Cuh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5vkIr9Cuh .container {
    flex-wrap: nowrap;
  }
}
.cid-u5vkIr9Cuh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5vkIr9Cuh .dropdown-menu,
.cid-u5vkIr9Cuh .navbar.opened {
  background: #ffffff !important;
}
.cid-u5vkIr9Cuh .nav-item:focus,
.cid-u5vkIr9Cuh .nav-link:focus {
  outline: none;
}
.cid-u5vkIr9Cuh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5vkIr9Cuh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5vkIr9Cuh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5vkIr9Cuh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5vkIr9Cuh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5vkIr9Cuh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5vkIr9Cuh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u5vkIr9Cuh .navbar.opened {
  transition: all 0.3s;
}
.cid-u5vkIr9Cuh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5vkIr9Cuh .navbar .navbar-logo img {
  width: auto;
}
.cid-u5vkIr9Cuh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5vkIr9Cuh .navbar.collapsed {
  justify-content: center;
}
.cid-u5vkIr9Cuh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5vkIr9Cuh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5vkIr9Cuh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u5vkIr9Cuh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5vkIr9Cuh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5vkIr9Cuh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5vkIr9Cuh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5vkIr9Cuh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5vkIr9Cuh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5vkIr9Cuh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5vkIr9Cuh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5vkIr9Cuh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5vkIr9Cuh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5vkIr9Cuh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5vkIr9Cuh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5vkIr9Cuh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5vkIr9Cuh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5vkIr9Cuh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5vkIr9Cuh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5vkIr9Cuh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5vkIr9Cuh .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5vkIr9Cuh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5vkIr9Cuh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5vkIr9Cuh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5vkIr9Cuh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5vkIr9Cuh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5vkIr9Cuh .dropdown-item.active,
.cid-u5vkIr9Cuh .dropdown-item:active {
  background-color: transparent;
}
.cid-u5vkIr9Cuh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5vkIr9Cuh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5vkIr9Cuh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5vkIr9Cuh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5vkIr9Cuh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5vkIr9Cuh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5vkIr9Cuh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5vkIr9Cuh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5vkIr9Cuh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5vkIr9Cuh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5vkIr9Cuh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5vkIr9Cuh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5vkIr9Cuh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5vkIr9Cuh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5vkIr9Cuh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5vkIr9Cuh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5vkIr9Cuh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5vkIr9Cuh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5vkIr9Cuh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5vkIr9Cuh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5vkIr9Cuh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5vkIr9Cuh .navbar {
    height: 70px;
  }
  .cid-u5vkIr9Cuh .navbar.opened {
    height: auto;
  }
  .cid-u5vkIr9Cuh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5vmEPnVA9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/homepage-2000px-3.jpg");
}
.cid-u5vmEPnVA9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5vmEPnVA9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5vmEPnVA9 .container {
    padding: 0 22px;
  }
}
.cid-u5vmEPnVA9 .content-wrapper {
  padding-bottom: 60%;
}
.cid-u5vmEPnVA9 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u5vmEPnVA9 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u5vmEPnVA9 .mbr-section-title {
  color: #ffffff;
}
.cid-u5vmEPnVA9 .mbr-text {
  color: #ffffff;
}
.cid-u5zX7w2HpZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5zX7w2HpZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5zX7w2HpZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5zX7w2HpZ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u5zX7w2HpZ .container {
    padding: 0 12px;
  }
}
.cid-u5zX7w2HpZ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u5zX7w2HpZ .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u5zX7w2HpZ .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u5zX7w2HpZ .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u5zX7w2HpZ .mbr-section-title {
  color: #222222;
}
.cid-u5vpjJUuNw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5vpjJUuNw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5vpjJUuNw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5vpjJUuNw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u5vpjJUuNw .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u5vpjJUuNw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u5vpjJUuNw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u5vpjJUuNw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u5vpjJUuNw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u5vpjJUuNw .carousel-control,
.cid-u5vpjJUuNw .close {
  background: #1b1b1b;
}
.cid-u5vpjJUuNw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u5vpjJUuNw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u5vpjJUuNw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u5vpjJUuNw .carousel-control-next span {
  margin-left: 5px;
}
.cid-u5vpjJUuNw .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u5vpjJUuNw .close::before {
  content: '\e91a';
}
.cid-u5vpjJUuNw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u5vpjJUuNw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u5vpjJUuNw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5vpjJUuNw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u5vpjJUuNw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u5vpjJUuNw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u5vpjJUuNw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u5vpjJUuNw .carousel-indicators li.active,
.cid-u5vpjJUuNw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u5vpjJUuNw .carousel-indicators li::after,
.cid-u5vpjJUuNw .carousel-indicators li::before {
  content: none;
}
.cid-u5vpjJUuNw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u5vpjJUuNw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u5vpjJUuNw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u5vpjJUuNw .carousel-indicators {
    display: none;
  }
}
.cid-u5vpjJUuNw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u5vpjJUuNw .carousel-inner > .active {
  display: block;
}
.cid-u5vpjJUuNw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5vpjJUuNw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5vpjJUuNw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u5vpjJUuNw .carousel-control,
  .cid-u5vpjJUuNw .carousel-indicators,
  .cid-u5vpjJUuNw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u5vpjJUuNw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u5vpjJUuNw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u5vpjJUuNw .carousel-indicators .active,
.cid-u5vpjJUuNw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u5vpjJUuNw .carousel-indicators .active {
  background: #fff;
}
.cid-u5vpjJUuNw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u5vpjJUuNw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u5vpjJUuNw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u5vpjJUuNw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u5vpjJUuNw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u5vpjJUuNw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u5vpjJUuNw .carousel {
  width: 100%;
}
.cid-u5vpjJUuNw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u5vpjJUuNw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u5vpjJUuNw .modal.fade .modal-dialog,
.cid-u5vpjJUuNw .modal.in .modal-dialog {
  transform: none;
}
.cid-u5vpjJUuNw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u5vpjJUuNw H6 {
  text-align: center;
}
.cid-u5vpjJUuNw H3 {
  text-align: center;
}
.cid-u5zT9wX9Gs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u5zT9wX9Gs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5zT9wX9Gs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5zT9wX9Gs .mbr-text,
.cid-u5zT9wX9Gs .mbr-section-btn {
  color: #232323;
}
.cid-u5zT9wX9Gs .card-title,
.cid-u5zT9wX9Gs .card-box {
  color: #ffffff;
}
.cid-u5zT9wX9Gs .mbr-text,
.cid-u5zT9wX9Gs .link-wrap {
  color: #ffffff;
}
.cid-u5vkIszOjQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u5vkIszOjQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u5vkIszOjQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u5vkIszOjQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u5vkIszOjQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u5vkIszOjQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u5vkIszOjQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u5vkIszOjQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u5vkIszOjQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u5vkIszOjQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u5vkIszOjQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u5vkIszOjQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5vkIszOjQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5vkIszOjQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u5vkIszOjQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u69nj571H3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u69nj571H3 nav.navbar {
  position: fixed;
}
.cid-u69nj571H3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69nj571H3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u69nj571H3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u69nj571H3 .dropdown-item:hover,
.cid-u69nj571H3 .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u69nj571H3 .dropdown-item:hover span {
  color: white;
}
.cid-u69nj571H3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u69nj571H3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u69nj571H3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u69nj571H3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u69nj571H3 .nav-link {
  position: relative;
}
.cid-u69nj571H3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u69nj571H3 .container {
    flex-wrap: nowrap;
  }
}
.cid-u69nj571H3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u69nj571H3 .dropdown-menu,
.cid-u69nj571H3 .navbar.opened {
  background: #ffffff !important;
}
.cid-u69nj571H3 .nav-item:focus,
.cid-u69nj571H3 .nav-link:focus {
  outline: none;
}
.cid-u69nj571H3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u69nj571H3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u69nj571H3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u69nj571H3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69nj571H3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u69nj571H3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u69nj571H3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u69nj571H3 .navbar.opened {
  transition: all 0.3s;
}
.cid-u69nj571H3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u69nj571H3 .navbar .navbar-logo img {
  width: auto;
}
.cid-u69nj571H3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u69nj571H3 .navbar.collapsed {
  justify-content: center;
}
.cid-u69nj571H3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u69nj571H3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u69nj571H3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u69nj571H3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u69nj571H3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u69nj571H3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u69nj571H3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u69nj571H3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u69nj571H3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u69nj571H3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u69nj571H3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u69nj571H3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u69nj571H3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u69nj571H3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u69nj571H3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u69nj571H3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u69nj571H3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u69nj571H3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u69nj571H3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u69nj571H3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u69nj571H3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u69nj571H3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u69nj571H3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u69nj571H3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u69nj571H3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69nj571H3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69nj571H3 .dropdown-item.active,
.cid-u69nj571H3 .dropdown-item:active {
  background-color: transparent;
}
.cid-u69nj571H3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u69nj571H3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u69nj571H3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u69nj571H3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u69nj571H3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u69nj571H3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u69nj571H3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u69nj571H3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u69nj571H3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u69nj571H3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u69nj571H3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u69nj571H3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69nj571H3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69nj571H3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u69nj571H3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69nj571H3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u69nj571H3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u69nj571H3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69nj571H3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u69nj571H3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69nj571H3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u69nj571H3 .navbar {
    height: 70px;
  }
  .cid-u69nj571H3 .navbar.opened {
    height: auto;
  }
  .cid-u69nj571H3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u69nj5rvap {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/straw-harrow-3000px-strip.jpg");
}
.cid-u69nj5rvap .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69nj5rvap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u69nj5rvap .container {
    padding: 0 22px;
  }
}
.cid-u69nj5rvap .content-wrapper {
  padding-bottom: 60%;
}
.cid-u69nj5rvap .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u69nj5rvap .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u69nj5rvap .mbr-section-title {
  color: #ffffff;
}
.cid-u69nj5rvap .mbr-text {
  color: #ffffff;
}
.cid-u69nj5EFmv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69nj5EFmv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69nj5EFmv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u69nj5EFmv .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u69nj5EFmv .container {
    padding: 0 12px;
  }
}
.cid-u69nj5EFmv .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u69nj5EFmv .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u69nj5EFmv .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u69nj5EFmv .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u69nj5EFmv .mbr-section-title {
  color: #222222;
}
.cid-u69nj5P9tF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69nj5P9tF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69nj5P9tF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69nj5P9tF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u69nj5P9tF .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u69nj5P9tF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u69nj5P9tF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u69nj5P9tF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u69nj5P9tF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u69nj5P9tF .carousel-control,
.cid-u69nj5P9tF .close {
  background: #1b1b1b;
}
.cid-u69nj5P9tF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u69nj5P9tF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u69nj5P9tF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u69nj5P9tF .carousel-control-next span {
  margin-left: 5px;
}
.cid-u69nj5P9tF .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u69nj5P9tF .close::before {
  content: '\e91a';
}
.cid-u69nj5P9tF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u69nj5P9tF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u69nj5P9tF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u69nj5P9tF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u69nj5P9tF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u69nj5P9tF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u69nj5P9tF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u69nj5P9tF .carousel-indicators li.active,
.cid-u69nj5P9tF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u69nj5P9tF .carousel-indicators li::after,
.cid-u69nj5P9tF .carousel-indicators li::before {
  content: none;
}
.cid-u69nj5P9tF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u69nj5P9tF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u69nj5P9tF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u69nj5P9tF .carousel-indicators {
    display: none;
  }
}
.cid-u69nj5P9tF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u69nj5P9tF .carousel-inner > .active {
  display: block;
}
.cid-u69nj5P9tF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u69nj5P9tF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u69nj5P9tF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u69nj5P9tF .carousel-control,
  .cid-u69nj5P9tF .carousel-indicators,
  .cid-u69nj5P9tF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u69nj5P9tF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u69nj5P9tF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u69nj5P9tF .carousel-indicators .active,
.cid-u69nj5P9tF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u69nj5P9tF .carousel-indicators .active {
  background: #fff;
}
.cid-u69nj5P9tF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u69nj5P9tF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u69nj5P9tF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u69nj5P9tF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u69nj5P9tF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u69nj5P9tF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u69nj5P9tF .carousel {
  width: 100%;
}
.cid-u69nj5P9tF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u69nj5P9tF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u69nj5P9tF .modal.fade .modal-dialog,
.cid-u69nj5P9tF .modal.in .modal-dialog {
  transform: none;
}
.cid-u69nj5P9tF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u69nj5P9tF H6 {
  text-align: center;
}
.cid-u69nj5P9tF H3 {
  text-align: center;
}
.cid-u69nj6djqw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u69nj6djqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69nj6djqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69nj6djqw .mbr-text,
.cid-u69nj6djqw .mbr-section-btn {
  color: #232323;
}
.cid-u69nj6djqw .card-title,
.cid-u69nj6djqw .card-box {
  color: #ffffff;
}
.cid-u69nj6djqw .mbr-text,
.cid-u69nj6djqw .link-wrap {
  color: #ffffff;
}
.cid-u69nj74pew {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u69nj74pew .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u69nj74pew .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u69nj74pew .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u69nj74pew .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u69nj74pew .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u69nj74pew .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u69nj74pew .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u69nj74pew .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u69nj74pew .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u69nj74pew .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u69nj74pew .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u69nj74pew .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u69nj74pew .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u69nj74pew .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u69u0jYzCg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u69u0jYzCg nav.navbar {
  position: fixed;
}
.cid-u69u0jYzCg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69u0jYzCg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u69u0jYzCg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u69u0jYzCg .dropdown-item:hover,
.cid-u69u0jYzCg .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u69u0jYzCg .dropdown-item:hover span {
  color: white;
}
.cid-u69u0jYzCg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u69u0jYzCg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u69u0jYzCg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u69u0jYzCg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u69u0jYzCg .nav-link {
  position: relative;
}
.cid-u69u0jYzCg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u69u0jYzCg .container {
    flex-wrap: nowrap;
  }
}
.cid-u69u0jYzCg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u69u0jYzCg .dropdown-menu,
.cid-u69u0jYzCg .navbar.opened {
  background: #ffffff !important;
}
.cid-u69u0jYzCg .nav-item:focus,
.cid-u69u0jYzCg .nav-link:focus {
  outline: none;
}
.cid-u69u0jYzCg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u69u0jYzCg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u69u0jYzCg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u69u0jYzCg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69u0jYzCg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u69u0jYzCg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u69u0jYzCg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u69u0jYzCg .navbar.opened {
  transition: all 0.3s;
}
.cid-u69u0jYzCg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u69u0jYzCg .navbar .navbar-logo img {
  width: auto;
}
.cid-u69u0jYzCg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u69u0jYzCg .navbar.collapsed {
  justify-content: center;
}
.cid-u69u0jYzCg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u69u0jYzCg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u69u0jYzCg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u69u0jYzCg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u69u0jYzCg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u69u0jYzCg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u69u0jYzCg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u69u0jYzCg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u69u0jYzCg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u69u0jYzCg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u69u0jYzCg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u69u0jYzCg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u69u0jYzCg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u69u0jYzCg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u69u0jYzCg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u69u0jYzCg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u69u0jYzCg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u69u0jYzCg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u69u0jYzCg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u69u0jYzCg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u69u0jYzCg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u69u0jYzCg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u69u0jYzCg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u69u0jYzCg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u69u0jYzCg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69u0jYzCg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69u0jYzCg .dropdown-item.active,
.cid-u69u0jYzCg .dropdown-item:active {
  background-color: transparent;
}
.cid-u69u0jYzCg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u69u0jYzCg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u69u0jYzCg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u69u0jYzCg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u69u0jYzCg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u69u0jYzCg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u69u0jYzCg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u69u0jYzCg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u69u0jYzCg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u69u0jYzCg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u69u0jYzCg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u69u0jYzCg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69u0jYzCg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69u0jYzCg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u69u0jYzCg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69u0jYzCg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u69u0jYzCg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u69u0jYzCg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69u0jYzCg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u69u0jYzCg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69u0jYzCg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u69u0jYzCg .navbar {
    height: 70px;
  }
  .cid-u69u0jYzCg .navbar.opened {
    height: auto;
  }
  .cid-u69u0jYzCg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u69u0kjAcA {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/news-and-events-page-3000px-strip.jpg");
}
.cid-u69u0kjAcA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69u0kjAcA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6IchfWkYz {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6IchfWkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6IchfWkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6IchfWkYz .row {
  flex-direction: row-reverse;
}
.cid-u6IchfWkYz .video-wrapper iframe {
  width: 100%;
}
.cid-u6IchfWkYz .mbr-section-title,
.cid-u6IchfWkYz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u6IchfWkYz .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6I7ySrLWS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6I7ySrLWS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6I7ySrLWS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6I7ySrLWS .row {
  flex-direction: row-reverse;
}
.cid-u6I7ySrLWS .video-wrapper iframe {
  width: 100%;
}
.cid-u6I7ySrLWS .mbr-section-title,
.cid-u6I7ySrLWS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u6I7ySrLWS .text-wrapper {
    padding: 2rem;
  }
}
.cid-u69u0lEQYW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u69u0lEQYW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u69u0lEQYW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u69u0lEQYW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u69u0lEQYW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u69u0lEQYW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u69u0lEQYW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u69u0lEQYW .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u69u0lEQYW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u69u0lEQYW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u69u0lEQYW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u69u0lEQYW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u69u0lEQYW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u69u0lEQYW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u69u0lEQYW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u6I6VYmacr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6I6VYmacr nav.navbar {
  position: fixed;
}
.cid-u6I6VYmacr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6I6VYmacr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6I6VYmacr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6I6VYmacr .dropdown-item:hover,
.cid-u6I6VYmacr .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u6I6VYmacr .dropdown-item:hover span {
  color: white;
}
.cid-u6I6VYmacr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6I6VYmacr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6I6VYmacr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6I6VYmacr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6I6VYmacr .nav-link {
  position: relative;
}
.cid-u6I6VYmacr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6I6VYmacr .container {
    flex-wrap: nowrap;
  }
}
.cid-u6I6VYmacr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6I6VYmacr .dropdown-menu,
.cid-u6I6VYmacr .navbar.opened {
  background: #ffffff !important;
}
.cid-u6I6VYmacr .nav-item:focus,
.cid-u6I6VYmacr .nav-link:focus {
  outline: none;
}
.cid-u6I6VYmacr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6I6VYmacr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6I6VYmacr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6I6VYmacr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6I6VYmacr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6I6VYmacr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6I6VYmacr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u6I6VYmacr .navbar.opened {
  transition: all 0.3s;
}
.cid-u6I6VYmacr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6I6VYmacr .navbar .navbar-logo img {
  width: auto;
}
.cid-u6I6VYmacr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6I6VYmacr .navbar.collapsed {
  justify-content: center;
}
.cid-u6I6VYmacr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6I6VYmacr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6I6VYmacr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u6I6VYmacr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6I6VYmacr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6I6VYmacr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6I6VYmacr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6I6VYmacr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6I6VYmacr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6I6VYmacr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6I6VYmacr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6I6VYmacr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6I6VYmacr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6I6VYmacr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6I6VYmacr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6I6VYmacr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6I6VYmacr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6I6VYmacr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6I6VYmacr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6I6VYmacr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u6I6VYmacr .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6I6VYmacr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6I6VYmacr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6I6VYmacr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6I6VYmacr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6I6VYmacr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6I6VYmacr .dropdown-item.active,
.cid-u6I6VYmacr .dropdown-item:active {
  background-color: transparent;
}
.cid-u6I6VYmacr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6I6VYmacr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6I6VYmacr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6I6VYmacr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6I6VYmacr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6I6VYmacr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6I6VYmacr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6I6VYmacr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6I6VYmacr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6I6VYmacr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6I6VYmacr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6I6VYmacr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6I6VYmacr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6I6VYmacr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6I6VYmacr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6I6VYmacr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6I6VYmacr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6I6VYmacr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6I6VYmacr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6I6VYmacr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6I6VYmacr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6I6VYmacr .navbar {
    height: 70px;
  }
  .cid-u6I6VYmacr .navbar.opened {
    height: auto;
  }
  .cid-u6I6VYmacr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6I6VYVafM {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u6I6VYVafM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6I6VYVafM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9mpFZZlxl {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-u9mpFZZlxl .item-subtitle a {
  color: #bbbbbb;
  font-weight: 600;
}
.cid-u9mpFZZlxl .item-title,
.cid-u9mpFZZlxl .item-subtitle {
  transition: all 0.3s;
}
.cid-u9mpFZZlxl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u9mpFZZlxl .item:hover img {
  transform: scale(1.05);
}
.cid-u9mpFZZlxl .item-img {
  overflow: hidden;
}
.cid-u9mpFZZlxl img,
.cid-u9mpFZZlxl .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u9mpFZZlxl h5 {
  margin: 0;
}
.cid-u9mpFZZlxl .item:focus,
.cid-u9mpFZZlxl span:focus {
  outline: none;
}
.cid-u9mpFZZlxl .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u9mpFZZlxl .item-content {
  padding-top: 2rem;
}
.cid-u9mpFZZlxl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u9mpFZZlxl .item-title {
  color: #bbbbbb;
}
.cid-u9mpFZZlxl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u9mpFZZlxl .mbr-text,
.cid-u9mpFZZlxl .mbr-section-btn {
  color: #ffffff;
}
.cid-u9mpFZZlxl .item-subtitle {
  color: #ffffff;
}
.cid-u6I6W0rDMz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u6I6W0rDMz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u6I6W0rDMz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u6I6W0rDMz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u6I6W0rDMz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6I6W0rDMz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6I6W0rDMz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6I6W0rDMz .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u6I6W0rDMz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u6I6W0rDMz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u6I6W0rDMz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u6I6W0rDMz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6I6W0rDMz .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6I6W0rDMz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u6I6W0rDMz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u6J4uv5tLl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6J4uv5tLl nav.navbar {
  position: fixed;
}
.cid-u6J4uv5tLl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6J4uv5tLl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6J4uv5tLl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6J4uv5tLl .dropdown-item:hover,
.cid-u6J4uv5tLl .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u6J4uv5tLl .dropdown-item:hover span {
  color: white;
}
.cid-u6J4uv5tLl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6J4uv5tLl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6J4uv5tLl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6J4uv5tLl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6J4uv5tLl .nav-link {
  position: relative;
}
.cid-u6J4uv5tLl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6J4uv5tLl .container {
    flex-wrap: nowrap;
  }
}
.cid-u6J4uv5tLl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6J4uv5tLl .dropdown-menu,
.cid-u6J4uv5tLl .navbar.opened {
  background: #ffffff !important;
}
.cid-u6J4uv5tLl .nav-item:focus,
.cid-u6J4uv5tLl .nav-link:focus {
  outline: none;
}
.cid-u6J4uv5tLl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6J4uv5tLl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6J4uv5tLl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6J4uv5tLl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6J4uv5tLl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6J4uv5tLl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6J4uv5tLl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u6J4uv5tLl .navbar.opened {
  transition: all 0.3s;
}
.cid-u6J4uv5tLl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6J4uv5tLl .navbar .navbar-logo img {
  width: auto;
}
.cid-u6J4uv5tLl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6J4uv5tLl .navbar.collapsed {
  justify-content: center;
}
.cid-u6J4uv5tLl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6J4uv5tLl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6J4uv5tLl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u6J4uv5tLl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6J4uv5tLl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6J4uv5tLl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6J4uv5tLl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6J4uv5tLl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6J4uv5tLl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6J4uv5tLl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6J4uv5tLl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6J4uv5tLl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6J4uv5tLl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6J4uv5tLl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6J4uv5tLl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6J4uv5tLl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6J4uv5tLl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6J4uv5tLl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6J4uv5tLl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6J4uv5tLl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u6J4uv5tLl .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6J4uv5tLl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6J4uv5tLl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6J4uv5tLl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6J4uv5tLl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6J4uv5tLl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6J4uv5tLl .dropdown-item.active,
.cid-u6J4uv5tLl .dropdown-item:active {
  background-color: transparent;
}
.cid-u6J4uv5tLl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6J4uv5tLl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6J4uv5tLl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6J4uv5tLl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6J4uv5tLl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6J4uv5tLl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6J4uv5tLl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6J4uv5tLl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6J4uv5tLl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6J4uv5tLl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6J4uv5tLl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6J4uv5tLl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6J4uv5tLl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6J4uv5tLl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6J4uv5tLl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6J4uv5tLl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6J4uv5tLl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6J4uv5tLl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6J4uv5tLl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6J4uv5tLl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6J4uv5tLl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6J4uv5tLl .navbar {
    height: 70px;
  }
  .cid-u6J4uv5tLl .navbar.opened {
    height: auto;
  }
  .cid-u6J4uv5tLl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6J4uvoTCE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/grass-300-3000px-strip.jpg");
}
.cid-u6J4uvoTCE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6J4uvoTCE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u6J4uvoTCE .container {
    padding: 0 22px;
  }
}
.cid-u6J4uvoTCE .content-wrapper {
  padding-bottom: 60%;
}
.cid-u6J4uvoTCE .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u6J4uvoTCE .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u6J4uvoTCE .mbr-section-title {
  color: #ffffff;
}
.cid-u6J4uvoTCE .mbr-text {
  color: #ffffff;
}
.cid-u6J4uvztS7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6J4uvztS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6J4uvztS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u6J4uvztS7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u6J4uvztS7 .container {
    padding: 0 12px;
  }
}
.cid-u6J4uvztS7 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u6J4uvztS7 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u6J4uvztS7 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u6J4uvztS7 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u6J4uvztS7 .mbr-section-title {
  color: #222222;
}
.cid-u6J4uvMVtz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6J4uvMVtz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6J4uvMVtz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6J4uvMVtz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u6J4uvMVtz .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u6J4uvMVtz .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u6J4uvMVtz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u6J4uvMVtz .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u6J4uvMVtz .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u6J4uvMVtz .carousel-control,
.cid-u6J4uvMVtz .close {
  background: #1b1b1b;
}
.cid-u6J4uvMVtz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u6J4uvMVtz .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u6J4uvMVtz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u6J4uvMVtz .carousel-control-next span {
  margin-left: 5px;
}
.cid-u6J4uvMVtz .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u6J4uvMVtz .close::before {
  content: '\e91a';
}
.cid-u6J4uvMVtz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u6J4uvMVtz .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u6J4uvMVtz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6J4uvMVtz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u6J4uvMVtz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u6J4uvMVtz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u6J4uvMVtz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u6J4uvMVtz .carousel-indicators li.active,
.cid-u6J4uvMVtz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u6J4uvMVtz .carousel-indicators li::after,
.cid-u6J4uvMVtz .carousel-indicators li::before {
  content: none;
}
.cid-u6J4uvMVtz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u6J4uvMVtz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u6J4uvMVtz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u6J4uvMVtz .carousel-indicators {
    display: none;
  }
}
.cid-u6J4uvMVtz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u6J4uvMVtz .carousel-inner > .active {
  display: block;
}
.cid-u6J4uvMVtz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6J4uvMVtz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u6J4uvMVtz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u6J4uvMVtz .carousel-control,
  .cid-u6J4uvMVtz .carousel-indicators,
  .cid-u6J4uvMVtz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u6J4uvMVtz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u6J4uvMVtz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u6J4uvMVtz .carousel-indicators .active,
.cid-u6J4uvMVtz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u6J4uvMVtz .carousel-indicators .active {
  background: #fff;
}
.cid-u6J4uvMVtz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u6J4uvMVtz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u6J4uvMVtz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u6J4uvMVtz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u6J4uvMVtz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u6J4uvMVtz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u6J4uvMVtz .carousel {
  width: 100%;
}
.cid-u6J4uvMVtz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u6J4uvMVtz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u6J4uvMVtz .modal.fade .modal-dialog,
.cid-u6J4uvMVtz .modal.in .modal-dialog {
  transform: none;
}
.cid-u6J4uvMVtz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u6J4uvMVtz H6 {
  text-align: center;
}
.cid-u6J4uvMVtz H3 {
  text-align: center;
}
.cid-u6J4uw9w9A {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u6J4uw9w9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6J4uw9w9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6J4uw9w9A .mbr-text,
.cid-u6J4uw9w9A .mbr-section-btn {
  color: #232323;
}
.cid-u6J4uw9w9A .card-title,
.cid-u6J4uw9w9A .card-box {
  color: #ffffff;
}
.cid-u6J4uw9w9A .mbr-text,
.cid-u6J4uw9w9A .link-wrap {
  color: #ffffff;
}
.cid-u6J4uwIFtn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u6J4uwIFtn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u6J4uwIFtn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u6J4uwIFtn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u6J4uwIFtn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6J4uwIFtn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6J4uwIFtn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6J4uwIFtn .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u6J4uwIFtn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u6J4uwIFtn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u6J4uwIFtn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u6J4uwIFtn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6J4uwIFtn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6J4uwIFtn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u6J4uwIFtn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u6TLL1dbsr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6TLL1dbsr nav.navbar {
  position: fixed;
}
.cid-u6TLL1dbsr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6TLL1dbsr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6TLL1dbsr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6TLL1dbsr .dropdown-item:hover,
.cid-u6TLL1dbsr .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u6TLL1dbsr .dropdown-item:hover span {
  color: white;
}
.cid-u6TLL1dbsr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6TLL1dbsr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6TLL1dbsr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6TLL1dbsr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6TLL1dbsr .nav-link {
  position: relative;
}
.cid-u6TLL1dbsr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6TLL1dbsr .container {
    flex-wrap: nowrap;
  }
}
.cid-u6TLL1dbsr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6TLL1dbsr .dropdown-menu,
.cid-u6TLL1dbsr .navbar.opened {
  background: #ffffff !important;
}
.cid-u6TLL1dbsr .nav-item:focus,
.cid-u6TLL1dbsr .nav-link:focus {
  outline: none;
}
.cid-u6TLL1dbsr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6TLL1dbsr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6TLL1dbsr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6TLL1dbsr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6TLL1dbsr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6TLL1dbsr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6TLL1dbsr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u6TLL1dbsr .navbar.opened {
  transition: all 0.3s;
}
.cid-u6TLL1dbsr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6TLL1dbsr .navbar .navbar-logo img {
  width: auto;
}
.cid-u6TLL1dbsr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6TLL1dbsr .navbar.collapsed {
  justify-content: center;
}
.cid-u6TLL1dbsr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6TLL1dbsr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6TLL1dbsr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u6TLL1dbsr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6TLL1dbsr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6TLL1dbsr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6TLL1dbsr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6TLL1dbsr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6TLL1dbsr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6TLL1dbsr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6TLL1dbsr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6TLL1dbsr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6TLL1dbsr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6TLL1dbsr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6TLL1dbsr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6TLL1dbsr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6TLL1dbsr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6TLL1dbsr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6TLL1dbsr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6TLL1dbsr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u6TLL1dbsr .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6TLL1dbsr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6TLL1dbsr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6TLL1dbsr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6TLL1dbsr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6TLL1dbsr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6TLL1dbsr .dropdown-item.active,
.cid-u6TLL1dbsr .dropdown-item:active {
  background-color: transparent;
}
.cid-u6TLL1dbsr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6TLL1dbsr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6TLL1dbsr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6TLL1dbsr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6TLL1dbsr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6TLL1dbsr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6TLL1dbsr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6TLL1dbsr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6TLL1dbsr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6TLL1dbsr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6TLL1dbsr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6TLL1dbsr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6TLL1dbsr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6TLL1dbsr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6TLL1dbsr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6TLL1dbsr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6TLL1dbsr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6TLL1dbsr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6TLL1dbsr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6TLL1dbsr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6TLL1dbsr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6TLL1dbsr .navbar {
    height: 70px;
  }
  .cid-u6TLL1dbsr .navbar.opened {
    height: auto;
  }
  .cid-u6TLL1dbsr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6TMfpdKCQ {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u6TMfpdKCQ img,
.cid-u6TMfpdKCQ .item-img {
  width: 100%;
}
.cid-u6TMfpdKCQ .item:focus,
.cid-u6TMfpdKCQ span:focus {
  outline: none;
}
.cid-u6TMfpdKCQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6TMfpdKCQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6TMfpdKCQ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6TMfpdKCQ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6TMfpdKCQ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6TMfpdKCQ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6TMfpdKCQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6TMfpdKCQ .mbr-section-title {
  color: #ffffff;
}
.cid-u6TMfpdKCQ .mbr-text,
.cid-u6TMfpdKCQ .mbr-section-btn {
  text-align: left;
}
.cid-u6TMfpdKCQ .item-title {
  text-align: left;
}
.cid-u6TMfpdKCQ .item-subtitle {
  text-align: left;
}
.cid-u6TMfpdKCQ .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u6TMqZEnMO {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-u6TMqZEnMO img,
.cid-u6TMqZEnMO .item-img {
  width: 100%;
}
.cid-u6TMqZEnMO .item:focus,
.cid-u6TMqZEnMO span:focus {
  outline: none;
}
.cid-u6TMqZEnMO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6TMqZEnMO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6TMqZEnMO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6TMqZEnMO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6TMqZEnMO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6TMqZEnMO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6TMqZEnMO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6TMqZEnMO .mbr-section-title {
  color: #ffffff;
}
.cid-u6TMqZEnMO .mbr-text,
.cid-u6TMqZEnMO .mbr-section-btn {
  text-align: left;
}
.cid-u6TMqZEnMO .item-title {
  text-align: left;
}
.cid-u6TMqZEnMO .item-subtitle {
  text-align: left;
}
.cid-u6TMqZEnMO .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u6TLL25NKQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u6TLL25NKQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u6TLL25NKQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u6TLL25NKQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u6TLL25NKQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6TLL25NKQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6TLL25NKQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6TLL25NKQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u6TLL25NKQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u6TLL25NKQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u6TLL25NKQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u6TLL25NKQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6TLL25NKQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6TLL25NKQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u6TLL25NKQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u6TXhcDl7i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6TXhcDl7i nav.navbar {
  position: fixed;
}
.cid-u6TXhcDl7i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6TXhcDl7i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6TXhcDl7i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6TXhcDl7i .dropdown-item:hover,
.cid-u6TXhcDl7i .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u6TXhcDl7i .dropdown-item:hover span {
  color: white;
}
.cid-u6TXhcDl7i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6TXhcDl7i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6TXhcDl7i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6TXhcDl7i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6TXhcDl7i .nav-link {
  position: relative;
}
.cid-u6TXhcDl7i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6TXhcDl7i .container {
    flex-wrap: nowrap;
  }
}
.cid-u6TXhcDl7i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6TXhcDl7i .dropdown-menu,
.cid-u6TXhcDl7i .navbar.opened {
  background: #ffffff !important;
}
.cid-u6TXhcDl7i .nav-item:focus,
.cid-u6TXhcDl7i .nav-link:focus {
  outline: none;
}
.cid-u6TXhcDl7i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6TXhcDl7i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6TXhcDl7i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6TXhcDl7i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6TXhcDl7i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6TXhcDl7i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6TXhcDl7i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u6TXhcDl7i .navbar.opened {
  transition: all 0.3s;
}
.cid-u6TXhcDl7i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6TXhcDl7i .navbar .navbar-logo img {
  width: auto;
}
.cid-u6TXhcDl7i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6TXhcDl7i .navbar.collapsed {
  justify-content: center;
}
.cid-u6TXhcDl7i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6TXhcDl7i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6TXhcDl7i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u6TXhcDl7i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6TXhcDl7i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6TXhcDl7i .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6TXhcDl7i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6TXhcDl7i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6TXhcDl7i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6TXhcDl7i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6TXhcDl7i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6TXhcDl7i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6TXhcDl7i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6TXhcDl7i .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6TXhcDl7i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6TXhcDl7i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6TXhcDl7i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6TXhcDl7i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6TXhcDl7i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6TXhcDl7i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u6TXhcDl7i .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6TXhcDl7i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6TXhcDl7i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6TXhcDl7i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6TXhcDl7i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6TXhcDl7i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6TXhcDl7i .dropdown-item.active,
.cid-u6TXhcDl7i .dropdown-item:active {
  background-color: transparent;
}
.cid-u6TXhcDl7i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6TXhcDl7i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6TXhcDl7i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6TXhcDl7i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6TXhcDl7i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6TXhcDl7i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6TXhcDl7i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6TXhcDl7i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6TXhcDl7i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6TXhcDl7i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6TXhcDl7i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6TXhcDl7i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6TXhcDl7i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6TXhcDl7i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6TXhcDl7i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6TXhcDl7i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6TXhcDl7i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6TXhcDl7i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6TXhcDl7i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6TXhcDl7i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6TXhcDl7i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6TXhcDl7i .navbar {
    height: 70px;
  }
  .cid-u6TXhcDl7i .navbar.opened {
    height: auto;
  }
  .cid-u6TXhcDl7i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6TXhcZqie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/t24-3000px-strip.jpg");
}
.cid-u6TXhcZqie .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6TXhcZqie .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u6TXhcZqie .container {
    padding: 0 22px;
  }
}
.cid-u6TXhcZqie .content-wrapper {
  padding-bottom: 60%;
}
.cid-u6TXhcZqie .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u6TXhcZqie .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u6TXhcZqie .mbr-section-title {
  color: #ffffff;
}
.cid-u6TXhcZqie .mbr-text {
  color: #ffffff;
}
.cid-u6TXhdcUlg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6TXhdcUlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6TXhdcUlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u6TXhdcUlg .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u6TXhdcUlg .container {
    padding: 0 12px;
  }
}
.cid-u6TXhdcUlg .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u6TXhdcUlg .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u6TXhdcUlg .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u6TXhdcUlg .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u6TXhdcUlg .mbr-section-title {
  color: #222222;
}
.cid-u6TXhdp8RS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6TXhdp8RS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6TXhdp8RS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6TXhdp8RS .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u6TXhdp8RS .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u6TXhdp8RS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u6TXhdp8RS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u6TXhdp8RS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u6TXhdp8RS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u6TXhdp8RS .carousel-control,
.cid-u6TXhdp8RS .close {
  background: #1b1b1b;
}
.cid-u6TXhdp8RS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u6TXhdp8RS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u6TXhdp8RS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u6TXhdp8RS .carousel-control-next span {
  margin-left: 5px;
}
.cid-u6TXhdp8RS .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u6TXhdp8RS .close::before {
  content: '\e91a';
}
.cid-u6TXhdp8RS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u6TXhdp8RS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u6TXhdp8RS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6TXhdp8RS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u6TXhdp8RS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u6TXhdp8RS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u6TXhdp8RS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u6TXhdp8RS .carousel-indicators li.active,
.cid-u6TXhdp8RS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u6TXhdp8RS .carousel-indicators li::after,
.cid-u6TXhdp8RS .carousel-indicators li::before {
  content: none;
}
.cid-u6TXhdp8RS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u6TXhdp8RS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u6TXhdp8RS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u6TXhdp8RS .carousel-indicators {
    display: none;
  }
}
.cid-u6TXhdp8RS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u6TXhdp8RS .carousel-inner > .active {
  display: block;
}
.cid-u6TXhdp8RS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6TXhdp8RS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u6TXhdp8RS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u6TXhdp8RS .carousel-control,
  .cid-u6TXhdp8RS .carousel-indicators,
  .cid-u6TXhdp8RS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u6TXhdp8RS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u6TXhdp8RS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u6TXhdp8RS .carousel-indicators .active,
.cid-u6TXhdp8RS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u6TXhdp8RS .carousel-indicators .active {
  background: #fff;
}
.cid-u6TXhdp8RS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u6TXhdp8RS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u6TXhdp8RS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u6TXhdp8RS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u6TXhdp8RS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u6TXhdp8RS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u6TXhdp8RS .carousel {
  width: 100%;
}
.cid-u6TXhdp8RS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u6TXhdp8RS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u6TXhdp8RS .modal.fade .modal-dialog,
.cid-u6TXhdp8RS .modal.in .modal-dialog {
  transform: none;
}
.cid-u6TXhdp8RS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u6TXhdp8RS H6 {
  text-align: center;
}
.cid-u6TXhdp8RS H3 {
  text-align: center;
}
.cid-u6TXhdMJvv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u6TXhdMJvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6TXhdMJvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6TXhdMJvv .mbr-text,
.cid-u6TXhdMJvv .mbr-section-btn {
  color: #232323;
}
.cid-u6TXhdMJvv .card-title,
.cid-u6TXhdMJvv .card-box {
  color: #ffffff;
}
.cid-u6TXhdMJvv .mbr-text,
.cid-u6TXhdMJvv .link-wrap {
  color: #ffffff;
}
.cid-u6TXhenC93 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u6TXhenC93 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u6TXhenC93 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u6TXhenC93 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u6TXhenC93 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6TXhenC93 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6TXhenC93 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6TXhenC93 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u6TXhenC93 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u6TXhenC93 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u6TXhenC93 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u6TXhenC93 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6TXhenC93 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6TXhenC93 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u6TXhenC93 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u7KzROHGuw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7KzROHGuw nav.navbar {
  position: fixed;
}
.cid-u7KzROHGuw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KzROHGuw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7KzROHGuw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7KzROHGuw .dropdown-item:hover,
.cid-u7KzROHGuw .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u7KzROHGuw .dropdown-item:hover span {
  color: white;
}
.cid-u7KzROHGuw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7KzROHGuw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7KzROHGuw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7KzROHGuw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7KzROHGuw .nav-link {
  position: relative;
}
.cid-u7KzROHGuw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7KzROHGuw .container {
    flex-wrap: nowrap;
  }
}
.cid-u7KzROHGuw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7KzROHGuw .dropdown-menu,
.cid-u7KzROHGuw .navbar.opened {
  background: #ffffff !important;
}
.cid-u7KzROHGuw .nav-item:focus,
.cid-u7KzROHGuw .nav-link:focus {
  outline: none;
}
.cid-u7KzROHGuw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7KzROHGuw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7KzROHGuw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7KzROHGuw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KzROHGuw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7KzROHGuw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7KzROHGuw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7KzROHGuw .navbar.opened {
  transition: all 0.3s;
}
.cid-u7KzROHGuw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7KzROHGuw .navbar .navbar-logo img {
  width: auto;
}
.cid-u7KzROHGuw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7KzROHGuw .navbar.collapsed {
  justify-content: center;
}
.cid-u7KzROHGuw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7KzROHGuw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7KzROHGuw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u7KzROHGuw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7KzROHGuw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7KzROHGuw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7KzROHGuw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7KzROHGuw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7KzROHGuw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7KzROHGuw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7KzROHGuw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7KzROHGuw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7KzROHGuw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7KzROHGuw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7KzROHGuw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7KzROHGuw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7KzROHGuw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7KzROHGuw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7KzROHGuw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7KzROHGuw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7KzROHGuw .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7KzROHGuw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7KzROHGuw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7KzROHGuw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7KzROHGuw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7KzROHGuw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7KzROHGuw .dropdown-item.active,
.cid-u7KzROHGuw .dropdown-item:active {
  background-color: transparent;
}
.cid-u7KzROHGuw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7KzROHGuw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7KzROHGuw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7KzROHGuw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7KzROHGuw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7KzROHGuw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7KzROHGuw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7KzROHGuw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7KzROHGuw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7KzROHGuw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7KzROHGuw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7KzROHGuw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KzROHGuw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KzROHGuw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7KzROHGuw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KzROHGuw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7KzROHGuw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7KzROHGuw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KzROHGuw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7KzROHGuw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7KzROHGuw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7KzROHGuw .navbar {
    height: 70px;
  }
  .cid-u7KzROHGuw .navbar.opened {
    height: auto;
  }
  .cid-u7KzROHGuw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7KzROZ6Ae {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/t4-t5-3000px-strip.jpg");
}
.cid-u7KzROZ6Ae .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KzROZ6Ae .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7KzROZ6Ae .container {
    padding: 0 22px;
  }
}
.cid-u7KzROZ6Ae .content-wrapper {
  padding-bottom: 60%;
}
.cid-u7KzROZ6Ae .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7KzROZ6Ae .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u7KzROZ6Ae .mbr-section-title {
  color: #ffffff;
}
.cid-u7KzROZ6Ae .mbr-text {
  color: #ffffff;
}
.cid-u7KzRPat7v {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7KzRPat7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KzRPat7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7KzRPat7v .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u7KzRPat7v .container {
    padding: 0 12px;
  }
}
.cid-u7KzRPat7v .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u7KzRPat7v .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u7KzRPat7v .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u7KzRPat7v .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u7KzRPat7v .mbr-section-title {
  color: #222222;
}
.cid-u7KzRPnzWU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7KzRPnzWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KzRPnzWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KzRPnzWU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7KzRPnzWU .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u7KzRPnzWU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u7KzRPnzWU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u7KzRPnzWU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u7KzRPnzWU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u7KzRPnzWU .carousel-control,
.cid-u7KzRPnzWU .close {
  background: #1b1b1b;
}
.cid-u7KzRPnzWU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u7KzRPnzWU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u7KzRPnzWU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u7KzRPnzWU .carousel-control-next span {
  margin-left: 5px;
}
.cid-u7KzRPnzWU .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u7KzRPnzWU .close::before {
  content: '\e91a';
}
.cid-u7KzRPnzWU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u7KzRPnzWU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u7KzRPnzWU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7KzRPnzWU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7KzRPnzWU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u7KzRPnzWU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u7KzRPnzWU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u7KzRPnzWU .carousel-indicators li.active,
.cid-u7KzRPnzWU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u7KzRPnzWU .carousel-indicators li::after,
.cid-u7KzRPnzWU .carousel-indicators li::before {
  content: none;
}
.cid-u7KzRPnzWU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u7KzRPnzWU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u7KzRPnzWU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u7KzRPnzWU .carousel-indicators {
    display: none;
  }
}
.cid-u7KzRPnzWU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u7KzRPnzWU .carousel-inner > .active {
  display: block;
}
.cid-u7KzRPnzWU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7KzRPnzWU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7KzRPnzWU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u7KzRPnzWU .carousel-control,
  .cid-u7KzRPnzWU .carousel-indicators,
  .cid-u7KzRPnzWU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u7KzRPnzWU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u7KzRPnzWU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u7KzRPnzWU .carousel-indicators .active,
.cid-u7KzRPnzWU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u7KzRPnzWU .carousel-indicators .active {
  background: #fff;
}
.cid-u7KzRPnzWU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u7KzRPnzWU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u7KzRPnzWU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u7KzRPnzWU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u7KzRPnzWU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u7KzRPnzWU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u7KzRPnzWU .carousel {
  width: 100%;
}
.cid-u7KzRPnzWU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u7KzRPnzWU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u7KzRPnzWU .modal.fade .modal-dialog,
.cid-u7KzRPnzWU .modal.in .modal-dialog {
  transform: none;
}
.cid-u7KzRPnzWU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u7KzRPnzWU H6 {
  text-align: center;
}
.cid-u7KzRPnzWU H3 {
  text-align: center;
}
.cid-u7KzRPZmNV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u7KzRPZmNV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KzRPZmNV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KzRPZmNV .mbr-text,
.cid-u7KzRPZmNV .mbr-section-btn {
  color: #232323;
}
.cid-u7KzRPZmNV .card-title,
.cid-u7KzRPZmNV .card-box {
  color: #ffffff;
}
.cid-u7KzRPZmNV .mbr-text,
.cid-u7KzRPZmNV .link-wrap {
  color: #ffffff;
}
.cid-u7KzRQcIJ7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u7KzRQcIJ7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u7KzRQcIJ7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u7KzRQcIJ7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u7KzRQcIJ7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u7KzRQcIJ7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u7KzRQcIJ7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u7KzRQcIJ7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u7KzRQcIJ7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7KzRQcIJ7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7KzRQcIJ7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u7KzRQcIJ7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7KzRQcIJ7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7KzRQcIJ7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u7KzRQcIJ7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u7KV6NCyjh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7KV6NCyjh nav.navbar {
  position: fixed;
}
.cid-u7KV6NCyjh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KV6NCyjh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7KV6NCyjh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7KV6NCyjh .dropdown-item:hover,
.cid-u7KV6NCyjh .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u7KV6NCyjh .dropdown-item:hover span {
  color: white;
}
.cid-u7KV6NCyjh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7KV6NCyjh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7KV6NCyjh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7KV6NCyjh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7KV6NCyjh .nav-link {
  position: relative;
}
.cid-u7KV6NCyjh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7KV6NCyjh .container {
    flex-wrap: nowrap;
  }
}
.cid-u7KV6NCyjh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7KV6NCyjh .dropdown-menu,
.cid-u7KV6NCyjh .navbar.opened {
  background: #ffffff !important;
}
.cid-u7KV6NCyjh .nav-item:focus,
.cid-u7KV6NCyjh .nav-link:focus {
  outline: none;
}
.cid-u7KV6NCyjh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7KV6NCyjh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7KV6NCyjh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7KV6NCyjh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KV6NCyjh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7KV6NCyjh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7KV6NCyjh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7KV6NCyjh .navbar.opened {
  transition: all 0.3s;
}
.cid-u7KV6NCyjh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7KV6NCyjh .navbar .navbar-logo img {
  width: auto;
}
.cid-u7KV6NCyjh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7KV6NCyjh .navbar.collapsed {
  justify-content: center;
}
.cid-u7KV6NCyjh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7KV6NCyjh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7KV6NCyjh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u7KV6NCyjh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7KV6NCyjh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7KV6NCyjh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7KV6NCyjh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7KV6NCyjh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7KV6NCyjh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7KV6NCyjh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7KV6NCyjh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7KV6NCyjh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7KV6NCyjh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7KV6NCyjh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7KV6NCyjh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7KV6NCyjh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7KV6NCyjh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7KV6NCyjh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7KV6NCyjh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7KV6NCyjh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7KV6NCyjh .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7KV6NCyjh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7KV6NCyjh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7KV6NCyjh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7KV6NCyjh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7KV6NCyjh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7KV6NCyjh .dropdown-item.active,
.cid-u7KV6NCyjh .dropdown-item:active {
  background-color: transparent;
}
.cid-u7KV6NCyjh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7KV6NCyjh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7KV6NCyjh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7KV6NCyjh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7KV6NCyjh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7KV6NCyjh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7KV6NCyjh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7KV6NCyjh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7KV6NCyjh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7KV6NCyjh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7KV6NCyjh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7KV6NCyjh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KV6NCyjh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KV6NCyjh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7KV6NCyjh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KV6NCyjh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7KV6NCyjh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7KV6NCyjh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KV6NCyjh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7KV6NCyjh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7KV6NCyjh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7KV6NCyjh .navbar {
    height: 70px;
  }
  .cid-u7KV6NCyjh .navbar.opened {
    height: auto;
  }
  .cid-u7KV6NCyjh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7KV6Oogml {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/t18-3000px-strip.jpg");
}
.cid-u7KV6Oogml .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KV6Oogml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7KV6Oogml .container {
    padding: 0 22px;
  }
}
.cid-u7KV6Oogml .content-wrapper {
  padding-bottom: 60%;
}
.cid-u7KV6Oogml .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7KV6Oogml .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u7KV6Oogml .mbr-section-title {
  color: #ffffff;
}
.cid-u7KV6Oogml .mbr-text {
  color: #ffffff;
}
.cid-u7KV6OQvaB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7KV6OQvaB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KV6OQvaB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7KV6OQvaB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u7KV6OQvaB .container {
    padding: 0 12px;
  }
}
.cid-u7KV6OQvaB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u7KV6OQvaB .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u7KV6OQvaB .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u7KV6OQvaB .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u7KV6OQvaB .mbr-section-title {
  color: #222222;
}
.cid-u7KV6PhTMg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7KV6PhTMg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KV6PhTMg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KV6PhTMg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7KV6PhTMg .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u7KV6PhTMg .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u7KV6PhTMg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u7KV6PhTMg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u7KV6PhTMg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u7KV6PhTMg .carousel-control,
.cid-u7KV6PhTMg .close {
  background: #1b1b1b;
}
.cid-u7KV6PhTMg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u7KV6PhTMg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u7KV6PhTMg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u7KV6PhTMg .carousel-control-next span {
  margin-left: 5px;
}
.cid-u7KV6PhTMg .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u7KV6PhTMg .close::before {
  content: '\e91a';
}
.cid-u7KV6PhTMg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u7KV6PhTMg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u7KV6PhTMg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7KV6PhTMg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7KV6PhTMg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u7KV6PhTMg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u7KV6PhTMg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u7KV6PhTMg .carousel-indicators li.active,
.cid-u7KV6PhTMg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u7KV6PhTMg .carousel-indicators li::after,
.cid-u7KV6PhTMg .carousel-indicators li::before {
  content: none;
}
.cid-u7KV6PhTMg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u7KV6PhTMg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u7KV6PhTMg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u7KV6PhTMg .carousel-indicators {
    display: none;
  }
}
.cid-u7KV6PhTMg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u7KV6PhTMg .carousel-inner > .active {
  display: block;
}
.cid-u7KV6PhTMg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7KV6PhTMg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7KV6PhTMg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u7KV6PhTMg .carousel-control,
  .cid-u7KV6PhTMg .carousel-indicators,
  .cid-u7KV6PhTMg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u7KV6PhTMg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u7KV6PhTMg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u7KV6PhTMg .carousel-indicators .active,
.cid-u7KV6PhTMg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u7KV6PhTMg .carousel-indicators .active {
  background: #fff;
}
.cid-u7KV6PhTMg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u7KV6PhTMg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u7KV6PhTMg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u7KV6PhTMg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u7KV6PhTMg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u7KV6PhTMg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u7KV6PhTMg .carousel {
  width: 100%;
}
.cid-u7KV6PhTMg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u7KV6PhTMg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u7KV6PhTMg .modal.fade .modal-dialog,
.cid-u7KV6PhTMg .modal.in .modal-dialog {
  transform: none;
}
.cid-u7KV6PhTMg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u7KV6PhTMg H6 {
  text-align: center;
}
.cid-u7KV6PhTMg H3 {
  text-align: center;
}
.cid-u7KV6PJGEP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u7KV6PJGEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KV6PJGEP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KV6PJGEP .mbr-text,
.cid-u7KV6PJGEP .mbr-section-btn {
  color: #232323;
}
.cid-u7KV6PJGEP .card-title,
.cid-u7KV6PJGEP .card-box {
  color: #ffffff;
}
.cid-u7KV6PJGEP .mbr-text,
.cid-u7KV6PJGEP .link-wrap {
  color: #ffffff;
}
.cid-u7KV6PYdXR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u7KV6PYdXR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u7KV6PYdXR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u7KV6PYdXR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u7KV6PYdXR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u7KV6PYdXR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u7KV6PYdXR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u7KV6PYdXR .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u7KV6PYdXR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7KV6PYdXR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7KV6PYdXR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u7KV6PYdXR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7KV6PYdXR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7KV6PYdXR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u7KV6PYdXR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u7KYnSmqRS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7KYnSmqRS nav.navbar {
  position: fixed;
}
.cid-u7KYnSmqRS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KYnSmqRS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7KYnSmqRS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7KYnSmqRS .dropdown-item:hover,
.cid-u7KYnSmqRS .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u7KYnSmqRS .dropdown-item:hover span {
  color: white;
}
.cid-u7KYnSmqRS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7KYnSmqRS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7KYnSmqRS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7KYnSmqRS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7KYnSmqRS .nav-link {
  position: relative;
}
.cid-u7KYnSmqRS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7KYnSmqRS .container {
    flex-wrap: nowrap;
  }
}
.cid-u7KYnSmqRS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7KYnSmqRS .dropdown-menu,
.cid-u7KYnSmqRS .navbar.opened {
  background: #ffffff !important;
}
.cid-u7KYnSmqRS .nav-item:focus,
.cid-u7KYnSmqRS .nav-link:focus {
  outline: none;
}
.cid-u7KYnSmqRS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7KYnSmqRS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7KYnSmqRS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7KYnSmqRS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KYnSmqRS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7KYnSmqRS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7KYnSmqRS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7KYnSmqRS .navbar.opened {
  transition: all 0.3s;
}
.cid-u7KYnSmqRS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7KYnSmqRS .navbar .navbar-logo img {
  width: auto;
}
.cid-u7KYnSmqRS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7KYnSmqRS .navbar.collapsed {
  justify-content: center;
}
.cid-u7KYnSmqRS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7KYnSmqRS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7KYnSmqRS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u7KYnSmqRS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7KYnSmqRS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7KYnSmqRS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7KYnSmqRS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7KYnSmqRS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7KYnSmqRS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7KYnSmqRS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7KYnSmqRS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7KYnSmqRS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7KYnSmqRS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7KYnSmqRS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7KYnSmqRS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7KYnSmqRS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7KYnSmqRS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7KYnSmqRS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7KYnSmqRS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7KYnSmqRS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7KYnSmqRS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7KYnSmqRS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7KYnSmqRS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7KYnSmqRS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7KYnSmqRS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7KYnSmqRS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7KYnSmqRS .dropdown-item.active,
.cid-u7KYnSmqRS .dropdown-item:active {
  background-color: transparent;
}
.cid-u7KYnSmqRS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7KYnSmqRS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7KYnSmqRS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7KYnSmqRS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7KYnSmqRS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7KYnSmqRS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7KYnSmqRS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7KYnSmqRS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7KYnSmqRS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7KYnSmqRS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7KYnSmqRS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7KYnSmqRS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KYnSmqRS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KYnSmqRS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7KYnSmqRS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KYnSmqRS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7KYnSmqRS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7KYnSmqRS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KYnSmqRS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7KYnSmqRS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7KYnSmqRS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7KYnSmqRS .navbar {
    height: 70px;
  }
  .cid-u7KYnSmqRS .navbar.opened {
    height: auto;
  }
  .cid-u7KYnSmqRS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7KYnSGQqy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/t14-gravity-feed-app-3000px-strip.jpg");
}
.cid-u7KYnSGQqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KYnSGQqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7KYnSGQqy .container {
    padding: 0 22px;
  }
}
.cid-u7KYnSGQqy .content-wrapper {
  padding-bottom: 60%;
}
.cid-u7KYnSGQqy .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7KYnSGQqy .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u7KYnSGQqy .mbr-section-title {
  color: #ffffff;
}
.cid-u7KYnSGQqy .mbr-text {
  color: #ffffff;
}
.cid-u7KYnSTxHL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7KYnSTxHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KYnSTxHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7KYnSTxHL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u7KYnSTxHL .container {
    padding: 0 12px;
  }
}
.cid-u7KYnSTxHL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u7KYnSTxHL .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u7KYnSTxHL .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u7KYnSTxHL .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u7KYnSTxHL .mbr-section-title {
  color: #222222;
}
.cid-u7KYnT6mRn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7KYnT6mRn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KYnT6mRn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KYnT6mRn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7KYnT6mRn .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u7KYnT6mRn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u7KYnT6mRn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u7KYnT6mRn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u7KYnT6mRn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u7KYnT6mRn .carousel-control,
.cid-u7KYnT6mRn .close {
  background: #1b1b1b;
}
.cid-u7KYnT6mRn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u7KYnT6mRn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u7KYnT6mRn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u7KYnT6mRn .carousel-control-next span {
  margin-left: 5px;
}
.cid-u7KYnT6mRn .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u7KYnT6mRn .close::before {
  content: '\e91a';
}
.cid-u7KYnT6mRn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u7KYnT6mRn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u7KYnT6mRn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7KYnT6mRn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7KYnT6mRn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u7KYnT6mRn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u7KYnT6mRn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u7KYnT6mRn .carousel-indicators li.active,
.cid-u7KYnT6mRn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u7KYnT6mRn .carousel-indicators li::after,
.cid-u7KYnT6mRn .carousel-indicators li::before {
  content: none;
}
.cid-u7KYnT6mRn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u7KYnT6mRn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u7KYnT6mRn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u7KYnT6mRn .carousel-indicators {
    display: none;
  }
}
.cid-u7KYnT6mRn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u7KYnT6mRn .carousel-inner > .active {
  display: block;
}
.cid-u7KYnT6mRn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7KYnT6mRn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7KYnT6mRn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u7KYnT6mRn .carousel-control,
  .cid-u7KYnT6mRn .carousel-indicators,
  .cid-u7KYnT6mRn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u7KYnT6mRn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u7KYnT6mRn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u7KYnT6mRn .carousel-indicators .active,
.cid-u7KYnT6mRn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u7KYnT6mRn .carousel-indicators .active {
  background: #fff;
}
.cid-u7KYnT6mRn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u7KYnT6mRn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u7KYnT6mRn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u7KYnT6mRn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u7KYnT6mRn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u7KYnT6mRn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u7KYnT6mRn .carousel {
  width: 100%;
}
.cid-u7KYnT6mRn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u7KYnT6mRn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u7KYnT6mRn .modal.fade .modal-dialog,
.cid-u7KYnT6mRn .modal.in .modal-dialog {
  transform: none;
}
.cid-u7KYnT6mRn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u7KYnT6mRn H6 {
  text-align: center;
}
.cid-u7KYnT6mRn H3 {
  text-align: center;
}
.cid-u7KYnTu6o5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u7KYnTu6o5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KYnTu6o5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KYnTu6o5 .mbr-text,
.cid-u7KYnTu6o5 .mbr-section-btn {
  color: #232323;
}
.cid-u7KYnTu6o5 .card-title,
.cid-u7KYnTu6o5 .card-box {
  color: #ffffff;
}
.cid-u7KYnTu6o5 .mbr-text,
.cid-u7KYnTu6o5 .link-wrap {
  color: #ffffff;
}
.cid-u7KYnTHJ9n {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u7KYnTHJ9n .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u7KYnTHJ9n .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u7KYnTHJ9n .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u7KYnTHJ9n .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u7KYnTHJ9n .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u7KYnTHJ9n .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u7KYnTHJ9n .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u7KYnTHJ9n .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7KYnTHJ9n .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7KYnTHJ9n .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u7KYnTHJ9n .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7KYnTHJ9n .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7KYnTHJ9n .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u7KYnTHJ9n .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u7QOjjgZa5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7QOjjgZa5 nav.navbar {
  position: fixed;
}
.cid-u7QOjjgZa5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7QOjjgZa5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7QOjjgZa5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7QOjjgZa5 .dropdown-item:hover,
.cid-u7QOjjgZa5 .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u7QOjjgZa5 .dropdown-item:hover span {
  color: white;
}
.cid-u7QOjjgZa5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7QOjjgZa5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7QOjjgZa5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7QOjjgZa5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7QOjjgZa5 .nav-link {
  position: relative;
}
.cid-u7QOjjgZa5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7QOjjgZa5 .container {
    flex-wrap: nowrap;
  }
}
.cid-u7QOjjgZa5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7QOjjgZa5 .dropdown-menu,
.cid-u7QOjjgZa5 .navbar.opened {
  background: #ffffff !important;
}
.cid-u7QOjjgZa5 .nav-item:focus,
.cid-u7QOjjgZa5 .nav-link:focus {
  outline: none;
}
.cid-u7QOjjgZa5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7QOjjgZa5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7QOjjgZa5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7QOjjgZa5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7QOjjgZa5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7QOjjgZa5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7QOjjgZa5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7QOjjgZa5 .navbar.opened {
  transition: all 0.3s;
}
.cid-u7QOjjgZa5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7QOjjgZa5 .navbar .navbar-logo img {
  width: auto;
}
.cid-u7QOjjgZa5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7QOjjgZa5 .navbar.collapsed {
  justify-content: center;
}
.cid-u7QOjjgZa5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7QOjjgZa5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7QOjjgZa5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u7QOjjgZa5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7QOjjgZa5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7QOjjgZa5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7QOjjgZa5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7QOjjgZa5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7QOjjgZa5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7QOjjgZa5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7QOjjgZa5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7QOjjgZa5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7QOjjgZa5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7QOjjgZa5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7QOjjgZa5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7QOjjgZa5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7QOjjgZa5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7QOjjgZa5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7QOjjgZa5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7QOjjgZa5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7QOjjgZa5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7QOjjgZa5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7QOjjgZa5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7QOjjgZa5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7QOjjgZa5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7QOjjgZa5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7QOjjgZa5 .dropdown-item.active,
.cid-u7QOjjgZa5 .dropdown-item:active {
  background-color: transparent;
}
.cid-u7QOjjgZa5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7QOjjgZa5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7QOjjgZa5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7QOjjgZa5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7QOjjgZa5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7QOjjgZa5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7QOjjgZa5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7QOjjgZa5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7QOjjgZa5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7QOjjgZa5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7QOjjgZa5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7QOjjgZa5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7QOjjgZa5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7QOjjgZa5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7QOjjgZa5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7QOjjgZa5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7QOjjgZa5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7QOjjgZa5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7QOjjgZa5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7QOjjgZa5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7QOjjgZa5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7QOjjgZa5 .navbar {
    height: 70px;
  }
  .cid-u7QOjjgZa5 .navbar.opened {
    height: auto;
  }
  .cid-u7QOjjgZa5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7QOjjP4g6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-u7QOjjP4g6 img,
.cid-u7QOjjP4g6 .item-img {
  width: 100%;
}
.cid-u7QOjjP4g6 .item:focus,
.cid-u7QOjjP4g6 span:focus {
  outline: none;
}
.cid-u7QOjjP4g6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u7QOjjP4g6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u7QOjjP4g6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u7QOjjP4g6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u7QOjjP4g6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u7QOjjP4g6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u7QOjjP4g6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7QOjjP4g6 .mbr-section-title {
  color: #ffffff;
}
.cid-u7QOjjP4g6 .mbr-text,
.cid-u7QOjjP4g6 .mbr-section-btn {
  text-align: left;
}
.cid-u7QOjjP4g6 .item-title {
  text-align: left;
}
.cid-u7QOjjP4g6 .item-subtitle {
  text-align: left;
}
.cid-u7QOjjP4g6 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u7QOjk6oxP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u7QOjk6oxP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u7QOjk6oxP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u7QOjk6oxP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u7QOjk6oxP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u7QOjk6oxP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u7QOjk6oxP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u7QOjk6oxP .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u7QOjk6oxP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7QOjk6oxP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7QOjk6oxP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u7QOjk6oxP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7QOjk6oxP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7QOjk6oxP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u7QOjk6oxP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u89fs3p4Pb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u89fs3p4Pb nav.navbar {
  position: fixed;
}
.cid-u89fs3p4Pb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u89fs3p4Pb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u89fs3p4Pb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u89fs3p4Pb .dropdown-item:hover,
.cid-u89fs3p4Pb .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u89fs3p4Pb .dropdown-item:hover span {
  color: white;
}
.cid-u89fs3p4Pb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u89fs3p4Pb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u89fs3p4Pb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u89fs3p4Pb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u89fs3p4Pb .nav-link {
  position: relative;
}
.cid-u89fs3p4Pb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u89fs3p4Pb .container {
    flex-wrap: nowrap;
  }
}
.cid-u89fs3p4Pb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u89fs3p4Pb .dropdown-menu,
.cid-u89fs3p4Pb .navbar.opened {
  background: #ffffff !important;
}
.cid-u89fs3p4Pb .nav-item:focus,
.cid-u89fs3p4Pb .nav-link:focus {
  outline: none;
}
.cid-u89fs3p4Pb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u89fs3p4Pb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u89fs3p4Pb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u89fs3p4Pb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u89fs3p4Pb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u89fs3p4Pb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u89fs3p4Pb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u89fs3p4Pb .navbar.opened {
  transition: all 0.3s;
}
.cid-u89fs3p4Pb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u89fs3p4Pb .navbar .navbar-logo img {
  width: auto;
}
.cid-u89fs3p4Pb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u89fs3p4Pb .navbar.collapsed {
  justify-content: center;
}
.cid-u89fs3p4Pb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u89fs3p4Pb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u89fs3p4Pb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u89fs3p4Pb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u89fs3p4Pb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u89fs3p4Pb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u89fs3p4Pb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u89fs3p4Pb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u89fs3p4Pb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u89fs3p4Pb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u89fs3p4Pb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u89fs3p4Pb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u89fs3p4Pb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u89fs3p4Pb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u89fs3p4Pb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u89fs3p4Pb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u89fs3p4Pb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u89fs3p4Pb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u89fs3p4Pb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u89fs3p4Pb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u89fs3p4Pb .navbar.navbar-short {
  min-height: 60px;
}
.cid-u89fs3p4Pb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u89fs3p4Pb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u89fs3p4Pb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u89fs3p4Pb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u89fs3p4Pb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u89fs3p4Pb .dropdown-item.active,
.cid-u89fs3p4Pb .dropdown-item:active {
  background-color: transparent;
}
.cid-u89fs3p4Pb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u89fs3p4Pb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u89fs3p4Pb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u89fs3p4Pb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u89fs3p4Pb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u89fs3p4Pb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u89fs3p4Pb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u89fs3p4Pb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u89fs3p4Pb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u89fs3p4Pb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u89fs3p4Pb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u89fs3p4Pb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u89fs3p4Pb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u89fs3p4Pb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u89fs3p4Pb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u89fs3p4Pb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u89fs3p4Pb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u89fs3p4Pb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u89fs3p4Pb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u89fs3p4Pb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u89fs3p4Pb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u89fs3p4Pb .navbar {
    height: 70px;
  }
  .cid-u89fs3p4Pb .navbar.opened {
    height: auto;
  }
  .cid-u89fs3p4Pb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u89fs3K9Ab {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/t15-flext-strip-3000px.jpg");
}
.cid-u89fs3K9Ab .mbr-fallback-image.disabled {
  display: none;
}
.cid-u89fs3K9Ab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u89fs3K9Ab .container {
    padding: 0 22px;
  }
}
.cid-u89fs3K9Ab .content-wrapper {
  padding-bottom: 60%;
}
.cid-u89fs3K9Ab .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u89fs3K9Ab .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u89fs3K9Ab .mbr-section-title {
  color: #ffffff;
}
.cid-u89fs3K9Ab .mbr-text {
  color: #ffffff;
}
.cid-u8BjLv7YEL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8BjLv7YEL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8BjLv7YEL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u8BjLv7YEL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u8BjLv7YEL .container {
    padding: 0 12px;
  }
}
.cid-u8BjLv7YEL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u8BjLv7YEL .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u8BjLv7YEL .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u8BjLv7YEL .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u8BjLv7YEL .mbr-section-title {
  color: #222222;
}
.cid-u89fs4dt41 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u89fs4dt41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u89fs4dt41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u89fs4dt41 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u89fs4dt41 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u89fs4dt41 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u89fs4dt41 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u89fs4dt41 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u89fs4dt41 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u89fs4dt41 .carousel-control,
.cid-u89fs4dt41 .close {
  background: #1b1b1b;
}
.cid-u89fs4dt41 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u89fs4dt41 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u89fs4dt41 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u89fs4dt41 .carousel-control-next span {
  margin-left: 5px;
}
.cid-u89fs4dt41 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u89fs4dt41 .close::before {
  content: '\e91a';
}
.cid-u89fs4dt41 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u89fs4dt41 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u89fs4dt41 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u89fs4dt41 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u89fs4dt41 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u89fs4dt41 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u89fs4dt41 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u89fs4dt41 .carousel-indicators li.active,
.cid-u89fs4dt41 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u89fs4dt41 .carousel-indicators li::after,
.cid-u89fs4dt41 .carousel-indicators li::before {
  content: none;
}
.cid-u89fs4dt41 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u89fs4dt41 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u89fs4dt41 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u89fs4dt41 .carousel-indicators {
    display: none;
  }
}
.cid-u89fs4dt41 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u89fs4dt41 .carousel-inner > .active {
  display: block;
}
.cid-u89fs4dt41 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u89fs4dt41 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u89fs4dt41 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u89fs4dt41 .carousel-control,
  .cid-u89fs4dt41 .carousel-indicators,
  .cid-u89fs4dt41 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u89fs4dt41 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u89fs4dt41 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u89fs4dt41 .carousel-indicators .active,
.cid-u89fs4dt41 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u89fs4dt41 .carousel-indicators .active {
  background: #fff;
}
.cid-u89fs4dt41 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u89fs4dt41 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u89fs4dt41 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u89fs4dt41 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u89fs4dt41 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u89fs4dt41 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u89fs4dt41 .carousel {
  width: 100%;
}
.cid-u89fs4dt41 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u89fs4dt41 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u89fs4dt41 .modal.fade .modal-dialog,
.cid-u89fs4dt41 .modal.in .modal-dialog {
  transform: none;
}
.cid-u89fs4dt41 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u89fs4dt41 H6 {
  text-align: center;
}
.cid-u89fs4dt41 H3 {
  text-align: center;
}
.cid-u89fs4EwvM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u89fs4EwvM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u89fs4EwvM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u89fs4EwvM .mbr-text,
.cid-u89fs4EwvM .mbr-section-btn {
  color: #232323;
}
.cid-u89fs4EwvM .card-title,
.cid-u89fs4EwvM .card-box {
  color: #ffffff;
}
.cid-u89fs4EwvM .mbr-text,
.cid-u89fs4EwvM .link-wrap {
  color: #ffffff;
}
.cid-u89fs4UPxn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u89fs4UPxn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u89fs4UPxn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u89fs4UPxn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u89fs4UPxn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u89fs4UPxn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u89fs4UPxn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u89fs4UPxn .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u89fs4UPxn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u89fs4UPxn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u89fs4UPxn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u89fs4UPxn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u89fs4UPxn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u89fs4UPxn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u89fs4UPxn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u89fqOw1Oa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u89fqOw1Oa nav.navbar {
  position: fixed;
}
.cid-u89fqOw1Oa .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u89fqOw1Oa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u89fqOw1Oa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u89fqOw1Oa .dropdown-item:hover,
.cid-u89fqOw1Oa .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u89fqOw1Oa .dropdown-item:hover span {
  color: white;
}
.cid-u89fqOw1Oa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u89fqOw1Oa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u89fqOw1Oa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u89fqOw1Oa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u89fqOw1Oa .nav-link {
  position: relative;
}
.cid-u89fqOw1Oa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u89fqOw1Oa .container {
    flex-wrap: nowrap;
  }
}
.cid-u89fqOw1Oa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u89fqOw1Oa .dropdown-menu,
.cid-u89fqOw1Oa .navbar.opened {
  background: #ffffff !important;
}
.cid-u89fqOw1Oa .nav-item:focus,
.cid-u89fqOw1Oa .nav-link:focus {
  outline: none;
}
.cid-u89fqOw1Oa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u89fqOw1Oa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u89fqOw1Oa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u89fqOw1Oa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u89fqOw1Oa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u89fqOw1Oa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u89fqOw1Oa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u89fqOw1Oa .navbar.opened {
  transition: all 0.3s;
}
.cid-u89fqOw1Oa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u89fqOw1Oa .navbar .navbar-logo img {
  width: auto;
}
.cid-u89fqOw1Oa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u89fqOw1Oa .navbar.collapsed {
  justify-content: center;
}
.cid-u89fqOw1Oa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u89fqOw1Oa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u89fqOw1Oa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u89fqOw1Oa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u89fqOw1Oa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u89fqOw1Oa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u89fqOw1Oa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u89fqOw1Oa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u89fqOw1Oa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u89fqOw1Oa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u89fqOw1Oa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u89fqOw1Oa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u89fqOw1Oa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u89fqOw1Oa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u89fqOw1Oa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u89fqOw1Oa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u89fqOw1Oa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u89fqOw1Oa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u89fqOw1Oa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u89fqOw1Oa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u89fqOw1Oa .navbar.navbar-short {
  min-height: 60px;
}
.cid-u89fqOw1Oa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u89fqOw1Oa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u89fqOw1Oa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u89fqOw1Oa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u89fqOw1Oa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u89fqOw1Oa .dropdown-item.active,
.cid-u89fqOw1Oa .dropdown-item:active {
  background-color: transparent;
}
.cid-u89fqOw1Oa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u89fqOw1Oa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u89fqOw1Oa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u89fqOw1Oa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u89fqOw1Oa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u89fqOw1Oa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u89fqOw1Oa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u89fqOw1Oa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u89fqOw1Oa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u89fqOw1Oa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u89fqOw1Oa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u89fqOw1Oa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u89fqOw1Oa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u89fqOw1Oa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u89fqOw1Oa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u89fqOw1Oa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u89fqOw1Oa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u89fqOw1Oa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u89fqOw1Oa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u89fqOw1Oa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u89fqOw1Oa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u89fqOw1Oa .navbar {
    height: 70px;
  }
  .cid-u89fqOw1Oa .navbar.opened {
    height: auto;
  }
  .cid-u89fqOw1Oa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u89fqOSpra {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/t17-strip-3000px.jpg");
}
.cid-u89fqOSpra .mbr-fallback-image.disabled {
  display: none;
}
.cid-u89fqOSpra .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u89fqOSpra .container {
    padding: 0 22px;
  }
}
.cid-u89fqOSpra .content-wrapper {
  padding-bottom: 60%;
}
.cid-u89fqOSpra .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u89fqOSpra .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u89fqOSpra .mbr-section-title {
  color: #ffffff;
}
.cid-u89fqOSpra .mbr-text {
  color: #ffffff;
}
.cid-u8Bkhaabzq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8Bkhaabzq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Bkhaabzq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u8Bkhaabzq .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u8Bkhaabzq .container {
    padding: 0 12px;
  }
}
.cid-u8Bkhaabzq .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u8Bkhaabzq .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u8Bkhaabzq .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u8Bkhaabzq .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u8Bkhaabzq .mbr-section-title {
  color: #222222;
}
.cid-u89fqPp2U9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u89fqPp2U9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u89fqPp2U9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u89fqPp2U9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u89fqPp2U9 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u89fqPp2U9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u89fqPp2U9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u89fqPp2U9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u89fqPp2U9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u89fqPp2U9 .carousel-control,
.cid-u89fqPp2U9 .close {
  background: #1b1b1b;
}
.cid-u89fqPp2U9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u89fqPp2U9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u89fqPp2U9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u89fqPp2U9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-u89fqPp2U9 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u89fqPp2U9 .close::before {
  content: '\e91a';
}
.cid-u89fqPp2U9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u89fqPp2U9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u89fqPp2U9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u89fqPp2U9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u89fqPp2U9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u89fqPp2U9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u89fqPp2U9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u89fqPp2U9 .carousel-indicators li.active,
.cid-u89fqPp2U9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u89fqPp2U9 .carousel-indicators li::after,
.cid-u89fqPp2U9 .carousel-indicators li::before {
  content: none;
}
.cid-u89fqPp2U9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u89fqPp2U9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u89fqPp2U9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u89fqPp2U9 .carousel-indicators {
    display: none;
  }
}
.cid-u89fqPp2U9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u89fqPp2U9 .carousel-inner > .active {
  display: block;
}
.cid-u89fqPp2U9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u89fqPp2U9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u89fqPp2U9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u89fqPp2U9 .carousel-control,
  .cid-u89fqPp2U9 .carousel-indicators,
  .cid-u89fqPp2U9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u89fqPp2U9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u89fqPp2U9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u89fqPp2U9 .carousel-indicators .active,
.cid-u89fqPp2U9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u89fqPp2U9 .carousel-indicators .active {
  background: #fff;
}
.cid-u89fqPp2U9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u89fqPp2U9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u89fqPp2U9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u89fqPp2U9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u89fqPp2U9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u89fqPp2U9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u89fqPp2U9 .carousel {
  width: 100%;
}
.cid-u89fqPp2U9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u89fqPp2U9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u89fqPp2U9 .modal.fade .modal-dialog,
.cid-u89fqPp2U9 .modal.in .modal-dialog {
  transform: none;
}
.cid-u89fqPp2U9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u89fqPp2U9 H6 {
  text-align: center;
}
.cid-u89fqPp2U9 H3 {
  text-align: center;
}
.cid-u89fqPONN1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u89fqPONN1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u89fqPONN1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u89fqPONN1 .mbr-text,
.cid-u89fqPONN1 .mbr-section-btn {
  color: #232323;
}
.cid-u89fqPONN1 .card-title,
.cid-u89fqPONN1 .card-box {
  color: #ffffff;
}
.cid-u89fqPONN1 .mbr-text,
.cid-u89fqPONN1 .link-wrap {
  color: #ffffff;
}
.cid-u89fqQ7An4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u89fqQ7An4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u89fqQ7An4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u89fqQ7An4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u89fqQ7An4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u89fqQ7An4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u89fqQ7An4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u89fqQ7An4 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u89fqQ7An4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u89fqQ7An4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u89fqQ7An4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u89fqQ7An4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u89fqQ7An4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u89fqQ7An4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u89fqQ7An4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u81peFURpx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u81peFURpx nav.navbar {
  position: fixed;
}
.cid-u81peFURpx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u81peFURpx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u81peFURpx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u81peFURpx .dropdown-item:hover,
.cid-u81peFURpx .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u81peFURpx .dropdown-item:hover span {
  color: white;
}
.cid-u81peFURpx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u81peFURpx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u81peFURpx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u81peFURpx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u81peFURpx .nav-link {
  position: relative;
}
.cid-u81peFURpx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u81peFURpx .container {
    flex-wrap: nowrap;
  }
}
.cid-u81peFURpx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u81peFURpx .dropdown-menu,
.cid-u81peFURpx .navbar.opened {
  background: #ffffff !important;
}
.cid-u81peFURpx .nav-item:focus,
.cid-u81peFURpx .nav-link:focus {
  outline: none;
}
.cid-u81peFURpx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u81peFURpx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u81peFURpx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u81peFURpx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u81peFURpx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u81peFURpx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u81peFURpx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u81peFURpx .navbar.opened {
  transition: all 0.3s;
}
.cid-u81peFURpx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u81peFURpx .navbar .navbar-logo img {
  width: auto;
}
.cid-u81peFURpx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u81peFURpx .navbar.collapsed {
  justify-content: center;
}
.cid-u81peFURpx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u81peFURpx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u81peFURpx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u81peFURpx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u81peFURpx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u81peFURpx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u81peFURpx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u81peFURpx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u81peFURpx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u81peFURpx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u81peFURpx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u81peFURpx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u81peFURpx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u81peFURpx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u81peFURpx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u81peFURpx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u81peFURpx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u81peFURpx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u81peFURpx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u81peFURpx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u81peFURpx .navbar.navbar-short {
  min-height: 60px;
}
.cid-u81peFURpx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u81peFURpx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u81peFURpx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u81peFURpx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u81peFURpx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u81peFURpx .dropdown-item.active,
.cid-u81peFURpx .dropdown-item:active {
  background-color: transparent;
}
.cid-u81peFURpx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u81peFURpx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u81peFURpx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u81peFURpx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u81peFURpx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u81peFURpx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u81peFURpx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u81peFURpx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u81peFURpx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u81peFURpx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u81peFURpx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u81peFURpx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u81peFURpx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u81peFURpx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u81peFURpx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u81peFURpx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u81peFURpx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u81peFURpx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u81peFURpx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u81peFURpx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u81peFURpx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u81peFURpx .navbar {
    height: 70px;
  }
  .cid-u81peFURpx .navbar.opened {
    height: auto;
  }
  .cid-u81peFURpx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u81peGg5eB {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/btc5.jpg");
}
.cid-u81peGg5eB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81peGg5eB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYmVJ4Fe4H {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uYmVJ4Fe4H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYmVJ4Fe4H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYmVJ4Fe4H .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYmVJ4Fe4H .row {
  flex-direction: row-reverse;
}
.cid-uYmVJ4Fe4H img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYmVJ4Fe4H .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYmVJ4Fe4H .mbr-text {
  color: #ffffff;
}
.cid-uYmVJ4Fe4H .mbr-section-title {
  color: #ffffff;
}
.cid-uYmVJ4Fe4H .mbr-description {
  color: #e43f3f;
}
.cid-u81r9f2JlC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u81r9f2JlC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81r9f2JlC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u81r9f2JlC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u81r9f2JlC .row {
  flex-direction: row-reverse;
}
.cid-u81r9f2JlC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u81r9f2JlC .text-wrapper {
    padding: 2rem;
  }
}
.cid-u81r9f2JlC .mbr-text {
  color: #ffffff;
}
.cid-u81r9f2JlC .mbr-section-title {
  color: #ffffff;
}
.cid-u81r9f2JlC .mbr-description {
  color: #e43f3f;
}
.cid-u9mpzHOQPq {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-u9mpzHOQPq .item-subtitle a {
  color: #bbbbbb;
  font-weight: 600;
}
.cid-u9mpzHOQPq .item-title,
.cid-u9mpzHOQPq .item-subtitle {
  transition: all 0.3s;
}
.cid-u9mpzHOQPq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u9mpzHOQPq .item:hover img {
  transform: scale(1.05);
}
.cid-u9mpzHOQPq .item-img {
  overflow: hidden;
}
.cid-u9mpzHOQPq img,
.cid-u9mpzHOQPq .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u9mpzHOQPq h5 {
  margin: 0;
}
.cid-u9mpzHOQPq .item:focus,
.cid-u9mpzHOQPq span:focus {
  outline: none;
}
.cid-u9mpzHOQPq .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u9mpzHOQPq .item-content {
  padding-top: 2rem;
}
.cid-u9mpzHOQPq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u9mpzHOQPq .item-title {
  color: #bbbbbb;
}
.cid-u9mpzHOQPq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u9mpzHOQPq .mbr-text,
.cid-u9mpzHOQPq .mbr-section-btn {
  color: #ffffff;
}
.cid-u9mpzHOQPq .item-subtitle {
  color: #ffffff;
}
.cid-u9D4df50NF {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u9D4df50NF .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-u9D4df50NF .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-u9D4df50NF .mbr-section-title {
  color: #ffffff;
}
.cid-u9D4df50NF .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-u9D4df50NF .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-u9D4df50NF .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-u9D4df50NF form {
  width: 100%;
}
.cid-u9D4df50NF form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-u9D4df50NF form p {
  color: #f6f6ef;
}
.cid-u9D4df50NF form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-u9D4df50NF form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-u9D4df50NF form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-u9D4df50NF form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-u9D4df50NF form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form select {
  color: #bbbbbb !important;
}
.cid-u9D4df50NF form textarea {
  height: 200px !important;
  resize: none;
}
.cid-u9D4df50NF form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D4df50NF form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D4df50NF form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D4df50NF form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D4df50NF form input,
.cid-u9D4df50NF form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-u9D4df50NF form input:active,
.cid-u9D4df50NF form textarea:active,
.cid-u9D4df50NF form input:focus,
.cid-u9D4df50NF form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-u9D4df50NF form input:active::-webkit-input-placeholder,
.cid-u9D4df50NF form textarea:active::-webkit-input-placeholder,
.cid-u9D4df50NF form input:focus::-webkit-input-placeholder,
.cid-u9D4df50NF form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form input:active::-moz-placeholder,
.cid-u9D4df50NF form textarea:active::-moz-placeholder,
.cid-u9D4df50NF form input:focus::-moz-placeholder,
.cid-u9D4df50NF form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form input:active:-moz-placeholder,
.cid-u9D4df50NF form textarea:active:-moz-placeholder,
.cid-u9D4df50NF form input:focus:-moz-placeholder,
.cid-u9D4df50NF form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form input:active:-ms-input-placeholder,
.cid-u9D4df50NF form textarea:active:-ms-input-placeholder,
.cid-u9D4df50NF form input:focus:-ms-input-placeholder,
.cid-u9D4df50NF form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D4df50NF form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-u9D4df50NF form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-u9D4df50NF form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-u9D4df50NF form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-u9D4df50NF form .form-check-input:focus,
.cid-u9D4df50NF form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-u9D4df50NF form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-u81peHcuiy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u81peHcuiy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u81peHcuiy .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u81peHcuiy .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u81peHcuiy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u81peHcuiy .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u81peHcuiy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u81peHcuiy .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u81peHcuiy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u81peHcuiy .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u81peHcuiy .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u81peHcuiy .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u81peHcuiy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u81peHcuiy .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u81peHcuiy .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u7QQradJDg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7QQradJDg nav.navbar {
  position: fixed;
}
.cid-u7QQradJDg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7QQradJDg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u7QQradJDg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7QQradJDg .dropdown-item:hover,
.cid-u7QQradJDg .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u7QQradJDg .dropdown-item:hover span {
  color: white;
}
.cid-u7QQradJDg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7QQradJDg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7QQradJDg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7QQradJDg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7QQradJDg .nav-link {
  position: relative;
}
.cid-u7QQradJDg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7QQradJDg .container {
    flex-wrap: nowrap;
  }
}
.cid-u7QQradJDg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7QQradJDg .dropdown-menu,
.cid-u7QQradJDg .navbar.opened {
  background: #ffffff !important;
}
.cid-u7QQradJDg .nav-item:focus,
.cid-u7QQradJDg .nav-link:focus {
  outline: none;
}
.cid-u7QQradJDg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7QQradJDg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7QQradJDg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7QQradJDg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7QQradJDg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7QQradJDg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7QQradJDg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7QQradJDg .navbar.opened {
  transition: all 0.3s;
}
.cid-u7QQradJDg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7QQradJDg .navbar .navbar-logo img {
  width: auto;
}
.cid-u7QQradJDg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7QQradJDg .navbar.collapsed {
  justify-content: center;
}
.cid-u7QQradJDg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7QQradJDg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7QQradJDg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u7QQradJDg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7QQradJDg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7QQradJDg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7QQradJDg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7QQradJDg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7QQradJDg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7QQradJDg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7QQradJDg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7QQradJDg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7QQradJDg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7QQradJDg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7QQradJDg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7QQradJDg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7QQradJDg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7QQradJDg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7QQradJDg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7QQradJDg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7QQradJDg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7QQradJDg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7QQradJDg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7QQradJDg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7QQradJDg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7QQradJDg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7QQradJDg .dropdown-item.active,
.cid-u7QQradJDg .dropdown-item:active {
  background-color: transparent;
}
.cid-u7QQradJDg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7QQradJDg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7QQradJDg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7QQradJDg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7QQradJDg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7QQradJDg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7QQradJDg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7QQradJDg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7QQradJDg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7QQradJDg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7QQradJDg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7QQradJDg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7QQradJDg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7QQradJDg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7QQradJDg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7QQradJDg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7QQradJDg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7QQradJDg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7QQradJDg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7QQradJDg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7QQradJDg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7QQradJDg .navbar {
    height: 70px;
  }
  .cid-u7QQradJDg .navbar.opened {
    height: auto;
  }
  .cid-u7QQradJDg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7QQraKoGW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/salt-spreader-strip-3000px.jpg");
}
.cid-u7QQraKoGW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7QQraKoGW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7QQraKoGW .container {
    padding: 0 22px;
  }
}
.cid-u7QQraKoGW .content-wrapper {
  padding-bottom: 60%;
}
.cid-u7QQraKoGW .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7QQraKoGW .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u7QQraKoGW .mbr-section-title {
  color: #ffffff;
}
.cid-u7QQraKoGW .mbr-text {
  color: #ffffff;
}
.cid-u8Bj0X86cb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8Bj0X86cb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Bj0X86cb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u8Bj0X86cb .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u8Bj0X86cb .container {
    padding: 0 12px;
  }
}
.cid-u8Bj0X86cb .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u8Bj0X86cb .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u8Bj0X86cb .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u8Bj0X86cb .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u8Bj0X86cb .mbr-section-title {
  color: #222222;
}
.cid-u7QQrbhLPK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7QQrbhLPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7QQrbhLPK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7QQrbhLPK .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7QQrbhLPK .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u7QQrbhLPK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u7QQrbhLPK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u7QQrbhLPK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u7QQrbhLPK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u7QQrbhLPK .carousel-control,
.cid-u7QQrbhLPK .close {
  background: #1b1b1b;
}
.cid-u7QQrbhLPK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u7QQrbhLPK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u7QQrbhLPK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u7QQrbhLPK .carousel-control-next span {
  margin-left: 5px;
}
.cid-u7QQrbhLPK .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u7QQrbhLPK .close::before {
  content: '\e91a';
}
.cid-u7QQrbhLPK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u7QQrbhLPK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u7QQrbhLPK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7QQrbhLPK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7QQrbhLPK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u7QQrbhLPK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u7QQrbhLPK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u7QQrbhLPK .carousel-indicators li.active,
.cid-u7QQrbhLPK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u7QQrbhLPK .carousel-indicators li::after,
.cid-u7QQrbhLPK .carousel-indicators li::before {
  content: none;
}
.cid-u7QQrbhLPK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u7QQrbhLPK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u7QQrbhLPK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u7QQrbhLPK .carousel-indicators {
    display: none;
  }
}
.cid-u7QQrbhLPK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u7QQrbhLPK .carousel-inner > .active {
  display: block;
}
.cid-u7QQrbhLPK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7QQrbhLPK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7QQrbhLPK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u7QQrbhLPK .carousel-control,
  .cid-u7QQrbhLPK .carousel-indicators,
  .cid-u7QQrbhLPK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u7QQrbhLPK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u7QQrbhLPK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u7QQrbhLPK .carousel-indicators .active,
.cid-u7QQrbhLPK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u7QQrbhLPK .carousel-indicators .active {
  background: #fff;
}
.cid-u7QQrbhLPK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u7QQrbhLPK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u7QQrbhLPK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u7QQrbhLPK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u7QQrbhLPK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u7QQrbhLPK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u7QQrbhLPK .carousel {
  width: 100%;
}
.cid-u7QQrbhLPK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u7QQrbhLPK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u7QQrbhLPK .modal.fade .modal-dialog,
.cid-u7QQrbhLPK .modal.in .modal-dialog {
  transform: none;
}
.cid-u7QQrbhLPK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u7QQrbhLPK H6 {
  text-align: center;
}
.cid-u7QQrbhLPK H3 {
  text-align: center;
}
.cid-u7QQrc30lm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u7QQrc30lm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7QQrc30lm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7QQrc30lm .mbr-text,
.cid-u7QQrc30lm .mbr-section-btn {
  color: #232323;
}
.cid-u7QQrc30lm .card-title,
.cid-u7QQrc30lm .card-box {
  color: #ffffff;
}
.cid-u7QQrc30lm .mbr-text,
.cid-u7QQrc30lm .link-wrap {
  color: #ffffff;
}
.cid-u7QQrcjD4Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u7QQrcjD4Q .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u7QQrcjD4Q .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u7QQrcjD4Q .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u7QQrcjD4Q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u7QQrcjD4Q .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u7QQrcjD4Q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u7QQrcjD4Q .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u7QQrcjD4Q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7QQrcjD4Q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7QQrcjD4Q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u7QQrcjD4Q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7QQrcjD4Q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7QQrcjD4Q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u7QQrcjD4Q .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u9lDU5pGDe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u9lDU5pGDe nav.navbar {
  position: fixed;
}
.cid-u9lDU5pGDe .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9lDU5pGDe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9lDU5pGDe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9lDU5pGDe .dropdown-item:hover,
.cid-u9lDU5pGDe .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u9lDU5pGDe .dropdown-item:hover span {
  color: white;
}
.cid-u9lDU5pGDe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9lDU5pGDe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9lDU5pGDe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9lDU5pGDe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9lDU5pGDe .nav-link {
  position: relative;
}
.cid-u9lDU5pGDe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9lDU5pGDe .container {
    flex-wrap: nowrap;
  }
}
.cid-u9lDU5pGDe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9lDU5pGDe .dropdown-menu,
.cid-u9lDU5pGDe .navbar.opened {
  background: #ffffff !important;
}
.cid-u9lDU5pGDe .nav-item:focus,
.cid-u9lDU5pGDe .nav-link:focus {
  outline: none;
}
.cid-u9lDU5pGDe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9lDU5pGDe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9lDU5pGDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9lDU5pGDe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9lDU5pGDe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9lDU5pGDe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9lDU5pGDe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9lDU5pGDe .navbar.opened {
  transition: all 0.3s;
}
.cid-u9lDU5pGDe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9lDU5pGDe .navbar .navbar-logo img {
  width: auto;
}
.cid-u9lDU5pGDe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9lDU5pGDe .navbar.collapsed {
  justify-content: center;
}
.cid-u9lDU5pGDe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9lDU5pGDe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9lDU5pGDe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u9lDU5pGDe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9lDU5pGDe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9lDU5pGDe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u9lDU5pGDe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9lDU5pGDe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9lDU5pGDe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9lDU5pGDe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9lDU5pGDe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9lDU5pGDe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9lDU5pGDe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9lDU5pGDe .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u9lDU5pGDe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9lDU5pGDe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9lDU5pGDe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9lDU5pGDe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9lDU5pGDe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9lDU5pGDe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u9lDU5pGDe .navbar.navbar-short {
  min-height: 60px;
}
.cid-u9lDU5pGDe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9lDU5pGDe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9lDU5pGDe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9lDU5pGDe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9lDU5pGDe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9lDU5pGDe .dropdown-item.active,
.cid-u9lDU5pGDe .dropdown-item:active {
  background-color: transparent;
}
.cid-u9lDU5pGDe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9lDU5pGDe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9lDU5pGDe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9lDU5pGDe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9lDU5pGDe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9lDU5pGDe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9lDU5pGDe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9lDU5pGDe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9lDU5pGDe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9lDU5pGDe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9lDU5pGDe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9lDU5pGDe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9lDU5pGDe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9lDU5pGDe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9lDU5pGDe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9lDU5pGDe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9lDU5pGDe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9lDU5pGDe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9lDU5pGDe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9lDU5pGDe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9lDU5pGDe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9lDU5pGDe .navbar {
    height: 70px;
  }
  .cid-u9lDU5pGDe .navbar.opened {
    height: auto;
  }
  .cid-u9lDU5pGDe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9lDU5IlBR {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-u9lDU5IlBR img,
.cid-u9lDU5IlBR .item-img {
  width: 100%;
}
.cid-u9lDU5IlBR .item:focus,
.cid-u9lDU5IlBR span:focus {
  outline: none;
}
.cid-u9lDU5IlBR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u9lDU5IlBR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u9lDU5IlBR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u9lDU5IlBR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u9lDU5IlBR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u9lDU5IlBR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u9lDU5IlBR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u9lDU5IlBR .mbr-section-title {
  color: #ffffff;
}
.cid-u9lDU5IlBR .mbr-text,
.cid-u9lDU5IlBR .mbr-section-btn {
  text-align: left;
}
.cid-u9lDU5IlBR .item-title {
  text-align: left;
}
.cid-u9lDU5IlBR .item-subtitle {
  text-align: left;
}
.cid-u9lDU5IlBR .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u9lDU5XpyK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u9lDU5XpyK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u9lDU5XpyK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u9lDU5XpyK .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u9lDU5XpyK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u9lDU5XpyK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u9lDU5XpyK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u9lDU5XpyK .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u9lDU5XpyK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u9lDU5XpyK .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u9lDU5XpyK .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u9lDU5XpyK .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u9lDU5XpyK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u9lDU5XpyK .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u9lDU5XpyK .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u9lJKSTJYM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u9lJKSTJYM nav.navbar {
  position: fixed;
}
.cid-u9lJKSTJYM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9lJKSTJYM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9lJKSTJYM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9lJKSTJYM .dropdown-item:hover,
.cid-u9lJKSTJYM .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u9lJKSTJYM .dropdown-item:hover span {
  color: white;
}
.cid-u9lJKSTJYM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9lJKSTJYM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9lJKSTJYM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9lJKSTJYM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9lJKSTJYM .nav-link {
  position: relative;
}
.cid-u9lJKSTJYM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9lJKSTJYM .container {
    flex-wrap: nowrap;
  }
}
.cid-u9lJKSTJYM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9lJKSTJYM .dropdown-menu,
.cid-u9lJKSTJYM .navbar.opened {
  background: #ffffff !important;
}
.cid-u9lJKSTJYM .nav-item:focus,
.cid-u9lJKSTJYM .nav-link:focus {
  outline: none;
}
.cid-u9lJKSTJYM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9lJKSTJYM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9lJKSTJYM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9lJKSTJYM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9lJKSTJYM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9lJKSTJYM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9lJKSTJYM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9lJKSTJYM .navbar.opened {
  transition: all 0.3s;
}
.cid-u9lJKSTJYM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9lJKSTJYM .navbar .navbar-logo img {
  width: auto;
}
.cid-u9lJKSTJYM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9lJKSTJYM .navbar.collapsed {
  justify-content: center;
}
.cid-u9lJKSTJYM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9lJKSTJYM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9lJKSTJYM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u9lJKSTJYM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9lJKSTJYM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9lJKSTJYM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u9lJKSTJYM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9lJKSTJYM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9lJKSTJYM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9lJKSTJYM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9lJKSTJYM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9lJKSTJYM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9lJKSTJYM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9lJKSTJYM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u9lJKSTJYM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9lJKSTJYM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9lJKSTJYM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9lJKSTJYM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9lJKSTJYM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9lJKSTJYM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u9lJKSTJYM .navbar.navbar-short {
  min-height: 60px;
}
.cid-u9lJKSTJYM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9lJKSTJYM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9lJKSTJYM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9lJKSTJYM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9lJKSTJYM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9lJKSTJYM .dropdown-item.active,
.cid-u9lJKSTJYM .dropdown-item:active {
  background-color: transparent;
}
.cid-u9lJKSTJYM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9lJKSTJYM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9lJKSTJYM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9lJKSTJYM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9lJKSTJYM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9lJKSTJYM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9lJKSTJYM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9lJKSTJYM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9lJKSTJYM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9lJKSTJYM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9lJKSTJYM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9lJKSTJYM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9lJKSTJYM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9lJKSTJYM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9lJKSTJYM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9lJKSTJYM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9lJKSTJYM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9lJKSTJYM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9lJKSTJYM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9lJKSTJYM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9lJKSTJYM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9lJKSTJYM .navbar {
    height: 70px;
  }
  .cid-u9lJKSTJYM .navbar.opened {
    height: auto;
  }
  .cid-u9lJKSTJYM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9lJKTdKQu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/weed-star-strip-2000px..jpg");
}
.cid-u9lJKTdKQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9lJKTdKQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u9lJKTdKQu .container {
    padding: 0 22px;
  }
}
.cid-u9lJKTdKQu .content-wrapper {
  padding-bottom: 60%;
}
.cid-u9lJKTdKQu .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u9lJKTdKQu .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u9lJKTdKQu .mbr-section-title {
  color: #ffffff;
}
.cid-u9lJKTdKQu .mbr-text {
  color: #ffffff;
}
.cid-u9lJKTrUjE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9lJKTrUjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9lJKTrUjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u9lJKTrUjE .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u9lJKTrUjE .container {
    padding: 0 12px;
  }
}
.cid-u9lJKTrUjE .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u9lJKTrUjE .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-u9lJKTrUjE .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-u9lJKTrUjE .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #3c8324;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-u9lJKTrUjE .mbr-section-title {
  color: #222222;
}
.cid-u9lJKTEwz7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9lJKTEwz7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9lJKTEwz7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9lJKTEwz7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u9lJKTEwz7 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u9lJKTEwz7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u9lJKTEwz7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u9lJKTEwz7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u9lJKTEwz7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u9lJKTEwz7 .carousel-control,
.cid-u9lJKTEwz7 .close {
  background: #1b1b1b;
}
.cid-u9lJKTEwz7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u9lJKTEwz7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u9lJKTEwz7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u9lJKTEwz7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-u9lJKTEwz7 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9lJKTEwz7 .close::before {
  content: '\e91a';
}
.cid-u9lJKTEwz7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9lJKTEwz7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u9lJKTEwz7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9lJKTEwz7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u9lJKTEwz7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u9lJKTEwz7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u9lJKTEwz7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u9lJKTEwz7 .carousel-indicators li.active,
.cid-u9lJKTEwz7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u9lJKTEwz7 .carousel-indicators li::after,
.cid-u9lJKTEwz7 .carousel-indicators li::before {
  content: none;
}
.cid-u9lJKTEwz7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u9lJKTEwz7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u9lJKTEwz7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u9lJKTEwz7 .carousel-indicators {
    display: none;
  }
}
.cid-u9lJKTEwz7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u9lJKTEwz7 .carousel-inner > .active {
  display: block;
}
.cid-u9lJKTEwz7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9lJKTEwz7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u9lJKTEwz7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u9lJKTEwz7 .carousel-control,
  .cid-u9lJKTEwz7 .carousel-indicators,
  .cid-u9lJKTEwz7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u9lJKTEwz7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u9lJKTEwz7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u9lJKTEwz7 .carousel-indicators .active,
.cid-u9lJKTEwz7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u9lJKTEwz7 .carousel-indicators .active {
  background: #fff;
}
.cid-u9lJKTEwz7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u9lJKTEwz7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u9lJKTEwz7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u9lJKTEwz7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u9lJKTEwz7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u9lJKTEwz7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u9lJKTEwz7 .carousel {
  width: 100%;
}
.cid-u9lJKTEwz7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u9lJKTEwz7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u9lJKTEwz7 .modal.fade .modal-dialog,
.cid-u9lJKTEwz7 .modal.in .modal-dialog {
  transform: none;
}
.cid-u9lJKTEwz7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u9lJKTEwz7 H6 {
  text-align: center;
}
.cid-u9lJKTEwz7 H3 {
  text-align: center;
}
.cid-u9lJKU17cP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rapeseed-field-2.jpg");
}
.cid-u9lJKU17cP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9lJKU17cP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9lJKU17cP .mbr-text,
.cid-u9lJKU17cP .mbr-section-btn {
  color: #232323;
}
.cid-u9lJKU17cP .card-title,
.cid-u9lJKU17cP .card-box {
  color: #ffffff;
}
.cid-u9lJKU17cP .mbr-text,
.cid-u9lJKU17cP .link-wrap {
  color: #ffffff;
}
.cid-u9lJKUgPEh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u9lJKUgPEh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u9lJKUgPEh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u9lJKUgPEh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u9lJKUgPEh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u9lJKUgPEh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u9lJKUgPEh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u9lJKUgPEh .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u9lJKUgPEh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u9lJKUgPEh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u9lJKUgPEh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u9lJKUgPEh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u9lJKUgPEh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u9lJKUgPEh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u9lJKUgPEh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u9wRtz3UkD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u9wRtz3UkD nav.navbar {
  position: fixed;
}
.cid-u9wRtz3UkD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9wRtz3UkD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9wRtz3UkD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9wRtz3UkD .dropdown-item:hover,
.cid-u9wRtz3UkD .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-u9wRtz3UkD .dropdown-item:hover span {
  color: white;
}
.cid-u9wRtz3UkD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9wRtz3UkD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9wRtz3UkD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9wRtz3UkD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9wRtz3UkD .nav-link {
  position: relative;
}
.cid-u9wRtz3UkD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9wRtz3UkD .container {
    flex-wrap: nowrap;
  }
}
.cid-u9wRtz3UkD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9wRtz3UkD .dropdown-menu,
.cid-u9wRtz3UkD .navbar.opened {
  background: #ffffff !important;
}
.cid-u9wRtz3UkD .nav-item:focus,
.cid-u9wRtz3UkD .nav-link:focus {
  outline: none;
}
.cid-u9wRtz3UkD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9wRtz3UkD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9wRtz3UkD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9wRtz3UkD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9wRtz3UkD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9wRtz3UkD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9wRtz3UkD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9wRtz3UkD .navbar.opened {
  transition: all 0.3s;
}
.cid-u9wRtz3UkD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9wRtz3UkD .navbar .navbar-logo img {
  width: auto;
}
.cid-u9wRtz3UkD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9wRtz3UkD .navbar.collapsed {
  justify-content: center;
}
.cid-u9wRtz3UkD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9wRtz3UkD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9wRtz3UkD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u9wRtz3UkD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9wRtz3UkD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9wRtz3UkD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u9wRtz3UkD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9wRtz3UkD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9wRtz3UkD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9wRtz3UkD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9wRtz3UkD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9wRtz3UkD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9wRtz3UkD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9wRtz3UkD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u9wRtz3UkD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9wRtz3UkD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9wRtz3UkD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9wRtz3UkD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9wRtz3UkD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9wRtz3UkD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u9wRtz3UkD .navbar.navbar-short {
  min-height: 60px;
}
.cid-u9wRtz3UkD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u9wRtz3UkD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9wRtz3UkD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9wRtz3UkD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9wRtz3UkD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9wRtz3UkD .dropdown-item.active,
.cid-u9wRtz3UkD .dropdown-item:active {
  background-color: transparent;
}
.cid-u9wRtz3UkD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9wRtz3UkD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9wRtz3UkD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9wRtz3UkD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9wRtz3UkD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9wRtz3UkD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9wRtz3UkD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9wRtz3UkD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9wRtz3UkD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9wRtz3UkD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9wRtz3UkD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9wRtz3UkD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9wRtz3UkD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9wRtz3UkD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9wRtz3UkD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9wRtz3UkD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9wRtz3UkD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9wRtz3UkD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9wRtz3UkD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9wRtz3UkD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9wRtz3UkD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9wRtz3UkD .navbar {
    height: 70px;
  }
  .cid-u9wRtz3UkD .navbar.opened {
    height: auto;
  }
  .cid-u9wRtz3UkD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9wRSKg3L4 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9D46M92MS {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u9D46M92MS .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-u9D46M92MS .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-u9D46M92MS .mbr-section-title {
  color: #ffffff;
}
.cid-u9D46M92MS .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-u9D46M92MS .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-u9D46M92MS .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-u9D46M92MS form {
  width: 100%;
}
.cid-u9D46M92MS form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-u9D46M92MS form p {
  color: #f6f6ef;
}
.cid-u9D46M92MS form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-u9D46M92MS form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-u9D46M92MS form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-u9D46M92MS form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-u9D46M92MS form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form select {
  color: #bbbbbb !important;
}
.cid-u9D46M92MS form textarea {
  height: 200px !important;
  resize: none;
}
.cid-u9D46M92MS form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D46M92MS form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D46M92MS form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D46M92MS form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-u9D46M92MS form input,
.cid-u9D46M92MS form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-u9D46M92MS form input:active,
.cid-u9D46M92MS form textarea:active,
.cid-u9D46M92MS form input:focus,
.cid-u9D46M92MS form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-u9D46M92MS form input:active::-webkit-input-placeholder,
.cid-u9D46M92MS form textarea:active::-webkit-input-placeholder,
.cid-u9D46M92MS form input:focus::-webkit-input-placeholder,
.cid-u9D46M92MS form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form input:active::-moz-placeholder,
.cid-u9D46M92MS form textarea:active::-moz-placeholder,
.cid-u9D46M92MS form input:focus::-moz-placeholder,
.cid-u9D46M92MS form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form input:active:-moz-placeholder,
.cid-u9D46M92MS form textarea:active:-moz-placeholder,
.cid-u9D46M92MS form input:focus:-moz-placeholder,
.cid-u9D46M92MS form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form input:active:-ms-input-placeholder,
.cid-u9D46M92MS form textarea:active:-ms-input-placeholder,
.cid-u9D46M92MS form input:focus:-ms-input-placeholder,
.cid-u9D46M92MS form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-u9D46M92MS form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-u9D46M92MS form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-u9D46M92MS form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-u9D46M92MS form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-u9D46M92MS form .form-check-input:focus,
.cid-u9D46M92MS form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-u9D46M92MS form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-u9wRtAtjPC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u9wRtAtjPC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u9wRtAtjPC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u9wRtAtjPC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u9wRtAtjPC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u9wRtAtjPC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u9wRtAtjPC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u9wRtAtjPC .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u9wRtAtjPC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u9wRtAtjPC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u9wRtAtjPC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u9wRtAtjPC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u9wRtAtjPC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u9wRtAtjPC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u9wRtAtjPC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uaS0jPAlPj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uaS0jPAlPj nav.navbar {
  position: fixed;
}
.cid-uaS0jPAlPj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaS0jPAlPj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaS0jPAlPj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uaS0jPAlPj .dropdown-item:hover,
.cid-uaS0jPAlPj .dropdown-item:focus {
  background: #3c8324 !important;
  color: white !important;
}
.cid-uaS0jPAlPj .dropdown-item:hover span {
  color: white;
}
.cid-uaS0jPAlPj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaS0jPAlPj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaS0jPAlPj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaS0jPAlPj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaS0jPAlPj .nav-link {
  position: relative;
}
.cid-uaS0jPAlPj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uaS0jPAlPj .container {
    flex-wrap: nowrap;
  }
}
.cid-uaS0jPAlPj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uaS0jPAlPj .dropdown-menu,
.cid-uaS0jPAlPj .navbar.opened {
  background: #ffffff !important;
}
.cid-uaS0jPAlPj .nav-item:focus,
.cid-uaS0jPAlPj .nav-link:focus {
  outline: none;
}
.cid-uaS0jPAlPj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaS0jPAlPj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaS0jPAlPj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaS0jPAlPj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaS0jPAlPj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaS0jPAlPj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaS0jPAlPj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uaS0jPAlPj .navbar.opened {
  transition: all 0.3s;
}
.cid-uaS0jPAlPj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaS0jPAlPj .navbar .navbar-logo img {
  width: auto;
}
.cid-uaS0jPAlPj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaS0jPAlPj .navbar.collapsed {
  justify-content: center;
}
.cid-uaS0jPAlPj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaS0jPAlPj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaS0jPAlPj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-uaS0jPAlPj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaS0jPAlPj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaS0jPAlPj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uaS0jPAlPj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaS0jPAlPj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaS0jPAlPj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaS0jPAlPj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaS0jPAlPj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaS0jPAlPj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaS0jPAlPj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaS0jPAlPj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uaS0jPAlPj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaS0jPAlPj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaS0jPAlPj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaS0jPAlPj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaS0jPAlPj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaS0jPAlPj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uaS0jPAlPj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uaS0jPAlPj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uaS0jPAlPj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uaS0jPAlPj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uaS0jPAlPj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaS0jPAlPj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaS0jPAlPj .dropdown-item.active,
.cid-uaS0jPAlPj .dropdown-item:active {
  background-color: transparent;
}
.cid-uaS0jPAlPj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaS0jPAlPj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaS0jPAlPj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaS0jPAlPj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uaS0jPAlPj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaS0jPAlPj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaS0jPAlPj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaS0jPAlPj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uaS0jPAlPj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaS0jPAlPj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uaS0jPAlPj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaS0jPAlPj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaS0jPAlPj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaS0jPAlPj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaS0jPAlPj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaS0jPAlPj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaS0jPAlPj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaS0jPAlPj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaS0jPAlPj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaS0jPAlPj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaS0jPAlPj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uaS0jPAlPj .navbar {
    height: 70px;
  }
  .cid-uaS0jPAlPj .navbar.opened {
    height: auto;
  }
  .cid-uaS0jPAlPj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaS0jQ0X6G .modal-body .close {
  background: #1b1b1b;
}
.cid-uaS0jQ0X6G .modal-body .close span {
  font-style: normal;
}
.cid-uaS0jQ0X6G .carousel-inner > .active,
.cid-uaS0jQ0X6G .carousel-inner > .next,
.cid-uaS0jQ0X6G .carousel-inner > .prev {
  display: flex;
}
.cid-uaS0jQ0X6G .carousel-control .icon-next,
.cid-uaS0jQ0X6G .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uaS0jQ0X6G .carousel-control:hover {
  background: #3c8324;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uaS0jQ0X6G .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uaS0jQ0X6G .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uaS0jQ0X6G .boxed-slider > div {
  position: relative;
}
.cid-uaS0jQ0X6G .container img {
  width: 100%;
}
.cid-uaS0jQ0X6G .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uaS0jQ0X6G .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uaS0jQ0X6G .mbr-table-cell {
  padding: 0;
}
.cid-uaS0jQ0X6G .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uaS0jQ0X6G .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uaS0jQ0X6G .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uaS0jQ0X6G .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uaS0jQ0X6G .carousel-item.active.right,
.cid-uaS0jQ0X6G .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uaS0jQ0X6G .carousel-item.active.left,
.cid-uaS0jQ0X6G .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uaS0jQ0X6G .carousel-item.active,
.cid-uaS0jQ0X6G .carousel-item.next.left,
.cid-uaS0jQ0X6G .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-uaS0jQ0X6G .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #3c8324;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators li.active,
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators li::after,
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uaS0jQ0X6G .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uaS0jQ0X6G .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uaS0jQ0X6G .mbr-slider > .container img {
  width: 100%;
}
.cid-uaS0jQ0X6G .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uaS0jQ0X6G .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uaS0jQ0X6G .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uaS0jQ0X6G .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uaS0jQ0X6G .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uaS0jQ0X6G .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uaS0jQ0X6G .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uaS0jQ0X6G .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-uaS0jQ0X6G .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uaS0jQ0X6G .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uaS0jQ0X6G .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uaS0jQ0X6G .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uaS0jQ0X6G .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uaS0jQ0X6G H2 {
  text-align: center;
}
.cid-uaS0jQetfe {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-uaS0jQetfe .item-subtitle a {
  color: #bbbbbb;
  font-weight: 600;
}
.cid-uaS0jQetfe .item-title,
.cid-uaS0jQetfe .item-subtitle {
  transition: all 0.3s;
}
.cid-uaS0jQetfe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaS0jQetfe .item:hover img {
  transform: scale(1.05);
}
.cid-uaS0jQetfe .item-img {
  overflow: hidden;
}
.cid-uaS0jQetfe img,
.cid-uaS0jQetfe .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uaS0jQetfe h5 {
  margin: 0;
}
.cid-uaS0jQetfe .item:focus,
.cid-uaS0jQetfe span:focus {
  outline: none;
}
.cid-uaS0jQetfe .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uaS0jQetfe .item-content {
  padding-top: 2rem;
}
.cid-uaS0jQetfe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uaS0jQetfe .item-title {
  color: #bbbbbb;
}
.cid-uaS0jQetfe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uaS0jQetfe .mbr-text,
.cid-uaS0jQetfe .mbr-section-btn {
  color: #ffffff;
}
.cid-uaS0jQetfe .item-subtitle {
  color: #ffffff;
}
.cid-uaS0jQMdyc {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uaS0jQMdyc .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-uaS0jQMdyc .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-uaS0jQMdyc .mbr-section-title {
  color: #ffffff;
}
.cid-uaS0jQMdyc .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uaS0jQMdyc .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-uaS0jQMdyc .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uaS0jQMdyc form {
  width: 100%;
}
.cid-uaS0jQMdyc form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uaS0jQMdyc form p {
  color: #f6f6ef;
}
.cid-uaS0jQMdyc form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-uaS0jQMdyc form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-uaS0jQMdyc form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-uaS0jQMdyc form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-uaS0jQMdyc form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form select {
  color: #bbbbbb !important;
}
.cid-uaS0jQMdyc form textarea {
  height: 200px !important;
  resize: none;
}
.cid-uaS0jQMdyc form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-uaS0jQMdyc form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-uaS0jQMdyc form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-uaS0jQMdyc form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-uaS0jQMdyc form input,
.cid-uaS0jQMdyc form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-uaS0jQMdyc form input:active,
.cid-uaS0jQMdyc form textarea:active,
.cid-uaS0jQMdyc form input:focus,
.cid-uaS0jQMdyc form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-uaS0jQMdyc form input:active::-webkit-input-placeholder,
.cid-uaS0jQMdyc form textarea:active::-webkit-input-placeholder,
.cid-uaS0jQMdyc form input:focus::-webkit-input-placeholder,
.cid-uaS0jQMdyc form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form input:active::-moz-placeholder,
.cid-uaS0jQMdyc form textarea:active::-moz-placeholder,
.cid-uaS0jQMdyc form input:focus::-moz-placeholder,
.cid-uaS0jQMdyc form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form input:active:-moz-placeholder,
.cid-uaS0jQMdyc form textarea:active:-moz-placeholder,
.cid-uaS0jQMdyc form input:focus:-moz-placeholder,
.cid-uaS0jQMdyc form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form input:active:-ms-input-placeholder,
.cid-uaS0jQMdyc form textarea:active:-ms-input-placeholder,
.cid-uaS0jQMdyc form input:focus:-ms-input-placeholder,
.cid-uaS0jQMdyc form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uaS0jQMdyc form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-uaS0jQMdyc form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-uaS0jQMdyc form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-uaS0jQMdyc form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uaS0jQMdyc form .form-check-input:focus,
.cid-uaS0jQMdyc form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-uaS0jQMdyc form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-uaS0jR42MP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-uaS0jR42MP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uaS0jR42MP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uaS0jR42MP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uaS0jR42MP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uaS0jR42MP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uaS0jR42MP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uaS0jR42MP .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uaS0jR42MP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uaS0jR42MP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uaS0jR42MP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uaS0jR42MP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uaS0jR42MP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uaS0jR42MP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uaS0jR42MP .media-container-row .row-copirayt p {
  width: 100%;
}
