body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Thasadith', sans-serif;
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Thasadith', sans-serif;
  font-size: 1.2rem;
}
/* ---- 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: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #356308 !important;
}
.bg-success {
  background-color: #55a307 !important;
}
.bg-info {
  background-color: #5e2c0f !important;
}
.bg-warning {
  background-color: #e14c00 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #356308 !important;
  border-color: #356308 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #356308 !important;
  border-color: #356308 !important;
}
.btn-primary:before {
  background-color: #0f1c02 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0f1c02 !important;
  border-color: #0f1c02 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #356308 !important;
  border-color: #356308 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #356308 !important;
  border-color: #356308 !important;
}
.btn-secondary:before {
  background-color: #0f1c02 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0f1c02 !important;
  border-color: #0f1c02 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #5e2c0f !important;
  border-color: #5e2c0f !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #5e2c0f !important;
  border-color: #5e2c0f !important;
}
.btn-info:before {
  background-color: #1c0d04 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1c0d04 !important;
  border-color: #1c0d04 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #55a307 !important;
  border-color: #55a307 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #55a307 !important;
  border-color: #55a307 !important;
}
.btn-success:before {
  background-color: #2f5a04 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2f5a04 !important;
  border-color: #2f5a04 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e14c00 !important;
  border-color: #e14c00 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #e14c00 !important;
  border-color: #e14c00 !important;
}
.btn-warning:before {
  background-color: #943200 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #943200 !important;
  border-color: #943200 !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: #020500;
  color: #020500;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #356308;
}
.btn-primary-outline:before {
  background-color: #356308;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #356308 !important;
  border-color: #356308 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #020500;
  color: #020500;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #356308;
}
.btn-secondary-outline:before {
  background-color: #356308;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #356308 !important;
  border-color: #356308 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #060301;
  color: #060301;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #5e2c0f;
}
.btn-info-outline:before {
  background-color: #5e2c0f;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5e2c0f !important;
  border-color: #5e2c0f !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #224103;
  color: #224103;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #55a307;
}
.btn-success-outline:before {
  background-color: #55a307;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #55a307 !important;
  border-color: #55a307 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #7b2a00;
  color: #7b2a00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #e14c00;
}
.btn-warning-outline:before {
  background-color: #e14c00;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e14c00 !important;
  border-color: #e14c00 !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: #356308;
  -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: #356308 !important;
}
.text-secondary {
  color: #356308 !important;
}
.text-success {
  color: #55a307 !important;
}
.text-info {
  color: #5e2c0f !important;
}
.text-warning {
  color: #e14c00 !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: #020500 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #020500 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #224103 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #060301 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #7b2a00 !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: #5e2c0f;
}
.alert-warning {
  background-color: #e14c00;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #356308;
  border-color: #356308;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #356308;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #74d912;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #95f633;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cc5f21;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffc9ae;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #356308;
}
/* 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: #356308;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #356308;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #356308;
  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: #356308;
  border-bottom-color: #356308;
}
.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: #356308 !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: #356308 !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='%23356308' %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-slBzdJ7eAV {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/20200609-164420-2000x631.jpg");
}
.cid-slBzdJ7eAV .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
}
.cid-slBzdJ7eAV .mbr-section-title b,
.cid-slBzdJ7eAV .mbr-section-title strong {
  font-weight: 500;
}
.cid-slBzdJ7eAV .mbr-text {
  margin-bottom: 18px;
}
.cid-slBzdJ7eAV .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-slBzdJ7eAV .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-slBzdJ7eAV .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-slBzdJ7eAV .image {
  margin-right: 13px;
  width: 100%;
}
.cid-slBzdJ7eAV .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-slBzdJ7eAV .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-slBzdJ7eAV .link a {
  font-weight: 700;
}
.cid-slBzdJ7eAV .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-slBzdJ7eAV .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-slBzdJ7eAV .row__image {
    margin-bottom: 9px;
  }
  .cid-slBzdJ7eAV .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-slBzdJ7eAV .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-slBzdJ7eAV .title__block {
    margin-top: 60px;
  }
  .cid-slBzdJ7eAV .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-slBzdJ7eAV .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-slBzdJ7eAV .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-qFAObpaEag {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFAObpaEag h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFAObpaEag .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFAObpaEag .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFAObpaEag .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFAObpaEag ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFAObpaEag path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFAObpaEag .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFAObpaEag orange {
  color: #E14400;
}
.cid-qFAObpaEag .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFAXCoYP3I {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qFAXCoYP3I .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qFAXCoYP3I .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qFAXCoYP3I .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qFAXCoYP3I .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qFAXCoYP3I .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qFAXCoYP3I .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qFAXCoYP3I .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qFAXCoYP3I .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qFAXCoYP3I .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qFAXCoYP3I ul {
  font-size: 0;
}
.cid-qFAXCoYP3I .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-qFAXCoYP3I .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-qFAXCoYP3I .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qFAXCoYP3I .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-qFB4yvWuL3 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFB4yvWuL3 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFB4yvWuL3 .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFB4yvWuL3 .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFB4yvWuL3 .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFB4yvWuL3 ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFB4yvWuL3 path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFB4yvWuL3 .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFB4yvWuL3 orange {
  color: #E14400;
}
.cid-qFB4yvWuL3 .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFB4KLssc7 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qFB4KLssc7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qFB4KLssc7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qFB4KLssc7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qFB4KLssc7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qFB4KLssc7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qFB4KLssc7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qFB4KLssc7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qFB4KLssc7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qFB4KLssc7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qFB4KLssc7 ul {
  font-size: 0;
}
.cid-qFB4KLssc7 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-qFB4KLssc7 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-qFB4KLssc7 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qFB4KLssc7 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-qFB69623SI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFB69623SI h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFB69623SI .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFB69623SI .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFB69623SI .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFB69623SI ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFB69623SI path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFB69623SI .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFB69623SI orange {
  color: #E14400;
}
.cid-qFB69623SI .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFB6gGUux4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qFB6gGUux4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qFB6gGUux4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qFB6gGUux4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qFB6gGUux4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qFB6gGUux4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qFB6gGUux4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qFB6gGUux4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qFB6gGUux4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qFB6gGUux4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qFB6gGUux4 ul {
  font-size: 0;
}
.cid-qFB6gGUux4 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-qFB6gGUux4 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-qFB6gGUux4 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qFB6gGUux4 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-qFB7Px1Sl6 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFB7Px1Sl6 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFB7Px1Sl6 .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFB7Px1Sl6 .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFB7Px1Sl6 .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFB7Px1Sl6 ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFB7Px1Sl6 path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFB7Px1Sl6 .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFB7Px1Sl6 orange {
  color: #E14400;
}
.cid-qFB7Px1Sl6 .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFB80oA8QB {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qFB80oA8QB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qFB80oA8QB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qFB80oA8QB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qFB80oA8QB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qFB80oA8QB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qFB80oA8QB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qFB80oA8QB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qFB80oA8QB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qFB80oA8QB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qFB80oA8QB ul {
  font-size: 0;
}
.cid-qFB80oA8QB .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-qFB80oA8QB .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-qFB80oA8QB .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qFB80oA8QB .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-qFB9sIa4IU {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFB9sIa4IU h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFB9sIa4IU .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFB9sIa4IU .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFB9sIa4IU .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFB9sIa4IU ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFB9sIa4IU path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFB9sIa4IU .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFB9sIa4IU orange {
  color: #E14400;
}
.cid-qFB9sIa4IU .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFB9yyIRuf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qFB9yyIRuf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qFB9yyIRuf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qFB9yyIRuf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qFB9yyIRuf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qFB9yyIRuf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qFB9yyIRuf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qFB9yyIRuf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qFB9yyIRuf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qFB9yyIRuf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qFB9yyIRuf ul {
  font-size: 0;
}
.cid-qFB9yyIRuf .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-qFB9yyIRuf .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-qFB9yyIRuf .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qFB9yyIRuf .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-slC53fDMBK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC53fDMBK .content {
    text-align: left;
  }
  .cid-slC53fDMBK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC53fDMBK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC53fDMBK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC53fDMBK .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC53fDMBK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC53fDMBK .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC53fDMBK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC53fDMBK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC53fDMBK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC53fDMBK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC53fDMBK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC53fDMBK .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC53fDMBK H5 {
  color: #af8300;
}
.cid-slC53fDMBK P {
  color: #356308;
  text-align: left;
}
.cid-slC53fDMBK B {
  color: #428bbb;
}
.cid-slC53fDMBK copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC53fDMBK tel {
  color: #efefef;
}
.cid-slC53fDMBK zeit {
  color: #c4bc3b;
}
.cid-slC53fDMBK int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC53fDMBK orange {
  color: #e15a00;
}
.cid-slC53fDMBK sch {
  color: #000000;
}
.cid-slC53fDMBK .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC53fDMBK FONT {
  color: #232323;
}
.cid-slC53fDMBK pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slBG71VYzi {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/cloudy-142977-2000x642.jpg");
}
.cid-slBG71VYzi .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
  text-align: right;
}
.cid-slBG71VYzi .mbr-section-title b,
.cid-slBG71VYzi .mbr-section-title strong {
  font-weight: 500;
}
.cid-slBG71VYzi .mbr-text {
  margin-bottom: 18px;
}
.cid-slBG71VYzi .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-slBG71VYzi .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-slBG71VYzi .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-slBG71VYzi .image {
  margin-right: 13px;
  width: 100%;
}
.cid-slBG71VYzi .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-slBG71VYzi .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-slBG71VYzi .link a {
  font-weight: 700;
}
.cid-slBG71VYzi .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-slBG71VYzi .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-slBG71VYzi .row__image {
    margin-bottom: 9px;
  }
  .cid-slBG71VYzi .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-slBG71VYzi .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-slBG71VYzi .title__block {
    margin-top: 60px;
  }
  .cid-slBG71VYzi .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-slBG71VYzi .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-slBG71VYzi .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-qFAVE41sA3 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFAVE41sA3 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFAVE41sA3 .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFAVE41sA3 .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFAVE41sA3 .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFAVE41sA3 ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFAVE41sA3 path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFAVE41sA3 .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFAVE41sA3 orange {
  color: #E14400;
}
.cid-qFAVE41sA3 .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-slBG4YiIKo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slBG4YiIKo .mbr-section-subtitle {
  color: #b6b6b6;
  text-align: center;
}
.cid-slBG4YiIKo .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-slBG4YiIKo .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
  margin-left: 17px;
}
.cid-slBG4YiIKo .card .card-wrapper .card-img {
  position: relative;
}
.cid-slBG4YiIKo .card .card-wrapper .card-img .price-label {
  padding: 11px;
  left: auto;
  top: auto;
  bottom: -20px;
  background-color: #073b4c;
  z-index: 100;
  position: absolute;
}
.cid-slBG4YiIKo .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-slBG4YiIKo .card .card-wrapper .card-img .price-label .price-text.display-4 {
  line-height: 1.5;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box {
  padding: 2.0rem;
  background-color: #f9f9f9;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .date {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #efefef;
  margin-left: 0.5rem;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .card-title,
.cid-slBG4YiIKo .link {
  color: #465052;
}
.cid-slBG4YiIKo .card .card-wrapper .card-box .date,
.cid-slBG4YiIKo .link {
  color: #e10000;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slC56aMTFM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC56aMTFM .content {
    text-align: left;
  }
  .cid-slC56aMTFM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC56aMTFM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC56aMTFM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC56aMTFM .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC56aMTFM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC56aMTFM .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC56aMTFM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC56aMTFM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC56aMTFM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC56aMTFM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC56aMTFM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC56aMTFM .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC56aMTFM H5 {
  color: #af8300;
}
.cid-slC56aMTFM P {
  color: #356308;
  text-align: left;
}
.cid-slC56aMTFM B {
  color: #428bbb;
}
.cid-slC56aMTFM copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC56aMTFM tel {
  color: #efefef;
}
.cid-slC56aMTFM zeit {
  color: #c4bc3b;
}
.cid-slC56aMTFM int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC56aMTFM orange {
  color: #e15a00;
}
.cid-slC56aMTFM sch {
  color: #000000;
}
.cid-slC56aMTFM .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC56aMTFM FONT {
  color: #232323;
}
.cid-slC56aMTFM pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slBKbRKjc6 {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/cloudy-142977-2000x642.jpg");
}
.cid-slBKbRKjc6 .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
  text-align: right;
}
.cid-slBKbRKjc6 .mbr-section-title b,
.cid-slBKbRKjc6 .mbr-section-title strong {
  font-weight: 500;
}
.cid-slBKbRKjc6 .mbr-text {
  margin-bottom: 18px;
}
.cid-slBKbRKjc6 .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-slBKbRKjc6 .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-slBKbRKjc6 .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-slBKbRKjc6 .image {
  margin-right: 13px;
  width: 100%;
}
.cid-slBKbRKjc6 .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-slBKbRKjc6 .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-slBKbRKjc6 .link a {
  font-weight: 700;
}
.cid-slBKbRKjc6 .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-slBKbRKjc6 .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-slBKbRKjc6 .row__image {
    margin-bottom: 9px;
  }
  .cid-slBKbRKjc6 .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-slBKbRKjc6 .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-slBKbRKjc6 .title__block {
    margin-top: 60px;
  }
  .cid-slBKbRKjc6 .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-slBKbRKjc6 .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-slBKbRKjc6 .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-qFAVDnEX0H {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFAVDnEX0H h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFAVDnEX0H .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFAVDnEX0H .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFAVDnEX0H .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFAVDnEX0H ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFAVDnEX0H path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFAVDnEX0H .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFAVDnEX0H orange {
  color: #E14400;
}
.cid-qFAVDnEX0H .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFAVDogRYo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qFAVDogRYo .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qFAVDogRYo .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #ff0389;
}
.cid-qFAVDogRYo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qFAVDogRYo .inner-container {
    width: 100% !important;
  }
}
.cid-qFAVDogRYo .section-text DIV {
  text-align: left;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slC57RxlfO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC57RxlfO .content {
    text-align: left;
  }
  .cid-slC57RxlfO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC57RxlfO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC57RxlfO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC57RxlfO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC57RxlfO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC57RxlfO .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC57RxlfO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC57RxlfO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC57RxlfO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC57RxlfO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC57RxlfO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC57RxlfO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC57RxlfO H5 {
  color: #af8300;
}
.cid-slC57RxlfO P {
  color: #356308;
  text-align: left;
}
.cid-slC57RxlfO B {
  color: #428bbb;
}
.cid-slC57RxlfO copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC57RxlfO tel {
  color: #efefef;
}
.cid-slC57RxlfO zeit {
  color: #c4bc3b;
}
.cid-slC57RxlfO int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC57RxlfO orange {
  color: #e15a00;
}
.cid-slC57RxlfO sch {
  color: #000000;
}
.cid-slC57RxlfO .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC57RxlfO FONT {
  color: #232323;
}
.cid-slC57RxlfO pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slBKny5bse {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/cloudy-142977-2000x642.jpg");
}
.cid-slBKny5bse .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
  text-align: right;
}
.cid-slBKny5bse .mbr-section-title b,
.cid-slBKny5bse .mbr-section-title strong {
  font-weight: 500;
}
.cid-slBKny5bse .mbr-text {
  margin-bottom: 18px;
}
.cid-slBKny5bse .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-slBKny5bse .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-slBKny5bse .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-slBKny5bse .image {
  margin-right: 13px;
  width: 100%;
}
.cid-slBKny5bse .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-slBKny5bse .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-slBKny5bse .link a {
  font-weight: 700;
}
.cid-slBKny5bse .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-slBKny5bse .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-slBKny5bse .row__image {
    margin-bottom: 9px;
  }
  .cid-slBKny5bse .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-slBKny5bse .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-slBKny5bse .title__block {
    margin-top: 60px;
  }
  .cid-slBKny5bse .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-slBKny5bse .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-slBKny5bse .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-qFAVCTWe9d {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qFAVCTWe9d h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFAVCTWe9d .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFAVCTWe9d .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFAVCTWe9d .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFAVCTWe9d ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFAVCTWe9d path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFAVCTWe9d .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFAVCTWe9d orange {
  color: #E14400;
}
.cid-qFAVCTWe9d .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFAVCUHCKr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qFAVCUHCKr .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qFAVCUHCKr .section-text {
  padding: 2rem 0;
}
.cid-qFAVCUHCKr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qFAVCUHCKr .inner-container {
    width: 100% !important;
  }
}
.cid-qFAVCUHCKr .section-text DIV {
  text-align: left;
}
.cid-qFH03oIBLN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qFH03oIBLN h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qFH03oIBLN .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qFH03oIBLN .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-qFH03oIBLN .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qFH03oIBLN ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-qFH03oIBLN path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qFH03oIBLN .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-qFH03oIBLN orange {
  color: #E14400;
}
.cid-qFH03oIBLN .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-qFH04zTXdb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qFH04zTXdb .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qFH04zTXdb .section-text {
  padding: 2rem 0;
}
.cid-qFH04zTXdb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qFH04zTXdb .inner-container {
    width: 100% !important;
  }
}
.cid-qFH04zTXdb .section-text DIV {
  text-align: left;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slC5aCAbPq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC5aCAbPq .content {
    text-align: left;
  }
  .cid-slC5aCAbPq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC5aCAbPq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC5aCAbPq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC5aCAbPq .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC5aCAbPq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC5aCAbPq .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC5aCAbPq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC5aCAbPq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC5aCAbPq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC5aCAbPq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC5aCAbPq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC5aCAbPq .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC5aCAbPq H5 {
  color: #af8300;
}
.cid-slC5aCAbPq P {
  color: #356308;
  text-align: left;
}
.cid-slC5aCAbPq B {
  color: #428bbb;
}
.cid-slC5aCAbPq copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC5aCAbPq tel {
  color: #efefef;
}
.cid-slC5aCAbPq zeit {
  color: #c4bc3b;
}
.cid-slC5aCAbPq int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC5aCAbPq orange {
  color: #e15a00;
}
.cid-slC5aCAbPq sch {
  color: #000000;
}
.cid-slC5aCAbPq .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC5aCAbPq FONT {
  color: #232323;
}
.cid-slC5aCAbPq pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slBKxfvlrF {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/cloudy-142977-2000x642.jpg");
}
.cid-slBKxfvlrF .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
  text-align: right;
}
.cid-slBKxfvlrF .mbr-section-title b,
.cid-slBKxfvlrF .mbr-section-title strong {
  font-weight: 500;
}
.cid-slBKxfvlrF .mbr-text {
  margin-bottom: 18px;
}
.cid-slBKxfvlrF .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-slBKxfvlrF .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-slBKxfvlrF .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-slBKxfvlrF .image {
  margin-right: 13px;
  width: 100%;
}
.cid-slBKxfvlrF .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-slBKxfvlrF .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-slBKxfvlrF .link a {
  font-weight: 700;
}
.cid-slBKxfvlrF .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-slBKxfvlrF .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-slBKxfvlrF .row__image {
    margin-bottom: 9px;
  }
  .cid-slBKxfvlrF .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-slBKxfvlrF .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-slBKxfvlrF .title__block {
    margin-top: 60px;
  }
  .cid-slBKxfvlrF .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-slBKxfvlrF .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-slBKxfvlrF .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-slq4joWdDC {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slq4joWdDC h3 {
  text-align: center;
  font-weight: 300;
}
.cid-slq4joWdDC .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-slq4joWdDC .mbr-section-subtitle {
  color: #016946;
  text-align: left;
}
.cid-slq4joWdDC .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-slq4joWdDC ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-slq4joWdDC path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-slq4joWdDC .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-slq4joWdDC orange {
  color: #E14400;
}
.cid-slq4joWdDC .mbr-section-subtitle FONT {
  color: #356308;
}
.cid-slq4jqv9zc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slq4jqv9zc .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slq4jqv9zc .section-text {
  padding: 2rem 0;
}
.cid-slq4jqv9zc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slq4jqv9zc .inner-container {
    width: 100% !important;
  }
}
.cid-slq4jqv9zc .section-text DIV {
  text-align: left;
}
.cid-slC5eHWul5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC5eHWul5 .content {
    text-align: left;
  }
  .cid-slC5eHWul5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC5eHWul5 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC5eHWul5 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC5eHWul5 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC5eHWul5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC5eHWul5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC5eHWul5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC5eHWul5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC5eHWul5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC5eHWul5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC5eHWul5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC5eHWul5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC5eHWul5 H5 {
  color: #af8300;
}
.cid-slC5eHWul5 P {
  color: #356308;
  text-align: left;
}
.cid-slC5eHWul5 B {
  color: #428bbb;
}
.cid-slC5eHWul5 copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC5eHWul5 tel {
  color: #efefef;
}
.cid-slC5eHWul5 zeit {
  color: #c4bc3b;
}
.cid-slC5eHWul5 int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC5eHWul5 orange {
  color: #e15a00;
}
.cid-slC5eHWul5 sch {
  color: #000000;
}
.cid-slC5eHWul5 .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC5eHWul5 FONT {
  color: #232323;
}
.cid-slC5eHWul5 pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slr61j4XRN {
  padding-top: 160px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/nature-245535-2000x1195.jpg");
}
.cid-slr61j4XRN .media-content .btn-bgr {
  z-index: 0;
}
.cid-slr61j4XRN .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-slr61j4XRN .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-slr61j4XRN {
    text-align: center !important;
  }
  .cid-slr61j4XRN .mbr-text {
    text-align: center;
  }
}
.cid-slr61j4XRN .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-slr61j4XRN .mbr-text,
.cid-slr61j4XRN .mbr-section-btn {
  color: #232323;
}
.cid-slr61j4XRN H1 {
  color: #690e00;
}
.cid-slGxxQHRal.popup-builder {
  background-color: #ffffff;
}
.cid-slGxxQHRal.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slGxxQHRal.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slGxxQHRal .modal-content,
.cid-slGxxQHRal .modal-dialog {
  height: auto;
}
.cid-slGxxQHRal .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slGxxQHRal .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slGxxQHRal .form-wrapper .mbr-form .form-group,
  .cid-slGxxQHRal .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slGxxQHRal .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slGxxQHRal .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slGxxQHRal .mbr-text {
  text-align: center;
}
.cid-slGxxQHRal .pt-0 {
  padding-top: 0 !important;
}
.cid-slGxxQHRal .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slGxxQHRal .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slGxxQHRal .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slGxxQHRal .modal-open {
  overflow: hidden;
}
.cid-slGxxQHRal .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slGxxQHRal .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slGxxQHRal .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slGxxQHRal .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slGxxQHRal .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slGxxQHRal .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slGxxQHRal .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slGxxQHRal .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slGxxQHRal .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slGxxQHRal .modal-backdrop.fade {
  opacity: 0;
}
.cid-slGxxQHRal .modal-backdrop.show {
  opacity: .5;
}
.cid-slGxxQHRal .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slGxxQHRal .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slGxxQHRal .modal-header .close:hover {
  opacity: 1;
}
.cid-slGxxQHRal .modal-header .close:focus {
  outline: none;
}
.cid-slGxxQHRal .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #54a405;
}
.cid-slGxxQHRal .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slGxxQHRal .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slGxxQHRal .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slGxxQHRal .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slGxxQHRal .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slGxxQHRal .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slGxxQHRal .modal-sm {
    max-width: 300px;
  }
  .cid-slGxxQHRal .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slGxxQHRal .modal-lg,
  .cid-slGxxQHRal .modal-xl {
    max-width: 800px;
  }
  .cid-slGxxQHRal .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slGxxQHRal .modal-xl {
    max-width: 1140px;
  }
  .cid-slGxxQHRal .container {
    max-width: 1140px;
  }
}
.cid-slGxxQHRal .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slGxxQHRal .container {
    max-width: 720px;
  }
}
.cid-slGxxQHRal .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slGxxQHRal .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slGxxQHRal .form-group {
  margin-bottom: 1rem;
}
.cid-slGxxQHRal .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slGxxQHRal .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slGxxQHRal .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slvrTODv2z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-slvrTODv2z .card-text,
.cid-slvrTODv2z .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-slvrTODv2z .main,
.cid-slvrTODv2z .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #e8e2d5;
}
.cid-slvrTODv2z .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-slvrTODv2z .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-slvrTODv2z .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-slvrTODv2z .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-slvrTODv2z .text-element {
  padding: 3rem 2rem;
}
.cid-slvrTODv2z .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-slvrTODv2z .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-slvrTODv2z .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-slvrTODv2z .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-slvrTODv2z .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-slvrTODv2z .image-element,
  .cid-slvrTODv2z .text-element {
    margin-bottom: 0;
  }
  .cid-slvrTODv2z .main:first-child {
    padding-top: 0;
  }
}
.cid-slvrTODv2z .mbr-section-subtitle {
  color: #543000;
}
.cid-slvrTODv2z .mbr-section-title {
  color: #b99808;
}
.cid-slvrTODv2z .card-text,
.cid-slvrTODv2z .mbr-section-btn {
  color: #951d19;
  text-align: center;
}
.cid-sluJWVRjnU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-sluJWVRjnU .content {
    text-align: left;
  }
  .cid-sluJWVRjnU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sluJWVRjnU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sluJWVRjnU .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sluJWVRjnU .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sluJWVRjnU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sluJWVRjnU .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-sluJWVRjnU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sluJWVRjnU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sluJWVRjnU .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sluJWVRjnU .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sluJWVRjnU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sluJWVRjnU .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sluJWVRjnU H5 {
  color: #af8300;
}
.cid-sluJWVRjnU P {
  color: #356308;
  text-align: left;
}
.cid-sluJWVRjnU B {
  color: #428bbb;
}
.cid-sluJWVRjnU copy {
  color: #556C80;
  font-size: 15px;
}
.cid-sluJWVRjnU tel {
  color: #efefef;
}
.cid-sluJWVRjnU zeit {
  color: #c4bc3b;
}
.cid-sluJWVRjnU int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-sluJWVRjnU orange {
  color: #e15a00;
}
.cid-sluJWVRjnU sch {
  color: #000000;
}
.cid-sluJWVRjnU .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-sluJWVRjnU FONT {
  color: #232323;
}
.cid-sluJWVRjnU pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slwRf5D9Ae {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/2-shutterstock-1428297209-2000x1123.jpg");
}
.cid-slwRf5D9Ae .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
}
.cid-slwRf5D9Ae .mbr-section-title b,
.cid-slwRf5D9Ae .mbr-section-title strong {
  font-weight: 500;
}
.cid-slwRf5D9Ae .mbr-text {
  margin-bottom: 18px;
}
.cid-slwRf5D9Ae .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-slwRf5D9Ae .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-slwRf5D9Ae .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-slwRf5D9Ae .image {
  margin-right: 13px;
  width: 100%;
}
.cid-slwRf5D9Ae .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-slwRf5D9Ae .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-slwRf5D9Ae .link a {
  font-weight: 700;
}
.cid-slwRf5D9Ae .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-slwRf5D9Ae .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-slwRf5D9Ae .row__image {
    margin-bottom: 9px;
  }
  .cid-slwRf5D9Ae .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-slwRf5D9Ae .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-slwRf5D9Ae .title__block {
    margin-top: 60px;
  }
  .cid-slwRf5D9Ae .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-slwRf5D9Ae .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-slwRf5D9Ae .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-slxqGSP77x {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slxqGSP77x .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slxqGSP77x .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #a2a2a2;
}
.cid-slxqGSP77x .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slxqGSP77x .inner-container {
    width: 100% !important;
  }
}
.cid-slxqGSP77x navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slxgS1DlN8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-slxgS1DlN8 .top {
  z-index: 5;
}
.cid-slxgS1DlN8 .img-col {
  position: relative;
}
.cid-slxgS1DlN8 .img1 {
  position: absolute;
  max-width: 60%;
  top: 0rem;
  right: 1rem;
}
.cid-slxgS1DlN8 .img2 {
  max-width: 90%;
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .cid-slxgS1DlN8 .img2 {
    padding-top: 5rem;
  }
}
.cid-slxgS1DlN8 img {
  width: 100%;
}
.cid-slxgS1DlN8 .text-wrapper {
  z-index: 11;
}
.cid-slxgS1DlN8 .wrapper {
  display: flex;
}
.cid-slxgS1DlN8 .row {
  align-items: center;
}
.cid-slxgS1DlN8 .animate__fadeInUp:before {
  background: #ffffff;
}
.cid-slxgS1DlN8 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #356308;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-slxgS1DlN8 .wrapper {
    flex-direction: column;
  }
  .cid-slxgS1DlN8 .iconfont-wrapper {
    margin: auto;
  }
  .cid-slxgS1DlN8 .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-slxgS1DlN8 .mbr-section-title {
  color: #161734;
}
.cid-slxgS1DlN8 .mbr-text,
.cid-slxgS1DlN8 .mbr-section-btn {
  color: #161734;
}
.cid-slxgS1DlN8 .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-slxUs5FWkD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slxUs5FWkD .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slxUs5FWkD .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #a2a2a2;
}
.cid-slxUs5FWkD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slxUs5FWkD .inner-container {
    width: 100% !important;
  }
}
.cid-slxUs5FWkD navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slxOCqiz0a {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-slxOCqiz0a .card .card-img {
  overflow: hidden;
}
.cid-slxOCqiz0a .card .card-img img {
  transition: all 0.5s;
}
.cid-slxOCqiz0a .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-slxOCqiz0a .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-slxOCqiz0a .card {
  height: 100%;
}
.cid-slxOCqiz0a .card .card-wrapper {
  height: 100%;
}
.cid-slxOCqiz0a .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-slxOCqiz0a .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-slxOCqiz0a .card .card-box .card-title {
  margin: 0;
}
.cid-slxOCqiz0a .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-slxOCqiz0a .card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-slxOCqiz0a .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-slxOCqiz0a .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-slxOCqiz0a .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-slxOCqiz0a .card .card-footer .icons-list {
  margin: 0;
}
.cid-slxOCqiz0a .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-slxOCqiz0a .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-slxOCqiz0a .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-slxOCqiz0a .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-slxOCqiz0a .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-slxOCqiz0a .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-slxOCqiz0a .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-slxOCqiz0a .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-slxOCqiz0a .main-subtitle,
.cid-slxOCqiz0a .underline {
  color: #b99808;
}
.cid-slxOCqiz0a .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-slxTBFtRlm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slxTBFtRlm .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slxTBFtRlm .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #a2a2a2;
}
.cid-slxTBFtRlm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slxTBFtRlm .inner-container {
    width: 100% !important;
  }
}
.cid-slxTBFtRlm navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slxSVGwNxG {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slxSVGwNxG h5,
.cid-slxSVGwNxG h4,
.cid-slxSVGwNxG p {
  margin-bottom: 0;
}
.cid-slxSVGwNxG p {
  color: #767676;
}
.cid-slxSVGwNxG .card-img {
  padding: 0;
  width: auto;
}
.cid-slxSVGwNxG .card-wrapper {
  transition: all 0.3s;
  background-color: #fdf7e9;
}
.cid-slxSVGwNxG .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-slxSVGwNxG .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-slxSVGwNxG .card-box {
    padding: 2rem 0 0;
  }
  .cid-slxSVGwNxG .card-wrapper {
    display: block !important;
  }
}
.cid-slxSVGwNxG .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-slxSVGwNxG .card-title,
.cid-slxSVGwNxG .main-title {
  color: #57468b;
}
.cid-slxSVGwNxG .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-slxSVGwNxG .card-title {
  color: #125704;
}
.cid-slxSVGwNxG .mbr-text,
.cid-slxSVGwNxG .mbr-section-btn {
  color: #125704;
}
.cid-slxU8Kfd37 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slxU8Kfd37 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slxU8Kfd37 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #a2a2a2;
}
.cid-slxU8Kfd37 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slxU8Kfd37 .inner-container {
    width: 100% !important;
  }
}
.cid-slxU8Kfd37 navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slxSEqdeXm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slxSEqdeXm h5,
.cid-slxSEqdeXm h4,
.cid-slxSEqdeXm p {
  margin-bottom: 0;
}
.cid-slxSEqdeXm p {
  color: #767676;
}
.cid-slxSEqdeXm .card-img {
  padding: 0;
  width: auto;
}
.cid-slxSEqdeXm .card-wrapper {
  transition: all 0.3s;
  background-color: #b99808;
}
.cid-slxSEqdeXm .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-slxSEqdeXm .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-slxSEqdeXm .card-box {
    padding: 2rem 0 0;
  }
  .cid-slxSEqdeXm .card-wrapper {
    display: block !important;
  }
}
.cid-slxSEqdeXm .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-slxSEqdeXm .card-title,
.cid-slxSEqdeXm .main-title {
  color: #57468b;
}
.cid-slxSEqdeXm .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-slxSEqdeXm .card-title {
  color: #ffffff;
}
.cid-slxSEqdeXm .mbr-text,
.cid-slxSEqdeXm .mbr-section-btn {
  color: #ffffff;
}
.cid-slxUXY0HGe {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slxUXY0HGe .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slxUXY0HGe .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #a2a2a2;
}
.cid-slxUXY0HGe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slxUXY0HGe .inner-container {
    width: 100% !important;
  }
}
.cid-slxUXY0HGe navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slwcxK1DTx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slwcxK1DTx .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slwcxK1DTx .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slwcxK1DTx .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slwcxK1DTx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slwcxK1DTx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slwcxK1DTx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slwcxK1DTx .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slwcxK1DTx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slwcxK1DTx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slwcxK1DTx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slwcxK1DTx .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slwcxK1DTx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slwcxK1DTx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slwcxK1DTx .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slwcxK1DTx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slwcxK1DTx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slwcxK1DTx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slwcxK1DTx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slwcxK1DTx .dropdown-item.active,
.cid-slwcxK1DTx .dropdown-item:active {
  background-color: transparent;
}
.cid-slwcxK1DTx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slwcxK1DTx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slwcxK1DTx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slwcxK1DTx ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slwcxK1DTx .navbar-buttons {
  text-align: center;
}
.cid-slwcxK1DTx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slwcxK1DTx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slwcxK1DTx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slwcxK1DTx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slwcxK1DTx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slwcxK1DTx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slwcxK1DTx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slwcxK1DTx .nav-link:hover,
.cid-slwcxK1DTx .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slxSrGWvta {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-slxSrGWvta .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-slxSrGWvta .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-slxSrGWvta .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-slxSrGWvta .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-slxSrGWvta .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-slxSrGWvta .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-slxSrGWvta .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-slxSrGWvta .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-slxSrGWvta .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-slxSrGWvta ul {
  font-size: 0;
}
.cid-slxSrGWvta .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s;
}
.cid-slxSrGWvta .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-slxSrGWvta .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-smn1EOPcAc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-smn1EOPcAc .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-smn1EOPcAc .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #23434b;
}
.cid-smn1EOPcAc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-smn1EOPcAc .inner-container {
    width: 100% !important;
  }
}
.cid-smn1EOPcAc navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slC4SQQzPZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC4SQQzPZ .content {
    text-align: left;
  }
  .cid-slC4SQQzPZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC4SQQzPZ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC4SQQzPZ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC4SQQzPZ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC4SQQzPZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC4SQQzPZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC4SQQzPZ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC4SQQzPZ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC4SQQzPZ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC4SQQzPZ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC4SQQzPZ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC4SQQzPZ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC4SQQzPZ H5 {
  color: #af8300;
}
.cid-slC4SQQzPZ P {
  color: #356308;
  text-align: left;
}
.cid-slC4SQQzPZ B {
  color: #428bbb;
}
.cid-slC4SQQzPZ copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC4SQQzPZ tel {
  color: #efefef;
}
.cid-slC4SQQzPZ zeit {
  color: #c4bc3b;
}
.cid-slC4SQQzPZ int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC4SQQzPZ orange {
  color: #e15a00;
}
.cid-slC4SQQzPZ sch {
  color: #000000;
}
.cid-slC4SQQzPZ .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC4SQQzPZ FONT {
  color: #232323;
}
.cid-slC4SQQzPZ pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-smmoKW2Owq {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/2-shutterstock-1428297209-2000x1123.jpg");
}
.cid-smmoKW2Owq .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
}
.cid-smmoKW2Owq .mbr-section-title b,
.cid-smmoKW2Owq .mbr-section-title strong {
  font-weight: 500;
}
.cid-smmoKW2Owq .mbr-text {
  margin-bottom: 18px;
}
.cid-smmoKW2Owq .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-smmoKW2Owq .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-smmoKW2Owq .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-smmoKW2Owq .image {
  margin-right: 13px;
  width: 100%;
}
.cid-smmoKW2Owq .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-smmoKW2Owq .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-smmoKW2Owq .link a {
  font-weight: 700;
}
.cid-smmoKW2Owq .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-smmoKW2Owq .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-smmoKW2Owq .row__image {
    margin-bottom: 9px;
  }
  .cid-smmoKW2Owq .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-smmoKW2Owq .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-smmoKW2Owq .title__block {
    margin-top: 60px;
  }
  .cid-smmoKW2Owq .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-smmoKW2Owq .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-smmoKW2Owq .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-slBXXSiwc3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slBXXSiwc3 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slBXXSiwc3 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #a2a2a2;
}
.cid-slBXXSiwc3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slBXXSiwc3 .inner-container {
    width: 100% !important;
  }
}
.cid-slBXXSiwc3 navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-slBZhZHmzh {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-slBZhZHmzh .media-content .btn-bgr {
  z-index: 0;
}
.cid-slBZhZHmzh .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-slBZhZHmzh h3 {
  color: #000000;
  font-weight: 300;
}
.cid-slBZhZHmzh p {
  color: #464646;
}
.cid-slBZhZHmzh h2 {
  color: #000000;
}
.cid-slBZhZHmzh .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-slBZhZHmzh .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-slBZhZHmzh .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-slBZhZHmzh .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-slBZhZHmzh .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-slBZhZHmzh .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-slBZhZHmzh .mbr-text {
    text-align: center;
  }
}
.cid-slBZhZHmzh .mbr-section-subtitle {
  color: #951d19;
}
.cid-slBZhZHmzh .mbr-section-title,
.cid-slBZhZHmzh .mbr-section-btn {
  color: #b99808;
}
.cid-slC4W1iKQ9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC4W1iKQ9 .content {
    text-align: left;
  }
  .cid-slC4W1iKQ9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC4W1iKQ9 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC4W1iKQ9 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC4W1iKQ9 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC4W1iKQ9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC4W1iKQ9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC4W1iKQ9 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC4W1iKQ9 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC4W1iKQ9 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC4W1iKQ9 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC4W1iKQ9 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC4W1iKQ9 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC4W1iKQ9 H5 {
  color: #af8300;
}
.cid-slC4W1iKQ9 P {
  color: #356308;
  text-align: left;
}
.cid-slC4W1iKQ9 B {
  color: #428bbb;
}
.cid-slC4W1iKQ9 copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC4W1iKQ9 tel {
  color: #efefef;
}
.cid-slC4W1iKQ9 zeit {
  color: #c4bc3b;
}
.cid-slC4W1iKQ9 int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC4W1iKQ9 orange {
  color: #e15a00;
}
.cid-slC4W1iKQ9 sch {
  color: #000000;
}
.cid-slC4W1iKQ9 .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC4W1iKQ9 FONT {
  color: #232323;
}
.cid-slC4W1iKQ9 pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
.cid-slBXXVp59W .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slBXXVp59W .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slBXXVp59W .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slBXXVp59W .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slBXXVp59W .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slBXXVp59W .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slBXXVp59W .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slBXXVp59W .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slBXXVp59W .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slBXXVp59W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slBXXVp59W .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slBXXVp59W .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slBXXVp59W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slBXXVp59W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slBXXVp59W .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slBXXVp59W .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slBXXVp59W .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slBXXVp59W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slBXXVp59W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slBXXVp59W .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slBXXVp59W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slBXXVp59W .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slBXXVp59W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slBXXVp59W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slBXXVp59W .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slBXXVp59W .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slBXXVp59W .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slBXXVp59W .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slBXXVp59W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slBXXVp59W .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slBXXVp59W .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slBXXVp59W .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slBXXVp59W .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slBXXVp59W .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slBXXVp59W .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slBXXVp59W .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slBXXVp59W .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slBXXVp59W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slBXXVp59W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slBXXVp59W .dropdown-item.active,
.cid-slBXXVp59W .dropdown-item:active {
  background-color: transparent;
}
.cid-slBXXVp59W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slBXXVp59W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slBXXVp59W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slBXXVp59W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slBXXVp59W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slBXXVp59W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slBXXVp59W ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slBXXVp59W .navbar-buttons {
  text-align: center;
}
.cid-slBXXVp59W button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slBXXVp59W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slBXXVp59W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slBXXVp59W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slBXXVp59W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slBXXVp59W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slBXXVp59W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slBXXVp59W nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slBXXVp59W nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slBXXVp59W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slBXXVp59W .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slBXXVp59W a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slBXXVp59W .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slBXXVp59W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slBXXVp59W .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slBXXVp59W .nav-link:hover,
.cid-slBXXVp59W .dropdown-item:hover {
  color: #232323 !important;
}
.cid-smmoV2x4VY {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/2-shutterstock-1428297209-2000x1123.jpg");
}
.cid-smmoV2x4VY .mbr-section-title {
  margin-bottom: 26px;
  font-weight: 300;
}
.cid-smmoV2x4VY .mbr-section-title b,
.cid-smmoV2x4VY .mbr-section-title strong {
  font-weight: 500;
}
.cid-smmoV2x4VY .mbr-text {
  margin-bottom: 18px;
}
.cid-smmoV2x4VY .row__image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cid-smmoV2x4VY .row__image:nth-child(1) {
  padding-right: 80px;
}
.cid-smmoV2x4VY .row__image:nth-child(2) {
  padding-left: 80px;
}
.cid-smmoV2x4VY .image {
  margin-right: 13px;
  width: 100%;
}
.cid-smmoV2x4VY .image img {
  max-width: 100%;
  object-fit: cover;
  max-height: 245px;
}
.cid-smmoV2x4VY .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-smmoV2x4VY .link a {
  font-weight: 700;
}
.cid-smmoV2x4VY .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-smmoV2x4VY .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 991px) {
  .cid-smmoV2x4VY .row__image {
    margin-bottom: 9px;
  }
  .cid-smmoV2x4VY .row__image:nth-child(1) {
    padding-right: 32px;
  }
  .cid-smmoV2x4VY .row__image:nth-child(2) {
    padding-left: 32px;
  }
  .cid-smmoV2x4VY .title__block {
    margin-top: 60px;
  }
  .cid-smmoV2x4VY .image {
    margin-right: 10px;
    height: auto;
    max-height: initial;
  }
  .cid-smmoV2x4VY .mbr-section-title {
    margin-bottom: 19px;
  }
  .cid-smmoV2x4VY .mbr-text {
    margin-bottom: 11px;
  }
}
.cid-slC0Lp8uBN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-slC0Lp8uBN .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-slC0Lp8uBN .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #23434b;
}
.cid-slC0Lp8uBN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-slC0Lp8uBN .inner-container {
    width: 100% !important;
  }
}
.cid-slC0Lp8uBN navi {
  font-size: 16px;
  line-height: 22px;
}
.cid-smnvqoMQgw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smnvqoMQgw .media-container-row .mbr-text {
  text-align: left;
  color: #555555;
}
.cid-smnvqoMQgw H5 {
  text-align: left;
  color: #23434b;
}
.cid-smnvqoMQgw .panel-text {
  color: #23434b;
}
.cid-smnvqoMQgw k20 {
  font-size: 20px;
  color: #0082c3;
  font-family: Thasadith;
}
.cid-smnvqoMQgw k14 {
  font-size: 14px;
  color: #333333;
  font-family: Thasadith;
}
.cid-smo0Tde5XW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smo0Tde5XW .media-container-row .mbr-text {
  text-align: left;
  color: #555555;
}
.cid-smo0Tde5XW H5 {
  text-align: left;
  color: #23434b;
}
.cid-smo0Tde5XW .panel-text {
  color: #23434b;
}
.cid-smo0Tde5XW k20 {
  font-size: 20px;
  color: #0082c3;
  font-family: Thasadith;
}
.cid-smo0Tde5XW k14 {
  font-size: 14px;
  color: #333333;
  font-family: Thasadith;
}
.cid-smo0TLWC21 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smo0TLWC21 .media-container-row .mbr-text {
  text-align: left;
  color: #555555;
}
.cid-smo0TLWC21 H5 {
  text-align: left;
  color: #23434b;
}
.cid-smo0TLWC21 .panel-text {
  color: #23434b;
}
.cid-smo0TLWC21 k20 {
  font-size: 20px;
  color: #0082c3;
  font-family: Thasadith;
}
.cid-smo0TLWC21 k14 {
  font-size: 14px;
  color: #333333;
  font-family: Thasadith;
}
.cid-slC0Lpk754 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-slC0Lpk754 .media-content .btn-bgr {
  z-index: 0;
}
.cid-slC0Lpk754 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-slC0Lpk754 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-slC0Lpk754 p {
  color: #464646;
}
.cid-slC0Lpk754 h2 {
  color: #000000;
}
.cid-slC0Lpk754 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-slC0Lpk754 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-slC0Lpk754 .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-slC0Lpk754 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-slC0Lpk754 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-slC0Lpk754 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-slC0Lpk754 .mbr-text {
    text-align: center;
  }
}
.cid-slC0Lpk754 .mbr-section-subtitle {
  color: #951d19;
}
.cid-slC0Lpk754 .mbr-section-title,
.cid-slC0Lpk754 .mbr-section-btn {
  color: #b99808;
}
.cid-slC0LpA02Q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #eeeae9;
  background: none;
  opacity: 0.93;
}
.cid-slC0LpA02Q .navbar.opened {
  transition: all .3s;
  background: #eeeae9 !important;
}
.cid-slC0LpA02Q .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6cbb4;
  color: #000000 !important;
  background: #e8e2d5 !important;
}
.cid-slC0LpA02Q .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slC0LpA02Q .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slC0LpA02Q .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slC0LpA02Q .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slC0LpA02Q .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #772b1a;
}
.cid-slC0LpA02Q .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slC0LpA02Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slC0LpA02Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 89.78571429vh;
  }
}
.cid-slC0LpA02Q .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slC0LpA02Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slC0LpA02Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slC0LpA02Q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slC0LpA02Q .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-slC0LpA02Q .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slC0LpA02Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slC0LpA02Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-slC0LpA02Q .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-slC0LpA02Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slC0LpA02Q .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slC0LpA02Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slC0LpA02Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slC0LpA02Q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slC0LpA02Q .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-slC0LpA02Q .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slC0LpA02Q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slC0LpA02Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slC0LpA02Q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-slC0LpA02Q .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slC0LpA02Q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slC0LpA02Q .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slC0LpA02Q .navbar.navbar-short {
  background: #eeeae9 !important;
  min-height: 60px;
}
.cid-slC0LpA02Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slC0LpA02Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slC0LpA02Q .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slC0LpA02Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slC0LpA02Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slC0LpA02Q .dropdown-item.active,
.cid-slC0LpA02Q .dropdown-item:active {
  background-color: transparent;
}
.cid-slC0LpA02Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slC0LpA02Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slC0LpA02Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slC0LpA02Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-slC0LpA02Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slC0LpA02Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slC0LpA02Q ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slC0LpA02Q .navbar-buttons {
  text-align: center;
}
.cid-slC0LpA02Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slC0LpA02Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-slC0LpA02Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-slC0LpA02Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-slC0LpA02Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-slC0LpA02Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-slC0LpA02Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slC0LpA02Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-slC0LpA02Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-slC0LpA02Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-slC0LpA02Q .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-slC0LpA02Q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-slC0LpA02Q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-slC0LpA02Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-slC0LpA02Q .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slC0LpA02Q .nav-link:hover,
.cid-slC0LpA02Q .dropdown-item:hover {
  color: #232323 !important;
}
.cid-slC4Yz6liF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeeae9;
}
@media (max-width: 767px) {
  .cid-slC4Yz6liF .content {
    text-align: left;
  }
  .cid-slC4Yz6liF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-slC4Yz6liF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-slC4Yz6liF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-slC4Yz6liF .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-slC4Yz6liF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-slC4Yz6liF .footer-lower hr {
  margin: 1rem 0;
  border-color: #f8f8f8;
  border-bottom: 0.001rem solid #d4d4d4;
  opacity: 0.91;
}
.cid-slC4Yz6liF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-slC4Yz6liF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-slC4Yz6liF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-slC4Yz6liF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slC4Yz6liF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-slC4Yz6liF .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-slC4Yz6liF H5 {
  color: #af8300;
}
.cid-slC4Yz6liF P {
  color: #356308;
  text-align: left;
}
.cid-slC4Yz6liF B {
  color: #428bbb;
}
.cid-slC4Yz6liF copy {
  color: #556C80;
  font-size: 15px;
}
.cid-slC4Yz6liF tel {
  color: #efefef;
}
.cid-slC4Yz6liF zeit {
  color: #c4bc3b;
}
.cid-slC4Yz6liF int {
  font-size: 11px;
  color: #979FA9;
  font-family: Thasadith;
}
.cid-slC4Yz6liF orange {
  color: #e15a00;
}
.cid-slC4Yz6liF sch {
  color: #000000;
}
.cid-slC4Yz6liF .copyright > p {
  text-align: left;
  font-family: Thasadith;
}
.cid-slC4Yz6liF FONT {
  color: #232323;
}
.cid-slC4Yz6liF pp {
  font-size: 13px;
  color: #313839;
  font-family: Thasadith;
}
