body {
  font-family: Poppins;
	
	  /* 24.3.2025 KORJAUS */
  /* Tämä pätkä korjaa suurimman osan tilanteista mobirisepohjissa, joissa asioita pitäisi olla x määrä samalla rivillä, mutta viimeinen tippuu aina seuravalle riville */
  box-sizing: border-box !important;
  /* LOPPU */
}
.display-1 {
  font-family: 'Roboto Slab', serif;
  font-size: 5rem;
}
.display-2 {
  font-family: 'Roboto Slab', serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #65b32e !important;
}
.bg-success {
  background-color: #65b32e !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #65b32e !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #65b32e !important;
  border-color: #65b32e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-primary:before {
  background-color: #43761e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #43761e !important;
  border-color: #43761e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:before {
  background-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info:before {
  background-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #65b32e !important;
  border-color: #65b32e !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-success:before {
  background-color: #43761e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #43761e !important;
  border-color: #43761e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #65b32e !important;
  border-color: #65b32e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-warning:before {
  background-color: #43761e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #43761e !important;
  border-color: #43761e !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #376219;
  color: #376219;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #65b32e;
}
.btn-primary-outline:before {
  background-color: #65b32e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #000000;
}
.btn-secondary-outline:before {
  background-color: #000000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #000000;
}
.btn-info-outline:before {
  background-color: #000000;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #376219;
  color: #376219;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #65b32e;
}
.btn-success-outline:before {
  background-color: #65b32e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #376219;
  color: #376219;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #65b32e;
}
.btn-warning-outline:before {
  background-color: #65b32e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #65b32e;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #65b32e !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #65b32e !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #65b32e !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #376219 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #376219 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #376219 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #65b32e;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #65b32e;
  border-color: #65b32e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #65b32e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a8df82;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8df82;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a8df82;
}
.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;
}
blockquote {
  border-color: #65b32e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #65b32e;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #65b32e;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #65b32e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #65b32e;
  border-bottom-color: #65b32e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #65b32e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2365b32e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uJKAvlsdJN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJKAvlsdJN nav.navbar {
  position: fixed;
}
.cid-uJKAvlsdJN .btn {
  line-height: 1.2;
}
.cid-uJKAvlsdJN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJKAvlsdJN .nav-link {
  position: relative;
}
.cid-uJKAvlsdJN .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uJKAvlsdJN .nav-link:hover {
  color: #65b32e !important;
}
.cid-uJKAvlsdJN .nav-link:hover:before {
  width: 100%;
}
.cid-uJKAvlsdJN .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-uJKAvlsdJN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJKAvlsdJN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJKAvlsdJN .dropdown-item:hover,
.cid-uJKAvlsdJN .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uJKAvlsdJN .dropdown-item:hover span {
  color: white;
}
.cid-uJKAvlsdJN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJKAvlsdJN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJKAvlsdJN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJKAvlsdJN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uJKAvlsdJN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJKAvlsdJN .container {
    flex-wrap: nowrap;
  }
}
.cid-uJKAvlsdJN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJKAvlsdJN .navbar-nav {
  margin: auto;
}
.cid-uJKAvlsdJN .dropdown-menu,
.cid-uJKAvlsdJN .navbar.opened {
  background: #ffffff !important;
}
.cid-uJKAvlsdJN .nav-item:focus,
.cid-uJKAvlsdJN .nav-link:focus {
  outline: none;
}
.cid-uJKAvlsdJN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJKAvlsdJN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJKAvlsdJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJKAvlsdJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJKAvlsdJN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJKAvlsdJN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJKAvlsdJN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uJKAvlsdJN .navbar.opened {
  transition: all 0.3s;
}
.cid-uJKAvlsdJN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJKAvlsdJN .navbar .navbar-logo img {
  width: auto;
}
.cid-uJKAvlsdJN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJKAvlsdJN .navbar.collapsed {
  justify-content: center;
}
.cid-uJKAvlsdJN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJKAvlsdJN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJKAvlsdJN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uJKAvlsdJN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJKAvlsdJN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJKAvlsdJN .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-uJKAvlsdJN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJKAvlsdJN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJKAvlsdJN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJKAvlsdJN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJKAvlsdJN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJKAvlsdJN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJKAvlsdJN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJKAvlsdJN .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-uJKAvlsdJN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJKAvlsdJN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJKAvlsdJN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJKAvlsdJN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJKAvlsdJN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJKAvlsdJN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJKAvlsdJN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJKAvlsdJN .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJKAvlsdJN .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uJKAvlsdJN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJKAvlsdJN .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-uJKAvlsdJN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJKAvlsdJN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJKAvlsdJN .dropdown-item.active,
.cid-uJKAvlsdJN .dropdown-item:active {
  background-color: transparent;
}
.cid-uJKAvlsdJN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJKAvlsdJN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJKAvlsdJN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJKAvlsdJN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJKAvlsdJN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJKAvlsdJN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJKAvlsdJN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJKAvlsdJN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJKAvlsdJN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uJKAvlsdJN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJKAvlsdJN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJKAvlsdJN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJKAvlsdJN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJKAvlsdJN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJKAvlsdJN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJKAvlsdJN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJKAvlsdJN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJKAvlsdJN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJKAvlsdJN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJKAvlsdJN .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-uJKAvlsdJN .navbar {
    height: 70px;
  }
  .cid-uJKAvlsdJN .navbar.opened {
    height: auto;
  }
  .cid-uJKAvlsdJN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJKWc3DhXq .modal-body .close {
  background: #1b1b1b;
}
.cid-uJKWc3DhXq .modal-body .close span {
  font-style: normal;
}
.cid-uJKWc3DhXq .carousel-inner > .active,
.cid-uJKWc3DhXq .carousel-inner > .next,
.cid-uJKWc3DhXq .carousel-inner > .prev {
  display: table;
}
.cid-uJKWc3DhXq .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-uJKWc3DhXq .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-uJKWc3DhXq .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-uJKWc3DhXq .carousel-control,
.cid-uJKWc3DhXq .carousel-indicators li {
  background-color: #65b32e !important;
  opacity: 0.7!important;
  border: none;
}
.cid-uJKWc3DhXq .carousel-control:hover,
.cid-uJKWc3DhXq .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-uJKWc3DhXq .carousel-control .active,
.cid-uJKWc3DhXq .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-uJKWc3DhXq .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-uJKWc3DhXq .carousel-control .icon-next,
.cid-uJKWc3DhXq .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uJKWc3DhXq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uJKWc3DhXq .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uJKWc3DhXq .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-uJKWc3DhXq .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-uJKWc3DhXq .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-uJKWc3DhXq .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJKWc3DhXq .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uJKWc3DhXq .boxed-slider > div {
  position: relative;
}
.cid-uJKWc3DhXq .container img {
  width: 100%;
}
.cid-uJKWc3DhXq .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-uJKWc3DhXq .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uJKWc3DhXq .mbr-table-cell {
  padding: 0;
}
.cid-uJKWc3DhXq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uJKWc3DhXq .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uJKWc3DhXq .mbr-overlay {
  z-index: 1;
}
.cid-uJKWc3DhXq .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uJKWc3DhXq .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uJKWc3DhXq .carousel-item .container {
    width: 100%;
  }
}
.cid-uJKWc3DhXq .carousel-item-next.carousel-item-left,
.cid-uJKWc3DhXq .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uJKWc3DhXq .active.carousel-item-right,
.cid-uJKWc3DhXq .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uJKWc3DhXq .active.carousel-item-left,
.cid-uJKWc3DhXq .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uJKWc3DhXq .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uJKWc3DhXq .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators li.active,
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators li::after,
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uJKWc3DhXq .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uJKWc3DhXq .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uJKWc3DhXq .mbr-slider > .container img {
  width: 100%;
}
.cid-uJKWc3DhXq .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-uJKWc3DhXq .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uJKWc3DhXq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJKWc3DhXq .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uJKWc3DhXq .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uJKWc3DhXq .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uJKWc3DhXq .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uJKWc3DhXq .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uJKWc3DhXq .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uJKWc3DhXq .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uJKWc3DhXq .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uJKWc3DhXq .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uJKWc3DhXq .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uG5bPNXKHo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uG5bPNXKHo .block-title {
  color: #000000;
}
.cid-uG5bQsnG01 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uG5bQsnG01 H1 {
  color: #000000;
}
.cid-uG5bQsnG01 .mbr-text,
.cid-uG5bQsnG01 .mbr-section-btn {
  color: #000000;
}
.cid-uG5bQsnG01 .mbr-subtitle {
  color: #000000;
}
.cid-uG5bQsnG01 .mbr-text {
  margin-top: 1.5rem;
}
.cid-uG5bQsnG01 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uG5bQsnG01 .mbr-section-title,
.cid-uG5bQsnG01 .mbr-section-btn {
  color: #165788;
}
.cid-uGlI6tpwAL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uGlI6tpwAL .item-img {
  position: relative;
}
.cid-uGlI6tpwAL .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-uGlI6tpwAL .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uGlI6tpwAL .btn-tag:hover,
.cid-uGlI6tpwAL .btn-tag:focus {
  box-shadow: none;
}
.cid-uGlI6tpwAL img,
.cid-uGlI6tpwAL .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uGlI6tpwAL .item:focus,
.cid-uGlI6tpwAL span:focus {
  outline: none;
}
.cid-uGlI6tpwAL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGlI6tpwAL .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uGlI6tpwAL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGlI6tpwAL .mbr-section-title {
  color: #232323;
}
.cid-uGlI6tpwAL .mbr-text,
.cid-uGlI6tpwAL .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uGlI6tpwAL .item-title {
  color: #65b32e;
  text-align: center;
}
.cid-uGlI6tpwAL .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uJPrJ12lNh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-uJPrJ12lNh .item-img {
  position: relative;
}
.cid-uJPrJ12lNh .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-uJPrJ12lNh .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uJPrJ12lNh .btn-tag:hover,
.cid-uJPrJ12lNh .btn-tag:focus {
  box-shadow: none;
}
.cid-uJPrJ12lNh img,
.cid-uJPrJ12lNh .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uJPrJ12lNh .item:focus,
.cid-uJPrJ12lNh span:focus {
  outline: none;
}
.cid-uJPrJ12lNh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJPrJ12lNh .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uJPrJ12lNh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJPrJ12lNh .mbr-section-title {
  color: #232323;
}
.cid-uJPrJ12lNh .mbr-text,
.cid-uJPrJ12lNh .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uJPrJ12lNh .item-title {
  color: #65b32e;
  text-align: center;
}
.cid-uJPrJ12lNh .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uNSORU6Fkq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSORU6Fkq .container {
  max-width: 1312px;
}
.cid-uNSORU6Fkq .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSORU6Fkq .row {
    padding: 0 16px;
  }
}
.cid-uNSORU6Fkq .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSORU6Fkq .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSORU6Fkq .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSORU6Fkq .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSORU6Fkq .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSORU6Fkq .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSORU6Fkq .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSORU6Fkq .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSORU6Fkq .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSORU6Fkq .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSORU6Fkq .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSORU6Fkq .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSORU6Fkq .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSORU6Fkq .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSORU6Fkq .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSORU6Fkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSORU6Fkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSORU6Fkq .mbr-text,
.cid-uNSORU6Fkq .mbr-section-btn {
  text-align: center;
}
.cid-uJPn8JrRtU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uJPn8JrRtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJPn8JrRtU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJPn8JrRtU .col-title {
  margin-bottom: 64px;
}
.cid-uJPn8JrRtU .mbr-section-title {
  color: #65b32e;
}
.cid-uJPn8JrRtU .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uJPn8JrRtU .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uJPn8JrRtU .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJPn8JrRtU .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uJPn8JrRtU .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uJPn8JrRtU .image-wrapper {
    justify-content: center;
  }
}
.cid-uJPn8JrRtU .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uJPn8JrRtU .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uJPn8JrRtU .card-title-container {
    justify-content: center;
  }
}
.cid-uJPn8JrRtU .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uJPn8JrRtU .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uJPn8JrRtU .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uJPn8JrRtU .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uJPn8JrRtU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uJPn8JrRtU .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uGm68JJiQo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uGm68JJiQo a {
  color: #232323;
}
.cid-uGm68JJiQo a:hover {
  color: #65b32e;
}
.cid-uGm68JJiQo h5 {
  color: #4e6dcc;
}
.cid-uGm68JJiQo .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uGm68JJiQo .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uGm68JJiQo .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uGm68JJiQo H5 {
  color: #000000;
}
.cid-uGm68JJiQo H2 {
  color: #000000;
}
.cid-uGm68JJiQo DIV {
  color: #000000;
}
.cid-uGm68JJiQo .card-title B {
  color: #65b32e;
}
.cid-uGm68JJiQo P {
  color: #000000;
}
.cid-uGm68JJiQo H1 {
  color: #000000;
}
.cid-uGm68JJiQo H3 {
  color: #65b32e;
}
.cid-uGm68JJiQo .card-title {
  color: #65b32e;
}
.cid-uJPTMcV8Xi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uJPTMcV8Xi .footer-item {
  padding: 30px;
}
.cid-uJPTMcV8Xi .mbr-section-subtitle,
.cid-uJPTMcV8Xi .address-text {
  margin-bottom: 1.5rem;
}
.cid-uJPTMcV8Xi .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uJPTMcV8Xi .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uJPTMcV8Xi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJPTMcV8Xi .row {
    text-align: center;
  }
  .cid-uJPTMcV8Xi .social-row {
    justify-content: center;
  }
}
.cid-uJPTMcV8Xi .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uJPTMcV8Xi .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uJPTMcV8Xi .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uJPTMcV8Xi .mbr-text {
  color: #ffffff;
}
.cid-uJPTMcV8Xi .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uJPTMcV8Xi .list a {
  color: #ffffff;
}
.cid-uJPTMcV8Xi .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uJPTMcV8Xi .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uJPTMcV8Xi .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uJPTMcV8Xi .mbr-iconfont {
  color: #ffffff;
}
.cid-uJPTMcV8Xi .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uJPTMcV8Xi .address-text {
  color: #65b32e;
}
.cid-uGm6EvmGYH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uGm6EvmGYH a:link {
  text-decoration: none;
}
.cid-uGm6EvmGYH .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uGm6EvmGYH .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uGm6EvmGYH .inner-text {
  line-height: 3em;
}
.cid-uGm6EvmGYH .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uGm6EvmGYH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uGm6EvmGYH .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uGm6EvmGYH .content-text,
.cid-uGm6EvmGYH .inner-text {
  color: #ffffff;
}
.cid-uNN4s3Z4wb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNN4s3Z4wb nav.navbar {
  position: fixed;
}
.cid-uNN4s3Z4wb .btn {
  line-height: 1.2;
}
.cid-uNN4s3Z4wb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNN4s3Z4wb .nav-link {
  position: relative;
}
.cid-uNN4s3Z4wb .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNN4s3Z4wb .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNN4s3Z4wb .nav-link:hover:before {
  width: 100%;
}
.cid-uNN4s3Z4wb .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-uNN4s3Z4wb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNN4s3Z4wb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNN4s3Z4wb .dropdown-item:hover,
.cid-uNN4s3Z4wb .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNN4s3Z4wb .dropdown-item:hover span {
  color: white;
}
.cid-uNN4s3Z4wb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNN4s3Z4wb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNN4s3Z4wb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNN4s3Z4wb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNN4s3Z4wb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNN4s3Z4wb .container {
    flex-wrap: nowrap;
  }
}
.cid-uNN4s3Z4wb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNN4s3Z4wb .navbar-nav {
  margin: auto;
}
.cid-uNN4s3Z4wb .dropdown-menu,
.cid-uNN4s3Z4wb .navbar.opened {
  background: #ffffff !important;
}
.cid-uNN4s3Z4wb .nav-item:focus,
.cid-uNN4s3Z4wb .nav-link:focus {
  outline: none;
}
.cid-uNN4s3Z4wb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNN4s3Z4wb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNN4s3Z4wb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNN4s3Z4wb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNN4s3Z4wb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNN4s3Z4wb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNN4s3Z4wb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNN4s3Z4wb .navbar.opened {
  transition: all 0.3s;
}
.cid-uNN4s3Z4wb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNN4s3Z4wb .navbar .navbar-logo img {
  width: auto;
}
.cid-uNN4s3Z4wb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNN4s3Z4wb .navbar.collapsed {
  justify-content: center;
}
.cid-uNN4s3Z4wb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNN4s3Z4wb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNN4s3Z4wb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNN4s3Z4wb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNN4s3Z4wb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNN4s3Z4wb .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-uNN4s3Z4wb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNN4s3Z4wb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNN4s3Z4wb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNN4s3Z4wb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNN4s3Z4wb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNN4s3Z4wb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNN4s3Z4wb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNN4s3Z4wb .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-uNN4s3Z4wb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNN4s3Z4wb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNN4s3Z4wb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNN4s3Z4wb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNN4s3Z4wb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNN4s3Z4wb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNN4s3Z4wb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNN4s3Z4wb .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNN4s3Z4wb .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNN4s3Z4wb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNN4s3Z4wb .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-uNN4s3Z4wb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNN4s3Z4wb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNN4s3Z4wb .dropdown-item.active,
.cid-uNN4s3Z4wb .dropdown-item:active {
  background-color: transparent;
}
.cid-uNN4s3Z4wb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNN4s3Z4wb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNN4s3Z4wb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNN4s3Z4wb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNN4s3Z4wb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNN4s3Z4wb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNN4s3Z4wb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNN4s3Z4wb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNN4s3Z4wb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNN4s3Z4wb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNN4s3Z4wb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNN4s3Z4wb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNN4s3Z4wb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNN4s3Z4wb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNN4s3Z4wb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNN4s3Z4wb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNN4s3Z4wb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNN4s3Z4wb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNN4s3Z4wb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNN4s3Z4wb .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-uNN4s3Z4wb .navbar {
    height: 70px;
  }
  .cid-uNN4s3Z4wb .navbar.opened {
    height: auto;
  }
  .cid-uNN4s3Z4wb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNN4s53JD2 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNN4s53JD2 .block-title {
  color: #000000;
}
.cid-uNN4s5oox2 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNN4s5oox2 H1 {
  color: #000000;
}
.cid-uNN4s5oox2 .mbr-text,
.cid-uNN4s5oox2 .mbr-section-btn {
  color: #000000;
}
.cid-uNN4s5oox2 .mbr-subtitle {
  color: #000000;
}
.cid-uNN4s5oox2 .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNN4s5oox2 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNN4s5oox2 .mbr-section-title,
.cid-uNN4s5oox2 .mbr-section-btn {
  color: #165788;
}
.cid-uNN7HjZ7h2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNN7HjZ7h2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNN7HjZ7h2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNN7HjZ7h2 a {
  font-weight: bold;
}
.cid-uNN7HjZ7h2 .row {
  flex-direction: row-reverse;
}
.cid-uNN7HjZ7h2 .container-fluid {
  padding: 0;
}
.cid-uNN7HjZ7h2 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNN7HjZ7h2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNN7HjZ7h2 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNN7HjZ7h2 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNN7HjZ7h2 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNN7HjZ7h2 .mbr-text,
.cid-uNN7HjZ7h2 .mbr-section-btn {
  color: #000000;
}
.cid-uNN7HjZ7h2 .mbr-section-title {
  color: #65b32e;
}
.cid-uNNaaukNZa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNaaukNZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNaaukNZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNaaukNZa a {
  font-weight: bold;
}
.cid-uNNaaukNZa .container-fluid {
  padding: 0;
}
.cid-uNNaaukNZa img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNaaukNZa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNaaukNZa .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNaaukNZa .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNaaukNZa .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNaaukNZa .mbr-text,
.cid-uNNaaukNZa .mbr-section-btn {
  color: #000000;
}
.cid-uNNaaukNZa .mbr-section-title {
  color: #65b32e;
}
.cid-uNNbG238a5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNbG238a5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNbG238a5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNbG238a5 a {
  font-weight: bold;
}
.cid-uNNbG238a5 .row {
  flex-direction: row-reverse;
}
.cid-uNNbG238a5 .container-fluid {
  padding: 0;
}
.cid-uNNbG238a5 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNbG238a5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNbG238a5 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNbG238a5 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNbG238a5 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNbG238a5 .mbr-text,
.cid-uNNbG238a5 .mbr-section-btn {
  color: #000000;
}
.cid-uNNbG238a5 .mbr-section-title {
  color: #65b32e;
}
.cid-uNNcRCuvGh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNcRCuvGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNcRCuvGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNcRCuvGh a {
  font-weight: bold;
}
.cid-uNNcRCuvGh .container-fluid {
  padding: 0;
}
.cid-uNNcRCuvGh img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNcRCuvGh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNcRCuvGh .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNcRCuvGh .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNcRCuvGh .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNcRCuvGh .mbr-text,
.cid-uNNcRCuvGh .mbr-section-btn {
  color: #000000;
}
.cid-uNNcRCuvGh .mbr-section-title {
  color: #65b32e;
}
.cid-uNNdqOdzlj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNdqOdzlj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNdqOdzlj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNdqOdzlj a {
  font-weight: bold;
}
.cid-uNNdqOdzlj .row {
  flex-direction: row-reverse;
}
.cid-uNNdqOdzlj .container-fluid {
  padding: 0;
}
.cid-uNNdqOdzlj img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNdqOdzlj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNdqOdzlj .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNdqOdzlj .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNdqOdzlj .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNdqOdzlj .mbr-text,
.cid-uNNdqOdzlj .mbr-section-btn {
  color: #000000;
}
.cid-uNNdqOdzlj .mbr-section-title {
  color: #65b32e;
}
.cid-uNNeVazn64 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNeVazn64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNeVazn64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNeVazn64 a {
  font-weight: bold;
}
.cid-uNNeVazn64 .container-fluid {
  padding: 0;
}
.cid-uNNeVazn64 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNeVazn64 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNeVazn64 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNeVazn64 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNeVazn64 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNeVazn64 .mbr-text,
.cid-uNNeVazn64 .mbr-section-btn {
  color: #000000;
}
.cid-uNNeVazn64 .mbr-section-title {
  color: #65b32e;
}
.cid-uNSOVTmxmT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSOVTmxmT .container {
  max-width: 1312px;
}
.cid-uNSOVTmxmT .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSOVTmxmT .row {
    padding: 0 16px;
  }
}
.cid-uNSOVTmxmT .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSOVTmxmT .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSOVTmxmT .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSOVTmxmT .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSOVTmxmT .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSOVTmxmT .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSOVTmxmT .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSOVTmxmT .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSOVTmxmT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSOVTmxmT .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSOVTmxmT .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSOVTmxmT .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSOVTmxmT .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSOVTmxmT .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSOVTmxmT .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSOVTmxmT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSOVTmxmT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSOVTmxmT .mbr-text,
.cid-uNSOVTmxmT .mbr-section-btn {
  text-align: center;
}
.cid-uNN4s6Pdtu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNN4s6Pdtu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNN4s6Pdtu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNN4s6Pdtu .col-title {
  margin-bottom: 64px;
}
.cid-uNN4s6Pdtu .mbr-section-title {
  color: #65b32e;
}
.cid-uNN4s6Pdtu .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNN4s6Pdtu .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNN4s6Pdtu .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNN4s6Pdtu .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNN4s6Pdtu .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNN4s6Pdtu .image-wrapper {
    justify-content: center;
  }
}
.cid-uNN4s6Pdtu .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uNN4s6Pdtu .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNN4s6Pdtu .card-title-container {
    justify-content: center;
  }
}
.cid-uNN4s6Pdtu .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNN4s6Pdtu .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uNN4s6Pdtu .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNN4s6Pdtu .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNN4s6Pdtu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNN4s6Pdtu .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNSDgNAnhW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDgNAnhW a {
  color: #232323;
}
.cid-uNSDgNAnhW a:hover {
  color: #65b32e;
}
.cid-uNSDgNAnhW h5 {
  color: #4e6dcc;
}
.cid-uNSDgNAnhW .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDgNAnhW .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDgNAnhW .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDgNAnhW H5 {
  color: #000000;
}
.cid-uNSDgNAnhW H2 {
  color: #000000;
}
.cid-uNSDgNAnhW DIV {
  color: #000000;
}
.cid-uNSDgNAnhW .card-title B {
  color: #65b32e;
}
.cid-uNSDgNAnhW P {
  color: #000000;
}
.cid-uNSDgNAnhW H1 {
  color: #000000;
}
.cid-uNSDgNAnhW H3 {
  color: #65b32e;
}
.cid-uNSDgNAnhW .card-title {
  color: #65b32e;
}
.cid-uNN4s7T1Pn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNN4s7T1Pn .footer-item {
  padding: 30px;
}
.cid-uNN4s7T1Pn .mbr-section-subtitle,
.cid-uNN4s7T1Pn .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNN4s7T1Pn .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNN4s7T1Pn .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNN4s7T1Pn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNN4s7T1Pn .row {
    text-align: center;
  }
  .cid-uNN4s7T1Pn .social-row {
    justify-content: center;
  }
}
.cid-uNN4s7T1Pn .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNN4s7T1Pn .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNN4s7T1Pn .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNN4s7T1Pn .mbr-text {
  color: #ffffff;
}
.cid-uNN4s7T1Pn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNN4s7T1Pn .list a {
  color: #ffffff;
}
.cid-uNN4s7T1Pn .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNN4s7T1Pn .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNN4s7T1Pn .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNN4s7T1Pn .mbr-iconfont {
  color: #ffffff;
}
.cid-uNN4s7T1Pn .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNN4s7T1Pn .address-text {
  color: #65b32e;
}
.cid-uNN4s8hiPJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNN4s8hiPJ a:link {
  text-decoration: none;
}
.cid-uNN4s8hiPJ .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNN4s8hiPJ .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNN4s8hiPJ .inner-text {
  line-height: 3em;
}
.cid-uNN4s8hiPJ .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNN4s8hiPJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNN4s8hiPJ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNN4s8hiPJ .content-text,
.cid-uNN4s8hiPJ .inner-text {
  color: #ffffff;
}
.cid-uNNhOmcQbK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNNhOmcQbK nav.navbar {
  position: fixed;
}
.cid-uNNhOmcQbK .btn {
  line-height: 1.2;
}
.cid-uNNhOmcQbK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNNhOmcQbK .nav-link {
  position: relative;
}
.cid-uNNhOmcQbK .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNNhOmcQbK .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNNhOmcQbK .nav-link:hover:before {
  width: 100%;
}
.cid-uNNhOmcQbK .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-uNNhOmcQbK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNNhOmcQbK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNNhOmcQbK .dropdown-item:hover,
.cid-uNNhOmcQbK .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNNhOmcQbK .dropdown-item:hover span {
  color: white;
}
.cid-uNNhOmcQbK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNNhOmcQbK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNNhOmcQbK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNNhOmcQbK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNNhOmcQbK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNNhOmcQbK .container {
    flex-wrap: nowrap;
  }
}
.cid-uNNhOmcQbK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNNhOmcQbK .navbar-nav {
  margin: auto;
}
.cid-uNNhOmcQbK .dropdown-menu,
.cid-uNNhOmcQbK .navbar.opened {
  background: #ffffff !important;
}
.cid-uNNhOmcQbK .nav-item:focus,
.cid-uNNhOmcQbK .nav-link:focus {
  outline: none;
}
.cid-uNNhOmcQbK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNNhOmcQbK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNNhOmcQbK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNNhOmcQbK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNNhOmcQbK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNNhOmcQbK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNNhOmcQbK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNNhOmcQbK .navbar.opened {
  transition: all 0.3s;
}
.cid-uNNhOmcQbK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNNhOmcQbK .navbar .navbar-logo img {
  width: auto;
}
.cid-uNNhOmcQbK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNNhOmcQbK .navbar.collapsed {
  justify-content: center;
}
.cid-uNNhOmcQbK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNNhOmcQbK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNNhOmcQbK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNNhOmcQbK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNNhOmcQbK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNNhOmcQbK .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-uNNhOmcQbK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNNhOmcQbK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNNhOmcQbK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNNhOmcQbK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNNhOmcQbK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNNhOmcQbK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNNhOmcQbK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNNhOmcQbK .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-uNNhOmcQbK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNNhOmcQbK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNNhOmcQbK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNNhOmcQbK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNNhOmcQbK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNNhOmcQbK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNNhOmcQbK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNNhOmcQbK .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNNhOmcQbK .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNNhOmcQbK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNNhOmcQbK .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-uNNhOmcQbK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNNhOmcQbK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNNhOmcQbK .dropdown-item.active,
.cid-uNNhOmcQbK .dropdown-item:active {
  background-color: transparent;
}
.cid-uNNhOmcQbK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNNhOmcQbK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNNhOmcQbK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNNhOmcQbK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNNhOmcQbK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNNhOmcQbK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNNhOmcQbK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNNhOmcQbK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNNhOmcQbK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNNhOmcQbK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNNhOmcQbK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNNhOmcQbK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNNhOmcQbK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNNhOmcQbK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNNhOmcQbK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNNhOmcQbK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNNhOmcQbK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNNhOmcQbK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNNhOmcQbK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNNhOmcQbK .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-uNNhOmcQbK .navbar {
    height: 70px;
  }
  .cid-uNNhOmcQbK .navbar.opened {
    height: auto;
  }
  .cid-uNNhOmcQbK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNNijbJg4v {
  background-image: url("../../../assets/images/lvihyry-energiaremontti-1.jpg");
}
.cid-uNNijbJg4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNijbJg4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNijbJg4v .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNNijbJg4v .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNNijbJg4v .mbr-text {
  color: #FFFFFF;
}
.cid-uNNijbJg4v .mbr-section-btn {
  margin-top: 18px;
}
.cid-uNNhOn7WYu {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNNhOn7WYu .block-title {
  color: #000000;
}
.cid-uNNhOnmY8a {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNNhOnmY8a H1 {
  color: #000000;
}
.cid-uNNhOnmY8a .mbr-text,
.cid-uNNhOnmY8a .mbr-section-btn {
  color: #000000;
}
.cid-uNNhOnmY8a .mbr-subtitle {
  color: #000000;
}
.cid-uNNhOnmY8a .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNNhOnmY8a .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNNhOnmY8a .mbr-section-title,
.cid-uNNhOnmY8a .mbr-section-btn {
  color: #165788;
}
.cid-uNNhOnLMiv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNhOnLMiv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNhOnLMiv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNhOnLMiv a {
  font-weight: bold;
}
.cid-uNNhOnLMiv .row {
  flex-direction: row-reverse;
}
.cid-uNNhOnLMiv .container-fluid {
  padding: 0;
}
.cid-uNNhOnLMiv img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNhOnLMiv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNhOnLMiv .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNhOnLMiv .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNhOnLMiv .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNhOnLMiv .mbr-text,
.cid-uNNhOnLMiv .mbr-section-btn {
  color: #000000;
}
.cid-uNNhOnLMiv .mbr-section-title {
  color: #65b32e;
}
.cid-uNNhOoa3K9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNhOoa3K9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNhOoa3K9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNhOoa3K9 a {
  font-weight: bold;
}
.cid-uNNhOoa3K9 .container-fluid {
  padding: 0;
}
.cid-uNNhOoa3K9 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNhOoa3K9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNhOoa3K9 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNhOoa3K9 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNhOoa3K9 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNhOoa3K9 .mbr-text,
.cid-uNNhOoa3K9 .mbr-section-btn {
  color: #000000;
}
.cid-uNNhOoa3K9 .mbr-section-title {
  color: #65b32e;
}
.cid-uNNzfOx38z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNzfOx38z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNzfOx38z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNzfOx38z a {
  font-weight: bold;
}
.cid-uNNzfOx38z .row {
  flex-direction: row-reverse;
}
.cid-uNNzfOx38z .container-fluid {
  padding: 0;
}
.cid-uNNzfOx38z img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNzfOx38z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNzfOx38z .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNzfOx38z .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNzfOx38z .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNzfOx38z .mbr-text,
.cid-uNNzfOx38z .mbr-section-btn {
  color: #000000;
}
.cid-uNNzfOx38z .mbr-section-title {
  color: #65b32e;
}
.cid-uNNzzaQ225 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNzzaQ225 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNzzaQ225 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNzzaQ225 a {
  font-weight: bold;
}
.cid-uNNzzaQ225 .container-fluid {
  padding: 0;
}
.cid-uNNzzaQ225 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNzzaQ225 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNzzaQ225 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNzzaQ225 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNzzaQ225 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNzzaQ225 .mbr-text,
.cid-uNNzzaQ225 .mbr-section-btn {
  color: #000000;
}
.cid-uNNzzaQ225 .mbr-section-title {
  color: #65b32e;
}
.cid-uNNzOB8fPV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNzOB8fPV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNzOB8fPV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNzOB8fPV a {
  font-weight: bold;
}
.cid-uNNzOB8fPV .row {
  flex-direction: row-reverse;
}
.cid-uNNzOB8fPV .container-fluid {
  padding: 0;
}
.cid-uNNzOB8fPV img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNzOB8fPV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNzOB8fPV .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNzOB8fPV .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNzOB8fPV .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNzOB8fPV .mbr-text,
.cid-uNNzOB8fPV .mbr-section-btn {
  color: #000000;
}
.cid-uNNzOB8fPV .mbr-section-title {
  color: #65b32e;
}
.cid-uNNhOoAU8F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNhOoAU8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNhOoAU8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNhOoAU8F a {
  font-weight: bold;
}
.cid-uNNhOoAU8F .container-fluid {
  padding: 0;
}
.cid-uNNhOoAU8F img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNhOoAU8F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNhOoAU8F .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNhOoAU8F .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNhOoAU8F .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNhOoAU8F .mbr-text,
.cid-uNNhOoAU8F .mbr-section-btn {
  color: #000000;
}
.cid-uNNhOoAU8F .mbr-section-title {
  color: #65b32e;
}
.cid-uNNhOoYVkv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNhOoYVkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNhOoYVkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNhOoYVkv a {
  font-weight: bold;
}
.cid-uNNhOoYVkv .row {
  flex-direction: row-reverse;
}
.cid-uNNhOoYVkv .container-fluid {
  padding: 0;
}
.cid-uNNhOoYVkv img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNhOoYVkv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNhOoYVkv .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNhOoYVkv .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNhOoYVkv .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNhOoYVkv .mbr-text,
.cid-uNNhOoYVkv .mbr-section-btn {
  color: #000000;
}
.cid-uNNhOoYVkv .mbr-section-title {
  color: #65b32e;
}
.cid-uNSP1ckcyU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSP1ckcyU .container {
  max-width: 1312px;
}
.cid-uNSP1ckcyU .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSP1ckcyU .row {
    padding: 0 16px;
  }
}
.cid-uNSP1ckcyU .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSP1ckcyU .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSP1ckcyU .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSP1ckcyU .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSP1ckcyU .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSP1ckcyU .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSP1ckcyU .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSP1ckcyU .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSP1ckcyU .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSP1ckcyU .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSP1ckcyU .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSP1ckcyU .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSP1ckcyU .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSP1ckcyU .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSP1ckcyU .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSP1ckcyU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSP1ckcyU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSP1ckcyU .mbr-text,
.cid-uNSP1ckcyU .mbr-section-btn {
  text-align: center;
}
.cid-uNNhOqiBQU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNNhOqiBQU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNhOqiBQU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNhOqiBQU .col-title {
  margin-bottom: 64px;
}
.cid-uNNhOqiBQU .mbr-section-title {
  color: #65b32e;
}
.cid-uNNhOqiBQU .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNNhOqiBQU .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNNhOqiBQU .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNhOqiBQU .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNNhOqiBQU .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNNhOqiBQU .image-wrapper {
    justify-content: center;
  }
}
.cid-uNNhOqiBQU .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uNNhOqiBQU .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNNhOqiBQU .card-title-container {
    justify-content: center;
  }
}
.cid-uNNhOqiBQU .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNNhOqiBQU .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uNNhOqiBQU .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNNhOqiBQU .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNNhOqiBQU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNNhOqiBQU .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNSDmKFR15 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDmKFR15 a {
  color: #232323;
}
.cid-uNSDmKFR15 a:hover {
  color: #65b32e;
}
.cid-uNSDmKFR15 h5 {
  color: #4e6dcc;
}
.cid-uNSDmKFR15 .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDmKFR15 .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDmKFR15 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDmKFR15 H5 {
  color: #000000;
}
.cid-uNSDmKFR15 H2 {
  color: #000000;
}
.cid-uNSDmKFR15 DIV {
  color: #000000;
}
.cid-uNSDmKFR15 .card-title B {
  color: #65b32e;
}
.cid-uNSDmKFR15 P {
  color: #000000;
}
.cid-uNSDmKFR15 H1 {
  color: #000000;
}
.cid-uNSDmKFR15 H3 {
  color: #65b32e;
}
.cid-uNSDmKFR15 .card-title {
  color: #65b32e;
}
.cid-uNNhOresrQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNNhOresrQ .footer-item {
  padding: 30px;
}
.cid-uNNhOresrQ .mbr-section-subtitle,
.cid-uNNhOresrQ .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNNhOresrQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNNhOresrQ .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNNhOresrQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNNhOresrQ .row {
    text-align: center;
  }
  .cid-uNNhOresrQ .social-row {
    justify-content: center;
  }
}
.cid-uNNhOresrQ .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNNhOresrQ .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNNhOresrQ .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNNhOresrQ .mbr-text {
  color: #ffffff;
}
.cid-uNNhOresrQ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNNhOresrQ .list a {
  color: #ffffff;
}
.cid-uNNhOresrQ .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNNhOresrQ .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNNhOresrQ .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNNhOresrQ .mbr-iconfont {
  color: #ffffff;
}
.cid-uNNhOresrQ .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNNhOresrQ .address-text {
  color: #65b32e;
}
.cid-uNNhOrzO33 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNNhOrzO33 a:link {
  text-decoration: none;
}
.cid-uNNhOrzO33 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNNhOrzO33 .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNNhOrzO33 .inner-text {
  line-height: 3em;
}
.cid-uNNhOrzO33 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNNhOrzO33 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNhOrzO33 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNhOrzO33 .content-text,
.cid-uNNhOrzO33 .inner-text {
  color: #ffffff;
}
.cid-uNO9JKLFnq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNO9JKLFnq nav.navbar {
  position: fixed;
}
.cid-uNO9JKLFnq .btn {
  line-height: 1.2;
}
.cid-uNO9JKLFnq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNO9JKLFnq .nav-link {
  position: relative;
}
.cid-uNO9JKLFnq .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNO9JKLFnq .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNO9JKLFnq .nav-link:hover:before {
  width: 100%;
}
.cid-uNO9JKLFnq .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-uNO9JKLFnq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNO9JKLFnq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNO9JKLFnq .dropdown-item:hover,
.cid-uNO9JKLFnq .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNO9JKLFnq .dropdown-item:hover span {
  color: white;
}
.cid-uNO9JKLFnq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNO9JKLFnq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNO9JKLFnq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNO9JKLFnq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNO9JKLFnq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNO9JKLFnq .container {
    flex-wrap: nowrap;
  }
}
.cid-uNO9JKLFnq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNO9JKLFnq .navbar-nav {
  margin: auto;
}
.cid-uNO9JKLFnq .dropdown-menu,
.cid-uNO9JKLFnq .navbar.opened {
  background: #ffffff !important;
}
.cid-uNO9JKLFnq .nav-item:focus,
.cid-uNO9JKLFnq .nav-link:focus {
  outline: none;
}
.cid-uNO9JKLFnq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNO9JKLFnq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNO9JKLFnq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNO9JKLFnq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNO9JKLFnq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNO9JKLFnq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNO9JKLFnq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNO9JKLFnq .navbar.opened {
  transition: all 0.3s;
}
.cid-uNO9JKLFnq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNO9JKLFnq .navbar .navbar-logo img {
  width: auto;
}
.cid-uNO9JKLFnq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNO9JKLFnq .navbar.collapsed {
  justify-content: center;
}
.cid-uNO9JKLFnq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNO9JKLFnq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNO9JKLFnq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNO9JKLFnq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNO9JKLFnq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNO9JKLFnq .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-uNO9JKLFnq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNO9JKLFnq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNO9JKLFnq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNO9JKLFnq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNO9JKLFnq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNO9JKLFnq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNO9JKLFnq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNO9JKLFnq .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-uNO9JKLFnq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNO9JKLFnq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNO9JKLFnq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNO9JKLFnq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNO9JKLFnq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNO9JKLFnq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNO9JKLFnq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNO9JKLFnq .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNO9JKLFnq .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNO9JKLFnq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNO9JKLFnq .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-uNO9JKLFnq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNO9JKLFnq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNO9JKLFnq .dropdown-item.active,
.cid-uNO9JKLFnq .dropdown-item:active {
  background-color: transparent;
}
.cid-uNO9JKLFnq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNO9JKLFnq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNO9JKLFnq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNO9JKLFnq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNO9JKLFnq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNO9JKLFnq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNO9JKLFnq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNO9JKLFnq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNO9JKLFnq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNO9JKLFnq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNO9JKLFnq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNO9JKLFnq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNO9JKLFnq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNO9JKLFnq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNO9JKLFnq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNO9JKLFnq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNO9JKLFnq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNO9JKLFnq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNO9JKLFnq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNO9JKLFnq .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-uNO9JKLFnq .navbar {
    height: 70px;
  }
  .cid-uNO9JKLFnq .navbar.opened {
    height: auto;
  }
  .cid-uNO9JKLFnq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNO9JLdm8l {
  background-image: url("../../../assets/images/lvihyry-kayttovesiremontti-1.jpg");
}
.cid-uNO9JLdm8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JLdm8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JLdm8l .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNO9JLdm8l .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNO9JLdm8l .mbr-text {
  color: #FFFFFF;
}
.cid-uNO9JLdm8l .mbr-section-btn {
  margin-top: 18px;
}
.cid-uNO9JLujaD {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNO9JLujaD .block-title {
  color: #000000;
}
.cid-uNO9JLF9aV {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNO9JLF9aV H1 {
  color: #000000;
}
.cid-uNO9JLF9aV .mbr-text,
.cid-uNO9JLF9aV .mbr-section-btn {
  color: #000000;
}
.cid-uNO9JLF9aV .mbr-subtitle {
  color: #000000;
}
.cid-uNO9JLF9aV .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNO9JLF9aV .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNO9JLF9aV .mbr-section-title,
.cid-uNO9JLF9aV .mbr-section-btn {
  color: #165788;
}
.cid-uNO9JLTiAJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNO9JLTiAJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JLTiAJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JLTiAJ a {
  font-weight: bold;
}
.cid-uNO9JLTiAJ .row {
  flex-direction: row-reverse;
}
.cid-uNO9JLTiAJ .container-fluid {
  padding: 0;
}
.cid-uNO9JLTiAJ img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNO9JLTiAJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNO9JLTiAJ .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNO9JLTiAJ .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JLTiAJ .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNO9JLTiAJ .mbr-text,
.cid-uNO9JLTiAJ .mbr-section-btn {
  color: #000000;
}
.cid-uNO9JLTiAJ .mbr-section-title {
  color: #65b32e;
}
.cid-uNO9JM8ET4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNO9JM8ET4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JM8ET4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JM8ET4 a {
  font-weight: bold;
}
.cid-uNO9JM8ET4 .container-fluid {
  padding: 0;
}
.cid-uNO9JM8ET4 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNO9JM8ET4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNO9JM8ET4 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNO9JM8ET4 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JM8ET4 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNO9JM8ET4 .mbr-text,
.cid-uNO9JM8ET4 .mbr-section-btn {
  color: #000000;
}
.cid-uNO9JM8ET4 .mbr-section-title {
  color: #65b32e;
}
.cid-uNO9JMq085 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNO9JMq085 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JMq085 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JMq085 a {
  font-weight: bold;
}
.cid-uNO9JMq085 .row {
  flex-direction: row-reverse;
}
.cid-uNO9JMq085 .container-fluid {
  padding: 0;
}
.cid-uNO9JMq085 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNO9JMq085 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNO9JMq085 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNO9JMq085 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JMq085 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNO9JMq085 .mbr-text,
.cid-uNO9JMq085 .mbr-section-btn {
  color: #000000;
}
.cid-uNO9JMq085 .mbr-section-title {
  color: #65b32e;
}
.cid-uNO9JMFAxN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNO9JMFAxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JMFAxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JMFAxN a {
  font-weight: bold;
}
.cid-uNO9JMFAxN .container-fluid {
  padding: 0;
}
.cid-uNO9JMFAxN img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNO9JMFAxN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNO9JMFAxN .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNO9JMFAxN .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JMFAxN .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNO9JMFAxN .mbr-text,
.cid-uNO9JMFAxN .mbr-section-btn {
  color: #000000;
}
.cid-uNO9JMFAxN .mbr-section-title {
  color: #65b32e;
}
.cid-uNO9JMV8xu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNO9JMV8xu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JMV8xu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JMV8xu a {
  font-weight: bold;
}
.cid-uNO9JMV8xu .row {
  flex-direction: row-reverse;
}
.cid-uNO9JMV8xu .container-fluid {
  padding: 0;
}
.cid-uNO9JMV8xu img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNO9JMV8xu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNO9JMV8xu .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNO9JMV8xu .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JMV8xu .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNO9JMV8xu .mbr-text,
.cid-uNO9JMV8xu .mbr-section-btn {
  color: #000000;
}
.cid-uNO9JMV8xu .mbr-section-title {
  color: #65b32e;
}
.cid-uNSP8vRfiX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSP8vRfiX .container {
  max-width: 1312px;
}
.cid-uNSP8vRfiX .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSP8vRfiX .row {
    padding: 0 16px;
  }
}
.cid-uNSP8vRfiX .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSP8vRfiX .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSP8vRfiX .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSP8vRfiX .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSP8vRfiX .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSP8vRfiX .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSP8vRfiX .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSP8vRfiX .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSP8vRfiX .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSP8vRfiX .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSP8vRfiX .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSP8vRfiX .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSP8vRfiX .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSP8vRfiX .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSP8vRfiX .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSP8vRfiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSP8vRfiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSP8vRfiX .mbr-text,
.cid-uNSP8vRfiX .mbr-section-btn {
  text-align: center;
}
.cid-uNO9JNrVEL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNO9JNrVEL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNO9JNrVEL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNO9JNrVEL .col-title {
  margin-bottom: 64px;
}
.cid-uNO9JNrVEL .mbr-section-title {
  color: #65b32e;
}
.cid-uNO9JNrVEL .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNO9JNrVEL .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNO9JNrVEL .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JNrVEL .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNO9JNrVEL .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNO9JNrVEL .image-wrapper {
    justify-content: center;
  }
}
.cid-uNO9JNrVEL .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uNO9JNrVEL .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNO9JNrVEL .card-title-container {
    justify-content: center;
  }
}
.cid-uNO9JNrVEL .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNO9JNrVEL .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uNO9JNrVEL .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNO9JNrVEL .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNO9JNrVEL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNO9JNrVEL .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNSDtx8LBt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDtx8LBt a {
  color: #232323;
}
.cid-uNSDtx8LBt a:hover {
  color: #65b32e;
}
.cid-uNSDtx8LBt h5 {
  color: #4e6dcc;
}
.cid-uNSDtx8LBt .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDtx8LBt .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDtx8LBt .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDtx8LBt H5 {
  color: #000000;
}
.cid-uNSDtx8LBt H2 {
  color: #000000;
}
.cid-uNSDtx8LBt DIV {
  color: #000000;
}
.cid-uNSDtx8LBt .card-title B {
  color: #65b32e;
}
.cid-uNSDtx8LBt P {
  color: #000000;
}
.cid-uNSDtx8LBt H1 {
  color: #000000;
}
.cid-uNSDtx8LBt H3 {
  color: #65b32e;
}
.cid-uNSDtx8LBt .card-title {
  color: #65b32e;
}
.cid-uNO9JOoDoo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNO9JOoDoo .footer-item {
  padding: 30px;
}
.cid-uNO9JOoDoo .mbr-section-subtitle,
.cid-uNO9JOoDoo .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNO9JOoDoo .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNO9JOoDoo .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNO9JOoDoo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNO9JOoDoo .row {
    text-align: center;
  }
  .cid-uNO9JOoDoo .social-row {
    justify-content: center;
  }
}
.cid-uNO9JOoDoo .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNO9JOoDoo .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNO9JOoDoo .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNO9JOoDoo .mbr-text {
  color: #ffffff;
}
.cid-uNO9JOoDoo .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNO9JOoDoo .list a {
  color: #ffffff;
}
.cid-uNO9JOoDoo .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNO9JOoDoo .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNO9JOoDoo .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNO9JOoDoo .mbr-iconfont {
  color: #ffffff;
}
.cid-uNO9JOoDoo .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNO9JOoDoo .address-text {
  color: #65b32e;
}
.cid-uNO9JOKD9f {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNO9JOKD9f a:link {
  text-decoration: none;
}
.cid-uNO9JOKD9f .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNO9JOKD9f .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNO9JOKD9f .inner-text {
  line-height: 3em;
}
.cid-uNO9JOKD9f .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNO9JOKD9f .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNO9JOKD9f .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNO9JOKD9f .content-text,
.cid-uNO9JOKD9f .inner-text {
  color: #ffffff;
}
.cid-uNNZkJHsCg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNNZkJHsCg nav.navbar {
  position: fixed;
}
.cid-uNNZkJHsCg .btn {
  line-height: 1.2;
}
.cid-uNNZkJHsCg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNNZkJHsCg .nav-link {
  position: relative;
}
.cid-uNNZkJHsCg .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNNZkJHsCg .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNNZkJHsCg .nav-link:hover:before {
  width: 100%;
}
.cid-uNNZkJHsCg .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-uNNZkJHsCg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNNZkJHsCg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNNZkJHsCg .dropdown-item:hover,
.cid-uNNZkJHsCg .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNNZkJHsCg .dropdown-item:hover span {
  color: white;
}
.cid-uNNZkJHsCg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNNZkJHsCg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNNZkJHsCg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNNZkJHsCg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNNZkJHsCg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNNZkJHsCg .container {
    flex-wrap: nowrap;
  }
}
.cid-uNNZkJHsCg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNNZkJHsCg .navbar-nav {
  margin: auto;
}
.cid-uNNZkJHsCg .dropdown-menu,
.cid-uNNZkJHsCg .navbar.opened {
  background: #ffffff !important;
}
.cid-uNNZkJHsCg .nav-item:focus,
.cid-uNNZkJHsCg .nav-link:focus {
  outline: none;
}
.cid-uNNZkJHsCg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNNZkJHsCg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNNZkJHsCg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNNZkJHsCg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNNZkJHsCg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNNZkJHsCg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNNZkJHsCg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNNZkJHsCg .navbar.opened {
  transition: all 0.3s;
}
.cid-uNNZkJHsCg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNNZkJHsCg .navbar .navbar-logo img {
  width: auto;
}
.cid-uNNZkJHsCg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNNZkJHsCg .navbar.collapsed {
  justify-content: center;
}
.cid-uNNZkJHsCg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNNZkJHsCg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNNZkJHsCg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNNZkJHsCg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNNZkJHsCg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNNZkJHsCg .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-uNNZkJHsCg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNNZkJHsCg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNNZkJHsCg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNNZkJHsCg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNNZkJHsCg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNNZkJHsCg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNNZkJHsCg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNNZkJHsCg .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-uNNZkJHsCg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNNZkJHsCg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNNZkJHsCg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNNZkJHsCg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNNZkJHsCg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNNZkJHsCg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNNZkJHsCg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNNZkJHsCg .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNNZkJHsCg .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNNZkJHsCg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNNZkJHsCg .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-uNNZkJHsCg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNNZkJHsCg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNNZkJHsCg .dropdown-item.active,
.cid-uNNZkJHsCg .dropdown-item:active {
  background-color: transparent;
}
.cid-uNNZkJHsCg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNNZkJHsCg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNNZkJHsCg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNNZkJHsCg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNNZkJHsCg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNNZkJHsCg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNNZkJHsCg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNNZkJHsCg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNNZkJHsCg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNNZkJHsCg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNNZkJHsCg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNNZkJHsCg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNNZkJHsCg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNNZkJHsCg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNNZkJHsCg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNNZkJHsCg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNNZkJHsCg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNNZkJHsCg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNNZkJHsCg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNNZkJHsCg .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-uNNZkJHsCg .navbar {
    height: 70px;
  }
  .cid-uNNZkJHsCg .navbar.opened {
    height: auto;
  }
  .cid-uNNZkJHsCg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNNZkKlDhP {
  background-image: url("../../../assets/images/lvihyry-lampoverkkoremontti-1.jpg");
}
.cid-uNNZkKlDhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkKlDhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkKlDhP .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNNZkKlDhP .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNNZkKlDhP .mbr-text {
  color: #FFFFFF;
}
.cid-uNNZkKlDhP .mbr-section-btn {
  margin-top: 18px;
}
.cid-uNNZkKU5nn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNNZkKU5nn .block-title {
  color: #000000;
}
.cid-uNNZkLb4jU {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNNZkLb4jU H1 {
  color: #000000;
}
.cid-uNNZkLb4jU .mbr-text,
.cid-uNNZkLb4jU .mbr-section-btn {
  color: #000000;
}
.cid-uNNZkLb4jU .mbr-subtitle {
  color: #000000;
}
.cid-uNNZkLb4jU .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNNZkLb4jU .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNNZkLb4jU .mbr-section-title,
.cid-uNNZkLb4jU .mbr-section-btn {
  color: #165788;
}
.cid-uNNZkLAaBt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNZkLAaBt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkLAaBt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkLAaBt a {
  font-weight: bold;
}
.cid-uNNZkLAaBt .row {
  flex-direction: row-reverse;
}
.cid-uNNZkLAaBt .container-fluid {
  padding: 0;
}
.cid-uNNZkLAaBt img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNZkLAaBt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNZkLAaBt .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNZkLAaBt .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkLAaBt .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNZkLAaBt .mbr-text,
.cid-uNNZkLAaBt .mbr-section-btn {
  color: #000000;
}
.cid-uNNZkLAaBt .mbr-section-title {
  color: #65b32e;
}
.cid-uNNZkM3Sg1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNZkM3Sg1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkM3Sg1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkM3Sg1 a {
  font-weight: bold;
}
.cid-uNNZkM3Sg1 .container-fluid {
  padding: 0;
}
.cid-uNNZkM3Sg1 img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNZkM3Sg1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNZkM3Sg1 .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNZkM3Sg1 .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkM3Sg1 .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNZkM3Sg1 .mbr-text,
.cid-uNNZkM3Sg1 .mbr-section-btn {
  color: #000000;
}
.cid-uNNZkM3Sg1 .mbr-section-title {
  color: #65b32e;
}
.cid-uNNZkMtLxO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNZkMtLxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkMtLxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkMtLxO a {
  font-weight: bold;
}
.cid-uNNZkMtLxO .row {
  flex-direction: row-reverse;
}
.cid-uNNZkMtLxO .container-fluid {
  padding: 0;
}
.cid-uNNZkMtLxO img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNZkMtLxO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNZkMtLxO .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNZkMtLxO .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkMtLxO .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNZkMtLxO .mbr-text,
.cid-uNNZkMtLxO .mbr-section-btn {
  color: #000000;
}
.cid-uNNZkMtLxO .mbr-section-title {
  color: #65b32e;
}
.cid-uNNZkNLbpM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNNZkNLbpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkNLbpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkNLbpM a {
  font-weight: bold;
}
.cid-uNNZkNLbpM .container-fluid {
  padding: 0;
}
.cid-uNNZkNLbpM img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNZkNLbpM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNZkNLbpM .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNZkNLbpM .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkNLbpM .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNZkNLbpM .mbr-text,
.cid-uNNZkNLbpM .mbr-section-btn {
  color: #000000;
}
.cid-uNNZkNLbpM .mbr-section-title {
  color: #65b32e;
}
.cid-uNNZkOecFJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNNZkOecFJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkOecFJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkOecFJ a {
  font-weight: bold;
}
.cid-uNNZkOecFJ .row {
  flex-direction: row-reverse;
}
.cid-uNNZkOecFJ .container-fluid {
  padding: 0;
}
.cid-uNNZkOecFJ img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNNZkOecFJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNNZkOecFJ .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNNZkOecFJ .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkOecFJ .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNNZkOecFJ .mbr-text,
.cid-uNNZkOecFJ .mbr-section-btn {
  color: #000000;
}
.cid-uNNZkOecFJ .mbr-section-title {
  color: #65b32e;
}
.cid-uNSP5KMvnR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSP5KMvnR .container {
  max-width: 1312px;
}
.cid-uNSP5KMvnR .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSP5KMvnR .row {
    padding: 0 16px;
  }
}
.cid-uNSP5KMvnR .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSP5KMvnR .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSP5KMvnR .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSP5KMvnR .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSP5KMvnR .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSP5KMvnR .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSP5KMvnR .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSP5KMvnR .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSP5KMvnR .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSP5KMvnR .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSP5KMvnR .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSP5KMvnR .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSP5KMvnR .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSP5KMvnR .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSP5KMvnR .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSP5KMvnR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSP5KMvnR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSP5KMvnR .mbr-text,
.cid-uNSP5KMvnR .mbr-section-btn {
  text-align: center;
}
.cid-uNNZkQ1IiB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNNZkQ1IiB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNZkQ1IiB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNZkQ1IiB .col-title {
  margin-bottom: 64px;
}
.cid-uNNZkQ1IiB .mbr-section-title {
  color: #65b32e;
}
.cid-uNNZkQ1IiB .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNNZkQ1IiB .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNNZkQ1IiB .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkQ1IiB .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNNZkQ1IiB .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNNZkQ1IiB .image-wrapper {
    justify-content: center;
  }
}
.cid-uNNZkQ1IiB .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uNNZkQ1IiB .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNNZkQ1IiB .card-title-container {
    justify-content: center;
  }
}
.cid-uNNZkQ1IiB .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNNZkQ1IiB .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uNNZkQ1IiB .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNNZkQ1IiB .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNNZkQ1IiB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNNZkQ1IiB .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNSDqwTJJg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDqwTJJg a {
  color: #232323;
}
.cid-uNSDqwTJJg a:hover {
  color: #65b32e;
}
.cid-uNSDqwTJJg h5 {
  color: #4e6dcc;
}
.cid-uNSDqwTJJg .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDqwTJJg .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDqwTJJg .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDqwTJJg H5 {
  color: #000000;
}
.cid-uNSDqwTJJg H2 {
  color: #000000;
}
.cid-uNSDqwTJJg DIV {
  color: #000000;
}
.cid-uNSDqwTJJg .card-title B {
  color: #65b32e;
}
.cid-uNSDqwTJJg P {
  color: #000000;
}
.cid-uNSDqwTJJg H1 {
  color: #000000;
}
.cid-uNSDqwTJJg H3 {
  color: #65b32e;
}
.cid-uNSDqwTJJg .card-title {
  color: #65b32e;
}
.cid-uNNZkR1Ktm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNNZkR1Ktm .footer-item {
  padding: 30px;
}
.cid-uNNZkR1Ktm .mbr-section-subtitle,
.cid-uNNZkR1Ktm .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNNZkR1Ktm .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNNZkR1Ktm .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNNZkR1Ktm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNNZkR1Ktm .row {
    text-align: center;
  }
  .cid-uNNZkR1Ktm .social-row {
    justify-content: center;
  }
}
.cid-uNNZkR1Ktm .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNNZkR1Ktm .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNNZkR1Ktm .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNNZkR1Ktm .mbr-text {
  color: #ffffff;
}
.cid-uNNZkR1Ktm .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNNZkR1Ktm .list a {
  color: #ffffff;
}
.cid-uNNZkR1Ktm .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNNZkR1Ktm .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNNZkR1Ktm .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNNZkR1Ktm .mbr-iconfont {
  color: #ffffff;
}
.cid-uNNZkR1Ktm .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNNZkR1Ktm .address-text {
  color: #65b32e;
}
.cid-uNNZkRoWbn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNNZkRoWbn a:link {
  text-decoration: none;
}
.cid-uNNZkRoWbn .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNNZkRoWbn .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNNZkRoWbn .inner-text {
  line-height: 3em;
}
.cid-uNNZkRoWbn .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNNZkRoWbn .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNNZkRoWbn .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNNZkRoWbn .content-text,
.cid-uNNZkRoWbn .inner-text {
  color: #ffffff;
}
.cid-uNOfjmunS4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNOfjmunS4 nav.navbar {
  position: fixed;
}
.cid-uNOfjmunS4 .btn {
  line-height: 1.2;
}
.cid-uNOfjmunS4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNOfjmunS4 .nav-link {
  position: relative;
}
.cid-uNOfjmunS4 .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNOfjmunS4 .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNOfjmunS4 .nav-link:hover:before {
  width: 100%;
}
.cid-uNOfjmunS4 .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-uNOfjmunS4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOfjmunS4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNOfjmunS4 .dropdown-item:hover,
.cid-uNOfjmunS4 .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNOfjmunS4 .dropdown-item:hover span {
  color: white;
}
.cid-uNOfjmunS4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNOfjmunS4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNOfjmunS4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNOfjmunS4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNOfjmunS4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNOfjmunS4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uNOfjmunS4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNOfjmunS4 .navbar-nav {
  margin: auto;
}
.cid-uNOfjmunS4 .dropdown-menu,
.cid-uNOfjmunS4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uNOfjmunS4 .nav-item:focus,
.cid-uNOfjmunS4 .nav-link:focus {
  outline: none;
}
.cid-uNOfjmunS4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNOfjmunS4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNOfjmunS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNOfjmunS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNOfjmunS4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNOfjmunS4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNOfjmunS4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNOfjmunS4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uNOfjmunS4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNOfjmunS4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uNOfjmunS4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNOfjmunS4 .navbar.collapsed {
  justify-content: center;
}
.cid-uNOfjmunS4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNOfjmunS4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNOfjmunS4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNOfjmunS4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNOfjmunS4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNOfjmunS4 .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-uNOfjmunS4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNOfjmunS4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNOfjmunS4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNOfjmunS4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNOfjmunS4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNOfjmunS4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNOfjmunS4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNOfjmunS4 .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-uNOfjmunS4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNOfjmunS4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNOfjmunS4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNOfjmunS4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNOfjmunS4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNOfjmunS4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNOfjmunS4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNOfjmunS4 .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOfjmunS4 .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNOfjmunS4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNOfjmunS4 .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-uNOfjmunS4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNOfjmunS4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNOfjmunS4 .dropdown-item.active,
.cid-uNOfjmunS4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNOfjmunS4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNOfjmunS4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNOfjmunS4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNOfjmunS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNOfjmunS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNOfjmunS4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNOfjmunS4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNOfjmunS4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNOfjmunS4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNOfjmunS4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNOfjmunS4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOfjmunS4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOfjmunS4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNOfjmunS4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOfjmunS4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNOfjmunS4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNOfjmunS4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOfjmunS4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNOfjmunS4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNOfjmunS4 .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-uNOfjmunS4 .navbar {
    height: 70px;
  }
  .cid-uNOfjmunS4 .navbar.opened {
    height: auto;
  }
  .cid-uNOfjmunS4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNOfjmXl1t {
  background-image: url("../../../assets/images/lvihyry-ilmalampopumput-1.jpg");
}
.cid-uNOfjmXl1t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOfjmXl1t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOfjmXl1t .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNOfjmXl1t .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNOfjmXl1t .mbr-text {
  color: #FFFFFF;
}
.cid-uNOfjmXl1t .mbr-section-btn {
  margin-top: 18px;
}
.cid-uNOfjnfji3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNOfjnfji3 .block-title {
  color: #000000;
}
.cid-uNOfjnpU4M {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNOfjnpU4M H1 {
  color: #000000;
}
.cid-uNOfjnpU4M .mbr-text,
.cid-uNOfjnpU4M .mbr-section-btn {
  color: #000000;
}
.cid-uNOfjnpU4M .mbr-subtitle {
  color: #000000;
}
.cid-uNOfjnpU4M .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNOfjnpU4M .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNOfjnpU4M .mbr-section-title,
.cid-uNOfjnpU4M .mbr-section-btn {
  color: #165788;
}
.cid-uNOfjnCBmE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNOfjnCBmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOfjnCBmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOfjnCBmE a {
  font-weight: bold;
}
.cid-uNOfjnCBmE .row {
  flex-direction: row-reverse;
}
.cid-uNOfjnCBmE .container-fluid {
  padding: 0;
}
.cid-uNOfjnCBmE img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOfjnCBmE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOfjnCBmE .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOfjnCBmE .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOfjnCBmE .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOfjnCBmE .mbr-text,
.cid-uNOfjnCBmE .mbr-section-btn {
  color: #000000;
}
.cid-uNOfjnCBmE .mbr-section-title {
  color: #65b32e;
}
.cid-uNOfjnRgOK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNOfjnRgOK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOfjnRgOK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOfjnRgOK a {
  font-weight: bold;
}
.cid-uNOfjnRgOK .container-fluid {
  padding: 0;
}
.cid-uNOfjnRgOK img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOfjnRgOK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOfjnRgOK .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOfjnRgOK .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOfjnRgOK .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOfjnRgOK .mbr-text,
.cid-uNOfjnRgOK .mbr-section-btn {
  color: #000000;
}
.cid-uNOfjnRgOK .mbr-section-title {
  color: #65b32e;
}
.cid-uNOfjooCOh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNOfjooCOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOfjooCOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOfjooCOh a {
  font-weight: bold;
}
.cid-uNOfjooCOh .row {
  flex-direction: row-reverse;
}
.cid-uNOfjooCOh .container-fluid {
  padding: 0;
}
.cid-uNOfjooCOh img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOfjooCOh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOfjooCOh .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOfjooCOh .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOfjooCOh .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOfjooCOh .mbr-text,
.cid-uNOfjooCOh .mbr-section-btn {
  color: #000000;
}
.cid-uNOfjooCOh .mbr-section-title {
  color: #65b32e;
}
.cid-uNOfjoFOqO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNOfjoFOqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOfjoFOqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOfjoFOqO a {
  font-weight: bold;
}
.cid-uNOfjoFOqO .container-fluid {
  padding: 0;
}
.cid-uNOfjoFOqO img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOfjoFOqO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOfjoFOqO .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOfjoFOqO .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOfjoFOqO .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOfjoFOqO .mbr-text,
.cid-uNOfjoFOqO .mbr-section-btn {
  color: #000000;
}
.cid-uNOfjoFOqO .mbr-section-title {
  color: #65b32e;
}
.cid-uNSPbhfD6R {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSPbhfD6R .container {
  max-width: 1312px;
}
.cid-uNSPbhfD6R .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSPbhfD6R .row {
    padding: 0 16px;
  }
}
.cid-uNSPbhfD6R .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSPbhfD6R .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSPbhfD6R .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSPbhfD6R .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSPbhfD6R .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSPbhfD6R .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSPbhfD6R .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSPbhfD6R .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSPbhfD6R .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSPbhfD6R .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSPbhfD6R .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSPbhfD6R .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSPbhfD6R .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSPbhfD6R .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSPbhfD6R .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSPbhfD6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSPbhfD6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSPbhfD6R .mbr-text,
.cid-uNSPbhfD6R .mbr-section-btn {
  text-align: center;
}
.cid-uNOfjpcoFn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNOfjpcoFn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOfjpcoFn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOfjpcoFn .col-title {
  margin-bottom: 64px;
}
.cid-uNOfjpcoFn .mbr-section-title {
  color: #65b32e;
}
.cid-uNOfjpcoFn .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNOfjpcoFn .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNOfjpcoFn .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOfjpcoFn .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNOfjpcoFn .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNOfjpcoFn .image-wrapper {
    justify-content: center;
  }
}
.cid-uNOfjpcoFn .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uNOfjpcoFn .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNOfjpcoFn .card-title-container {
    justify-content: center;
  }
}
.cid-uNOfjpcoFn .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNOfjpcoFn .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uNOfjpcoFn .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNOfjpcoFn .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNOfjpcoFn .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNOfjpcoFn .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNSDwJTDtv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDwJTDtv a {
  color: #232323;
}
.cid-uNSDwJTDtv a:hover {
  color: #65b32e;
}
.cid-uNSDwJTDtv h5 {
  color: #4e6dcc;
}
.cid-uNSDwJTDtv .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDwJTDtv .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDwJTDtv .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDwJTDtv H5 {
  color: #000000;
}
.cid-uNSDwJTDtv H2 {
  color: #000000;
}
.cid-uNSDwJTDtv DIV {
  color: #000000;
}
.cid-uNSDwJTDtv .card-title B {
  color: #65b32e;
}
.cid-uNSDwJTDtv P {
  color: #000000;
}
.cid-uNSDwJTDtv H1 {
  color: #000000;
}
.cid-uNSDwJTDtv H3 {
  color: #65b32e;
}
.cid-uNSDwJTDtv .card-title {
  color: #65b32e;
}
.cid-uNOfjqapeZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNOfjqapeZ .footer-item {
  padding: 30px;
}
.cid-uNOfjqapeZ .mbr-section-subtitle,
.cid-uNOfjqapeZ .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNOfjqapeZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNOfjqapeZ .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNOfjqapeZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNOfjqapeZ .row {
    text-align: center;
  }
  .cid-uNOfjqapeZ .social-row {
    justify-content: center;
  }
}
.cid-uNOfjqapeZ .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNOfjqapeZ .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNOfjqapeZ .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNOfjqapeZ .mbr-text {
  color: #ffffff;
}
.cid-uNOfjqapeZ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNOfjqapeZ .list a {
  color: #ffffff;
}
.cid-uNOfjqapeZ .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNOfjqapeZ .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNOfjqapeZ .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNOfjqapeZ .mbr-iconfont {
  color: #ffffff;
}
.cid-uNOfjqapeZ .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNOfjqapeZ .address-text {
  color: #65b32e;
}
.cid-uNOfjqxNkk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNOfjqxNkk a:link {
  text-decoration: none;
}
.cid-uNOfjqxNkk .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNOfjqxNkk .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNOfjqxNkk .inner-text {
  line-height: 3em;
}
.cid-uNOfjqxNkk .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNOfjqxNkk .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNOfjqxNkk .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNOfjqxNkk .content-text,
.cid-uNOfjqxNkk .inner-text {
  color: #ffffff;
}
.cid-uNOncF2boF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNOncF2boF nav.navbar {
  position: fixed;
}
.cid-uNOncF2boF .btn {
  line-height: 1.2;
}
.cid-uNOncF2boF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNOncF2boF .nav-link {
  position: relative;
}
.cid-uNOncF2boF .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNOncF2boF .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNOncF2boF .nav-link:hover:before {
  width: 100%;
}
.cid-uNOncF2boF .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-uNOncF2boF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOncF2boF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNOncF2boF .dropdown-item:hover,
.cid-uNOncF2boF .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNOncF2boF .dropdown-item:hover span {
  color: white;
}
.cid-uNOncF2boF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNOncF2boF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNOncF2boF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNOncF2boF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNOncF2boF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNOncF2boF .container {
    flex-wrap: nowrap;
  }
}
.cid-uNOncF2boF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNOncF2boF .navbar-nav {
  margin: auto;
}
.cid-uNOncF2boF .dropdown-menu,
.cid-uNOncF2boF .navbar.opened {
  background: #ffffff !important;
}
.cid-uNOncF2boF .nav-item:focus,
.cid-uNOncF2boF .nav-link:focus {
  outline: none;
}
.cid-uNOncF2boF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNOncF2boF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNOncF2boF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNOncF2boF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNOncF2boF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNOncF2boF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNOncF2boF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNOncF2boF .navbar.opened {
  transition: all 0.3s;
}
.cid-uNOncF2boF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNOncF2boF .navbar .navbar-logo img {
  width: auto;
}
.cid-uNOncF2boF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNOncF2boF .navbar.collapsed {
  justify-content: center;
}
.cid-uNOncF2boF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNOncF2boF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNOncF2boF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNOncF2boF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNOncF2boF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNOncF2boF .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-uNOncF2boF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNOncF2boF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNOncF2boF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNOncF2boF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNOncF2boF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNOncF2boF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNOncF2boF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNOncF2boF .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-uNOncF2boF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNOncF2boF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNOncF2boF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNOncF2boF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNOncF2boF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNOncF2boF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNOncF2boF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNOncF2boF .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOncF2boF .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNOncF2boF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNOncF2boF .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-uNOncF2boF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNOncF2boF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNOncF2boF .dropdown-item.active,
.cid-uNOncF2boF .dropdown-item:active {
  background-color: transparent;
}
.cid-uNOncF2boF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNOncF2boF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNOncF2boF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNOncF2boF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNOncF2boF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNOncF2boF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNOncF2boF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNOncF2boF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNOncF2boF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNOncF2boF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNOncF2boF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOncF2boF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOncF2boF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNOncF2boF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOncF2boF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNOncF2boF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNOncF2boF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOncF2boF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNOncF2boF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNOncF2boF .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-uNOncF2boF .navbar {
    height: 70px;
  }
  .cid-uNOncF2boF .navbar.opened {
    height: auto;
  }
  .cid-uNOncF2boF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNOncFsEeH {
  background-image: url("../../../assets/images/lvihyry-lvi-huoltotyot-1.jpg");
}
.cid-uNOncFsEeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOncFsEeH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOncFsEeH .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNOncFsEeH .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNOncFsEeH .mbr-text {
  color: #FFFFFF;
}
.cid-uNOncFsEeH .mbr-section-btn {
  margin-top: 18px;
}
.cid-uNOncFJq5A {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNOncFJq5A .block-title {
  color: #000000;
}
.cid-uNOncFTDTG {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNOncFTDTG H1 {
  color: #000000;
}
.cid-uNOncFTDTG .mbr-text,
.cid-uNOncFTDTG .mbr-section-btn {
  color: #000000;
}
.cid-uNOncFTDTG .mbr-subtitle {
  color: #000000;
}
.cid-uNOncFTDTG .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNOncFTDTG .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNOncFTDTG .mbr-section-title,
.cid-uNOncFTDTG .mbr-section-btn {
  color: #165788;
}
.cid-uNOncG9Wnt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNOncG9Wnt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOncG9Wnt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOncG9Wnt a {
  font-weight: bold;
}
.cid-uNOncG9Wnt .row {
  flex-direction: row-reverse;
}
.cid-uNOncG9Wnt .container-fluid {
  padding: 0;
}
.cid-uNOncG9Wnt img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOncG9Wnt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOncG9Wnt .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOncG9Wnt .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOncG9Wnt .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOncG9Wnt .mbr-text,
.cid-uNOncG9Wnt .mbr-section-btn {
  color: #000000;
}
.cid-uNOncG9Wnt .mbr-section-title {
  color: #65b32e;
}
.cid-uNOIRiNZPS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNOIRiNZPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOIRiNZPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOIRiNZPS a {
  font-weight: bold;
}
.cid-uNOIRiNZPS .container-fluid {
  padding: 0;
}
.cid-uNOIRiNZPS img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOIRiNZPS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOIRiNZPS .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOIRiNZPS .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOIRiNZPS .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOIRiNZPS .mbr-text,
.cid-uNOIRiNZPS .mbr-section-btn {
  color: #000000;
}
.cid-uNOIRiNZPS .mbr-section-title {
  color: #65b32e;
}
.cid-uNOKJwkGer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uNOKJwkGer .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOKJwkGer .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOKJwkGer .col-title {
  margin-bottom: 64px;
}
.cid-uNOKJwkGer .mbr-section-title {
  color: #65b32e;
}
.cid-uNOKJwkGer .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-uNOKJwkGer .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .cid-uNOKJwkGer .cards-container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOKJwkGer .cards-container {
    max-width: 482px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uNOKJwkGer .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uNOKJwkGer .image-wrapper {
    justify-content: center;
  }
}
.cid-uNOKJwkGer .image-wrapper img {
  width: 100%;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.cid-uNOKJwkGer .card-title-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .cid-uNOKJwkGer .card-title-container {
    justify-content: center;
  }
}
.cid-uNOKJwkGer .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 20px;
  background-color: #65b32e;
  color: #ffffff;
  flex-shrink: 0;
}
.cid-uNOKJwkGer .card-title {
  color: #65b32e;
  margin-bottom: 0;
}
.cid-uNOKJwkGer .card-text {
  color: #1F1D1A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uNOKJwkGer .card-text {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uNOKJwkGer .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNOKJwkGer .bg-img {
  position: absolute;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
.cid-uNSDAnZYUN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDAnZYUN a {
  color: #232323;
}
.cid-uNSDAnZYUN a:hover {
  color: #65b32e;
}
.cid-uNSDAnZYUN h5 {
  color: #4e6dcc;
}
.cid-uNSDAnZYUN .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDAnZYUN .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDAnZYUN .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDAnZYUN H5 {
  color: #000000;
}
.cid-uNSDAnZYUN H2 {
  color: #000000;
}
.cid-uNSDAnZYUN DIV {
  color: #000000;
}
.cid-uNSDAnZYUN .card-title B {
  color: #65b32e;
}
.cid-uNSDAnZYUN P {
  color: #000000;
}
.cid-uNSDAnZYUN H1 {
  color: #000000;
}
.cid-uNSDAnZYUN H3 {
  color: #65b32e;
}
.cid-uNSDAnZYUN .card-title {
  color: #65b32e;
}
.cid-uNOncIpvg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNOncIpvg6 .footer-item {
  padding: 30px;
}
.cid-uNOncIpvg6 .mbr-section-subtitle,
.cid-uNOncIpvg6 .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNOncIpvg6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNOncIpvg6 .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNOncIpvg6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNOncIpvg6 .row {
    text-align: center;
  }
  .cid-uNOncIpvg6 .social-row {
    justify-content: center;
  }
}
.cid-uNOncIpvg6 .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNOncIpvg6 .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNOncIpvg6 .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNOncIpvg6 .mbr-text {
  color: #ffffff;
}
.cid-uNOncIpvg6 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNOncIpvg6 .list a {
  color: #ffffff;
}
.cid-uNOncIpvg6 .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNOncIpvg6 .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNOncIpvg6 .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNOncIpvg6 .mbr-iconfont {
  color: #ffffff;
}
.cid-uNOncIpvg6 .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNOncIpvg6 .address-text {
  color: #65b32e;
}
.cid-uNOncINRwR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNOncINRwR a:link {
  text-decoration: none;
}
.cid-uNOncINRwR .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNOncINRwR .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNOncINRwR .inner-text {
  line-height: 3em;
}
.cid-uNOncINRwR .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNOncINRwR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNOncINRwR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNOncINRwR .content-text,
.cid-uNOncINRwR .inner-text {
  color: #ffffff;
}
.cid-uNOrCHB0dl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNOrCHB0dl nav.navbar {
  position: fixed;
}
.cid-uNOrCHB0dl .btn {
  line-height: 1.2;
}
.cid-uNOrCHB0dl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNOrCHB0dl .nav-link {
  position: relative;
}
.cid-uNOrCHB0dl .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNOrCHB0dl .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNOrCHB0dl .nav-link:hover:before {
  width: 100%;
}
.cid-uNOrCHB0dl .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-uNOrCHB0dl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOrCHB0dl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNOrCHB0dl .dropdown-item:hover,
.cid-uNOrCHB0dl .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNOrCHB0dl .dropdown-item:hover span {
  color: white;
}
.cid-uNOrCHB0dl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNOrCHB0dl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNOrCHB0dl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNOrCHB0dl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNOrCHB0dl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNOrCHB0dl .container {
    flex-wrap: nowrap;
  }
}
.cid-uNOrCHB0dl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNOrCHB0dl .navbar-nav {
  margin: auto;
}
.cid-uNOrCHB0dl .dropdown-menu,
.cid-uNOrCHB0dl .navbar.opened {
  background: #ffffff !important;
}
.cid-uNOrCHB0dl .nav-item:focus,
.cid-uNOrCHB0dl .nav-link:focus {
  outline: none;
}
.cid-uNOrCHB0dl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNOrCHB0dl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNOrCHB0dl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNOrCHB0dl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNOrCHB0dl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNOrCHB0dl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNOrCHB0dl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNOrCHB0dl .navbar.opened {
  transition: all 0.3s;
}
.cid-uNOrCHB0dl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNOrCHB0dl .navbar .navbar-logo img {
  width: auto;
}
.cid-uNOrCHB0dl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNOrCHB0dl .navbar.collapsed {
  justify-content: center;
}
.cid-uNOrCHB0dl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNOrCHB0dl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNOrCHB0dl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNOrCHB0dl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNOrCHB0dl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNOrCHB0dl .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-uNOrCHB0dl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNOrCHB0dl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNOrCHB0dl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNOrCHB0dl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNOrCHB0dl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNOrCHB0dl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNOrCHB0dl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNOrCHB0dl .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-uNOrCHB0dl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNOrCHB0dl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNOrCHB0dl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNOrCHB0dl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNOrCHB0dl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNOrCHB0dl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNOrCHB0dl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNOrCHB0dl .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOrCHB0dl .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNOrCHB0dl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNOrCHB0dl .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-uNOrCHB0dl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNOrCHB0dl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNOrCHB0dl .dropdown-item.active,
.cid-uNOrCHB0dl .dropdown-item:active {
  background-color: transparent;
}
.cid-uNOrCHB0dl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNOrCHB0dl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNOrCHB0dl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNOrCHB0dl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNOrCHB0dl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNOrCHB0dl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNOrCHB0dl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNOrCHB0dl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNOrCHB0dl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNOrCHB0dl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNOrCHB0dl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOrCHB0dl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOrCHB0dl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNOrCHB0dl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOrCHB0dl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNOrCHB0dl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNOrCHB0dl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOrCHB0dl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNOrCHB0dl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNOrCHB0dl .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-uNOrCHB0dl .navbar {
    height: 70px;
  }
  .cid-uNOrCHB0dl .navbar.opened {
    height: auto;
  }
  .cid-uNOrCHB0dl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNOrCI3MFh {
  background-image: url("../../../assets/images/lvihyry-pientalon-lvi-urakointi-1.jpg");
}
.cid-uNOrCI3MFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOrCI3MFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOrCI3MFh .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNOrCI3MFh .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-uNOrCI3MFh .mbr-text {
  color: #FFFFFF;
}
.cid-uNOrCI3MFh .mbr-section-btn {
  margin-top: 18px;
}
.cid-uNOrCIm0P5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNOrCIm0P5 .block-title {
  color: #000000;
}
.cid-uNOrCIy2oj {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNOrCIy2oj H1 {
  color: #000000;
}
.cid-uNOrCIy2oj .mbr-text,
.cid-uNOrCIy2oj .mbr-section-btn {
  color: #000000;
}
.cid-uNOrCIy2oj .mbr-subtitle {
  color: #000000;
}
.cid-uNOrCIy2oj .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNOrCIy2oj .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNOrCIy2oj .mbr-section-title,
.cid-uNOrCIy2oj .mbr-section-btn {
  color: #165788;
}
.cid-uNOrCIQdjw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNOrCIQdjw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOrCIQdjw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOrCIQdjw a {
  font-weight: bold;
}
.cid-uNOrCIQdjw .row {
  flex-direction: row-reverse;
}
.cid-uNOrCIQdjw .container-fluid {
  padding: 0;
}
.cid-uNOrCIQdjw img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOrCIQdjw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOrCIQdjw .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOrCIQdjw .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOrCIQdjw .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOrCIQdjw .mbr-text,
.cid-uNOrCIQdjw .mbr-section-btn {
  color: #000000;
}
.cid-uNOrCIQdjw .mbr-section-title {
  color: #65b32e;
}
.cid-uNSDDKzgbR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDDKzgbR a {
  color: #232323;
}
.cid-uNSDDKzgbR a:hover {
  color: #65b32e;
}
.cid-uNSDDKzgbR h5 {
  color: #4e6dcc;
}
.cid-uNSDDKzgbR .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDDKzgbR .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDDKzgbR .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDDKzgbR H5 {
  color: #000000;
}
.cid-uNSDDKzgbR H2 {
  color: #000000;
}
.cid-uNSDDKzgbR DIV {
  color: #000000;
}
.cid-uNSDDKzgbR .card-title B {
  color: #65b32e;
}
.cid-uNSDDKzgbR P {
  color: #000000;
}
.cid-uNSDDKzgbR H1 {
  color: #000000;
}
.cid-uNSDDKzgbR H3 {
  color: #65b32e;
}
.cid-uNSDDKzgbR .card-title {
  color: #65b32e;
}
.cid-uNOrCJHMRS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNOrCJHMRS .footer-item {
  padding: 30px;
}
.cid-uNOrCJHMRS .mbr-section-subtitle,
.cid-uNOrCJHMRS .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNOrCJHMRS .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNOrCJHMRS .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNOrCJHMRS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNOrCJHMRS .row {
    text-align: center;
  }
  .cid-uNOrCJHMRS .social-row {
    justify-content: center;
  }
}
.cid-uNOrCJHMRS .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNOrCJHMRS .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNOrCJHMRS .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNOrCJHMRS .mbr-text {
  color: #ffffff;
}
.cid-uNOrCJHMRS .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNOrCJHMRS .list a {
  color: #ffffff;
}
.cid-uNOrCJHMRS .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNOrCJHMRS .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNOrCJHMRS .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNOrCJHMRS .mbr-iconfont {
  color: #ffffff;
}
.cid-uNOrCJHMRS .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNOrCJHMRS .address-text {
  color: #65b32e;
}
.cid-uNOrCK53LC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNOrCK53LC a:link {
  text-decoration: none;
}
.cid-uNOrCK53LC .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNOrCK53LC .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNOrCK53LC .inner-text {
  line-height: 3em;
}
.cid-uNOrCK53LC .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNOrCK53LC .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNOrCK53LC .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNOrCK53LC .content-text,
.cid-uNOrCK53LC .inner-text {
  color: #ffffff;
}
.cid-uNOtvsKCfz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNOtvsKCfz nav.navbar {
  position: fixed;
}
.cid-uNOtvsKCfz .btn {
  line-height: 1.2;
}
.cid-uNOtvsKCfz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNOtvsKCfz .nav-link {
  position: relative;
}
.cid-uNOtvsKCfz .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNOtvsKCfz .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNOtvsKCfz .nav-link:hover:before {
  width: 100%;
}
.cid-uNOtvsKCfz .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-uNOtvsKCfz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOtvsKCfz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNOtvsKCfz .dropdown-item:hover,
.cid-uNOtvsKCfz .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNOtvsKCfz .dropdown-item:hover span {
  color: white;
}
.cid-uNOtvsKCfz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNOtvsKCfz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNOtvsKCfz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNOtvsKCfz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNOtvsKCfz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNOtvsKCfz .container {
    flex-wrap: nowrap;
  }
}
.cid-uNOtvsKCfz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNOtvsKCfz .navbar-nav {
  margin: auto;
}
.cid-uNOtvsKCfz .dropdown-menu,
.cid-uNOtvsKCfz .navbar.opened {
  background: #ffffff !important;
}
.cid-uNOtvsKCfz .nav-item:focus,
.cid-uNOtvsKCfz .nav-link:focus {
  outline: none;
}
.cid-uNOtvsKCfz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNOtvsKCfz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNOtvsKCfz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNOtvsKCfz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNOtvsKCfz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNOtvsKCfz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNOtvsKCfz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNOtvsKCfz .navbar.opened {
  transition: all 0.3s;
}
.cid-uNOtvsKCfz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNOtvsKCfz .navbar .navbar-logo img {
  width: auto;
}
.cid-uNOtvsKCfz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNOtvsKCfz .navbar.collapsed {
  justify-content: center;
}
.cid-uNOtvsKCfz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNOtvsKCfz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNOtvsKCfz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNOtvsKCfz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNOtvsKCfz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNOtvsKCfz .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-uNOtvsKCfz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNOtvsKCfz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNOtvsKCfz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNOtvsKCfz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNOtvsKCfz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNOtvsKCfz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNOtvsKCfz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNOtvsKCfz .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-uNOtvsKCfz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNOtvsKCfz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNOtvsKCfz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNOtvsKCfz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNOtvsKCfz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNOtvsKCfz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNOtvsKCfz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNOtvsKCfz .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOtvsKCfz .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNOtvsKCfz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNOtvsKCfz .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-uNOtvsKCfz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNOtvsKCfz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNOtvsKCfz .dropdown-item.active,
.cid-uNOtvsKCfz .dropdown-item:active {
  background-color: transparent;
}
.cid-uNOtvsKCfz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNOtvsKCfz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNOtvsKCfz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNOtvsKCfz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNOtvsKCfz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNOtvsKCfz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNOtvsKCfz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNOtvsKCfz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNOtvsKCfz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNOtvsKCfz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNOtvsKCfz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOtvsKCfz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOtvsKCfz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNOtvsKCfz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOtvsKCfz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNOtvsKCfz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNOtvsKCfz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOtvsKCfz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNOtvsKCfz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNOtvsKCfz .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-uNOtvsKCfz .navbar {
    height: 70px;
  }
  .cid-uNOtvsKCfz .navbar.opened {
    height: auto;
  }
  .cid-uNOtvsKCfz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNOtvtok2u {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNOtvtok2u .block-title {
  color: #000000;
}
.cid-uNOtvtxsSe {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNOtvtxsSe H1 {
  color: #000000;
}
.cid-uNOtvtxsSe .mbr-text,
.cid-uNOtvtxsSe .mbr-section-btn {
  color: #000000;
}
.cid-uNOtvtxsSe .mbr-subtitle {
  color: #000000;
}
.cid-uNOtvtxsSe .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNOtvtxsSe .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNOtvtxsSe .mbr-section-title,
.cid-uNOtvtxsSe .mbr-section-btn {
  color: #165788;
}
.cid-uNOtvutpNh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNOtvutpNh .footer-item {
  padding: 30px;
}
.cid-uNOtvutpNh .mbr-section-subtitle,
.cid-uNOtvutpNh .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNOtvutpNh .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNOtvutpNh .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNOtvutpNh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNOtvutpNh .row {
    text-align: center;
  }
  .cid-uNOtvutpNh .social-row {
    justify-content: center;
  }
}
.cid-uNOtvutpNh .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNOtvutpNh .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNOtvutpNh .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNOtvutpNh .mbr-text {
  color: #ffffff;
}
.cid-uNOtvutpNh .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNOtvutpNh .list a {
  color: #ffffff;
}
.cid-uNOtvutpNh .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNOtvutpNh .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNOtvutpNh .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNOtvutpNh .mbr-iconfont {
  color: #ffffff;
}
.cid-uNOtvutpNh .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNOtvutpNh .address-text {
  color: #65b32e;
}
.cid-uNOtvuNBLI {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNOtvuNBLI a:link {
  text-decoration: none;
}
.cid-uNOtvuNBLI .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNOtvuNBLI .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNOtvuNBLI .inner-text {
  line-height: 3em;
}
.cid-uNOtvuNBLI .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNOtvuNBLI .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNOtvuNBLI .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNOtvuNBLI .content-text,
.cid-uNOtvuNBLI .inner-text {
  color: #ffffff;
}
.cid-uNOtZVNAlM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNOtZVNAlM nav.navbar {
  position: fixed;
}
.cid-uNOtZVNAlM .btn {
  line-height: 1.2;
}
.cid-uNOtZVNAlM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNOtZVNAlM .nav-link {
  position: relative;
}
.cid-uNOtZVNAlM .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNOtZVNAlM .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNOtZVNAlM .nav-link:hover:before {
  width: 100%;
}
.cid-uNOtZVNAlM .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-uNOtZVNAlM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOtZVNAlM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNOtZVNAlM .dropdown-item:hover,
.cid-uNOtZVNAlM .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNOtZVNAlM .dropdown-item:hover span {
  color: white;
}
.cid-uNOtZVNAlM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNOtZVNAlM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNOtZVNAlM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNOtZVNAlM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNOtZVNAlM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNOtZVNAlM .container {
    flex-wrap: nowrap;
  }
}
.cid-uNOtZVNAlM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNOtZVNAlM .navbar-nav {
  margin: auto;
}
.cid-uNOtZVNAlM .dropdown-menu,
.cid-uNOtZVNAlM .navbar.opened {
  background: #ffffff !important;
}
.cid-uNOtZVNAlM .nav-item:focus,
.cid-uNOtZVNAlM .nav-link:focus {
  outline: none;
}
.cid-uNOtZVNAlM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNOtZVNAlM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNOtZVNAlM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNOtZVNAlM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNOtZVNAlM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNOtZVNAlM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNOtZVNAlM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNOtZVNAlM .navbar.opened {
  transition: all 0.3s;
}
.cid-uNOtZVNAlM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNOtZVNAlM .navbar .navbar-logo img {
  width: auto;
}
.cid-uNOtZVNAlM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNOtZVNAlM .navbar.collapsed {
  justify-content: center;
}
.cid-uNOtZVNAlM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNOtZVNAlM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNOtZVNAlM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNOtZVNAlM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNOtZVNAlM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNOtZVNAlM .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-uNOtZVNAlM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNOtZVNAlM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNOtZVNAlM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNOtZVNAlM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNOtZVNAlM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNOtZVNAlM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNOtZVNAlM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNOtZVNAlM .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-uNOtZVNAlM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNOtZVNAlM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNOtZVNAlM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNOtZVNAlM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNOtZVNAlM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNOtZVNAlM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNOtZVNAlM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNOtZVNAlM .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOtZVNAlM .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNOtZVNAlM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNOtZVNAlM .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-uNOtZVNAlM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNOtZVNAlM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNOtZVNAlM .dropdown-item.active,
.cid-uNOtZVNAlM .dropdown-item:active {
  background-color: transparent;
}
.cid-uNOtZVNAlM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNOtZVNAlM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNOtZVNAlM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNOtZVNAlM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNOtZVNAlM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNOtZVNAlM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNOtZVNAlM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNOtZVNAlM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNOtZVNAlM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNOtZVNAlM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNOtZVNAlM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOtZVNAlM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOtZVNAlM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNOtZVNAlM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOtZVNAlM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNOtZVNAlM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNOtZVNAlM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOtZVNAlM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNOtZVNAlM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNOtZVNAlM .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-uNOtZVNAlM .navbar {
    height: 70px;
  }
  .cid-uNOtZVNAlM .navbar.opened {
    height: auto;
  }
  .cid-uNOtZVNAlM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNOtZWVwOP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNOtZWVwOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOtZWVwOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOtZWVwOP a {
  font-weight: bold;
}
.cid-uNOtZWVwOP .row {
  flex-direction: row-reverse;
}
.cid-uNOtZWVwOP .container-fluid {
  padding: 0;
}
.cid-uNOtZWVwOP img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOtZWVwOP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOtZWVwOP .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOtZWVwOP .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOtZWVwOP .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOtZWVwOP .mbr-text,
.cid-uNOtZWVwOP .mbr-section-btn {
  color: #000000;
}
.cid-uNOtZWVwOP .mbr-section-title {
  color: #65b32e;
}
.cid-uNOtZXcGsb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNOtZXcGsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOtZXcGsb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOtZXcGsb a {
  font-weight: bold;
}
.cid-uNOtZXcGsb .container-fluid {
  padding: 0;
}
.cid-uNOtZXcGsb img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOtZXcGsb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOtZXcGsb .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOtZXcGsb .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOtZXcGsb .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOtZXcGsb .mbr-text,
.cid-uNOtZXcGsb .mbr-section-btn {
  color: #000000;
}
.cid-uNOtZXcGsb .mbr-section-title {
  color: #65b32e;
}
.cid-uNOtZXtYlL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uNOtZXtYlL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNOtZXtYlL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNOtZXtYlL a {
  font-weight: bold;
}
.cid-uNOtZXtYlL .row {
  flex-direction: row-reverse;
}
.cid-uNOtZXtYlL .container-fluid {
  padding: 0;
}
.cid-uNOtZXtYlL img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNOtZXtYlL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNOtZXtYlL .text-wrapper {
  padding: 4rem 2rem;
}
@media (min-width: 1600px) {
  .cid-uNOtZXtYlL .text-wrapper {
    padding: 10rem 8rem;
  }
}
@media (max-width: 767px) {
  .cid-uNOtZXtYlL .text-wrapper {
    padding: 1rem;
  }
}
.cid-uNOtZXtYlL .mbr-text,
.cid-uNOtZXtYlL .mbr-section-btn {
  color: #000000;
}
.cid-uNOtZXtYlL .mbr-section-title {
  color: #65b32e;
}
.cid-uNSPfjprBk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSPfjprBk .container {
  max-width: 1312px;
}
.cid-uNSPfjprBk .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSPfjprBk .row {
    padding: 0 16px;
  }
}
.cid-uNSPfjprBk .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSPfjprBk .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSPfjprBk .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSPfjprBk .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSPfjprBk .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSPfjprBk .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSPfjprBk .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSPfjprBk .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSPfjprBk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSPfjprBk .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSPfjprBk .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSPfjprBk .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSPfjprBk .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSPfjprBk .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSPfjprBk .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSPfjprBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSPfjprBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSPfjprBk .mbr-text,
.cid-uNSPfjprBk .mbr-section-btn {
  text-align: center;
}
.cid-uNSDIcQBrX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDIcQBrX a {
  color: #232323;
}
.cid-uNSDIcQBrX a:hover {
  color: #65b32e;
}
.cid-uNSDIcQBrX h5 {
  color: #4e6dcc;
}
.cid-uNSDIcQBrX .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDIcQBrX .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDIcQBrX .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDIcQBrX H5 {
  color: #000000;
}
.cid-uNSDIcQBrX H2 {
  color: #000000;
}
.cid-uNSDIcQBrX DIV {
  color: #000000;
}
.cid-uNSDIcQBrX .card-title B {
  color: #65b32e;
}
.cid-uNSDIcQBrX P {
  color: #000000;
}
.cid-uNSDIcQBrX H1 {
  color: #000000;
}
.cid-uNSDIcQBrX H3 {
  color: #65b32e;
}
.cid-uNSDIcQBrX .card-title {
  color: #65b32e;
}
.cid-uNOtZZeDoJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNOtZZeDoJ .footer-item {
  padding: 30px;
}
.cid-uNOtZZeDoJ .mbr-section-subtitle,
.cid-uNOtZZeDoJ .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNOtZZeDoJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNOtZZeDoJ .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNOtZZeDoJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNOtZZeDoJ .row {
    text-align: center;
  }
  .cid-uNOtZZeDoJ .social-row {
    justify-content: center;
  }
}
.cid-uNOtZZeDoJ .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNOtZZeDoJ .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNOtZZeDoJ .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNOtZZeDoJ .mbr-text {
  color: #ffffff;
}
.cid-uNOtZZeDoJ .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNOtZZeDoJ .list a {
  color: #ffffff;
}
.cid-uNOtZZeDoJ .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNOtZZeDoJ .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNOtZZeDoJ .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNOtZZeDoJ .mbr-iconfont {
  color: #ffffff;
}
.cid-uNOtZZeDoJ .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNOtZZeDoJ .address-text {
  color: #65b32e;
}
.cid-uNOtZZDlsg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNOtZZDlsg a:link {
  text-decoration: none;
}
.cid-uNOtZZDlsg .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNOtZZDlsg .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNOtZZDlsg .inner-text {
  line-height: 3em;
}
.cid-uNOtZZDlsg .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNOtZZDlsg .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNOtZZDlsg .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNOtZZDlsg .content-text,
.cid-uNOtZZDlsg .inner-text {
  color: #ffffff;
}
.cid-uNOvsmjjpO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNOvsmjjpO nav.navbar {
  position: fixed;
}
.cid-uNOvsmjjpO .btn {
  line-height: 1.2;
}
.cid-uNOvsmjjpO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNOvsmjjpO .nav-link {
  position: relative;
}
.cid-uNOvsmjjpO .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNOvsmjjpO .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNOvsmjjpO .nav-link:hover:before {
  width: 100%;
}
.cid-uNOvsmjjpO .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-uNOvsmjjpO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOvsmjjpO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNOvsmjjpO .dropdown-item:hover,
.cid-uNOvsmjjpO .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNOvsmjjpO .dropdown-item:hover span {
  color: white;
}
.cid-uNOvsmjjpO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNOvsmjjpO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNOvsmjjpO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNOvsmjjpO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNOvsmjjpO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNOvsmjjpO .container {
    flex-wrap: nowrap;
  }
}
.cid-uNOvsmjjpO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNOvsmjjpO .navbar-nav {
  margin: auto;
}
.cid-uNOvsmjjpO .dropdown-menu,
.cid-uNOvsmjjpO .navbar.opened {
  background: #ffffff !important;
}
.cid-uNOvsmjjpO .nav-item:focus,
.cid-uNOvsmjjpO .nav-link:focus {
  outline: none;
}
.cid-uNOvsmjjpO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNOvsmjjpO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNOvsmjjpO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNOvsmjjpO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNOvsmjjpO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNOvsmjjpO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNOvsmjjpO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNOvsmjjpO .navbar.opened {
  transition: all 0.3s;
}
.cid-uNOvsmjjpO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNOvsmjjpO .navbar .navbar-logo img {
  width: auto;
}
.cid-uNOvsmjjpO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNOvsmjjpO .navbar.collapsed {
  justify-content: center;
}
.cid-uNOvsmjjpO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNOvsmjjpO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNOvsmjjpO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNOvsmjjpO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNOvsmjjpO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNOvsmjjpO .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-uNOvsmjjpO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNOvsmjjpO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNOvsmjjpO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNOvsmjjpO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNOvsmjjpO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNOvsmjjpO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNOvsmjjpO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNOvsmjjpO .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-uNOvsmjjpO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNOvsmjjpO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNOvsmjjpO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNOvsmjjpO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNOvsmjjpO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNOvsmjjpO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNOvsmjjpO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNOvsmjjpO .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNOvsmjjpO .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNOvsmjjpO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNOvsmjjpO .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-uNOvsmjjpO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNOvsmjjpO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNOvsmjjpO .dropdown-item.active,
.cid-uNOvsmjjpO .dropdown-item:active {
  background-color: transparent;
}
.cid-uNOvsmjjpO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNOvsmjjpO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNOvsmjjpO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNOvsmjjpO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNOvsmjjpO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNOvsmjjpO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNOvsmjjpO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNOvsmjjpO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNOvsmjjpO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNOvsmjjpO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNOvsmjjpO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOvsmjjpO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNOvsmjjpO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNOvsmjjpO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOvsmjjpO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNOvsmjjpO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNOvsmjjpO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNOvsmjjpO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNOvsmjjpO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNOvsmjjpO .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-uNOvsmjjpO .navbar {
    height: 70px;
  }
  .cid-uNOvsmjjpO .navbar.opened {
    height: auto;
  }
  .cid-uNOvsmjjpO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNOvsmZw9X {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNOvsmZw9X .block-title {
  color: #000000;
}
.cid-uNOvsna5gg {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNOvsna5gg H1 {
  color: #000000;
}
.cid-uNOvsna5gg .mbr-text,
.cid-uNOvsna5gg .mbr-section-btn {
  color: #000000;
}
.cid-uNOvsna5gg .mbr-subtitle {
  color: #000000;
}
.cid-uNOvsna5gg .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNOvsna5gg .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNOvsna5gg .mbr-section-title,
.cid-uNOvsna5gg .mbr-section-btn {
  color: #165788;
}
.cid-uNSPid7jen {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uNSPid7jen .container {
  max-width: 1312px;
}
.cid-uNSPid7jen .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uNSPid7jen .row {
    padding: 0 16px;
  }
}
.cid-uNSPid7jen .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #65b32e;
}
@media (max-width: 991px) {
  .cid-uNSPid7jen .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uNSPid7jen .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uNSPid7jen .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uNSPid7jen .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSPid7jen .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNSPid7jen .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNSPid7jen .col-text {
    padding-right: 1rem;
  }
}
.cid-uNSPid7jen .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNSPid7jen .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uNSPid7jen .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNSPid7jen .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uNSPid7jen .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uNSPid7jen .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uNSPid7jen .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNSPid7jen .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSPid7jen .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSPid7jen .mbr-text,
.cid-uNSPid7jen .mbr-section-btn {
  text-align: center;
}
.cid-uNSDKLmt2h {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSDKLmt2h a {
  color: #232323;
}
.cid-uNSDKLmt2h a:hover {
  color: #65b32e;
}
.cid-uNSDKLmt2h h5 {
  color: #4e6dcc;
}
.cid-uNSDKLmt2h .card-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-uNSDKLmt2h .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-uNSDKLmt2h .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uNSDKLmt2h H5 {
  color: #000000;
}
.cid-uNSDKLmt2h H2 {
  color: #000000;
}
.cid-uNSDKLmt2h DIV {
  color: #000000;
}
.cid-uNSDKLmt2h .card-title B {
  color: #65b32e;
}
.cid-uNSDKLmt2h P {
  color: #000000;
}
.cid-uNSDKLmt2h H1 {
  color: #000000;
}
.cid-uNSDKLmt2h H3 {
  color: #65b32e;
}
.cid-uNSDKLmt2h .card-title {
  color: #65b32e;
}
.cid-uNOvso6LEw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNOvso6LEw .footer-item {
  padding: 30px;
}
.cid-uNOvso6LEw .mbr-section-subtitle,
.cid-uNOvso6LEw .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNOvso6LEw .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNOvso6LEw .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNOvso6LEw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNOvso6LEw .row {
    text-align: center;
  }
  .cid-uNOvso6LEw .social-row {
    justify-content: center;
  }
}
.cid-uNOvso6LEw .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNOvso6LEw .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNOvso6LEw .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNOvso6LEw .mbr-text {
  color: #ffffff;
}
.cid-uNOvso6LEw .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNOvso6LEw .list a {
  color: #ffffff;
}
.cid-uNOvso6LEw .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNOvso6LEw .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNOvso6LEw .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNOvso6LEw .mbr-iconfont {
  color: #ffffff;
}
.cid-uNOvso6LEw .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNOvso6LEw .address-text {
  color: #65b32e;
}
.cid-uNOvsoqTE2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNOvsoqTE2 a:link {
  text-decoration: none;
}
.cid-uNOvsoqTE2 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNOvsoqTE2 .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNOvsoqTE2 .inner-text {
  line-height: 3em;
}
.cid-uNOvsoqTE2 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNOvsoqTE2 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNOvsoqTE2 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNOvsoqTE2 .content-text,
.cid-uNOvsoqTE2 .inner-text {
  color: #ffffff;
}
.cid-uNSDR5gtyE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNSDR5gtyE nav.navbar {
  position: fixed;
}
.cid-uNSDR5gtyE .btn {
  line-height: 1.2;
}
.cid-uNSDR5gtyE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNSDR5gtyE .nav-link {
  position: relative;
}
.cid-uNSDR5gtyE .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNSDR5gtyE .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNSDR5gtyE .nav-link:hover:before {
  width: 100%;
}
.cid-uNSDR5gtyE .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-uNSDR5gtyE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNSDR5gtyE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNSDR5gtyE .dropdown-item:hover,
.cid-uNSDR5gtyE .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNSDR5gtyE .dropdown-item:hover span {
  color: white;
}
.cid-uNSDR5gtyE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNSDR5gtyE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNSDR5gtyE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNSDR5gtyE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNSDR5gtyE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNSDR5gtyE .container {
    flex-wrap: nowrap;
  }
}
.cid-uNSDR5gtyE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNSDR5gtyE .navbar-nav {
  margin: auto;
}
.cid-uNSDR5gtyE .dropdown-menu,
.cid-uNSDR5gtyE .navbar.opened {
  background: #ffffff !important;
}
.cid-uNSDR5gtyE .nav-item:focus,
.cid-uNSDR5gtyE .nav-link:focus {
  outline: none;
}
.cid-uNSDR5gtyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNSDR5gtyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNSDR5gtyE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNSDR5gtyE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNSDR5gtyE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNSDR5gtyE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNSDR5gtyE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNSDR5gtyE .navbar.opened {
  transition: all 0.3s;
}
.cid-uNSDR5gtyE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNSDR5gtyE .navbar .navbar-logo img {
  width: auto;
}
.cid-uNSDR5gtyE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNSDR5gtyE .navbar.collapsed {
  justify-content: center;
}
.cid-uNSDR5gtyE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNSDR5gtyE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNSDR5gtyE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNSDR5gtyE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNSDR5gtyE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNSDR5gtyE .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-uNSDR5gtyE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNSDR5gtyE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNSDR5gtyE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNSDR5gtyE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNSDR5gtyE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNSDR5gtyE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNSDR5gtyE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNSDR5gtyE .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-uNSDR5gtyE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNSDR5gtyE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNSDR5gtyE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNSDR5gtyE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNSDR5gtyE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNSDR5gtyE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNSDR5gtyE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNSDR5gtyE .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNSDR5gtyE .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNSDR5gtyE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNSDR5gtyE .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-uNSDR5gtyE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNSDR5gtyE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNSDR5gtyE .dropdown-item.active,
.cid-uNSDR5gtyE .dropdown-item:active {
  background-color: transparent;
}
.cid-uNSDR5gtyE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNSDR5gtyE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNSDR5gtyE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNSDR5gtyE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNSDR5gtyE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNSDR5gtyE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNSDR5gtyE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNSDR5gtyE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNSDR5gtyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNSDR5gtyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNSDR5gtyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNSDR5gtyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNSDR5gtyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNSDR5gtyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNSDR5gtyE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNSDR5gtyE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNSDR5gtyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNSDR5gtyE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNSDR5gtyE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNSDR5gtyE .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-uNSDR5gtyE .navbar {
    height: 70px;
  }
  .cid-uNSDR5gtyE .navbar.opened {
    height: auto;
  }
  .cid-uNSDR5gtyE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNSFOdNLHD {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #65b32e;
}
.cid-uNSFOdNLHD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNSFOdNLHD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNSFOdNLHD .content-wrap {
  padding: 60px;
  background-color: #efefef;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uNSFOdNLHD .content-wrap {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap {
  width: 60%;
}
@media (max-width: 992px) {
  .cid-uNSFOdNLHD .content-wrap .cont-wrap {
    width: 100%;
  }
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uNSFOdNLHD .content-wrap .cont-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .title-wrapper .mbr-section-title span {
  color: #002f6c;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  border: none !important;
  box-shadow: none;
  background-color: #ffffff;
  line-height: 1 !important;
}
@media (max-width: 992px) {
  .cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  font-size: 18px;
  opacity: .6;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uNSFOdNLHD .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
}
.cid-uNSFOdNLHD .mbr-section-title {
  color: #404349;
}
.cid-uNSFOdNLHD .mbr-desc {
  color: #000000;
}
.cid-uNSFOdNLHD .mbr-text {
  color: #000000;
}
.cid-uNSFOdNLHD label {
  color: #000000;
}
.cid-uNSFOdNLHD .mbr-section-title,
.cid-uNSFOdNLHD .title-wrap {
  text-align: center;
  color: #000000;
}
.cid-uNSFOdNLHD P {
  text-align: center;
  color: #000000;
}
.cid-uNSFOdNLHD LABEL {
  color: #000000;
}
.cid-uNSDR5VCwz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNSDR5VCwz .footer-item {
  padding: 30px;
}
.cid-uNSDR5VCwz .mbr-section-subtitle,
.cid-uNSDR5VCwz .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNSDR5VCwz .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNSDR5VCwz .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNSDR5VCwz .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNSDR5VCwz .row {
    text-align: center;
  }
  .cid-uNSDR5VCwz .social-row {
    justify-content: center;
  }
}
.cid-uNSDR5VCwz .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNSDR5VCwz .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNSDR5VCwz .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNSDR5VCwz .mbr-text {
  color: #ffffff;
}
.cid-uNSDR5VCwz .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNSDR5VCwz .list a {
  color: #ffffff;
}
.cid-uNSDR5VCwz .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNSDR5VCwz .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNSDR5VCwz .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNSDR5VCwz .mbr-iconfont {
  color: #ffffff;
}
.cid-uNSDR5VCwz .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNSDR5VCwz .address-text {
  color: #65b32e;
}
.cid-uNSDR6m73c {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNSDR6m73c a:link {
  text-decoration: none;
}
.cid-uNSDR6m73c .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNSDR6m73c .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNSDR6m73c .inner-text {
  line-height: 3em;
}
.cid-uNSDR6m73c .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNSDR6m73c .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNSDR6m73c .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNSDR6m73c .content-text,
.cid-uNSDR6m73c .inner-text {
  color: #ffffff;
}
.cid-uNSIvrSi68 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNSIvrSi68 nav.navbar {
  position: fixed;
}
.cid-uNSIvrSi68 .btn {
  line-height: 1.2;
}
.cid-uNSIvrSi68 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNSIvrSi68 .nav-link {
  position: relative;
}
.cid-uNSIvrSi68 .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #65b32e;
}
.cid-uNSIvrSi68 .nav-link:hover {
  color: #65b32e !important;
}
.cid-uNSIvrSi68 .nav-link:hover:before {
  width: 100%;
}
.cid-uNSIvrSi68 .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-uNSIvrSi68 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNSIvrSi68 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uNSIvrSi68 .dropdown-item:hover,
.cid-uNSIvrSi68 .dropdown-item:focus {
  background: #65b32e !important;
  color: white !important;
}
.cid-uNSIvrSi68 .dropdown-item:hover span {
  color: white;
}
.cid-uNSIvrSi68 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uNSIvrSi68 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uNSIvrSi68 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uNSIvrSi68 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-uNSIvrSi68 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uNSIvrSi68 .container {
    flex-wrap: nowrap;
  }
}
.cid-uNSIvrSi68 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNSIvrSi68 .navbar-nav {
  margin: auto;
}
.cid-uNSIvrSi68 .dropdown-menu,
.cid-uNSIvrSi68 .navbar.opened {
  background: #ffffff !important;
}
.cid-uNSIvrSi68 .nav-item:focus,
.cid-uNSIvrSi68 .nav-link:focus {
  outline: none;
}
.cid-uNSIvrSi68 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNSIvrSi68 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNSIvrSi68 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNSIvrSi68 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNSIvrSi68 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNSIvrSi68 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNSIvrSi68 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uNSIvrSi68 .navbar.opened {
  transition: all 0.3s;
}
.cid-uNSIvrSi68 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNSIvrSi68 .navbar .navbar-logo img {
  width: auto;
}
.cid-uNSIvrSi68 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNSIvrSi68 .navbar.collapsed {
  justify-content: center;
}
.cid-uNSIvrSi68 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNSIvrSi68 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNSIvrSi68 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uNSIvrSi68 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNSIvrSi68 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNSIvrSi68 .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-uNSIvrSi68 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNSIvrSi68 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNSIvrSi68 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNSIvrSi68 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNSIvrSi68 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNSIvrSi68 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNSIvrSi68 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNSIvrSi68 .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-uNSIvrSi68 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNSIvrSi68 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNSIvrSi68 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNSIvrSi68 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNSIvrSi68 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNSIvrSi68 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uNSIvrSi68 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uNSIvrSi68 .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uNSIvrSi68 .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-uNSIvrSi68 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNSIvrSi68 .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-uNSIvrSi68 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNSIvrSi68 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNSIvrSi68 .dropdown-item.active,
.cid-uNSIvrSi68 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNSIvrSi68 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNSIvrSi68 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNSIvrSi68 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNSIvrSi68 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNSIvrSi68 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNSIvrSi68 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNSIvrSi68 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNSIvrSi68 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNSIvrSi68 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #65b32e;
}
.cid-uNSIvrSi68 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNSIvrSi68 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNSIvrSi68 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNSIvrSi68 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNSIvrSi68 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNSIvrSi68 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNSIvrSi68 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNSIvrSi68 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNSIvrSi68 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNSIvrSi68 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNSIvrSi68 .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-uNSIvrSi68 .navbar {
    height: 70px;
  }
  .cid-uNSIvrSi68 .navbar.opened {
    height: auto;
  }
  .cid-uNSIvrSi68 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNSIvshTgU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uNSIvshTgU .block-title {
  color: #000000;
}
.cid-uNSIvssH0R {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uNSIvssH0R H1 {
  color: #000000;
}
.cid-uNSIvssH0R .mbr-text,
.cid-uNSIvssH0R .mbr-section-btn {
  color: #000000;
}
.cid-uNSIvssH0R .mbr-subtitle {
  color: #000000;
}
.cid-uNSIvssH0R .mbr-text {
  margin-top: 1.5rem;
}
.cid-uNSIvssH0R .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uNSIvssH0R .mbr-section-title,
.cid-uNSIvssH0R .mbr-section-btn {
  color: #165788;
}
.cid-uNSIvsLPhH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uNSIvsLPhH .footer-item {
  padding: 30px;
}
.cid-uNSIvsLPhH .mbr-section-subtitle,
.cid-uNSIvsLPhH .address-text {
  margin-bottom: 1.5rem;
}
.cid-uNSIvsLPhH .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uNSIvsLPhH .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uNSIvsLPhH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNSIvsLPhH .row {
    text-align: center;
  }
  .cid-uNSIvsLPhH .social-row {
    justify-content: center;
  }
}
.cid-uNSIvsLPhH .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uNSIvsLPhH .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uNSIvsLPhH .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uNSIvsLPhH .mbr-text {
  color: #ffffff;
}
.cid-uNSIvsLPhH .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uNSIvsLPhH .list a {
  color: #ffffff;
}
.cid-uNSIvsLPhH .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-uNSIvsLPhH .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uNSIvsLPhH .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uNSIvsLPhH .mbr-iconfont {
  color: #ffffff;
}
.cid-uNSIvsLPhH .mbr-section-subtitle {
  color: #65b32e;
}
.cid-uNSIvsLPhH .address-text {
  color: #65b32e;
}
.cid-uNSIvta5ro {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #65b32e;
}
.cid-uNSIvta5ro a:link {
  text-decoration: none;
}
.cid-uNSIvta5ro .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uNSIvta5ro .icon-transition span:hover {
  background-color: #ee8000;
}
.cid-uNSIvta5ro .inner-text {
  line-height: 3em;
}
.cid-uNSIvta5ro .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNSIvta5ro .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uNSIvta5ro .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uNSIvta5ro .content-text,
.cid-uNSIvta5ro .inner-text {
  color: #ffffff;
}
