
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: 'Arvo', serif;
  font-size: 4.1rem;
}
.display-2 {
  font-family: 'Arvo', serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Arvo', serif;
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Arvo', 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: 3.28rem;
    font-size: calc( 2.085rem + (4.1 - 2.085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.085rem + (4.1 - 2.085) * ((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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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: #114f28 !important;
}
.bg-success {
  background-color: #1b9638 !important;
}
.bg-info {
  background-color: #65b32e !important;
}
.bg-warning {
  background-color: #9ac32e !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #114f28 !important;
  border-color: #114f28 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #114f28 !important;
  border-color: #114f28 !important;
}
.btn-primary:before {
  background-color: #031008 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #031008 !important;
  border-color: #031008 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #114f28 !important;
  border-color: #114f28 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #114f28 !important;
  border-color: #114f28 !important;
}
.btn-secondary:before {
  background-color: #031008 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #031008 !important;
  border-color: #031008 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #65b32e !important;
  border-color: #65b32e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-info:before {
  background-color: #43761e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #43761e !important;
  border-color: #43761e !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1b9638 !important;
  border-color: #1b9638 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1b9638 !important;
  border-color: #1b9638 !important;
}
.btn-success:before {
  background-color: #0f5520 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0f5520 !important;
  border-color: #0f5520 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #9ac32e !important;
  border-color: #9ac32e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9ac32e !important;
  border-color: #9ac32e !important;
}
.btn-warning:before {
  background-color: #69851f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #69851f !important;
  border-color: #69851f !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #114f28;
}
.btn-primary-outline:before {
  background-color: #114f28;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #114f28 !important;
  border-color: #114f28 !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: #114f28;
}
.btn-secondary-outline:before {
  background-color: #114f28;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #114f28 !important;
  border-color: #114f28 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #376219;
  color: #376219;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #65b32e;
}
.btn-info-outline:before {
  background-color: #65b32e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #65b32e !important;
  border-color: #65b32e !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0b4018;
  color: #0b4018;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #1b9638;
}
.btn-success-outline:before {
  background-color: #1b9638;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1b9638 !important;
  border-color: #1b9638 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #59701b;
  color: #59701b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #9ac32e;
}
.btn-warning-outline:before {
  background-color: #9ac32e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #9ac32e !important;
  border-color: #9ac32e !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;
  border-radius: 100px;
}
.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: #114f28;
  -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: #114f28 !important;
}
.text-secondary {
  color: #114f28 !important;
}
.text-success {
  color: #1b9638 !important;
}
.text-info {
  color: #65b32e !important;
}
.text-warning {
  color: #9ac32e !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: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0b4018 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #376219 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #59701b !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: #65b32e;
}
.alert-warning {
  background-color: #9ac32e;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #114f28;
  border-color: #114f28;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #114f28;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #67de93;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #51e073;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8df82;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cce48d;
}
.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: #114f28;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@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: #114f28;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #114f28;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.56rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.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: #114f28;
  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: #114f28;
  border-bottom-color: #114f28;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #114f28 !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: #114f28 !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='%23114f28' %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-uG53L7be2Y .navbar-dropdown {
  background-color: #efefef !important;
  padding: 0;
}
.cid-uG53L7be2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #efefef !important;
  background: #efefef;
}
.cid-uG53L7be2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uG53L7be2Y .menu_box .navbar.opened,
  .cid-uG53L7be2Y .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-uG53L7be2Y .navbar-dropdown {
  position: relative !important;
}
.cid-uG53L7be2Y .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uG53L7be2Y .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG53L7be2Y .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uG53L7be2Y .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-uG53L7be2Y .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uG53L7be2Y .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-uG53L7be2Y .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uG53L7be2Y .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uG53L7be2Y .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uG53L7be2Y .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uG53L7be2Y .offcanvas-body .mbr-text,
  .cid-uG53L7be2Y .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uG53L7be2Y .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uG53L7be2Y .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uG53L7be2Y .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #efefef;
  }
  .cid-uG53L7be2Y .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uG53L7be2Y .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uG53L7be2Y .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uG53L7be2Y .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uG53L7be2Y ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uG53L7be2Y .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uG53L7be2Y .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uG53L7be2Y .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uG53L7be2Y li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-uG53L7be2Y li.nav-item:hover {
    opacity: .8;
  }
  .cid-uG53L7be2Y .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uG53L7be2Y .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uG53L7be2Y .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uG53L7be2Y .nav-item {
    margin: 0 !important;
  }
}
.cid-uG53L7be2Y .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uG53L7be2Y .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uG53L7be2Y .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uG53L7be2Y .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uG53L7be2Y .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uG53L7be2Y .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uG53L7be2Y .offcanvas_box {
    display: none;
  }
}
.cid-uG53L7be2Y .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uG53L7be2Y .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uG53L7be2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uG53L7be2Y .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-uG53L7be2Y .container {
  display: flex;
  margin: auto;
}
.cid-uG53L7be2Y .iconfont-wrapper {
  color: #f3722f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uG53L7be2Y .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uG53L7be2Y .iconfont-wrapper:hover {
  color: #114f28;
}
.cid-uG53L7be2Y .navbar-caption {
  color: #1e4381;
}
.cid-uG53L7be2Y .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uG53L7be2Y .navbar-nav {
    margin: 0;
  }
}
.cid-uG53L7be2Y .dropdown-menu,
.cid-uG53L7be2Y .navbar.opened {
  background-color: false !important;
}
.cid-uG53L7be2Y .nav-item:focus,
.cid-uG53L7be2Y .nav-link:focus {
  outline: none;
}
.cid-uG53L7be2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uG53L7be2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG53L7be2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uG53L7be2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG53L7be2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG53L7be2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG53L7be2Y .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uG53L7be2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-uG53L7be2Y .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uG53L7be2Y .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-uG53L7be2Y .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uG53L7be2Y .navbar.collapsed {
  justify-content: center;
}
.cid-uG53L7be2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG53L7be2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uG53L7be2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG53L7be2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG53L7be2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG53L7be2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uG53L7be2Y .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uG53L7be2Y .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uG53L7be2Y .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uG53L7be2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG53L7be2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG53L7be2Y .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uG53L7be2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG53L7be2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG53L7be2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uG53L7be2Y .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uG53L7be2Y .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uG53L7be2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uG53L7be2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG53L7be2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uG53L7be2Y .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uG53L7be2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-uG53L7be2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uG53L7be2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uG53L7be2Y .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-uG53L7be2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG53L7be2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uG53L7be2Y .dropdown-item.active,
.cid-uG53L7be2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-uG53L7be2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG53L7be2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG53L7be2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG53L7be2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG53L7be2Y ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uG53L7be2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uG53L7be2Y button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #efefef;
  background: #65b32e;
}
.cid-uG53L7be2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-uG53L7be2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uG53L7be2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG53L7be2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uG53L7be2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uG53L7be2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG53L7be2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uG53L7be2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uG53L7be2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG53L7be2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uG53L7be2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uG53L7be2Y .navbar {
    height: 70px;
  }
  .cid-uG53L7be2Y .navbar.opened {
    height: auto;
  }
  .cid-uG53L7be2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG53L7be2Y .mbr-section-btn .btn,
