body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.6rem;
  line-height: 88px;
  letter-spacing: -0.01em;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.228;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 34px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ffb639 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ed9909 !important;
}
.bg-danger {
  background-color: #ed4009 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6839 !important;
  border-color: #ff6839 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e13500 !important;
  border-color: #e13500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e13500 !important;
  border-color: #e13500 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffb639 !important;
  border-color: #ffb639 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #e18e00 !important;
  border-color: #e18e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e18e00 !important;
  border-color: #e18e00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ed9909 !important;
  border-color: #ed9909 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #996306 !important;
  border-color: #996306 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #996306 !important;
  border-color: #996306 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ed4009 !important;
  border-color: #ed4009 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #992906 !important;
  border-color: #992906 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #992906 !important;
  border-color: #992906 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6839;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e13500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6839 !important;
  border-color: #ff6839 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb639;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e18e00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb639 !important;
  border-color: #ffb639 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed9909;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #996306 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ed9909 !important;
  border-color: #ed9909 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed4009;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #992906 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ed4009 !important;
  border-color: #ed4009 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ff6839 !important;
}
.text-success {
  color: #ffb639 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ed9909 !important;
}
.text-danger {
  color: #ed4009 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d23200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d28500 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8b5a05 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #8b2505 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ed9909;
}
.alert-danger {
  background-color: #ed4009;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fde8c5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdd3c5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6839 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 14px;
  transform: translateX(0);
  transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #ff6839 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #ff6839 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #ffb639 !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #ffb639 !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #ffffff !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #ed9909 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #ed9909 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #ed4009 !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #ed4009 !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
.cid-tXrYtmodwP {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXrYtmodwP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-tXrYtmodwP .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXrYtmodwP .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-tXrYtmodwP .navbar {
    padding: 0 128px !important;
  }
}
.cid-tXrYtmodwP .navbar.opened {
  transition: all 0.3s;
}
.cid-tXrYtmodwP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXrYtmodwP .navbar .navbar-logo img {
  width: auto;
}
.cid-tXrYtmodwP .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXrYtmodwP .navbar.collapsed {
  justify-content: center;
}
.cid-tXrYtmodwP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXrYtmodwP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXrYtmodwP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXrYtmodwP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXrYtmodwP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXrYtmodwP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXrYtmodwP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXrYtmodwP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXrYtmodwP .navbar {
    min-height: 72px;
  }
  .cid-tXrYtmodwP .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXrYtmodwP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXrYtmodwP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXrYtmodwP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXrYtmodwP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXrYtmodwP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXrYtmodwP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXrYtmodwP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXrYtmodwP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXrYtmodwP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXrYtmodwP .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXrYtmodwP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXrYtmodwP .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXrYtmodwP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXrYtmodwP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXrYtmodwP .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-tXrYtmodwP .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXrYtmodwP .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXrYtmodwP .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXrYtmodwP .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXrYtmodwP .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXrYtmodwP .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXrYtmodwP .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tXrYtmodwP .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXrYtmodwP .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXrYtmodwP .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXrYtmodwP .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (min-width: 767px) {
  .cid-tXrYtmodwP .navbar-caption {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXrYtmodwP .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXrYtmodwP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXrYtmodwP .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffb639;
  border-radius: 0px !important;
}
@media (max-width: 992px) {
  .cid-tXrYtmodwP .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXrYtmodwP .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tXrYtmodwP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXrYtmodwP .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffb639;
  border-radius: 4px !important;
}
.cid-tXrYtmodwP .nav-item:focus,
.cid-tXrYtmodwP .nav-link:focus {
  outline: none;
}
.cid-tXrYtmodwP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXrYtmodwP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXrYtmodwP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXrYtmodwP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXrYtmodwP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXrYtmodwP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXrYtmodwP .dropdown-item.active,
.cid-tXrYtmodwP .dropdown-item:active {
  background-color: transparent;
}
.cid-tXrYtmodwP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXrYtmodwP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXrYtmodwP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXrYtmodwP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffb639;
}
.cid-tXrYtmodwP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXrYtmodwP .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXrYtmodwP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXrYtmodwP .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXrYtmodwP .navbar-buttons {
    text-align: left;
  }
}
.cid-tXrYtmodwP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXrYtmodwP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tXrYtmodwP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXrYtmodwP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXrYtmodwP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXrYtmodwP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXrYtmodwP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXrYtmodwP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXrYtmodwP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXrYtmodwP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXrYtmodwP .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXrYtmodwP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXrYtmodwP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXrYtmodwP .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXrYtmodwP .navbar {
    height: 70px;
  }
  .cid-tXrYtmodwP .navbar.opened {
    height: auto;
  }
  .cid-tXrYtmodwP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXrYtmodwP .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXrYtmodwP .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXrYtmodwP .navbar-brand {
    margin-right: auto;
  }
  .cid-tXrYtmodwP .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffb639;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXrYtmodwP .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXrYtmodwP .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXrYtmodwP .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXrYtmodwP .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXrYtmodwP .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tvKTBRLcQs {
  background-image: url("../../../assets/images/llr-defense-98-612x389.jpg");
}
.cid-tvKTBRLcQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKTBRLcQs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKTBRLcQs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tvKTBRLcQs .container-fluid {
    padding: 0 30px;
  }
}
.cid-tvKTBRLcQs .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tvKTBRLcQs .container {
    padding: 0 30px;
  }
}
.cid-tvKTBRLcQs .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tvKTBRLcQs .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tvKTBRLcQs .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tvKTBRLcQs .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tvKTBRLcQs .mbr-section-title {
  color: #ffffff;
}
.cid-tvKTBRLcQs .mbr-text {
  color: #ffffff;
}
.cid-tXrV2CUdss {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffb639;
}
.cid-tXrV2CUdss .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tXrV2CUdss .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tXrV2CUdss .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tXrV2CUdss .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-tXrV2CUdss .mbr-text {
  color: #3d5943;
}
.cid-tXrZLRuRCo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tXrZLRuRCo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXrZLRuRCo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXrV3nDmfd {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tXrV3nDmfd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXrV3nDmfd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXrV3nDmfd .row {
  justify-content: flex-start;
}
.cid-tXrV3nDmfd .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tXrV3nDmfd .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tXrV3nDmfd .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tXrV3nDmfd .image-wrapper {
  width: 100%;
}
.cid-tXrV3nDmfd .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tXrV3nDmfd .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tXrV3nDmfd .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tXrV3nDmfd .mbr-text {
    margin-top: 45px;
  }
}
.cid-tXrV3nDmfd .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tXrV3nDmfd .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tXrV3nDmfd .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tXrV3nDmfd .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tXrV3nDmfd .mbr-text,
.cid-tXrV3nDmfd .mbr-section-btn {
  color: #000000;
}
.cid-tXrUKbc0IQ {
  overflow: visible !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-tXrUKbc0IQ {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tXrUKbc0IQ {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-tXrUKbc0IQ .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tXrUKbc0IQ .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-tXrUKbc0IQ .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-tXrUKbc0IQ .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tXrUKbc0IQ .text {
    min-width: 615px;
    transform: translate(-25%, 7rem);
  }
}
.cid-tXrUKbc0IQ .text-wrapper {
  background: #ffb639;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tXrUKbc0IQ .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-tXrUKbc0IQ .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXrUKbc0IQ .display-1 {
    font-size: 65px;
  }
  .cid-tXrUKbc0IQ .display-5 {
    font-size: 29px;
  }
}
.cid-tXrUKbc0IQ .mbr-section-btn {
  background: #ffb639;
  margin-left: 0;
  margin-right: 0;
}
.cid-tXrUKbc0IQ .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-tXrUKbc0IQ .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-tXrUKbc0IQ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tXrUKbc0IQ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tXs0jZ3BDX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tXs0jZ3BDX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs0jZ3BDX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXrULvcRAk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXrULvcRAk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tXrULvcRAk .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tXrULvcRAk .container {
    padding: 0 12px;
  }
}
.cid-tXrULvcRAk .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-tXrULvcRAk .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tXrULvcRAk .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tXrULvcRAk .content-wrapper {
  border-radius: 32px;
  background-color: #ffb639;
  padding: 86px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .content-wrapper {
    padding: 24px;
    display: block;
  }
}
.cid-tXrULvcRAk .content-wrapper .slider-wrapper {
  border-radius: .5em;
  overflow: hidden;
  width: 65%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .content-wrapper .slider-wrapper {
    width: 100%;
  }
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper {
  margin-left: 80px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .content-wrapper .items-wrapper {
    width: 100%;
    margin: 32px 0 0 0;
  }
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap {
  margin-bottom: 16px;
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card {
  padding: 8px 12px;
  border: 1px solid #bbbbbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  margin-right: 4px;
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .item-title {
  margin-bottom: 0;
}
.cid-tXrULvcRAk .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-tXrULvcRAk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-tXrULvcRAk .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tXrULvcRAk .embla__slide .slide-content .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
  border-radius: .5em !important;
}
@media (max-width: 992px) {
  .cid-tXrULvcRAk .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tXrULvcRAk .embla__button--next,
.cid-tXrULvcRAk .embla__button--prev {
  display: flex;
}
.cid-tXrULvcRAk .embla__button {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 23px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-tXrULvcRAk .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tXrULvcRAk .embla__button:hover {
  opacity: .8 !important;
}
.cid-tXrULvcRAk .embla__button.embla__button--prev {
  left: 20px;
}
.cid-tXrULvcRAk .embla__button.embla__button--next {
  right: 20px;
}
.cid-tXrULvcRAk .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tXrULvcRAk .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tXrULvcRAk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tXrULvcRAk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tXrULvcRAk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tXrULvcRAk .mbr-section-title {
  color: #1D1D1F;
  text-align: center;
}
.cid-tXrULvcRAk .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tXrULvcRAk .item-title {
  color: #ffffff;
}
.cid-tXrULvcRAk .item-text {
  color: #ffffff;
}
.cid-tXs0apuMC8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXs0apuMC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs0apuMC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXs0apuMC8 .container {
    padding: 0 30px;
  }
}
.cid-tXs0apuMC8 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXs0apuMC8 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tXs0apuMC8 .row.content {
  padding: 30px 0;
  border-top: 1px solid #533633;
  border-bottom: 1px solid #533633;
}
.cid-tXs0apuMC8 .row.content .desc-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXs0apuMC8 .row.content .desc-wrapper {
    height: auto;
    margin-bottom: 16px;
  }
}
.cid-tXs0apuMC8 .row.content .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tXs0apuMC8 .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-tXs0apuMC8 .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tXs0apuMC8 .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tXs0apuMC8 .row.content .text-wrapper .mbr-text {
  margin-bottom: 18px;
}
.cid-tXs0apuMC8 .row.content .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tXs0apuMC8 .mbr-section-btn {
  margin-top: 30px;
}
.cid-tXs0apuMC8 .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-tXs0apuMC8 .mbr-section-title {
  color: #f1f4e9;
}
.cid-tXs0apuMC8 .mbr-desc {
  color: #f1f4e9;
}
.cid-tXs0apuMC8 .mbr-text {
  color: #533633;
  text-align: left;
}
.cid-tXs0apuMC8 .mbr-name {
  color: #f1f4e9;
}
.cid-tXs0apuMC8 .mbr-section-title,
.cid-tXs0apuMC8 .mbr-section-btn {
  text-align: center;
}
.cid-tXs0apuMC8 .mbr-desc,
.cid-tXs0apuMC8 .rating-wrapper {
  text-align: left;
  color: #000000;
}
.cid-tXrUOVDEpi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffb639;
}
.cid-tXrUOVDEpi .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tXrUOVDEpi .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-tXrUOVDEpi .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-tXrUOVDEpi .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tXrUOVDEpi .text {
  color: #BA9B67;
}
.cid-tXrUOVDEpi .author {
  color: #9A948D;
  font-style: italic;
}
.cid-tXrUOVDEpi .item-title {
  line-height: 1.161em;
}
@media (min-width: 992px) {
  .cid-tXrUOVDEpi .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-tXrZKyf3Os {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tXrZKyf3Os .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXrZKyf3Os .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXrZKyf3Os .mbr-section-title {
  text-align: center;
}
.cid-tXs0clKnal {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tXs0clKnal .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs0clKnal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs0clKnal .row {
  margin: 0 !important;
}
.cid-tXs0clKnal .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tXs0clKnal .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tXs0clKnal .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tXs0clKnal .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tXs0clKnal .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tXs0clKnal .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tXs0clKnal .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tXs0clKnal .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tXs0clKnal .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tXs0clKnal .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tXs0clKnal .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tXs0clKnal .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tXs0clKnal .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tXs0clKnal .panel-group {
  border: none;
}
.cid-tXs0clKnal .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tXs0clKnal .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tXs0clKnal .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXs0clKnal .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tXs0clKnal .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tXs0clKnal .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tXs0clKnal .panel-title-edit {
  color: #131313;
}
.cid-tXs0clKnal .panel-body {
  padding: 0 0 20px;
}
.cid-tXs0clKnal .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tX5nC1MA3B {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tX5nC1MA3B .container {
    padding: 0 24px;
  }
}
.cid-tX5nC1MA3B .card {
  justify-content: center;
}
.cid-tX5nC1MA3B .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-tX5nC1MA3B .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-tX5nC1MA3B .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tX5nC1MA3B .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5nC1MA3B .text-wrapper {
  border-top: 1px solid #a0789f;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-tX5nC1MA3B .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-tX5nC1MA3B .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-tX5nC1MA3B .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tX5nC1MA3B .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-tX5nC1MA3B .mbr-section-title {
  color: #F9F6E0;
}
.cid-tX5nC1MA3B .mbr-desc {
  color: #F9F6E0;
}
.cid-tX5nC1MA3B .mbr-text {
  color: #171410;
}
.cid-tX5nC1MA3B .mbr-section-btn {
  text-align: right;
}
.cid-tX5nC1MA3B .mbr-section-title,
.cid-tX5nC1MA3B .mbr-section-btn {
  color: #171410;
  text-align: center;
}
.cid-tXrWV5MSsa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tXrWV5MSsa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXrWV5MSsa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXrWV5MSsa .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXrWV5MSsa .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXrWV5MSsa .container {
    padding: 0;
  }
}
.cid-tXrWV5MSsa .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tXrWV5MSsa .card {
  border-radius: 0;
  padding: 0;
}
.cid-tXrWV5MSsa .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tXrWV5MSsa .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tXrWV5MSsa .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tXrWV5MSsa .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tXrWV5MSsa .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tXrWV5MSsa .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tXrWV5MSsa .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tXrWV5MSsa .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tXrZZTWJP2 {
  display: flex;
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tXrZZTWJP2 {
    align-items: center;
  }
  .cid-tXrZZTWJP2 .row {
    justify-content: center;
  }
}
.cid-tXrZZTWJP2 p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tXrZZTWJP2 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tXrZZTWJP2 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tXrZZTWJP2 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tXrZZTWJP2 .content-wrap {
    width: 100%;
  }
}
.cid-tXrZZTWJP2 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tXrZZTWJP2 .mbr-text,
.cid-tXrZZTWJP2 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tXrZZTWJP2 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tXs2drsgwp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tXs2drsgwp .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXs2drsgwp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXs2drsgwp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXs2drsgwp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXs2drsgwp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXs2drsgwp .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tXs2drsgwp .mbr-section-subtitle {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tXs2drsgwp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs2drsgwp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs27HaRAE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffb639;
}
.cid-tXs27HaRAE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs27HaRAE .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXs27HaRAE .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXs27HaRAE .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXs27HaRAE a {
  font-weight: 600;
}
.cid-tXs27HaRAE a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXs27HaRAE .col-lg-3,
  .cid-tXs27HaRAE .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXs27HaRAE .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXs27HaRAE .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXs27HaRAE h5 {
  margin: 0;
}
.cid-tXs27HaRAE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs27HaRAE .iconfont-wrapper {
  position: relative;
}
.cid-tXs27HaRAE .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXs27HaRAE .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXs27HaRAE .sociconfont-wrapper {
  display: flex;
}
.cid-tXs27HaRAE .card-title,
.cid-tXs27HaRAE .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXs27HaRAE .card-text {
  color: #000000;
}
.cid-tXs27HaRAE .mbr-section-title {
  color: #000000;
}
.cid-tXs27HaRAE .main-title,
.cid-tXs27HaRAE .iconfont-wrapper {
  text-align: left;
  color: #171410;
}
.cid-tXs4W73Z8v {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXs4W73Z8v .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-tXs4W73Z8v .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXs4W73Z8v .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-tXs4W73Z8v .navbar {
    padding: 0 128px !important;
  }
}
.cid-tXs4W73Z8v .navbar.opened {
  transition: all 0.3s;
}
.cid-tXs4W73Z8v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXs4W73Z8v .navbar .navbar-logo img {
  width: auto;
}
.cid-tXs4W73Z8v .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXs4W73Z8v .navbar.collapsed {
  justify-content: center;
}
.cid-tXs4W73Z8v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXs4W73Z8v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXs4W73Z8v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXs4W73Z8v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXs4W73Z8v .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXs4W73Z8v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXs4W73Z8v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXs4W73Z8v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXs4W73Z8v .navbar {
    min-height: 72px;
  }
  .cid-tXs4W73Z8v .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXs4W73Z8v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXs4W73Z8v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXs4W73Z8v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXs4W73Z8v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXs4W73Z8v .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXs4W73Z8v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXs4W73Z8v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXs4W73Z8v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXs4W73Z8v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXs4W73Z8v .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXs4W73Z8v .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXs4W73Z8v .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXs4W73Z8v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXs4W73Z8v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXs4W73Z8v .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-tXs4W73Z8v .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXs4W73Z8v .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXs4W73Z8v .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXs4W73Z8v .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXs4W73Z8v .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXs4W73Z8v .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXs4W73Z8v .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tXs4W73Z8v .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXs4W73Z8v .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXs4W73Z8v .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXs4W73Z8v .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (min-width: 767px) {
  .cid-tXs4W73Z8v .navbar-caption {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXs4W73Z8v .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXs4W73Z8v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXs4W73Z8v .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 0px !important;
}
@media (max-width: 992px) {
  .cid-tXs4W73Z8v .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXs4W73Z8v .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tXs4W73Z8v .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXs4W73Z8v .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-tXs4W73Z8v .nav-item:focus,
.cid-tXs4W73Z8v .nav-link:focus {
  outline: none;
}
.cid-tXs4W73Z8v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXs4W73Z8v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXs4W73Z8v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXs4W73Z8v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXs4W73Z8v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXs4W73Z8v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXs4W73Z8v .dropdown-item.active,
.cid-tXs4W73Z8v .dropdown-item:active {
  background-color: transparent;
}
.cid-tXs4W73Z8v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXs4W73Z8v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXs4W73Z8v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXs4W73Z8v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXs4W73Z8v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXs4W73Z8v .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXs4W73Z8v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXs4W73Z8v .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXs4W73Z8v .navbar-buttons {
    text-align: left;
  }
}
.cid-tXs4W73Z8v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXs4W73Z8v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tXs4W73Z8v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXs4W73Z8v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXs4W73Z8v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXs4W73Z8v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXs4W73Z8v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXs4W73Z8v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXs4W73Z8v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXs4W73Z8v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXs4W73Z8v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXs4W73Z8v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXs4W73Z8v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXs4W73Z8v .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXs4W73Z8v .navbar {
    height: 70px;
  }
  .cid-tXs4W73Z8v .navbar.opened {
    height: auto;
  }
  .cid-tXs4W73Z8v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXs4W73Z8v .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXs4W73Z8v .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXs4W73Z8v .navbar-brand {
    margin-right: auto;
  }
  .cid-tXs4W73Z8v .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXs4W73Z8v .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXs4W73Z8v .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXs4W73Z8v .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXs4W73Z8v .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXs4W73Z8v .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXs4W86uTU {
  background-image: url("../../../assets/images/llr-defense-55-612x408.jpg");
}
.cid-tXs4W86uTU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs4W86uTU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs4W86uTU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXs4W86uTU .container-fluid {
    padding: 0 30px;
  }
}
.cid-tXs4W86uTU .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXs4W86uTU .container {
    padding: 0 30px;
  }
}
.cid-tXs4W86uTU .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tXs4W86uTU .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tXs4W86uTU .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tXs4W86uTU .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tXs4W86uTU .mbr-section-title {
  color: #ffffff;
}
.cid-tXs4W86uTU .mbr-text {
  color: #ffffff;
}
.cid-tXs4WmdF0j {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tXs4WmdF0j {
    align-items: center;
  }
  .cid-tXs4WmdF0j .row {
    justify-content: center;
  }
}
.cid-tXs4WmdF0j p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tXs4WmdF0j .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tXs4WmdF0j {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tXs4WmdF0j .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tXs4WmdF0j .content-wrap {
    width: 100%;
  }
}
.cid-tXs4WmdF0j .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tXs4WmdF0j .mbr-text,
.cid-tXs4WmdF0j .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tXs4WmdF0j .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tXs4Wnjj0f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tXs4Wnjj0f .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXs4Wnjj0f .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXs4Wnjj0f .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXs4Wnjj0f .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXs4Wnjj0f .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXs4Wnjj0f .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tXs4Wnjj0f .mbr-section-subtitle {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tXs4Wnjj0f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs4Wnjj0f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs4WomHd7 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXs4WomHd7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs4WomHd7 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXs4WomHd7 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXs4WomHd7 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXs4WomHd7 a {
  font-weight: 600;
}
.cid-tXs4WomHd7 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXs4WomHd7 .col-lg-3,
  .cid-tXs4WomHd7 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXs4WomHd7 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXs4WomHd7 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXs4WomHd7 h5 {
  margin: 0;
}
.cid-tXs4WomHd7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs4WomHd7 .iconfont-wrapper {
  position: relative;
}
.cid-tXs4WomHd7 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXs4WomHd7 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXs4WomHd7 .sociconfont-wrapper {
  display: flex;
}
.cid-tXs4WomHd7 .card-title,
.cid-tXs4WomHd7 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXs4WomHd7 .card-text {
  color: #000000;
}
.cid-tXs4WomHd7 .mbr-section-title {
  color: #000000;
}
.cid-tXs4WomHd7 .main-title,
.cid-tXs4WomHd7 .iconfont-wrapper {
  text-align: left;
  color: #171410;
}
.cid-tXs5x903jL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXs5x903jL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-tXs5x903jL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXs5x903jL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-tXs5x903jL .navbar {
    padding: 0 128px !important;
  }
}
.cid-tXs5x903jL .navbar.opened {
  transition: all 0.3s;
}
.cid-tXs5x903jL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXs5x903jL .navbar .navbar-logo img {
  width: auto;
}
.cid-tXs5x903jL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXs5x903jL .navbar.collapsed {
  justify-content: center;
}
.cid-tXs5x903jL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXs5x903jL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXs5x903jL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXs5x903jL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXs5x903jL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXs5x903jL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXs5x903jL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXs5x903jL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXs5x903jL .navbar {
    min-height: 72px;
  }
  .cid-tXs5x903jL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXs5x903jL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXs5x903jL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXs5x903jL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXs5x903jL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXs5x903jL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXs5x903jL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXs5x903jL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXs5x903jL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXs5x903jL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXs5x903jL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXs5x903jL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXs5x903jL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXs5x903jL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXs5x903jL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXs5x903jL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-tXs5x903jL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXs5x903jL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXs5x903jL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXs5x903jL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXs5x903jL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXs5x903jL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXs5x903jL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tXs5x903jL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXs5x903jL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXs5x903jL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXs5x903jL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (min-width: 767px) {
  .cid-tXs5x903jL .navbar-caption {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXs5x903jL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXs5x903jL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXs5x903jL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffb639;
  border-radius: 0px !important;
}
@media (max-width: 992px) {
  .cid-tXs5x903jL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXs5x903jL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tXs5x903jL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXs5x903jL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffb639;
  border-radius: 4px !important;
}
.cid-tXs5x903jL .nav-item:focus,
.cid-tXs5x903jL .nav-link:focus {
  outline: none;
}
.cid-tXs5x903jL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXs5x903jL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXs5x903jL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXs5x903jL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXs5x903jL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXs5x903jL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXs5x903jL .dropdown-item.active,
.cid-tXs5x903jL .dropdown-item:active {
  background-color: transparent;
}
.cid-tXs5x903jL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXs5x903jL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXs5x903jL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXs5x903jL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffb639;
}
.cid-tXs5x903jL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXs5x903jL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXs5x903jL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXs5x903jL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXs5x903jL .navbar-buttons {
    text-align: left;
  }
}
.cid-tXs5x903jL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXs5x903jL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tXs5x903jL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXs5x903jL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXs5x903jL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXs5x903jL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXs5x903jL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXs5x903jL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXs5x903jL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXs5x903jL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXs5x903jL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXs5x903jL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXs5x903jL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXs5x903jL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXs5x903jL .navbar {
    height: 70px;
  }
  .cid-tXs5x903jL .navbar.opened {
    height: auto;
  }
  .cid-tXs5x903jL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXs5x903jL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXs5x903jL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXs5x903jL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXs5x903jL .navbar-brand {
    margin-right: auto;
  }
  .cid-tXs5x903jL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffb639;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXs5x903jL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXs5x903jL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXs5x903jL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXs5x903jL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXs5x903jL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXs5x903jL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXs5x9OpPW {
  background-image: url("../../../assets/images/llr-defense-6-612x408.jpg");
}
.cid-tXs5x9OpPW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs5x9OpPW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs5x9OpPW .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXs5x9OpPW .container-fluid {
    padding: 0 30px;
  }
}
.cid-tXs5x9OpPW .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXs5x9OpPW .container {
    padding: 0 30px;
  }
}
.cid-tXs5x9OpPW .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tXs5x9OpPW .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tXs5x9OpPW .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tXs5x9OpPW .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tXs5x9OpPW .mbr-section-title {
  color: #ffffff;
}
.cid-tXs5x9OpPW .mbr-text {
  color: #ffffff;
}
.cid-tXs5xaGSTJ {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tXs5xaGSTJ {
    align-items: center;
  }
  .cid-tXs5xaGSTJ .row {
    justify-content: center;
  }
}
.cid-tXs5xaGSTJ p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tXs5xaGSTJ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tXs5xaGSTJ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tXs5xaGSTJ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tXs5xaGSTJ .content-wrap {
    width: 100%;
  }
}
.cid-tXs5xaGSTJ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tXs5xaGSTJ .mbr-text,
.cid-tXs5xaGSTJ .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tXs5xaGSTJ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tXs5xbq0Wh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tXs5xbq0Wh .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXs5xbq0Wh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXs5xbq0Wh .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXs5xbq0Wh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXs5xbq0Wh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXs5xbq0Wh .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tXs5xbq0Wh .mbr-section-subtitle {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tXs5xbq0Wh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs5xbq0Wh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs5xccyyi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXs5xccyyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXs5xccyyi .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXs5xccyyi .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXs5xccyyi .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXs5xccyyi a {
  font-weight: 600;
}
.cid-tXs5xccyyi a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXs5xccyyi .col-lg-3,
  .cid-tXs5xccyyi .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXs5xccyyi .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXs5xccyyi .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXs5xccyyi h5 {
  margin: 0;
}
.cid-tXs5xccyyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXs5xccyyi .iconfont-wrapper {
  position: relative;
}
.cid-tXs5xccyyi .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXs5xccyyi .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXs5xccyyi .sociconfont-wrapper {
  display: flex;
}
.cid-tXs5xccyyi .card-title,
.cid-tXs5xccyyi .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXs5xccyyi .card-text {
  color: #000000;
}
.cid-tXs5xccyyi .mbr-section-title {
  color: #000000;
}
.cid-tXs5xccyyi .main-title,
.cid-tXs5xccyyi .iconfont-wrapper {
  text-align: left;
  color: #171410;
}
.cid-tX5tb2mqyU {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tX5tb2mqyU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-tX5tb2mqyU .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tX5tb2mqyU .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-tX5tb2mqyU .navbar {
    padding: 0 128px !important;
  }
}
.cid-tX5tb2mqyU .navbar.opened {
  transition: all 0.3s;
}
.cid-tX5tb2mqyU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tX5tb2mqyU .navbar .navbar-logo img {
  width: auto;
}
.cid-tX5tb2mqyU .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tX5tb2mqyU .navbar.collapsed {
  justify-content: center;
}
.cid-tX5tb2mqyU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tX5tb2mqyU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tX5tb2mqyU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tX5tb2mqyU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tX5tb2mqyU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tX5tb2mqyU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tX5tb2mqyU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tX5tb2mqyU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tX5tb2mqyU .navbar {
    min-height: 72px;
  }
  .cid-tX5tb2mqyU .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tX5tb2mqyU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tX5tb2mqyU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tX5tb2mqyU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tX5tb2mqyU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tX5tb2mqyU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tX5tb2mqyU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tX5tb2mqyU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tX5tb2mqyU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tX5tb2mqyU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tX5tb2mqyU .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tX5tb2mqyU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tX5tb2mqyU .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tX5tb2mqyU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tX5tb2mqyU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX5tb2mqyU .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-tX5tb2mqyU .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tX5tb2mqyU .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tX5tb2mqyU .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tX5tb2mqyU .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tX5tb2mqyU .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tX5tb2mqyU .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tX5tb2mqyU .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tX5tb2mqyU .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tX5tb2mqyU .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tX5tb2mqyU .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tX5tb2mqyU .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (min-width: 767px) {
  .cid-tX5tb2mqyU .navbar-caption {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5tb2mqyU .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tX5tb2mqyU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tX5tb2mqyU .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffb639;
  border-radius: 0px !important;
}
@media (max-width: 992px) {
  .cid-tX5tb2mqyU .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5tb2mqyU .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tX5tb2mqyU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tX5tb2mqyU .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffb639;
  border-radius: 4px !important;
}
.cid-tX5tb2mqyU .nav-item:focus,
.cid-tX5tb2mqyU .nav-link:focus {
  outline: none;
}
.cid-tX5tb2mqyU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tX5tb2mqyU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tX5tb2mqyU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tX5tb2mqyU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX5tb2mqyU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tX5tb2mqyU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tX5tb2mqyU .dropdown-item.active,
.cid-tX5tb2mqyU .dropdown-item:active {
  background-color: transparent;
}
.cid-tX5tb2mqyU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tX5tb2mqyU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tX5tb2mqyU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tX5tb2mqyU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffb639;
}
.cid-tX5tb2mqyU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tX5tb2mqyU .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tX5tb2mqyU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tX5tb2mqyU .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tX5tb2mqyU .navbar-buttons {
    text-align: left;
  }
}
.cid-tX5tb2mqyU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tX5tb2mqyU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tX5tb2mqyU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tX5tb2mqyU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX5tb2mqyU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX5tb2mqyU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tX5tb2mqyU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX5tb2mqyU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tX5tb2mqyU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tX5tb2mqyU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX5tb2mqyU .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tX5tb2mqyU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX5tb2mqyU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tX5tb2mqyU .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tX5tb2mqyU .navbar {
    height: 70px;
  }
  .cid-tX5tb2mqyU .navbar.opened {
    height: auto;
  }
  .cid-tX5tb2mqyU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tX5tb2mqyU .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tX5tb2mqyU .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tX5tb2mqyU .navbar-brand {
    margin-right: auto;
  }
  .cid-tX5tb2mqyU .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffb639;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tX5tb2mqyU .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tX5tb2mqyU .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tX5tb2mqyU .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tX5tb2mqyU .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tX5tb2mqyU .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tX5tb3x7rY {
  background-image: url("../../../assets/images/llr-defense-76-612x408.jpg");
}
.cid-tX5tb3x7rY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tb3x7rY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tb3x7rY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tX5tb3x7rY .container-fluid {
    padding: 0 30px;
  }
}
.cid-tX5tb3x7rY .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tX5tb3x7rY .container {
    padding: 0 30px;
  }
}
.cid-tX5tb3x7rY .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tX5tb3x7rY .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tX5tb3x7rY .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tX5tb3x7rY .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tX5tb3x7rY .mbr-section-title {
  color: #ffffff;
}
.cid-tX5tb3x7rY .mbr-text {
  color: #ffffff;
}
.cid-tX5tb4uPlK {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffb639;
}
.cid-tX5tb4uPlK .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tX5tb4uPlK .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tX5tb4uPlK .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tX5tb4uPlK .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-tX5tb4uPlK .mbr-text {
  color: #3d5943;
}
.cid-tX5tb54Z3G {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX5tb54Z3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tb54Z3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tb5MHjM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5tb5MHjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tb5MHjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tb5MHjM .row {
  justify-content: flex-start;
}
.cid-tX5tb5MHjM .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tX5tb5MHjM .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tX5tb5MHjM .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tX5tb5MHjM .image-wrapper {
  width: 100%;
}
.cid-tX5tb5MHjM .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tX5tb5MHjM .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tX5tb5MHjM .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tX5tb5MHjM .mbr-text {
    margin-top: 45px;
  }
}
.cid-tX5tb5MHjM .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tX5tb5MHjM .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tX5tb5MHjM .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tX5tb5MHjM .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tX5tb5MHjM .mbr-text,
.cid-tX5tb5MHjM .mbr-section-btn {
  color: #000000;
}
.cid-tX5tb6thkr {
  overflow: visible !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-tX5tb6thkr {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tX5tb6thkr {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-tX5tb6thkr .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tX5tb6thkr .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-tX5tb6thkr .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-tX5tb6thkr .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tX5tb6thkr .text {
    min-width: 615px;
    transform: translate(-25%, 7rem);
  }
}
.cid-tX5tb6thkr .text-wrapper {
  background: #ffb639;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tX5tb6thkr .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-tX5tb6thkr .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tX5tb6thkr .display-1 {
    font-size: 65px;
  }
  .cid-tX5tb6thkr .display-5 {
    font-size: 29px;
  }
}
.cid-tX5tb6thkr .mbr-section-btn {
  background: #ffb639;
  margin-left: 0;
  margin-right: 0;
}
.cid-tX5tb6thkr .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-tX5tb6thkr .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-tX5tb6thkr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tX5tb6thkr .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tX5tb7blHl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX5tb7blHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tb7blHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tb7Kzzl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5tb7Kzzl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tX5tb7Kzzl .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tX5tb7Kzzl .container {
    padding: 0 12px;
  }
}
.cid-tX5tb7Kzzl .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-tX5tb7Kzzl .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tX5tb7Kzzl .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tX5tb7Kzzl .content-wrapper {
  border-radius: 32px;
  background-color: #ffb639;
  padding: 86px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .content-wrapper {
    padding: 24px;
    display: block;
  }
}
.cid-tX5tb7Kzzl .content-wrapper .slider-wrapper {
  border-radius: .5em;
  overflow: hidden;
  width: 65%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .content-wrapper .slider-wrapper {
    width: 100%;
  }
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper {
  margin-left: 80px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .content-wrapper .items-wrapper {
    width: 100%;
    margin: 32px 0 0 0;
  }
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap {
  margin-bottom: 16px;
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card {
  padding: 8px 12px;
  border: 1px solid #bbbbbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  margin-right: 4px;
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .item-title {
  margin-bottom: 0;
}
.cid-tX5tb7Kzzl .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-tX5tb7Kzzl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-tX5tb7Kzzl .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tX5tb7Kzzl .embla__slide .slide-content .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
  border-radius: .5em !important;
}
@media (max-width: 992px) {
  .cid-tX5tb7Kzzl .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tX5tb7Kzzl .embla__button--next,
.cid-tX5tb7Kzzl .embla__button--prev {
  display: flex;
}
.cid-tX5tb7Kzzl .embla__button {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 23px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-tX5tb7Kzzl .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tX5tb7Kzzl .embla__button:hover {
  opacity: .8 !important;
}
.cid-tX5tb7Kzzl .embla__button.embla__button--prev {
  left: 20px;
}
.cid-tX5tb7Kzzl .embla__button.embla__button--next {
  right: 20px;
}
.cid-tX5tb7Kzzl .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tX5tb7Kzzl .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tX5tb7Kzzl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tX5tb7Kzzl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tX5tb7Kzzl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tX5tb7Kzzl .mbr-section-title {
  color: #1D1D1F;
  text-align: center;
}
.cid-tX5tb7Kzzl .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tX5tb7Kzzl .item-title {
  color: #ffffff;
}
.cid-tX5tb7Kzzl .item-text {
  color: #ffffff;
}
.cid-tX5tb8SjlX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5tb8SjlX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tb8SjlX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5tb8SjlX .container {
    padding: 0 30px;
  }
}
.cid-tX5tb8SjlX .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tX5tb8SjlX .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tX5tb8SjlX .row.content {
  padding: 30px 0;
  border-top: 1px solid #533633;
  border-bottom: 1px solid #533633;
}
.cid-tX5tb8SjlX .row.content .desc-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tX5tb8SjlX .row.content .desc-wrapper {
    height: auto;
    margin-bottom: 16px;
  }
}
.cid-tX5tb8SjlX .row.content .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tX5tb8SjlX .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-tX5tb8SjlX .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tX5tb8SjlX .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tX5tb8SjlX .row.content .text-wrapper .mbr-text {
  margin-bottom: 18px;
}
.cid-tX5tb8SjlX .row.content .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tX5tb8SjlX .mbr-section-btn {
  margin-top: 30px;
}
.cid-tX5tb8SjlX .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-tX5tb8SjlX .mbr-section-title {
  color: #f1f4e9;
}
.cid-tX5tb8SjlX .mbr-desc {
  color: #f1f4e9;
}
.cid-tX5tb8SjlX .mbr-text {
  color: #533633;
  text-align: left;
}
.cid-tX5tb8SjlX .mbr-name {
  color: #f1f4e9;
}
.cid-tX5tb8SjlX .mbr-section-title,
.cid-tX5tb8SjlX .mbr-section-btn {
  text-align: center;
}
.cid-tX5tb8SjlX .mbr-desc,
.cid-tX5tb8SjlX .rating-wrapper {
  text-align: left;
  color: #000000;
}
.cid-tX5tb9BOEF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffb639;
}
.cid-tX5tb9BOEF .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tX5tb9BOEF .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-tX5tb9BOEF .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-tX5tb9BOEF .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tX5tb9BOEF .text {
  color: #BA9B67;
}
.cid-tX5tb9BOEF .author {
  color: #9A948D;
  font-style: italic;
}
.cid-tX5tb9BOEF .item-title {
  line-height: 1.161em;
}
@media (min-width: 992px) {
  .cid-tX5tb9BOEF .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-tX5tbaARKt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tX5tbaARKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tbaARKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tbaARKt .mbr-section-title {
  text-align: center;
}
.cid-tX5tbbnx4e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5tbbnx4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tbbnx4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tbbnx4e .row {
  margin: 0 !important;
}
.cid-tX5tbbnx4e .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tX5tbbnx4e .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tX5tbbnx4e .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tX5tbbnx4e .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tX5tbbnx4e .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tX5tbbnx4e .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tX5tbbnx4e .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tX5tbbnx4e .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tX5tbbnx4e .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tX5tbbnx4e .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tX5tbbnx4e .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tX5tbbnx4e .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tX5tbbnx4e .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tX5tbbnx4e .panel-group {
  border: none;
}
.cid-tX5tbbnx4e .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tX5tbbnx4e .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tX5tbbnx4e .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tX5tbbnx4e .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tX5tbbnx4e .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tX5tbbnx4e .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tX5tbbnx4e .panel-title-edit {
  color: #131313;
}
.cid-tX5tbbnx4e .panel-body {
  padding: 0 0 20px;
}
.cid-tX5tbbnx4e .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tX5tbd2zFh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tX5tbd2zFh .container {
    padding: 0 24px;
  }
}
.cid-tX5tbd2zFh .card {
  justify-content: center;
}
.cid-tX5tbd2zFh .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-tX5tbd2zFh .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-tX5tbd2zFh .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tX5tbd2zFh .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5tbd2zFh .text-wrapper {
  border-top: 1px solid #a0789f;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-tX5tbd2zFh .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-tX5tbd2zFh .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-tX5tbd2zFh .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tX5tbd2zFh .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-tX5tbd2zFh .mbr-section-title {
  color: #F9F6E0;
}
.cid-tX5tbd2zFh .mbr-desc {
  color: #F9F6E0;
}
.cid-tX5tbd2zFh .mbr-text {
  color: #171410;
}
.cid-tX5tbd2zFh .mbr-section-btn {
  text-align: right;
}
.cid-tX5tbd2zFh .mbr-section-title,
.cid-tX5tbd2zFh .mbr-section-btn {
  color: #171410;
  text-align: center;
}
.cid-tX5tbektEW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5tbektEW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tbektEW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tbektEW .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tX5tbektEW .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tX5tbektEW .container {
    padding: 0;
  }
}
.cid-tX5tbektEW .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tX5tbektEW .card {
  border-radius: 0;
  padding: 0;
}
.cid-tX5tbektEW .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tX5tbektEW .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tX5tbektEW .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tX5tbektEW .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tX5tbektEW .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tX5tbektEW .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5tbektEW .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tX5tbektEW .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tX5tbfAnXB {
  display: flex;
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tX5tbfAnXB {
    align-items: center;
  }
  .cid-tX5tbfAnXB .row {
    justify-content: center;
  }
}
.cid-tX5tbfAnXB p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tX5tbfAnXB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tX5tbfAnXB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tX5tbfAnXB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tX5tbfAnXB .content-wrap {
    width: 100%;
  }
}
.cid-tX5tbfAnXB .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tX5tbfAnXB .mbr-text,
.cid-tX5tbfAnXB .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tX5tbfAnXB .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tX5wU7nAA0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5wU7nAA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5wU7nAA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5wU7nAA0 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tX5wU7nAA0 .container {
    padding: 0 12px;
  }
}
.cid-tX5wU7nAA0 .row {
  justify-content: center;
}
.cid-tX5wU7nAA0 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tX5wU7nAA0 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tX5wU7nAA0 .panel-group .card {
  border-radius: 50px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  background-color: #ffb639;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-tX5wU7nAA0 .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-tX5wU7nAA0 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-tX5wU7nAA0 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX5wU7nAA0 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX5wU7nAA0 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tX5wU7nAA0 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-tX5wU7nAA0 .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-tX5wU7nAA0 .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-tX5wU7nAA0 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX5wU7nAA0 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-tX5wU7nAA0 .panel-title-edit {
  color: #222222;
}
.cid-tX5wU7nAA0 .panel-text {
  color: #222222;
}
.cid-tX5tbh2tTe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tX5tbh2tTe .google-map {
  height: 30rem;
  position: relative;
}
.cid-tX5tbh2tTe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tX5tbh2tTe .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tX5tbh2tTe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tX5tbh2tTe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tX5tbh2tTe .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tX5tbh2tTe .mbr-section-subtitle {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tX5tbh2tTe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tbh2tTe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tbi563J {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffb639;
}
.cid-tX5tbi563J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5tbi563J .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tX5tbi563J .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tX5tbi563J .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tX5tbi563J a {
  font-weight: 600;
}
.cid-tX5tbi563J a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tX5tbi563J .col-lg-3,
  .cid-tX5tbi563J .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tX5tbi563J .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tX5tbi563J .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tX5tbi563J h5 {
  margin: 0;
}
.cid-tX5tbi563J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5tbi563J .iconfont-wrapper {
  position: relative;
}
.cid-tX5tbi563J .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tX5tbi563J .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tX5tbi563J .sociconfont-wrapper {
  display: flex;
}
.cid-tX5tbi563J .card-title,
.cid-tX5tbi563J .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tX5tbi563J .card-text {
  color: #000000;
}
.cid-tX5tbi563J .mbr-section-title {
  color: #000000;
}
.cid-tX5tbi563J .main-title,
.cid-tX5tbi563J .iconfont-wrapper {
  text-align: left;
  color: #171410;
}
.cid-tX5zlaHNRK {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tX5zlaHNRK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-tX5zlaHNRK .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tX5zlaHNRK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-tX5zlaHNRK .navbar {
    padding: 0 128px !important;
  }
}
.cid-tX5zlaHNRK .navbar.opened {
  transition: all 0.3s;
}
.cid-tX5zlaHNRK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tX5zlaHNRK .navbar .navbar-logo img {
  width: auto;
}
.cid-tX5zlaHNRK .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tX5zlaHNRK .navbar.collapsed {
  justify-content: center;
}
.cid-tX5zlaHNRK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tX5zlaHNRK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tX5zlaHNRK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tX5zlaHNRK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tX5zlaHNRK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tX5zlaHNRK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tX5zlaHNRK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tX5zlaHNRK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tX5zlaHNRK .navbar {
    min-height: 72px;
  }
  .cid-tX5zlaHNRK .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tX5zlaHNRK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tX5zlaHNRK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tX5zlaHNRK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tX5zlaHNRK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tX5zlaHNRK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tX5zlaHNRK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tX5zlaHNRK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tX5zlaHNRK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tX5zlaHNRK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tX5zlaHNRK .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tX5zlaHNRK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tX5zlaHNRK .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tX5zlaHNRK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tX5zlaHNRK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX5zlaHNRK .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-tX5zlaHNRK .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tX5zlaHNRK .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tX5zlaHNRK .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tX5zlaHNRK .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tX5zlaHNRK .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tX5zlaHNRK .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tX5zlaHNRK .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tX5zlaHNRK .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tX5zlaHNRK .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tX5zlaHNRK .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tX5zlaHNRK .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (min-width: 767px) {
  .cid-tX5zlaHNRK .navbar-caption {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5zlaHNRK .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tX5zlaHNRK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tX5zlaHNRK .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffb639;
  border-radius: 0px !important;
}
@media (max-width: 992px) {
  .cid-tX5zlaHNRK .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5zlaHNRK .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tX5zlaHNRK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tX5zlaHNRK .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffb639;
  border-radius: 4px !important;
}
.cid-tX5zlaHNRK .nav-item:focus,
.cid-tX5zlaHNRK .nav-link:focus {
  outline: none;
}
.cid-tX5zlaHNRK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tX5zlaHNRK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tX5zlaHNRK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tX5zlaHNRK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX5zlaHNRK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tX5zlaHNRK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tX5zlaHNRK .dropdown-item.active,
.cid-tX5zlaHNRK .dropdown-item:active {
  background-color: transparent;
}
.cid-tX5zlaHNRK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tX5zlaHNRK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tX5zlaHNRK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tX5zlaHNRK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffb639;
}
.cid-tX5zlaHNRK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tX5zlaHNRK .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tX5zlaHNRK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tX5zlaHNRK .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tX5zlaHNRK .navbar-buttons {
    text-align: left;
  }
}
.cid-tX5zlaHNRK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tX5zlaHNRK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tX5zlaHNRK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tX5zlaHNRK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX5zlaHNRK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX5zlaHNRK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tX5zlaHNRK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX5zlaHNRK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tX5zlaHNRK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tX5zlaHNRK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX5zlaHNRK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tX5zlaHNRK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX5zlaHNRK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tX5zlaHNRK .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tX5zlaHNRK .navbar {
    height: 70px;
  }
  .cid-tX5zlaHNRK .navbar.opened {
    height: auto;
  }
  .cid-tX5zlaHNRK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tX5zlaHNRK .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tX5zlaHNRK .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tX5zlaHNRK .navbar-brand {
    margin-right: auto;
  }
  .cid-tX5zlaHNRK .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffb639;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tX5zlaHNRK .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tX5zlaHNRK .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tX5zlaHNRK .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tX5zlaHNRK .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tX5zlaHNRK .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tX5zlbIs4H {
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tX5zlbIs4H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zlbIs4H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zlbIs4H .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tX5zlbIs4H .container-fluid {
    padding: 0 30px;
  }
}
.cid-tX5zlbIs4H .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tX5zlbIs4H .container {
    padding: 0 30px;
  }
}
.cid-tX5zlbIs4H .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tX5zlbIs4H .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tX5zlbIs4H .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tX5zlbIs4H .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tX5zlbIs4H .mbr-section-title {
  color: #ffffff;
}
.cid-tX5zlbIs4H .mbr-text {
  color: #ffffff;
}
.cid-tX5zlcBx2K {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffb639;
}
.cid-tX5zlcBx2K .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tX5zlcBx2K .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tX5zlcBx2K .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tX5zlcBx2K .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-tX5zlcBx2K .mbr-text {
  color: #3d5943;
}
.cid-tX5zlddodt {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX5zlddodt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zlddodt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5A2PcRhb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ed9909;
}
.cid-tX5A2PcRhb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5A2PcRhb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5A2PcRhb .container {
    padding: 0 30px;
  }
}
.cid-tX5A2PcRhb .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tX5A2PcRhb .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tX5A2PcRhb .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tX5A2PcRhb .image-wrapper img {
    height: 300px;
  }
}
.cid-tX5A2PcRhb .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tX5A2PcRhb .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tX5A2PcRhb .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tX5A2PcRhb .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tX5A2PcRhb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tX5A2PcRhb .mbr-section-title {
  color: #212529;
}
.cid-tX5A2PcRhb .mbr-text {
  color: #ffffff;
}
.cid-tX5zleC0ln {
  overflow: visible !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-tX5zleC0ln {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tX5zleC0ln {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-tX5zleC0ln .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tX5zleC0ln .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-tX5zleC0ln .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-tX5zleC0ln .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tX5zleC0ln .text {
    min-width: 615px;
    transform: translate(-25%, 7rem);
  }
}
.cid-tX5zleC0ln .text-wrapper {
  background: #ffb639;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tX5zleC0ln .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-tX5zleC0ln .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tX5zleC0ln .display-1 {
    font-size: 65px;
  }
  .cid-tX5zleC0ln .display-5 {
    font-size: 29px;
  }
}
.cid-tX5zleC0ln .mbr-section-btn {
  background: #ffb639;
  margin-left: 0;
  margin-right: 0;
}
.cid-tX5zleC0ln .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-tX5zleC0ln .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-tX5zleC0ln .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tX5zleC0ln .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tX5zlfgwJr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX5zlfgwJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zlfgwJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zlfS1CQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5zlfS1CQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tX5zlfS1CQ .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tX5zlfS1CQ .container {
    padding: 0 12px;
  }
}
.cid-tX5zlfS1CQ .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-tX5zlfS1CQ .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tX5zlfS1CQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tX5zlfS1CQ .content-wrapper {
  border-radius: 32px;
  background-color: #ffb639;
  padding: 86px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .content-wrapper {
    padding: 24px;
    display: block;
  }
}
.cid-tX5zlfS1CQ .content-wrapper .slider-wrapper {
  border-radius: .5em;
  overflow: hidden;
  width: 65%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .content-wrapper .slider-wrapper {
    width: 100%;
  }
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper {
  margin-left: 80px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .content-wrapper .items-wrapper {
    width: 100%;
    margin: 32px 0 0 0;
  }
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap {
  margin-bottom: 16px;
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card {
  padding: 8px 12px;
  border: 1px solid #bbbbbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  margin-right: 4px;
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .item-title {
  margin-bottom: 0;
}
.cid-tX5zlfS1CQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-tX5zlfS1CQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-tX5zlfS1CQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tX5zlfS1CQ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
  border-radius: .5em !important;
}
@media (max-width: 992px) {
  .cid-tX5zlfS1CQ .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tX5zlfS1CQ .embla__button--next,
.cid-tX5zlfS1CQ .embla__button--prev {
  display: flex;
}
.cid-tX5zlfS1CQ .embla__button {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 23px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-tX5zlfS1CQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tX5zlfS1CQ .embla__button:hover {
  opacity: .8 !important;
}
.cid-tX5zlfS1CQ .embla__button.embla__button--prev {
  left: 20px;
}
.cid-tX5zlfS1CQ .embla__button.embla__button--next {
  right: 20px;
}
.cid-tX5zlfS1CQ .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tX5zlfS1CQ .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tX5zlfS1CQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tX5zlfS1CQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tX5zlfS1CQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tX5zlfS1CQ .mbr-section-title {
  color: #1D1D1F;
  text-align: center;
}
.cid-tX5zlfS1CQ .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tX5zlfS1CQ .item-title {
  color: #ffffff;
}
.cid-tX5zlfS1CQ .item-text {
  color: #ffffff;
}
.cid-tX5zlgWknV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5zlgWknV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zlgWknV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5zlgWknV .container {
    padding: 0 30px;
  }
}
.cid-tX5zlgWknV .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tX5zlgWknV .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tX5zlgWknV .row.content {
  padding: 30px 0;
  border-top: 1px solid #533633;
  border-bottom: 1px solid #533633;
}
.cid-tX5zlgWknV .row.content .desc-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tX5zlgWknV .row.content .desc-wrapper {
    height: auto;
    margin-bottom: 16px;
  }
}
.cid-tX5zlgWknV .row.content .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tX5zlgWknV .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-tX5zlgWknV .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tX5zlgWknV .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tX5zlgWknV .row.content .text-wrapper .mbr-text {
  margin-bottom: 18px;
}
.cid-tX5zlgWknV .row.content .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tX5zlgWknV .mbr-section-btn {
  margin-top: 30px;
}
.cid-tX5zlgWknV .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-tX5zlgWknV .mbr-section-title {
  color: #f1f4e9;
}
.cid-tX5zlgWknV .mbr-desc {
  color: #f1f4e9;
}
.cid-tX5zlgWknV .mbr-text {
  color: #533633;
  text-align: left;
}
.cid-tX5zlgWknV .mbr-name {
  color: #f1f4e9;
}
.cid-tX5zlgWknV .mbr-section-title,
.cid-tX5zlgWknV .mbr-section-btn {
  text-align: center;
}
.cid-tX5zlgWknV .mbr-desc,
.cid-tX5zlgWknV .rating-wrapper {
  text-align: left;
  color: #000000;
}
.cid-tX5zlhLLei {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffb639;
}
.cid-tX5zlhLLei .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tX5zlhLLei .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-tX5zlhLLei .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-tX5zlhLLei .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tX5zlhLLei .text {
  color: #BA9B67;
}
.cid-tX5zlhLLei .author {
  color: #9A948D;
  font-style: italic;
}
.cid-tX5zlhLLei .item-title {
  line-height: 1.161em;
}
@media (min-width: 992px) {
  .cid-tX5zlhLLei .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-tX5zliGeTv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tX5zliGeTv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zliGeTv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zliGeTv .mbr-section-title {
  text-align: center;
}
.cid-tX5zljmCnn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5zljmCnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zljmCnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zljmCnn .row {
  margin: 0 !important;
}
.cid-tX5zljmCnn .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tX5zljmCnn .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tX5zljmCnn .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tX5zljmCnn .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tX5zljmCnn .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tX5zljmCnn .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tX5zljmCnn .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tX5zljmCnn .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tX5zljmCnn .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tX5zljmCnn .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tX5zljmCnn .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tX5zljmCnn .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tX5zljmCnn .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tX5zljmCnn .panel-group {
  border: none;
}
.cid-tX5zljmCnn .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tX5zljmCnn .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tX5zljmCnn .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tX5zljmCnn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tX5zljmCnn .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tX5zljmCnn .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tX5zljmCnn .panel-title-edit {
  color: #131313;
}
.cid-tX5zljmCnn .panel-body {
  padding: 0 0 20px;
}
.cid-tX5zljmCnn .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tX5zlkrv5c {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tX5zlkrv5c .container {
    padding: 0 24px;
  }
}
.cid-tX5zlkrv5c .card {
  justify-content: center;
}
.cid-tX5zlkrv5c .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-tX5zlkrv5c .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-tX5zlkrv5c .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tX5zlkrv5c .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5zlkrv5c .text-wrapper {
  border-top: 1px solid #a0789f;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-tX5zlkrv5c .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-tX5zlkrv5c .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-tX5zlkrv5c .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tX5zlkrv5c .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-tX5zlkrv5c .mbr-section-title {
  color: #F9F6E0;
}
.cid-tX5zlkrv5c .mbr-desc {
  color: #F9F6E0;
}
.cid-tX5zlkrv5c .mbr-text {
  color: #171410;
}
.cid-tX5zlkrv5c .mbr-section-btn {
  text-align: right;
}
.cid-tX5zlkrv5c .mbr-section-title,
.cid-tX5zlkrv5c .mbr-section-btn {
  color: #171410;
  text-align: center;
}
.cid-tX5zllfuTi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5zllfuTi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zllfuTi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zllfuTi .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tX5zllfuTi .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tX5zllfuTi .container {
    padding: 0;
  }
}
.cid-tX5zllfuTi .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tX5zllfuTi .card {
  border-radius: 0;
  padding: 0;
}
.cid-tX5zllfuTi .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tX5zllfuTi .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tX5zllfuTi .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tX5zllfuTi .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tX5zllfuTi .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tX5zllfuTi .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5zllfuTi .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tX5zllfuTi .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tX5zlm7UMT {
  display: flex;
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tX5zlm7UMT {
    align-items: center;
  }
  .cid-tX5zlm7UMT .row {
    justify-content: center;
  }
}
.cid-tX5zlm7UMT p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tX5zlm7UMT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tX5zlm7UMT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tX5zlm7UMT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tX5zlm7UMT .content-wrap {
    width: 100%;
  }
}
.cid-tX5zlm7UMT .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tX5zlm7UMT .mbr-text,
.cid-tX5zlm7UMT .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tX5zlm7UMT .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tX5zlmVSGg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5zlmVSGg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zlmVSGg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5zlmVSGg .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tX5zlmVSGg .container {
    padding: 0 12px;
  }
}
.cid-tX5zlmVSGg .row {
  justify-content: center;
}
.cid-tX5zlmVSGg .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tX5zlmVSGg .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tX5zlmVSGg .panel-group .card {
  border-radius: 50px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  background-color: #ffb639;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-tX5zlmVSGg .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-tX5zlmVSGg .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-tX5zlmVSGg .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX5zlmVSGg .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX5zlmVSGg .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tX5zlmVSGg .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-tX5zlmVSGg .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-tX5zlmVSGg .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-tX5zlmVSGg .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX5zlmVSGg .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-tX5zlmVSGg .panel-title-edit {
  color: #222222;
}
.cid-tX5zlmVSGg .panel-text {
  color: #222222;
}
.cid-tX5zlnMvsJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tX5zlnMvsJ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tX5zlnMvsJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tX5zlnMvsJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tX5zlnMvsJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tX5zlnMvsJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tX5zlnMvsJ .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tX5zlnMvsJ .mbr-section-subtitle {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tX5zlnMvsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zlnMvsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zloKtEY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffb639;
}
.cid-tX5zloKtEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5zloKtEY .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tX5zloKtEY .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tX5zloKtEY .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tX5zloKtEY a {
  font-weight: 600;
}
.cid-tX5zloKtEY a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tX5zloKtEY .col-lg-3,
  .cid-tX5zloKtEY .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tX5zloKtEY .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tX5zloKtEY .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tX5zloKtEY h5 {
  margin: 0;
}
.cid-tX5zloKtEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5zloKtEY .iconfont-wrapper {
  position: relative;
}
.cid-tX5zloKtEY .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tX5zloKtEY .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tX5zloKtEY .sociconfont-wrapper {
  display: flex;
}
.cid-tX5zloKtEY .card-title,
.cid-tX5zloKtEY .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tX5zloKtEY .card-text {
  color: #000000;
}
.cid-tX5zloKtEY .mbr-section-title {
  color: #000000;
}
.cid-tX5zloKtEY .main-title,
.cid-tX5zloKtEY .iconfont-wrapper {
  text-align: left;
  color: #171410;
}
.cid-tX5C83vnsL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tX5C83vnsL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-tX5C83vnsL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tX5C83vnsL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .cid-tX5C83vnsL .navbar {
    padding: 0 128px !important;
  }
}
.cid-tX5C83vnsL .navbar.opened {
  transition: all 0.3s;
}
.cid-tX5C83vnsL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tX5C83vnsL .navbar .navbar-logo img {
  width: auto;
}
.cid-tX5C83vnsL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tX5C83vnsL .navbar.collapsed {
  justify-content: center;
}
.cid-tX5C83vnsL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tX5C83vnsL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tX5C83vnsL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tX5C83vnsL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tX5C83vnsL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tX5C83vnsL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tX5C83vnsL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tX5C83vnsL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tX5C83vnsL .navbar {
    min-height: 72px;
  }
  .cid-tX5C83vnsL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tX5C83vnsL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tX5C83vnsL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tX5C83vnsL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tX5C83vnsL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tX5C83vnsL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tX5C83vnsL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tX5C83vnsL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tX5C83vnsL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tX5C83vnsL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tX5C83vnsL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tX5C83vnsL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tX5C83vnsL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tX5C83vnsL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tX5C83vnsL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX5C83vnsL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-tX5C83vnsL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tX5C83vnsL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tX5C83vnsL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tX5C83vnsL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tX5C83vnsL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tX5C83vnsL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tX5C83vnsL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tX5C83vnsL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tX5C83vnsL .navbar-logo {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tX5C83vnsL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tX5C83vnsL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (min-width: 767px) {
  .cid-tX5C83vnsL .navbar-caption {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5C83vnsL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tX5C83vnsL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tX5C83vnsL .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #232323;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #ffb639;
  border-radius: 0px !important;
}
@media (max-width: 992px) {
  .cid-tX5C83vnsL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tX5C83vnsL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tX5C83vnsL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tX5C83vnsL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffb639;
  border-radius: 4px !important;
}
.cid-tX5C83vnsL .nav-item:focus,
.cid-tX5C83vnsL .nav-link:focus {
  outline: none;
}
.cid-tX5C83vnsL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tX5C83vnsL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tX5C83vnsL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tX5C83vnsL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX5C83vnsL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tX5C83vnsL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tX5C83vnsL .dropdown-item.active,
.cid-tX5C83vnsL .dropdown-item:active {
  background-color: transparent;
}
.cid-tX5C83vnsL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tX5C83vnsL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tX5C83vnsL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tX5C83vnsL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffb639;
}
.cid-tX5C83vnsL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tX5C83vnsL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tX5C83vnsL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tX5C83vnsL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tX5C83vnsL .navbar-buttons {
    text-align: left;
  }
}
.cid-tX5C83vnsL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tX5C83vnsL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tX5C83vnsL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tX5C83vnsL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX5C83vnsL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX5C83vnsL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tX5C83vnsL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX5C83vnsL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tX5C83vnsL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tX5C83vnsL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX5C83vnsL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tX5C83vnsL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX5C83vnsL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tX5C83vnsL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tX5C83vnsL .navbar {
    height: 70px;
  }
  .cid-tX5C83vnsL .navbar.opened {
    height: auto;
  }
  .cid-tX5C83vnsL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 0px);
  left: 50%;
}
.cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tX5C83vnsL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tX5C83vnsL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tX5C83vnsL .navbar-brand {
    margin-right: auto;
  }
  .cid-tX5C83vnsL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffb639;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tX5C83vnsL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tX5C83vnsL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tX5C83vnsL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tX5C83vnsL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tX5C83vnsL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tX5C84K7aY {
  background-image: url("../../../assets/images/mbr-1920x1371.jpg");
}
.cid-tX5C84K7aY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C84K7aY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C84K7aY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tX5C84K7aY .container-fluid {
    padding: 0 30px;
  }
}
.cid-tX5C84K7aY .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tX5C84K7aY .container {
    padding: 0 30px;
  }
}
.cid-tX5C84K7aY .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tX5C84K7aY .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tX5C84K7aY .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tX5C84K7aY .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tX5C84K7aY .mbr-section-title {
  color: #ffffff;
}
.cid-tX5C84K7aY .mbr-text {
  color: #ffffff;
}
.cid-tX5C85Lcjq {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffb639;
}
.cid-tX5C85Lcjq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tX5C85Lcjq .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tX5C85Lcjq .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tX5C85Lcjq .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-tX5C85Lcjq .mbr-text {
  color: #3d5943;
}
.cid-tX5C86x2st {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX5C86x2st .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C86x2st .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C87rFyy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ed9909;
}
.cid-tX5C87rFyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C87rFyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5C87rFyy .container {
    padding: 0 30px;
  }
}
.cid-tX5C87rFyy .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tX5C87rFyy .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tX5C87rFyy .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tX5C87rFyy .image-wrapper img {
    height: 300px;
  }
}
.cid-tX5C87rFyy .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tX5C87rFyy .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tX5C87rFyy .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tX5C87rFyy .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tX5C87rFyy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tX5C87rFyy .mbr-section-title {
  color: #212529;
}
.cid-tX5C87rFyy .mbr-text {
  color: #ffffff;
}
.cid-tX5C88Yt0L {
  overflow: visible !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-tX5C88Yt0L {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tX5C88Yt0L {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-tX5C88Yt0L .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tX5C88Yt0L .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-tX5C88Yt0L .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-tX5C88Yt0L .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tX5C88Yt0L .text {
    min-width: 615px;
    transform: translate(-25%, 7rem);
  }
}
.cid-tX5C88Yt0L .text-wrapper {
  background: #ffb639;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tX5C88Yt0L .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-tX5C88Yt0L .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tX5C88Yt0L .display-1 {
    font-size: 65px;
  }
  .cid-tX5C88Yt0L .display-5 {
    font-size: 29px;
  }
}
.cid-tX5C88Yt0L .mbr-section-btn {
  background: #ffb639;
  margin-left: 0;
  margin-right: 0;
}
.cid-tX5C88Yt0L .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-tX5C88Yt0L .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-tX5C88Yt0L .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tX5C88Yt0L .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tX5C89DokI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX5C89DokI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C89DokI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C8agDhB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5C8agDhB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tX5C8agDhB .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tX5C8agDhB .container {
    padding: 0 12px;
  }
}
.cid-tX5C8agDhB .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-tX5C8agDhB .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tX5C8agDhB .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tX5C8agDhB .content-wrapper {
  border-radius: 32px;
  background-color: #ffb639;
  padding: 86px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .content-wrapper {
    padding: 24px;
    display: block;
  }
}
.cid-tX5C8agDhB .content-wrapper .slider-wrapper {
  border-radius: .5em;
  overflow: hidden;
  width: 65%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .content-wrapper .slider-wrapper {
    width: 100%;
  }
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper {
  margin-left: 80px;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .content-wrapper .items-wrapper {
    width: 100%;
    margin: 32px 0 0 0;
  }
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap {
  margin-bottom: 16px;
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card {
  padding: 8px 12px;
  border: 1px solid #bbbbbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  margin-right: 4px;
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item .item-wrapper .card-box .title-wrap .title-card .item-title {
  margin-bottom: 0;
}
.cid-tX5C8agDhB .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-tX5C8agDhB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-tX5C8agDhB .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tX5C8agDhB .embla__slide .slide-content .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
  border-radius: .5em !important;
}
@media (max-width: 992px) {
  .cid-tX5C8agDhB .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-tX5C8agDhB .embla__button--next,
.cid-tX5C8agDhB .embla__button--prev {
  display: flex;
}
.cid-tX5C8agDhB .embla__button {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 23px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-tX5C8agDhB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tX5C8agDhB .embla__button:hover {
  opacity: .8 !important;
}
.cid-tX5C8agDhB .embla__button.embla__button--prev {
  left: 20px;
}
.cid-tX5C8agDhB .embla__button.embla__button--next {
  right: 20px;
}
.cid-tX5C8agDhB .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tX5C8agDhB .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tX5C8agDhB .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tX5C8agDhB .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tX5C8agDhB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tX5C8agDhB .mbr-section-title {
  color: #1D1D1F;
  text-align: center;
}
.cid-tX5C8agDhB .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tX5C8agDhB .item-title {
  color: #ffffff;
}
.cid-tX5C8agDhB .item-text {
  color: #ffffff;
}
.cid-tX5C8bjyte {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5C8bjyte .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8bjyte .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5C8bjyte .container {
    padding: 0 30px;
  }
}
.cid-tX5C8bjyte .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tX5C8bjyte .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tX5C8bjyte .row.content {
  padding: 30px 0;
  border-top: 1px solid #533633;
  border-bottom: 1px solid #533633;
}
.cid-tX5C8bjyte .row.content .desc-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tX5C8bjyte .row.content .desc-wrapper {
    height: auto;
    margin-bottom: 16px;
  }
}
.cid-tX5C8bjyte .row.content .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tX5C8bjyte .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-tX5C8bjyte .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tX5C8bjyte .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tX5C8bjyte .row.content .text-wrapper .mbr-text {
  margin-bottom: 18px;
}
.cid-tX5C8bjyte .row.content .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tX5C8bjyte .mbr-section-btn {
  margin-top: 30px;
}
.cid-tX5C8bjyte .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-tX5C8bjyte .mbr-section-title {
  color: #f1f4e9;
}
.cid-tX5C8bjyte .mbr-desc {
  color: #f1f4e9;
}
.cid-tX5C8bjyte .mbr-text {
  color: #533633;
  text-align: left;
}
.cid-tX5C8bjyte .mbr-name {
  color: #f1f4e9;
}
.cid-tX5C8bjyte .mbr-section-title,
.cid-tX5C8bjyte .mbr-section-btn {
  text-align: center;
}
.cid-tX5C8bjyte .mbr-desc,
.cid-tX5C8bjyte .rating-wrapper {
  text-align: left;
  color: #000000;
}
.cid-tX5C8cdBec {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffb639;
}
.cid-tX5C8cdBec .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tX5C8cdBec .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-tX5C8cdBec .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-tX5C8cdBec .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tX5C8cdBec .text {
  color: #BA9B67;
}
.cid-tX5C8cdBec .author {
  color: #9A948D;
  font-style: italic;
}
.cid-tX5C8cdBec .item-title {
  line-height: 1.161em;
}
@media (min-width: 992px) {
  .cid-tX5C8cdBec .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-tX5C8dU8hH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tX5C8dU8hH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8dU8hH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C8dU8hH .mbr-section-title {
  text-align: center;
}
.cid-tX5C8eJQ9u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5C8eJQ9u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8eJQ9u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C8eJQ9u .row {
  margin: 0 !important;
}
.cid-tX5C8eJQ9u .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tX5C8eJQ9u .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tX5C8eJQ9u .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tX5C8eJQ9u .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tX5C8eJQ9u .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tX5C8eJQ9u .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tX5C8eJQ9u .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tX5C8eJQ9u .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tX5C8eJQ9u .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tX5C8eJQ9u .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tX5C8eJQ9u .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tX5C8eJQ9u .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tX5C8eJQ9u .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tX5C8eJQ9u .panel-group {
  border: none;
}
.cid-tX5C8eJQ9u .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tX5C8eJQ9u .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tX5C8eJQ9u .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tX5C8eJQ9u .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tX5C8eJQ9u .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tX5C8eJQ9u .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tX5C8eJQ9u .panel-title-edit {
  color: #131313;
}
.cid-tX5C8eJQ9u .panel-body {
  padding: 0 0 20px;
}
.cid-tX5C8eJQ9u .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tX5C8fH77S {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tX5C8fH77S .container {
    padding: 0 24px;
  }
}
.cid-tX5C8fH77S .card {
  justify-content: center;
}
.cid-tX5C8fH77S .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-tX5C8fH77S .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-tX5C8fH77S .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tX5C8fH77S .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5C8fH77S .text-wrapper {
  border-top: 1px solid #a0789f;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-tX5C8fH77S .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-tX5C8fH77S .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-tX5C8fH77S .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tX5C8fH77S .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-tX5C8fH77S .mbr-section-title {
  color: #F9F6E0;
}
.cid-tX5C8fH77S .mbr-desc {
  color: #F9F6E0;
}
.cid-tX5C8fH77S .mbr-text {
  color: #171410;
}
.cid-tX5C8fH77S .mbr-section-btn {
  text-align: right;
}
.cid-tX5C8fH77S .mbr-section-title,
.cid-tX5C8fH77S .mbr-section-btn {
  color: #171410;
  text-align: center;
}
.cid-tX5C8grtyq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffb639;
}
.cid-tX5C8grtyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8grtyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C8grtyq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tX5C8grtyq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tX5C8grtyq .container {
    padding: 0;
  }
}
.cid-tX5C8grtyq .row {
  margin: 0;
  border-top: 1px solid #005241;
  border-bottom: 1px solid #005241;
}
.cid-tX5C8grtyq .card {
  border-radius: 0;
  padding: 0;
}
.cid-tX5C8grtyq .card:first-child {
  border-right: 1px solid #005241;
}
@media (max-width: 992px) {
  .cid-tX5C8grtyq .card:first-child {
    border-right: none;
    border-bottom: 1px solid #005241;
  }
}
.cid-tX5C8grtyq .card .card-wrapper {
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-tX5C8grtyq .card .card-wrapper {
    padding: 40px 16px;
  }
}
.cid-tX5C8grtyq .card .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tX5C8grtyq .card .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tX5C8grtyq .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tX5C8grtyq .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-tX5OBuIWpT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tX5OBuIWpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5OBuIWpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5OBuIWpT .container {
    padding: 0 20px;
  }
}
.cid-tX5OBuIWpT .row {
  margin: 0;
}
.cid-tX5OBuIWpT .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tX5OBuIWpT .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tX5OBuIWpT .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tX5OBuIWpT .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tX5OBuIWpT .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tX5OBuIWpT .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tX5OBuIWpT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tX5C8hB6e8 {
  display: flex;
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tX5C8hB6e8 {
    align-items: center;
  }
  .cid-tX5C8hB6e8 .row {
    justify-content: center;
  }
}
.cid-tX5C8hB6e8 p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tX5C8hB6e8 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tX5C8hB6e8 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tX5C8hB6e8 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tX5C8hB6e8 .content-wrap {
    width: 100%;
  }
}
.cid-tX5C8hB6e8 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tX5C8hB6e8 .mbr-text,
.cid-tX5C8hB6e8 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tX5C8hB6e8 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tX5C8iIwbF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX5C8iIwbF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8iIwbF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tX5C8iIwbF .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tX5C8iIwbF .container {
    padding: 0 12px;
  }
}
.cid-tX5C8iIwbF .row {
  justify-content: center;
}
.cid-tX5C8iIwbF .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tX5C8iIwbF .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tX5C8iIwbF .panel-group .card {
  border-radius: 50px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  background-color: #ffb639;
  padding: 60px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-tX5C8iIwbF .panel-group .card {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-tX5C8iIwbF .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.cid-tX5C8iIwbF .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tX5C8iIwbF .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tX5C8iIwbF .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tX5C8iIwbF .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-tX5C8iIwbF .panel-group .card .panel-collapse .panel-body {
  padding-top: 24px;
}
@media (max-width: 992px) {
  .cid-tX5C8iIwbF .panel-group .card .panel-collapse .panel-body {
    padding-top: 16px;
  }
}
.cid-tX5C8iIwbF .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tX5C8iIwbF .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-tX5C8iIwbF .panel-title-edit {
  color: #222222;
}
.cid-tX5C8iIwbF .panel-text {
  color: #222222;
}
.cid-tX5C8jMDit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tX5C8jMDit .google-map {
  height: 30rem;
  position: relative;
}
.cid-tX5C8jMDit .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tX5C8jMDit .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tX5C8jMDit .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tX5C8jMDit .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tX5C8jMDit .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
}
.cid-tX5C8jMDit .mbr-section-subtitle {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tX5C8jMDit .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8jMDit .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C8kMzG2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffb639;
}
.cid-tX5C8kMzG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX5C8kMzG2 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tX5C8kMzG2 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tX5C8kMzG2 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tX5C8kMzG2 a {
  font-weight: 600;
}
.cid-tX5C8kMzG2 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tX5C8kMzG2 .col-lg-3,
  .cid-tX5C8kMzG2 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tX5C8kMzG2 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tX5C8kMzG2 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tX5C8kMzG2 h5 {
  margin: 0;
}
.cid-tX5C8kMzG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX5C8kMzG2 .iconfont-wrapper {
  position: relative;
}
.cid-tX5C8kMzG2 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tX5C8kMzG2 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tX5C8kMzG2 .sociconfont-wrapper {
  display: flex;
}
.cid-tX5C8kMzG2 .card-title,
.cid-tX5C8kMzG2 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tX5C8kMzG2 .card-text {
  color: #000000;
}
.cid-tX5C8kMzG2 .mbr-section-title {
  color: #000000;
}
.cid-tX5C8kMzG2 .main-title,
.cid-tX5C8kMzG2 .iconfont-wrapper {
  text-align: left;
  color: #171410;
}