.cid-uG53L7be2Y .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #1b9638 !important;
  box-shadow: none;
}
.cid-uG53L7be2Y .mbr-section-btn .btn:hover,
.cid-uG53L7be2Y .mbr-section-btn-main .btn:hover {
  color: #1b9638 !important;
  border: 1px solid #1b9638 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-uG53L7be2Y .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uG53L7be2Y .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uG53L7be2Y .navbar-caption:hover {
  color: #114f28;
}
.cid-uG53L7be2Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uG53L7be2Y .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uG53L7be2Y .text_widget {
  color: #ffffff;
}
.cid-uG53L7be2Y .mbr-section-subtitle,
.cid-uG53L7be2Y .text_widget {
  text-align: left;
}
.cid-uG53L7be2Y a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uG56zjh5IH .modal-body .close {
  background: #1b1b1b;
}
.cid-uG56zjh5IH .modal-body .close span {
  font-style: normal;
}
.cid-uG56zjh5IH .carousel-inner > .active,
.cid-uG56zjh5IH .carousel-inner > .next,
.cid-uG56zjh5IH .carousel-inner > .prev {
  display: flex;
}
.cid-uG56zjh5IH .carousel-control .icon-next,
.cid-uG56zjh5IH .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uG56zjh5IH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uG56zjh5IH .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uG56zjh5IH .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uG56zjh5IH .boxed-slider > div {
  position: relative;
}
.cid-uG56zjh5IH .container img {
  width: 100%;
}
.cid-uG56zjh5IH .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-uG56zjh5IH .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uG56zjh5IH .mbr-table-cell {
  padding: 0;
}
.cid-uG56zjh5IH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uG56zjh5IH .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uG56zjh5IH .mbr-overlay {
  z-index: 1;
}
.cid-uG56zjh5IH .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uG56zjh5IH .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uG56zjh5IH .carousel-item.active.right,
.cid-uG56zjh5IH .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uG56zjh5IH .carousel-item.active.left,
.cid-uG56zjh5IH .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uG56zjh5IH .carousel-item.active,
.cid-uG56zjh5IH .carousel-item.next.left,
.cid-uG56zjh5IH .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uG56zjh5IH .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uG56zjh5IH .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uG56zjh5IH .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uG56zjh5IH .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uG56zjh5IH .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uG56zjh5IH .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uG56zjh5IH .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uG56zjh5IH .mbr-slider .carousel-indicators li.active,
.cid-uG56zjh5IH .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uG56zjh5IH .mbr-slider .carousel-indicators li::after,
.cid-uG56zjh5IH .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uG56zjh5IH .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uG56zjh5IH .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uG56zjh5IH .mbr-slider > .container img {
  width: 100%;
}
.cid-uG56zjh5IH .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-uG56zjh5IH .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uG56zjh5IH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uG56zjh5IH .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uG56zjh5IH .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uG56zjh5IH .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uG56zjh5IH .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uG56zjh5IH .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uG56zjh5IH .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uG56zjh5IH .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uG56zjh5IH .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uG56zjh5IH .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uG56zjh5IH .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uG56zjh5IH H2 {
  color: #ffffff;
}
.cid-uG5bPNXKHo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uG5bPNXKHo .block-title {
  color: #114f28;
}
.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: #114f28;
}
.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: #114f28;
  text-align: center;
}
.cid-uGlI6tpwAL .item-title {
  color: #65b32e;
  text-align: center;
}
.cid-uGlI6tpwAL .item-subtitle {
  color: #114f28;
  text-align: center;
}
.cid-uGm6l1Q8EO {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-uGm6l1Q8EO H1 {
  color: #000000;
}
.cid-uGm6l1Q8EO .mbr-text,
.cid-uGm6l1Q8EO .mbr-section-btn {
  color: #545054;
}
.cid-uGm6l1Q8EO .mbr-subtitle {
  color: #000000;
}
.cid-uGm6l1Q8EO .mbr-text {
  margin-top: 1.5rem;
}
.cid-uGm6l1Q8EO .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uGm6l1Q8EO .mbr-section-title,
.cid-uGm6l1Q8EO .mbr-section-btn {
  color: #165788;
}
.cid-uGlSFOPb2q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uGlSFOPb2q .container {
  max-width: 1312px;
}
.cid-uGlSFOPb2q .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uGlSFOPb2q .row {
    padding: 0 16px;
  }
}
.cid-uGlSFOPb2q .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #114f28;
}
@media (max-width: 991px) {
  .cid-uGlSFOPb2q .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uGlSFOPb2q .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uGlSFOPb2q .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uGlSFOPb2q .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uGlSFOPb2q .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGlSFOPb2q .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uGlSFOPb2q .col-text {
    padding-right: 1rem;
  }
}
.cid-uGlSFOPb2q .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uGlSFOPb2q .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uGlSFOPb2q .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uGlSFOPb2q .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uGlSFOPb2q .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uGlSFOPb2q .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uGlSFOPb2q .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uGlSFOPb2q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGlSFOPb2q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rm1g9AMxdI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tilat-haarajoki-14-orig-1100x733.jpg");
}
.cid-rm1g9AMxdI h3 {
  text-align: center;
}
.cid-rm1g9AMxdI .mbr-section-subtitle {
  font-weight: 300;
}
.cid-rm1g9AMxdI .card {
  word-wrap: break-word;
}
.cid-rm1g9AMxdI .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #ffffff;
}
.cid-rm1g9AMxdI .mbr-iconfont {
  font-size: 5rem;
  color: #114f28;
}
.cid-uGlWVH0wtu {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-uGlWVH0wtu .block-title {
  color: #114f28;
}
.cid-uGm69mlXSh {
  padding-top: 30px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #efefef;
}
.cid-uGm69mlXSh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uGm69mlXSh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uGm69mlXSh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uGm69mlXSh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uGm69mlXSh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #114f28;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uGm69mlXSh .icon-focus {
  display: none;
}
.cid-uGm69mlXSh .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uGm69mlXSh ul {
  font-size: 0;
}
.cid-uGm69mlXSh .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #114f28 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uGm69mlXSh .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uGm69mlXSh .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #114f28, #114f28);
}
.cid-uGm69mlXSh .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uGm69mlXSh .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uGm69mlXSh .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-uGm69mlXSh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGm69mlXSh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #114f28, #114f28);
  display: inline-block;
}
.cid-uGm69mlXSh .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uGm69mlXSh .btn:hover {
  background: transparent !important;
}
.cid-uGm69mlXSh .btn:hover:before {
  background: transparent !important;
}
.cid-uGm69mlXSh .btn:before {
  background-color: transparent !important;
}
.cid-uGm69mlXSh .btn:focus {
  box-shadow: none;
}
.cid-uGm69mlXSh .mbr-section-title,
.cid-uGm69mlXSh .underline {
  color: #545054;
}
.cid-uGm69mlXSh .mbr-gallery-item > div > span {
  color: #ffffff;
}
.cid-uGm68JJiQo {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uGm68JJiQo a {
  color: #232323;
}
.cid-uGm68JJiQo a:hover {
  color: #114f28;
}
.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 B {
  color: #114f28;
}
.cid-uGm68JJiQo .card-title B {
  color: #114f28;
}
.cid-uGm68JJiQo P {
  color: #000000;
}
.cid-uGm68JJiQo H1 {
  color: #114f28;
}
.cid-uGm68JJiQo H3 {
  color: #114f28;
}
.cid-uGm68JJiQo .card-title {
  color: #114f28;
}
.cid-uGm6EvmGYH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.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: #114f28;
}
