.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Alegreya', serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Alegreya', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Alegreya', serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Alegreya', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #f55c10 !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: #5cdb95 !important;
  border-color: #5cdb95 !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: #29b869 !important;
  border-color: #29b869 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f55c10 !important;
  border-color: #f55c10 !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: #a73c07 !important;
  border-color: #a73c07 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a73c07 !important;
  border-color: #a73c07 !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: #000000;
  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: #000000 !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: #5cdb95;
  color: #5cdb95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #29b869 !important;
  background-color: transparent!important;
  border-color: #29b869 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #f55c10;
  color: #f55c10;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a73c07 !important;
  background-color: transparent!important;
  border-color: #a73c07 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f55c10 !important;
  border-color: #f55c10 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #5cdb95 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #f55c10 !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: #26ab62 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #993706 !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: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #f55c10;
}
.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: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fde2d4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: 'Alegreya', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
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: #5cdb95 !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;
}
.cid-tYA5orCZ2f {
  background-color: transparent;
}
.cid-tYA5orCZ2f .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tYA5orCZ2f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tYA5orCZ2f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYA5orCZ2f .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYA5orCZ2f .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tYA5orCZ2f .menu_box .navbar.opened,
  .cid-tYA5orCZ2f .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYA5orCZ2f .navbar-dropdown {
  position: relative !important;
}
.cid-tYA5orCZ2f .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYA5orCZ2f .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYA5orCZ2f .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYA5orCZ2f .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYA5orCZ2f .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYA5orCZ2f .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f5f5f7;
  }
  .cid-tYA5orCZ2f .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYA5orCZ2f .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYA5orCZ2f .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYA5orCZ2f .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYA5orCZ2f .offcanvas-body .mbr-text,
  .cid-tYA5orCZ2f .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tYA5orCZ2f .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tYA5orCZ2f .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYA5orCZ2f .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1f;
  }
  .cid-tYA5orCZ2f .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYA5orCZ2f .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYA5orCZ2f .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYA5orCZ2f .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYA5orCZ2f ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYA5orCZ2f .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYA5orCZ2f .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYA5orCZ2f .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYA5orCZ2f li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tYA5orCZ2f .lg_brand {
    margin: 0 1rem;
  }
  .cid-tYA5orCZ2f .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tYA5orCZ2f .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYA5orCZ2f .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYA5orCZ2f .nav-item {
    margin: 0 !important;
  }
}
.cid-tYA5orCZ2f .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
}
.cid-tYA5orCZ2f .nav-item .nav-link:hover,
.cid-tYA5orCZ2f .nav-item .nav-link:focus {
  background-color: #f5f5f7 !important;
}
.cid-tYA5orCZ2f .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYA5orCZ2f .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tYA5orCZ2f .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYA5orCZ2f .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYA5orCZ2f .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYA5orCZ2f .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYA5orCZ2f .offcanvas_box {
    display: none;
  }
}
.cid-tYA5orCZ2f .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tYA5orCZ2f .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYA5orCZ2f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tYA5orCZ2f .container {
  display: flex;
  margin: auto;
}
.cid-tYA5orCZ2f .iconfont-wrapper {
  color: #1d1d1f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYA5orCZ2f .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYA5orCZ2f .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tYA5orCZ2f .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYA5orCZ2f .navbar-nav {
    margin: 0;
  }
}
.cid-tYA5orCZ2f .dropdown-menu,
.cid-tYA5orCZ2f .navbar.opened {
  background-color: false !important;
}
.cid-tYA5orCZ2f .nav-item:focus,
.cid-tYA5orCZ2f .nav-link:focus {
  outline: none;
}
.cid-tYA5orCZ2f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYA5orCZ2f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYA5orCZ2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYA5orCZ2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYA5orCZ2f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYA5orCZ2f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYA5orCZ2f .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tYA5orCZ2f .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tYA5orCZ2f .navbar.opened {
  transition: all 0.3s;
}
.cid-tYA5orCZ2f .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYA5orCZ2f .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tYA5orCZ2f .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tYA5orCZ2f .navbar.collapsed {
  justify-content: center;
}
.cid-tYA5orCZ2f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYA5orCZ2f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYA5orCZ2f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYA5orCZ2f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYA5orCZ2f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYA5orCZ2f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYA5orCZ2f .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYA5orCZ2f .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYA5orCZ2f .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tYA5orCZ2f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYA5orCZ2f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYA5orCZ2f .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYA5orCZ2f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYA5orCZ2f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tYA5orCZ2f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYA5orCZ2f .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYA5orCZ2f .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYA5orCZ2f .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYA5orCZ2f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tYA5orCZ2f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYA5orCZ2f .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYA5orCZ2f .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYA5orCZ2f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYA5orCZ2f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYA5orCZ2f .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYA5orCZ2f .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tYA5orCZ2f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYA5orCZ2f .dropdown-item.active,
.cid-tYA5orCZ2f .dropdown-item:active {
  background-color: transparent;
}
.cid-tYA5orCZ2f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tYA5orCZ2f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYA5orCZ2f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYA5orCZ2f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYA5orCZ2f ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tYA5orCZ2f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYA5orCZ2f button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #52f4aa;
}
.cid-tYA5orCZ2f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1f;
}
.cid-tYA5orCZ2f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYA5orCZ2f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYA5orCZ2f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYA5orCZ2f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYA5orCZ2f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYA5orCZ2f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYA5orCZ2f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYA5orCZ2f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYA5orCZ2f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYA5orCZ2f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYA5orCZ2f .navbar {
    height: 70px;
  }
  .cid-tYA5orCZ2f .navbar.opened {
    height: auto;
  }
  .cid-tYA5orCZ2f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYA5orCZ2f .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYA5orCZ2f .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tYA5orCZ2f .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYA5orCZ2f .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tYA5orCZ2f .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tYA5orCZ2f .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tYA5orCZ2f .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tYA5orCZ2f .text_widget {
  margin-bottom: 32px;
}
.cid-tYA5orCZ2f .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tYA5orCZ2f .text_widget a:hover,
.cid-tYA5orCZ2f .text_widget a:focus {
  opacity: .8;
}
.cid-tYA5orCZ2f .mbr-section-subtitle {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYA5orCZ2f .navbar-caption {
  color: #1D1D1F;
}
.cid-tYA5orCZ2f .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYA5orCZ2f .mbr-section-subtitle,
.cid-tYA5orCZ2f .text_widget,
.cid-tYA5orCZ2f .mbr-section-btn {
  text-align: center;
}
.cid-tYA5orCZ2f a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYLEXfqCh5 {
  background-image: url("../../../assets/images/retaining-wall-drainage-system-1200x801.jpg");
}
.cid-tYLEXfqCh5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYLEXfqCh5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYLEXfqCh5 .mbr-section-title {
  text-align: left;
}
.cid-tYLEXfqCh5 .mbr-text,
.cid-tYLEXfqCh5 .mbr-section-btn {
  text-align: center;
}
.cid-tYFTMQVpL6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYFTMQVpL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFTMQVpL6 .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-tYFTMQVpL6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tYFTMQVpL6 .container {
    padding: 0 12px;
  }
}
.cid-tYFTMQVpL6 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tYFTMQVpL6 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tYFTMQVpL6 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tYFTMQVpL6 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #19be48;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tYFTMQVpL6 .mbr-section-title {
  color: #222222;
}
.cid-tYFTGmeleT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYFTGmeleT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFTGmeleT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFTGmeleT .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYFTGmeleT .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYFTGmeleT .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFTGmeleT .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYFTGmeleT .mbr-text,
.cid-tYFTGmeleT .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYFTGmeleT .card-title,
.cid-tYFTGmeleT .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYBf3V3UQE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYBf3V3UQE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYBf3V3UQE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYBf3V3UQE .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tYBf3V3UQE .card {
    margin-bottom: 2rem!important;
  }
  .cid-tYBf3V3UQE .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYBf3V3UQE .link-wrap {
    align-items: center;
  }
}
.cid-tYBf3V3UQE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYBf3V3UQE .card-title,
.cid-tYBf3V3UQE .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYA7puV7NZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYA7puV7NZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA7puV7NZ .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-tYA7puV7NZ .container {
    padding: 0 16px;
  }
}
.cid-tYA7puV7NZ .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #19be48;
  margin: 40px 70px 40px 0;
  height: 290px;
}
@media (max-width: 992px) {
  .cid-tYA7puV7NZ .image-wrapper {
    margin: 40px 0 80px 0;
    height: 250px;
  }
}
.cid-tYA7puV7NZ .image-wrapper img {
  position: absolute;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tYA7puV7NZ .image-wrapper img {
    height: 300px;
  }
}
.cid-tYA7puV7NZ .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYA7puV7NZ .text-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYA7puV7NZ .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYA7puV7NZ .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tYA7puV7NZ .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYA7puV7NZ .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tYBksPFiwn {
  padding-top: 20px;
  background-color: #19be48;
}
.cid-tYBksPFiwn .container {
  margin-bottom: 15%;
}
.cid-tYBksPFiwn .content-container .btn-bgr {
  z-index: 0;
}
.cid-tYBksPFiwn .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #19be48;
}
.cid-tYBksPFiwn .icon-block-top span {
  background-color: #188ef4;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-tYBksPFiwn .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-tYBksPFiwn .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-tYBksPFiwn .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-tYBksPFiwn .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-tYBksPFiwn .mbr-text,
.cid-tYBksPFiwn .box-item-text {
  color: #8d97ad;
}
.cid-tYBksPFiwn .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tYBksPFiwn .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tYBksPFiwn .box-list li:last-child {
  border-bottom: none;
}
.cid-tYBksPFiwn .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tYBksPFiwn .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-tYBksPFiwn .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tYBksPFiwn .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tYBksPFiwn .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-tYBksPFiwn .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-tYBksPFiwn .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-tYBksPFiwn .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-tYBksPFiwn .box-item-text,
.cid-tYBksPFiwn .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYBksPFiwn .box-item-title {
  text-align: center;
}
.cid-tYLF8XUtVN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tYLF8XUtVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYLF8XUtVN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYLF8XUtVN .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYLF8XUtVN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYLF8XUtVN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYLF8XUtVN .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYLF8XUtVN .card-title {
  color: #000000;
}
.cid-tYLF8XUtVN .mbr-text,
.cid-tYLF8XUtVN .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYVTEdPvPJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYVTEdPvPJ .mbr-text {
  color: #000000;
}
.cid-tYVTEdPvPJ .mbr-section-subtitle {
  color: #000000;
}
.cid-tYA7sDHQGT {
  background-color: #ffffff;
}
.cid-tYA7sDHQGT .mbr-text {
  text-align: center;
  padding: 0 2rem;
}
.cid-tYA7sDHQGT h4 {
  text-align: center;
}
.cid-tYA7sDHQGT p {
  text-align: center;
  margin: 0;
}
.cid-tYA7sDHQGT .row {
  justify-content: center;
}
.cid-tYA7sDHQGT .mbr-iconfont {
  transition: all 0.3s;
  color: #fff;
  font-size: 2rem;
  margin-left: 1rem;
}
.cid-tYA7sDHQGT .mbr-fonts-style {
  color: #fff;
}
.cid-tYA7sDHQGT .card-inner {
  border-radius: 30px;
}
.cid-tYA7sDHQGT .card-inner1 {
  background: #ffe161;
}
.cid-tYA7sDHQGT .card-inner2 {
  background: #5cdb95;
}
.cid-tYA7sDHQGT .card-inner3 {
  background: #000000;
}
.cid-tYA7sDHQGT img {
  width: auto;
  height: 140px;
  margin-top: 1rem;
}
.cid-tYA7sDHQGT .card {
  border-radius: 30px;
  align-items: center;
  position: relative;
}
.cid-tYA7sDHQGT .container-fluid {
  max-width: 1200px;
}
.cid-tYA7sDHQGT .btn {
  color: #fff;
}
.cid-tYA7sDHQGT .mbr-section-btn {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
}
.cid-tYA7sDHQGT .mbr-section-btn:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (max-width: 767px) {
  .cid-tYA7sDHQGT {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYA7sDHQGT .card {
    margin-bottom: 1rem;
  }
  .cid-tYA7sDHQGT .card-1 {
    margin-right: 0rem;
  }
  .cid-tYA7sDHQGT .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) {
  .cid-tYA7sDHQGT .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tYA7sDHQGT {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYA7sDHQGT .card {
    margin-bottom: 1rem;
  }
  .cid-tYA7sDHQGT .card-1 {
    margin-right: 0rem;
  }
  .cid-tYA7sDHQGT .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tYA7sDHQGT {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.cid-tYA7sDHQGT .icon-btn {
  transition: 0.3s;
  line-height: 0;
}
.cid-tYA7sDHQGT .card-img {
  text-align: center;
  margin-top: 2.5rem;
}
.cid-tYA7sDHQGT .inner-dashed-border {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-tYA7sDHQGT .card:hover .inner-dashed-border {
  animation-play-state: running;
  stroke: #ffffff;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-tYA7sDHQGT svg {
  position: relative;
}
.cid-tYA7sDHQGT rect {
  position: absolute;
}
.cid-tYA7sDHQGT .circle-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.cid-tYA7sDHQGT .svg1 {
  padding: 1.5rem 2.5rem;
  position: absolute;
}
.cid-tYA7sDHQGT .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-tYA7sDHQGT .card-box {
  width: 100%;
}
.cid-tYA7sDHQGT .btn-underline {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
.cid-tYLF3EApqp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #19be48;
}
.cid-tYLF3EApqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYLF3EApqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYLF3EApqp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tYLF3EApqp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tYLF3EApqp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tYLF3EApqp .mbr-text,
.cid-tYLF3EApqp .mbr-section-btn {
  text-align: left;
}
.cid-tYVTL0dCOD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYVTL0dCOD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYVTL0dCOD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYVTL0dCOD .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYVTL0dCOD .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYVTL0dCOD .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYVTL0dCOD .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYVTL0dCOD .mbr-text,
.cid-tYVTL0dCOD .mbr-section-btn {
  color: #000000;
}
.cid-tYVTL0dCOD .card-title,
.cid-tYVTL0dCOD .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYVW1QxQa6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
@media (max-width: 992px) {
  .cid-tYVW1QxQa6 .container {
    padding: 0 25px;
  }
}
.cid-tYVW1QxQa6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYVW1QxQa6 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tYVW1QxQa6 .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tYVW1QxQa6 .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tYVW1QxQa6 .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tYVW1QxQa6 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tYVW1QxQa6 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYVW1QxQa6 .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYVW1QxQa6 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tYVW1QxQa6 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tYVW1QxQa6 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tYVW1QxQa6 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tYVW1QxQa6 .mbr-section-title {
  color: #000000;
}
.cid-tYVW1QxQa6 .panel-title-edit {
  color: #000000;
}
.cid-tYVW1QxQa6 .panel-text {
  color: #000000;
}
.cid-tYLFzIlduJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYLFzIlduJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYLFzIlduJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYLFzIlduJ .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYLFzIlduJ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYLFzIlduJ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYLFzIlduJ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYLFzIlduJ .mbr-text,
.cid-tYLFzIlduJ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYLFzIlduJ .card-title,
.cid-tYLFzIlduJ .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYBdCANHUw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tYBdCANHUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYBdCANHUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYBdCANHUw .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYBdCANHUw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYBdCANHUw .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-tYBdCANHUw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYBdCANHUw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYBdCANHUw .mbr-section-title {
  color: #000000;
}
.cid-tYLIrEpUqi {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYLIrEpUqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYLIrEpUqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYLIrEpUqi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYLIrEpUqi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYLIrEpUqi .row {
    text-align: center;
  }
  .cid-tYLIrEpUqi .social-row {
    justify-content: center;
  }
}
.cid-tYLIrEpUqi .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYLIrEpUqi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYLIrEpUqi .list {
    margin-bottom: 0rem;
  }
}
.cid-tYLIrEpUqi .mbr-text {
  color: #bbbbbb;
}
.cid-tYLIrEpUqi .mbr-iconfont {
  color: black;
}
.cid-tYLIrEpUqi .copyright {
  text-align: left;
  color: #000000;
}
.cid-tYLIrEpUqi .mbr-section-subtitle {
  color: #000000;
}
.cid-tYLIrEpUqi H5 {
  color: #fafafa;
}
.cid-tYAl0hBtGd {
  background-color: transparent;
}
.cid-tYAl0hBtGd .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tYAl0hBtGd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tYAl0hBtGd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYAl0hBtGd .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYAl0hBtGd .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tYAl0hBtGd .menu_box .navbar.opened,
  .cid-tYAl0hBtGd .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYAl0hBtGd .navbar-dropdown {
  position: relative !important;
}
.cid-tYAl0hBtGd .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYAl0hBtGd .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYAl0hBtGd .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYAl0hBtGd .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYAl0hBtGd .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYAl0hBtGd .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f5f5f7;
  }
  .cid-tYAl0hBtGd .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYAl0hBtGd .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYAl0hBtGd .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYAl0hBtGd .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYAl0hBtGd .offcanvas-body .mbr-text,
  .cid-tYAl0hBtGd .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tYAl0hBtGd .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tYAl0hBtGd .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYAl0hBtGd .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1f;
  }
  .cid-tYAl0hBtGd .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYAl0hBtGd .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYAl0hBtGd .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYAl0hBtGd .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYAl0hBtGd ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYAl0hBtGd .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYAl0hBtGd .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYAl0hBtGd .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYAl0hBtGd li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tYAl0hBtGd .lg_brand {
    margin: 0 1rem;
  }
  .cid-tYAl0hBtGd .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tYAl0hBtGd .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYAl0hBtGd .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYAl0hBtGd .nav-item {
    margin: 0 !important;
  }
}
.cid-tYAl0hBtGd .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
}
.cid-tYAl0hBtGd .nav-item .nav-link:hover,
.cid-tYAl0hBtGd .nav-item .nav-link:focus {
  background-color: #f5f5f7 !important;
}
.cid-tYAl0hBtGd .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYAl0hBtGd .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tYAl0hBtGd .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYAl0hBtGd .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYAl0hBtGd .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYAl0hBtGd .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYAl0hBtGd .offcanvas_box {
    display: none;
  }
}
.cid-tYAl0hBtGd .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tYAl0hBtGd .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYAl0hBtGd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tYAl0hBtGd .container {
  display: flex;
  margin: auto;
}
.cid-tYAl0hBtGd .iconfont-wrapper {
  color: #1d1d1f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYAl0hBtGd .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYAl0hBtGd .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tYAl0hBtGd .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYAl0hBtGd .navbar-nav {
    margin: 0;
  }
}
.cid-tYAl0hBtGd .dropdown-menu,
.cid-tYAl0hBtGd .navbar.opened {
  background-color: false !important;
}
.cid-tYAl0hBtGd .nav-item:focus,
.cid-tYAl0hBtGd .nav-link:focus {
  outline: none;
}
.cid-tYAl0hBtGd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYAl0hBtGd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYAl0hBtGd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYAl0hBtGd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYAl0hBtGd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYAl0hBtGd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYAl0hBtGd .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tYAl0hBtGd .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tYAl0hBtGd .navbar.opened {
  transition: all 0.3s;
}
.cid-tYAl0hBtGd .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYAl0hBtGd .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tYAl0hBtGd .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tYAl0hBtGd .navbar.collapsed {
  justify-content: center;
}
.cid-tYAl0hBtGd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYAl0hBtGd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYAl0hBtGd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYAl0hBtGd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYAl0hBtGd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYAl0hBtGd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYAl0hBtGd .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYAl0hBtGd .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYAl0hBtGd .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tYAl0hBtGd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYAl0hBtGd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYAl0hBtGd .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYAl0hBtGd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYAl0hBtGd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tYAl0hBtGd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYAl0hBtGd .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYAl0hBtGd .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYAl0hBtGd .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYAl0hBtGd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tYAl0hBtGd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYAl0hBtGd .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYAl0hBtGd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYAl0hBtGd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYAl0hBtGd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYAl0hBtGd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYAl0hBtGd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tYAl0hBtGd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYAl0hBtGd .dropdown-item.active,
.cid-tYAl0hBtGd .dropdown-item:active {
  background-color: transparent;
}
.cid-tYAl0hBtGd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tYAl0hBtGd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYAl0hBtGd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYAl0hBtGd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYAl0hBtGd ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tYAl0hBtGd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYAl0hBtGd button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #52f4aa;
}
.cid-tYAl0hBtGd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1f;
}
.cid-tYAl0hBtGd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYAl0hBtGd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYAl0hBtGd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYAl0hBtGd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYAl0hBtGd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYAl0hBtGd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYAl0hBtGd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYAl0hBtGd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYAl0hBtGd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYAl0hBtGd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYAl0hBtGd .navbar {
    height: 70px;
  }
  .cid-tYAl0hBtGd .navbar.opened {
    height: auto;
  }
  .cid-tYAl0hBtGd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYAl0hBtGd .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYAl0hBtGd .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tYAl0hBtGd .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYAl0hBtGd .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tYAl0hBtGd .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tYAl0hBtGd .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tYAl0hBtGd .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tYAl0hBtGd .text_widget {
  margin-bottom: 32px;
}
.cid-tYAl0hBtGd .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tYAl0hBtGd .text_widget a:hover,
.cid-tYAl0hBtGd .text_widget a:focus {
  opacity: .8;
}
.cid-tYAl0hBtGd .mbr-section-subtitle {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYAl0hBtGd .navbar-caption {
  color: #1D1D1F;
}
.cid-tYAl0hBtGd .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYAl0hBtGd .mbr-section-subtitle,
.cid-tYAl0hBtGd .text_widget,
.cid-tYAl0hBtGd .mbr-section-btn {
  text-align: center;
}
.cid-tYAl0hBtGd a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYAl0jmY6z {
  background-image: url("../../../assets/images/asaa-2000x1333.jpg");
}
.cid-tYAl0jmY6z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAl0jmY6z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAl0jmY6z .mbr-section-title {
  text-align: left;
}
.cid-tYAl0jmY6z .mbr-text,
.cid-tYAl0jmY6z .mbr-section-btn {
  text-align: center;
}
.cid-tYAl0lhY8s {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYAl0lhY8s blockquote {
  border-color: #f6f6f6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tYAl0lhY8s .mbr-text {
  color: #000000;
}
.cid-tYAl0uKzCB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tYAl0uKzCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAl0uKzCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAl0uKzCB .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYAl0uKzCB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYAl0uKzCB .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-tYAl0uKzCB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYAl0uKzCB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYAl0uKzCB .mbr-section-title {
  color: #000000;
}
.cid-tYAl0vBJS5 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYAl0vBJS5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAl0vBJS5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAl0vBJS5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYAl0vBJS5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYAl0vBJS5 .row {
    text-align: center;
  }
  .cid-tYAl0vBJS5 .social-row {
    justify-content: center;
  }
}
.cid-tYAl0vBJS5 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYAl0vBJS5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYAl0vBJS5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tYAl0vBJS5 .mbr-text {
  color: #bbbbbb;
}
.cid-tYAl0vBJS5 .mbr-iconfont {
  color: black;
}
.cid-tYAl0vBJS5 .copyright {
  text-align: left;
  color: #000000;
}
.cid-tYAl0vBJS5 .mbr-section-subtitle {
  color: #000000;
}
.cid-tYAl0vBJS5 H5 {
  color: #fafafa;
}
.cid-tYAlBONRR2 {
  background-color: transparent;
}
.cid-tYAlBONRR2 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tYAlBONRR2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tYAlBONRR2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYAlBONRR2 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYAlBONRR2 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tYAlBONRR2 .menu_box .navbar.opened,
  .cid-tYAlBONRR2 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYAlBONRR2 .navbar-dropdown {
  position: relative !important;
}
.cid-tYAlBONRR2 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYAlBONRR2 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYAlBONRR2 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYAlBONRR2 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYAlBONRR2 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYAlBONRR2 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f5f5f7;
  }
  .cid-tYAlBONRR2 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYAlBONRR2 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYAlBONRR2 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYAlBONRR2 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYAlBONRR2 .offcanvas-body .mbr-text,
  .cid-tYAlBONRR2 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tYAlBONRR2 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tYAlBONRR2 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYAlBONRR2 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1f;
  }
  .cid-tYAlBONRR2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYAlBONRR2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYAlBONRR2 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYAlBONRR2 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYAlBONRR2 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYAlBONRR2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYAlBONRR2 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYAlBONRR2 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYAlBONRR2 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tYAlBONRR2 .lg_brand {
    margin: 0 1rem;
  }
  .cid-tYAlBONRR2 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tYAlBONRR2 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYAlBONRR2 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYAlBONRR2 .nav-item {
    margin: 0 !important;
  }
}
.cid-tYAlBONRR2 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
}
.cid-tYAlBONRR2 .nav-item .nav-link:hover,
.cid-tYAlBONRR2 .nav-item .nav-link:focus {
  background-color: #f5f5f7 !important;
}
.cid-tYAlBONRR2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYAlBONRR2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tYAlBONRR2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYAlBONRR2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYAlBONRR2 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYAlBONRR2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYAlBONRR2 .offcanvas_box {
    display: none;
  }
}
.cid-tYAlBONRR2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tYAlBONRR2 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYAlBONRR2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tYAlBONRR2 .container {
  display: flex;
  margin: auto;
}
.cid-tYAlBONRR2 .iconfont-wrapper {
  color: #1d1d1f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYAlBONRR2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYAlBONRR2 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tYAlBONRR2 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYAlBONRR2 .navbar-nav {
    margin: 0;
  }
}
.cid-tYAlBONRR2 .dropdown-menu,
.cid-tYAlBONRR2 .navbar.opened {
  background-color: false !important;
}
.cid-tYAlBONRR2 .nav-item:focus,
.cid-tYAlBONRR2 .nav-link:focus {
  outline: none;
}
.cid-tYAlBONRR2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYAlBONRR2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYAlBONRR2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYAlBONRR2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYAlBONRR2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYAlBONRR2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYAlBONRR2 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tYAlBONRR2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tYAlBONRR2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tYAlBONRR2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYAlBONRR2 .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tYAlBONRR2 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tYAlBONRR2 .navbar.collapsed {
  justify-content: center;
}
.cid-tYAlBONRR2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYAlBONRR2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYAlBONRR2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYAlBONRR2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYAlBONRR2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYAlBONRR2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYAlBONRR2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYAlBONRR2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYAlBONRR2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tYAlBONRR2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYAlBONRR2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYAlBONRR2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYAlBONRR2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYAlBONRR2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tYAlBONRR2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYAlBONRR2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYAlBONRR2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYAlBONRR2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYAlBONRR2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tYAlBONRR2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYAlBONRR2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYAlBONRR2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYAlBONRR2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYAlBONRR2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYAlBONRR2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYAlBONRR2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tYAlBONRR2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYAlBONRR2 .dropdown-item.active,
.cid-tYAlBONRR2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tYAlBONRR2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tYAlBONRR2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYAlBONRR2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYAlBONRR2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYAlBONRR2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tYAlBONRR2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYAlBONRR2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #52f4aa;
}
.cid-tYAlBONRR2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1f;
}
.cid-tYAlBONRR2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYAlBONRR2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYAlBONRR2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYAlBONRR2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYAlBONRR2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYAlBONRR2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYAlBONRR2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYAlBONRR2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYAlBONRR2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYAlBONRR2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYAlBONRR2 .navbar {
    height: 70px;
  }
  .cid-tYAlBONRR2 .navbar.opened {
    height: auto;
  }
  .cid-tYAlBONRR2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYAlBONRR2 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYAlBONRR2 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tYAlBONRR2 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYAlBONRR2 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tYAlBONRR2 .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tYAlBONRR2 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tYAlBONRR2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tYAlBONRR2 .text_widget {
  margin-bottom: 32px;
}
.cid-tYAlBONRR2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tYAlBONRR2 .text_widget a:hover,
.cid-tYAlBONRR2 .text_widget a:focus {
  opacity: .8;
}
.cid-tYAlBONRR2 .mbr-section-subtitle {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYAlBONRR2 .navbar-caption {
  color: #1D1D1F;
}
.cid-tYAlBONRR2 .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYAlBONRR2 .mbr-section-subtitle,
.cid-tYAlBONRR2 .text_widget,
.cid-tYAlBONRR2 .mbr-section-btn {
  text-align: center;
}
.cid-tYAlBONRR2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYAlBPwJc0 {
  background-image: url("../../../assets/images/bluestone-retaining-wall-front-wall-maureen-gilmer-5067-900x675.jpg");
}
.cid-tYAlBPwJc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAlBPwJc0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAlBPwJc0 .mbr-section-title {
  text-align: left;
}
.cid-tYAlBPwJc0 .mbr-text,
.cid-tYAlBPwJc0 .mbr-section-btn {
  text-align: center;
}
.cid-tYAlBQ6Bde {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYAlBQ6Bde blockquote {
  border-color: #f6f6f6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tYAlBQ6Bde .mbr-text {
  color: #000000;
}
.cid-tYAlBQGfSZ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tYAlBQGfSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAlBQGfSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAlBQGfSZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYAlBQGfSZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYAlBQGfSZ .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-tYAlBQGfSZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYAlBQGfSZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYAlBQGfSZ .mbr-section-title {
  color: #000000;
}
.cid-tYAlBRpiPv {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYAlBRpiPv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAlBRpiPv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAlBRpiPv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYAlBRpiPv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYAlBRpiPv .row {
    text-align: center;
  }
  .cid-tYAlBRpiPv .social-row {
    justify-content: center;
  }
}
.cid-tYAlBRpiPv .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYAlBRpiPv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYAlBRpiPv .list {
    margin-bottom: 0rem;
  }
}
.cid-tYAlBRpiPv .mbr-text {
  color: #bbbbbb;
}
.cid-tYAlBRpiPv .mbr-iconfont {
  color: black;
}
.cid-tYAlBRpiPv .copyright {
  text-align: left;
  color: #000000;
}
.cid-tYAlBRpiPv .mbr-section-subtitle {
  color: #000000;
}
.cid-tYAlBRpiPv H5 {
  color: #fafafa;
}
.cid-tYFXSw6HsN {
  background-color: transparent;
}
.cid-tYFXSw6HsN .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tYFXSw6HsN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tYFXSw6HsN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYFXSw6HsN .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYFXSw6HsN .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tYFXSw6HsN .menu_box .navbar.opened,
  .cid-tYFXSw6HsN .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYFXSw6HsN .navbar-dropdown {
  position: relative !important;
}
.cid-tYFXSw6HsN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYFXSw6HsN .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYFXSw6HsN .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYFXSw6HsN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYFXSw6HsN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYFXSw6HsN .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f5f5f7;
  }
  .cid-tYFXSw6HsN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYFXSw6HsN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYFXSw6HsN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYFXSw6HsN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYFXSw6HsN .offcanvas-body .mbr-text,
  .cid-tYFXSw6HsN .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tYFXSw6HsN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tYFXSw6HsN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYFXSw6HsN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1f;
  }
  .cid-tYFXSw6HsN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYFXSw6HsN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYFXSw6HsN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYFXSw6HsN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYFXSw6HsN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYFXSw6HsN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYFXSw6HsN .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYFXSw6HsN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYFXSw6HsN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tYFXSw6HsN .lg_brand {
    margin: 0 1rem;
  }
  .cid-tYFXSw6HsN .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tYFXSw6HsN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYFXSw6HsN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYFXSw6HsN .nav-item {
    margin: 0 !important;
  }
}
.cid-tYFXSw6HsN .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
}
.cid-tYFXSw6HsN .nav-item .nav-link:hover,
.cid-tYFXSw6HsN .nav-item .nav-link:focus {
  background-color: #f5f5f7 !important;
}
.cid-tYFXSw6HsN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYFXSw6HsN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tYFXSw6HsN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYFXSw6HsN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYFXSw6HsN .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYFXSw6HsN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYFXSw6HsN .offcanvas_box {
    display: none;
  }
}
.cid-tYFXSw6HsN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tYFXSw6HsN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYFXSw6HsN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tYFXSw6HsN .container {
  display: flex;
  margin: auto;
}
.cid-tYFXSw6HsN .iconfont-wrapper {
  color: #1d1d1f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYFXSw6HsN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYFXSw6HsN .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tYFXSw6HsN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYFXSw6HsN .navbar-nav {
    margin: 0;
  }
}
.cid-tYFXSw6HsN .dropdown-menu,
.cid-tYFXSw6HsN .navbar.opened {
  background-color: false !important;
}
.cid-tYFXSw6HsN .nav-item:focus,
.cid-tYFXSw6HsN .nav-link:focus {
  outline: none;
}
.cid-tYFXSw6HsN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYFXSw6HsN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYFXSw6HsN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYFXSw6HsN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYFXSw6HsN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYFXSw6HsN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYFXSw6HsN .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tYFXSw6HsN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tYFXSw6HsN .navbar.opened {
  transition: all 0.3s;
}
.cid-tYFXSw6HsN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYFXSw6HsN .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tYFXSw6HsN .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tYFXSw6HsN .navbar.collapsed {
  justify-content: center;
}
.cid-tYFXSw6HsN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYFXSw6HsN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYFXSw6HsN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYFXSw6HsN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYFXSw6HsN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYFXSw6HsN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYFXSw6HsN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYFXSw6HsN .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYFXSw6HsN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tYFXSw6HsN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYFXSw6HsN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYFXSw6HsN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYFXSw6HsN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYFXSw6HsN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tYFXSw6HsN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYFXSw6HsN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYFXSw6HsN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYFXSw6HsN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYFXSw6HsN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tYFXSw6HsN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYFXSw6HsN .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYFXSw6HsN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYFXSw6HsN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYFXSw6HsN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYFXSw6HsN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYFXSw6HsN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tYFXSw6HsN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYFXSw6HsN .dropdown-item.active,
.cid-tYFXSw6HsN .dropdown-item:active {
  background-color: transparent;
}
.cid-tYFXSw6HsN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tYFXSw6HsN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYFXSw6HsN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYFXSw6HsN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYFXSw6HsN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tYFXSw6HsN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYFXSw6HsN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #52f4aa;
}
.cid-tYFXSw6HsN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1f;
}
.cid-tYFXSw6HsN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYFXSw6HsN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYFXSw6HsN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYFXSw6HsN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYFXSw6HsN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYFXSw6HsN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYFXSw6HsN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYFXSw6HsN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYFXSw6HsN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYFXSw6HsN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYFXSw6HsN .navbar {
    height: 70px;
  }
  .cid-tYFXSw6HsN .navbar.opened {
    height: auto;
  }
  .cid-tYFXSw6HsN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYFXSw6HsN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYFXSw6HsN .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tYFXSw6HsN .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYFXSw6HsN .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tYFXSw6HsN .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tYFXSw6HsN .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tYFXSw6HsN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tYFXSw6HsN .text_widget {
  margin-bottom: 32px;
}
.cid-tYFXSw6HsN .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tYFXSw6HsN .text_widget a:hover,
.cid-tYFXSw6HsN .text_widget a:focus {
  opacity: .8;
}
.cid-tYFXSw6HsN .mbr-section-subtitle {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYFXSw6HsN .navbar-caption {
  color: #1D1D1F;
}
.cid-tYFXSw6HsN .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYFXSw6HsN .mbr-section-subtitle,
.cid-tYFXSw6HsN .text_widget,
.cid-tYFXSw6HsN .mbr-section-btn {
  text-align: center;
}
.cid-tYFXSw6HsN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYFXSxgZmw {
  background-image: url("../../../assets/images/ww-edited-limestone-version-1920x1280.jpg");
}
.cid-tYFXSxgZmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSxgZmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSxgZmw .mbr-section-title {
  text-align: left;
}
.cid-tYFXSxgZmw .mbr-text,
.cid-tYFXSxgZmw .mbr-section-btn {
  text-align: center;
}
.cid-tYFXSy0uRX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYFXSy0uRX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSy0uRX .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-tYFXSy0uRX .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tYFXSy0uRX .container {
    padding: 0 12px;
  }
}
.cid-tYFXSy0uRX .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tYFXSy0uRX .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tYFXSy0uRX .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tYFXSy0uRX .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #19be48;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tYFXSy0uRX .mbr-section-title {
  color: #222222;
}
.cid-tYFXSyGYST {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYFXSyGYST .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSyGYST .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSyGYST .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYFXSyGYST .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYFXSyGYST .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFXSyGYST .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYFXSyGYST .mbr-text,
.cid-tYFXSyGYST .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYFXSyGYST .card-title,
.cid-tYFXSyGYST .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYFXSzmt5k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYFXSzmt5k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSzmt5k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSzmt5k .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tYFXSzmt5k .card {
    margin-bottom: 2rem!important;
  }
  .cid-tYFXSzmt5k .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYFXSzmt5k .link-wrap {
    align-items: center;
  }
}
.cid-tYFXSzmt5k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYFXSzmt5k .card-title,
.cid-tYFXSzmt5k .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYFXSAcyAA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYFXSAcyAA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSAcyAA .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-tYFXSAcyAA .container {
    padding: 0 16px;
  }
}
.cid-tYFXSAcyAA .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #19be48;
  margin: 40px 70px 40px 0;
  height: 290px;
}
@media (max-width: 992px) {
  .cid-tYFXSAcyAA .image-wrapper {
    margin: 40px 0 80px 0;
    height: 250px;
  }
}
.cid-tYFXSAcyAA .image-wrapper img {
  position: absolute;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tYFXSAcyAA .image-wrapper img {
    height: 300px;
  }
}
.cid-tYFXSAcyAA .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYFXSAcyAA .text-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYFXSAcyAA .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYFXSAcyAA .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tYFXSAcyAA .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYFXSAcyAA .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tYFXSAMDCV {
  padding-top: 20px;
  background-color: #19be48;
}
.cid-tYFXSAMDCV .container {
  margin-bottom: 15%;
}
.cid-tYFXSAMDCV .content-container .btn-bgr {
  z-index: 0;
}
.cid-tYFXSAMDCV .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #19be48;
}
.cid-tYFXSAMDCV .icon-block-top span {
  background-color: #188ef4;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-tYFXSAMDCV .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-tYFXSAMDCV .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-tYFXSAMDCV .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-tYFXSAMDCV .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-tYFXSAMDCV .mbr-text,
.cid-tYFXSAMDCV .box-item-text {
  color: #8d97ad;
}
.cid-tYFXSAMDCV .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tYFXSAMDCV .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tYFXSAMDCV .box-list li:last-child {
  border-bottom: none;
}
.cid-tYFXSAMDCV .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tYFXSAMDCV .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-tYFXSAMDCV .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tYFXSAMDCV .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tYFXSAMDCV .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-tYFXSAMDCV .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-tYFXSAMDCV .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-tYFXSAMDCV .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-tYFXSAMDCV .box-item-text,
.cid-tYFXSAMDCV .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYFXSAMDCV .box-item-title {
  text-align: center;
}
.cid-tYFXSBBqLv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tYFXSBBqLv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSBBqLv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSBBqLv .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYFXSBBqLv .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYFXSBBqLv .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFXSBBqLv .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYFXSBBqLv .card-title {
  color: #000000;
}
.cid-tYFXSBBqLv .mbr-text,
.cid-tYFXSBBqLv .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYFXSCb706 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYFXSCb706 .mbr-text {
  color: #000000;
}
.cid-tYFXSCb706 .mbr-section-subtitle {
  color: #000000;
}
.cid-tYFXSCPjZ2 {
  background-color: #ffffff;
}
.cid-tYFXSCPjZ2 .mbr-text {
  text-align: center;
  padding: 0 2rem;
}
.cid-tYFXSCPjZ2 h4 {
  text-align: center;
}
.cid-tYFXSCPjZ2 p {
  text-align: center;
  margin: 0;
}
.cid-tYFXSCPjZ2 .row {
  justify-content: center;
}
.cid-tYFXSCPjZ2 .mbr-iconfont {
  transition: all 0.3s;
  color: #fff;
  font-size: 2rem;
  margin-left: 1rem;
}
.cid-tYFXSCPjZ2 .mbr-fonts-style {
  color: #fff;
}
.cid-tYFXSCPjZ2 .card-inner {
  border-radius: 30px;
}
.cid-tYFXSCPjZ2 .card-inner1 {
  background: #ffe161;
}
.cid-tYFXSCPjZ2 .card-inner2 {
  background: #5cdb95;
}
.cid-tYFXSCPjZ2 .card-inner3 {
  background: #000000;
}
.cid-tYFXSCPjZ2 img {
  width: auto;
  height: 140px;
  margin-top: 1rem;
}
.cid-tYFXSCPjZ2 .card {
  border-radius: 30px;
  align-items: center;
  position: relative;
}
.cid-tYFXSCPjZ2 .container-fluid {
  max-width: 1200px;
}
.cid-tYFXSCPjZ2 .btn {
  color: #fff;
}
.cid-tYFXSCPjZ2 .mbr-section-btn {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
}
.cid-tYFXSCPjZ2 .mbr-section-btn:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (max-width: 767px) {
  .cid-tYFXSCPjZ2 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYFXSCPjZ2 .card {
    margin-bottom: 1rem;
  }
  .cid-tYFXSCPjZ2 .card-1 {
    margin-right: 0rem;
  }
  .cid-tYFXSCPjZ2 .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) {
  .cid-tYFXSCPjZ2 .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tYFXSCPjZ2 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYFXSCPjZ2 .card {
    margin-bottom: 1rem;
  }
  .cid-tYFXSCPjZ2 .card-1 {
    margin-right: 0rem;
  }
  .cid-tYFXSCPjZ2 .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFXSCPjZ2 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.cid-tYFXSCPjZ2 .icon-btn {
  transition: 0.3s;
  line-height: 0;
}
.cid-tYFXSCPjZ2 .card-img {
  text-align: center;
  margin-top: 2.5rem;
}
.cid-tYFXSCPjZ2 .inner-dashed-border {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-tYFXSCPjZ2 .card:hover .inner-dashed-border {
  animation-play-state: running;
  stroke: #ffffff;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-tYFXSCPjZ2 svg {
  position: relative;
}
.cid-tYFXSCPjZ2 rect {
  position: absolute;
}
.cid-tYFXSCPjZ2 .circle-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.cid-tYFXSCPjZ2 .svg1 {
  padding: 1.5rem 2.5rem;
  position: absolute;
}
.cid-tYFXSCPjZ2 .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-tYFXSCPjZ2 .card-box {
  width: 100%;
}
.cid-tYFXSCPjZ2 .btn-underline {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
.cid-tYFXSEgVkN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYFXSEgVkN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSEgVkN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSEgVkN .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYFXSEgVkN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYFXSEgVkN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFXSEgVkN .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYFXSEgVkN .mbr-text,
.cid-tYFXSEgVkN .mbr-section-btn {
  color: #000000;
}
.cid-tYFXSEgVkN .card-title,
.cid-tYFXSEgVkN .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYFZOEpwF7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tYFZOEpwF7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYFZOEpwF7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tYFZOEpwF7 .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tYFZOEpwF7 .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #b8d94f;
}
.cid-tYFZOEpwF7 .name {
  margin-top: 0.70rem;
  color: #000000;
  text-align: left;
}
.cid-tYFZOEpwF7 .name b,
.cid-tYFZOEpwF7 .name strong {
  font-weight: 500;
}
.cid-tYFZOEpwF7 .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-tYFZOEpwF7 .mbr-text,
.cid-tYFZOEpwF7 .mbr-section-data {
  text-align: left;
}
.cid-tYFZOEpwF7 .mbr-text,
.cid-tYFZOEpwF7 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tYFZOEpwF7 .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-tYFXSEVFoh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
@media (max-width: 992px) {
  .cid-tYFXSEVFoh .container {
    padding: 0 25px;
  }
}
.cid-tYFXSEVFoh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYFXSEVFoh .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tYFXSEVFoh .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tYFXSEVFoh .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tYFXSEVFoh .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tYFXSEVFoh .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tYFXSEVFoh .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYFXSEVFoh .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYFXSEVFoh .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tYFXSEVFoh .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tYFXSEVFoh .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tYFXSEVFoh .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tYFXSEVFoh .mbr-section-title {
  color: #000000;
}
.cid-tYFXSEVFoh .panel-title-edit {
  color: #000000;
}
.cid-tYFXSEVFoh .panel-text {
  color: #000000;
}
.cid-tYFXSFLNzZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYFXSFLNzZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSFLNzZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSFLNzZ .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYFXSFLNzZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYFXSFLNzZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFXSFLNzZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYFXSFLNzZ .mbr-text,
.cid-tYFXSFLNzZ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYFXSFLNzZ .card-title,
.cid-tYFXSFLNzZ .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYG1Jt4WMe {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tYG1Jt4WMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG1Jt4WMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG1Jt4WMe .accordion .mbr-iconfont {
  font-size: 1rem !important;
  font-family: 'Moririse2' !important;
  color: #00004c;
  transform: rotate(0deg) !important;
  margin-left: 1rem;
  padding: 8px;
  border-radius: 50%;
}
.cid-tYG1Jt4WMe .accordion .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg) !important;
}
.cid-tYG1Jt4WMe .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cid-tYG1Jt4WMe .col-title {
    margin-bottom: 40px;
  }
}
.cid-tYG1Jt4WMe .mbr-section-title {
  color: #00004c;
}
@media (max-width: 991px) {
  .cid-tYG1Jt4WMe .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYG1Jt4WMe .mbr-section-subtitle {
  color: #00004c;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .cid-tYG1Jt4WMe .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG1Jt4WMe .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-tYG1Jt4WMe .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tYG1Jt4WMe .accordion-title-container {
    display: none;
  }
}
.cid-tYG1Jt4WMe .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #00004c;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG1Jt4WMe .accordion-title {
    padding: 0 10px;
  }
}
.cid-tYG1Jt4WMe .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-tYG1Jt4WMe .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG1Jt4WMe .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-tYG1Jt4WMe .card {
    width: 100%;
  }
}
.cid-tYG1Jt4WMe .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tYG1Jt4WMe .card-border-top2 {
    display: none;
  }
}
.cid-tYG1Jt4WMe .card-header {
  border-bottom: none !important;
  padding: 10px 0 !important;
}
.cid-tYG1Jt4WMe .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tYG1Jt4WMe .panel-body {
  padding-bottom: 20px;
}
.cid-tYG1Jt4WMe .panel-text {
  margin-bottom: 20px !important;
  color: #00004c;
}
.cid-tYG1Jt4WMe .panel-title {
  display: flex;
  align-items: center;
}
.cid-tYG1Jt4WMe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tYG1Jt4WMe .panel-title-edit {
  color: #00004c;
  text-align: center;
}
.cid-tYFXSGxgFY {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tYFXSGxgFY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSGxgFY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSGxgFY .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYFXSGxgFY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYFXSGxgFY .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-tYFXSGxgFY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYFXSGxgFY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYFXSGxgFY .mbr-section-title {
  color: #000000;
}
.cid-tYFXSHfJS6 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYFXSHfJS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYFXSHfJS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYFXSHfJS6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYFXSHfJS6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYFXSHfJS6 .row {
    text-align: center;
  }
  .cid-tYFXSHfJS6 .social-row {
    justify-content: center;
  }
}
.cid-tYFXSHfJS6 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYFXSHfJS6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYFXSHfJS6 .list {
    margin-bottom: 0rem;
  }
}
.cid-tYFXSHfJS6 .mbr-text {
  color: #bbbbbb;
}
.cid-tYFXSHfJS6 .mbr-iconfont {
  color: black;
}
.cid-tYFXSHfJS6 .copyright {
  text-align: left;
  color: #000000;
}
.cid-tYFXSHfJS6 .mbr-section-subtitle {
  color: #000000;
}
.cid-tYFXSHfJS6 H5 {
  color: #fafafa;
}
.cid-tYG6ijNnXd {
  background-color: transparent;
}
.cid-tYG6ijNnXd .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tYG6ijNnXd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tYG6ijNnXd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYG6ijNnXd .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYG6ijNnXd .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tYG6ijNnXd .menu_box .navbar.opened,
  .cid-tYG6ijNnXd .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYG6ijNnXd .navbar-dropdown {
  position: relative !important;
}
.cid-tYG6ijNnXd .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYG6ijNnXd .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYG6ijNnXd .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYG6ijNnXd .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYG6ijNnXd .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYG6ijNnXd .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f5f5f7;
  }
  .cid-tYG6ijNnXd .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYG6ijNnXd .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYG6ijNnXd .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYG6ijNnXd .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYG6ijNnXd .offcanvas-body .mbr-text,
  .cid-tYG6ijNnXd .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tYG6ijNnXd .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tYG6ijNnXd .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYG6ijNnXd .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1f;
  }
  .cid-tYG6ijNnXd .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYG6ijNnXd .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYG6ijNnXd .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYG6ijNnXd .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYG6ijNnXd ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYG6ijNnXd .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYG6ijNnXd .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYG6ijNnXd .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYG6ijNnXd li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tYG6ijNnXd .lg_brand {
    margin: 0 1rem;
  }
  .cid-tYG6ijNnXd .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tYG6ijNnXd .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYG6ijNnXd .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYG6ijNnXd .nav-item {
    margin: 0 !important;
  }
}
.cid-tYG6ijNnXd .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
}
.cid-tYG6ijNnXd .nav-item .nav-link:hover,
.cid-tYG6ijNnXd .nav-item .nav-link:focus {
  background-color: #f5f5f7 !important;
}
.cid-tYG6ijNnXd .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYG6ijNnXd .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tYG6ijNnXd .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYG6ijNnXd .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYG6ijNnXd .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYG6ijNnXd .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYG6ijNnXd .offcanvas_box {
    display: none;
  }
}
.cid-tYG6ijNnXd .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tYG6ijNnXd .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYG6ijNnXd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tYG6ijNnXd .container {
  display: flex;
  margin: auto;
}
.cid-tYG6ijNnXd .iconfont-wrapper {
  color: #1d1d1f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYG6ijNnXd .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYG6ijNnXd .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tYG6ijNnXd .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYG6ijNnXd .navbar-nav {
    margin: 0;
  }
}
.cid-tYG6ijNnXd .dropdown-menu,
.cid-tYG6ijNnXd .navbar.opened {
  background-color: false !important;
}
.cid-tYG6ijNnXd .nav-item:focus,
.cid-tYG6ijNnXd .nav-link:focus {
  outline: none;
}
.cid-tYG6ijNnXd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYG6ijNnXd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYG6ijNnXd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYG6ijNnXd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYG6ijNnXd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYG6ijNnXd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYG6ijNnXd .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tYG6ijNnXd .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tYG6ijNnXd .navbar.opened {
  transition: all 0.3s;
}
.cid-tYG6ijNnXd .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYG6ijNnXd .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tYG6ijNnXd .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tYG6ijNnXd .navbar.collapsed {
  justify-content: center;
}
.cid-tYG6ijNnXd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYG6ijNnXd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYG6ijNnXd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYG6ijNnXd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYG6ijNnXd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYG6ijNnXd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYG6ijNnXd .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYG6ijNnXd .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYG6ijNnXd .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tYG6ijNnXd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYG6ijNnXd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYG6ijNnXd .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYG6ijNnXd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYG6ijNnXd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tYG6ijNnXd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYG6ijNnXd .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYG6ijNnXd .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYG6ijNnXd .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYG6ijNnXd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tYG6ijNnXd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYG6ijNnXd .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYG6ijNnXd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYG6ijNnXd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYG6ijNnXd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYG6ijNnXd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYG6ijNnXd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tYG6ijNnXd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYG6ijNnXd .dropdown-item.active,
.cid-tYG6ijNnXd .dropdown-item:active {
  background-color: transparent;
}
.cid-tYG6ijNnXd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tYG6ijNnXd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYG6ijNnXd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYG6ijNnXd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYG6ijNnXd ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tYG6ijNnXd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYG6ijNnXd button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #52f4aa;
}
.cid-tYG6ijNnXd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1f;
}
.cid-tYG6ijNnXd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYG6ijNnXd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYG6ijNnXd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYG6ijNnXd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYG6ijNnXd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYG6ijNnXd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYG6ijNnXd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYG6ijNnXd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYG6ijNnXd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYG6ijNnXd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYG6ijNnXd .navbar {
    height: 70px;
  }
  .cid-tYG6ijNnXd .navbar.opened {
    height: auto;
  }
  .cid-tYG6ijNnXd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYG6ijNnXd .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYG6ijNnXd .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tYG6ijNnXd .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYG6ijNnXd .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tYG6ijNnXd .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tYG6ijNnXd .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tYG6ijNnXd .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tYG6ijNnXd .text_widget {
  margin-bottom: 32px;
}
.cid-tYG6ijNnXd .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tYG6ijNnXd .text_widget a:hover,
.cid-tYG6ijNnXd .text_widget a:focus {
  opacity: .8;
}
.cid-tYG6ijNnXd .mbr-section-subtitle {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYG6ijNnXd .navbar-caption {
  color: #1D1D1F;
}
.cid-tYG6ijNnXd .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYG6ijNnXd .mbr-section-subtitle,
.cid-tYG6ijNnXd .text_widget,
.cid-tYG6ijNnXd .mbr-section-btn {
  text-align: center;
}
.cid-tYG6ijNnXd a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYG6ikUnXd {
  background-image: url("../../../assets/images/09-nylandretainingwall-2000x1333.jpg");
}
.cid-tYG6ikUnXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6ikUnXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6ikUnXd .mbr-section-title {
  text-align: left;
}
.cid-tYG6ikUnXd .mbr-text,
.cid-tYG6ikUnXd .mbr-section-btn {
  text-align: center;
}
.cid-tYG6ilzDHt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG6ilzDHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6ilzDHt .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-tYG6ilzDHt .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tYG6ilzDHt .container {
    padding: 0 12px;
  }
}
.cid-tYG6ilzDHt .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tYG6ilzDHt .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tYG6ilzDHt .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tYG6ilzDHt .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #19be48;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tYG6ilzDHt .mbr-section-title {
  color: #222222;
}
.cid-tYG6imb19M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYG6imb19M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6imb19M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6imb19M .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG6imb19M .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG6imb19M .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG6imb19M .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG6imb19M .mbr-text,
.cid-tYG6imb19M .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYG6imb19M .card-title,
.cid-tYG6imb19M .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYG6imQYLD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYG6imQYLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6imQYLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6imQYLD .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tYG6imQYLD .card {
    margin-bottom: 2rem!important;
  }
  .cid-tYG6imQYLD .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYG6imQYLD .link-wrap {
    align-items: center;
  }
}
.cid-tYG6imQYLD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYG6imQYLD .card-title,
.cid-tYG6imQYLD .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYG6inyyKC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG6inyyKC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6inyyKC .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-tYG6inyyKC .container {
    padding: 0 16px;
  }
}
.cid-tYG6inyyKC .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #19be48;
  margin: 40px 70px 40px 0;
  height: 290px;
}
@media (max-width: 992px) {
  .cid-tYG6inyyKC .image-wrapper {
    margin: 40px 0 80px 0;
    height: 250px;
  }
}
.cid-tYG6inyyKC .image-wrapper img {
  position: absolute;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tYG6inyyKC .image-wrapper img {
    height: 300px;
  }
}
.cid-tYG6inyyKC .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYG6inyyKC .text-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYG6inyyKC .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYG6inyyKC .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tYG6inyyKC .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYG6inyyKC .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tYG6io8reh {
  padding-top: 20px;
  background-color: #19be48;
}
.cid-tYG6io8reh .container {
  margin-bottom: 15%;
}
.cid-tYG6io8reh .content-container .btn-bgr {
  z-index: 0;
}
.cid-tYG6io8reh .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #19be48;
}
.cid-tYG6io8reh .icon-block-top span {
  background-color: #188ef4;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-tYG6io8reh .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-tYG6io8reh .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-tYG6io8reh .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-tYG6io8reh .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-tYG6io8reh .mbr-text,
.cid-tYG6io8reh .box-item-text {
  color: #8d97ad;
}
.cid-tYG6io8reh .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tYG6io8reh .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tYG6io8reh .box-list li:last-child {
  border-bottom: none;
}
.cid-tYG6io8reh .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tYG6io8reh .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-tYG6io8reh .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tYG6io8reh .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tYG6io8reh .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-tYG6io8reh .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-tYG6io8reh .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-tYG6io8reh .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-tYG6io8reh .box-item-text,
.cid-tYG6io8reh .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYG6io8reh .box-item-title {
  text-align: center;
}
.cid-tYG6ip45I3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tYG6ip45I3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6ip45I3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6ip45I3 .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG6ip45I3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG6ip45I3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG6ip45I3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG6ip45I3 .card-title {
  color: #000000;
}
.cid-tYG6ip45I3 .mbr-text,
.cid-tYG6ip45I3 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYG6ipPoeF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYG6ipPoeF .mbr-text {
  color: #000000;
}
.cid-tYG6ipPoeF .mbr-section-subtitle {
  color: #000000;
}
.cid-tYG6iqDFkn {
  background-color: #ffffff;
}
.cid-tYG6iqDFkn .mbr-text {
  text-align: center;
  padding: 0 2rem;
}
.cid-tYG6iqDFkn h4 {
  text-align: center;
}
.cid-tYG6iqDFkn p {
  text-align: center;
  margin: 0;
}
.cid-tYG6iqDFkn .row {
  justify-content: center;
}
.cid-tYG6iqDFkn .mbr-iconfont {
  transition: all 0.3s;
  color: #fff;
  font-size: 2rem;
  margin-left: 1rem;
}
.cid-tYG6iqDFkn .mbr-fonts-style {
  color: #fff;
}
.cid-tYG6iqDFkn .card-inner {
  border-radius: 30px;
}
.cid-tYG6iqDFkn .card-inner1 {
  background: #ffe161;
}
.cid-tYG6iqDFkn .card-inner2 {
  background: #5cdb95;
}
.cid-tYG6iqDFkn .card-inner3 {
  background: #000000;
}
.cid-tYG6iqDFkn img {
  width: auto;
  height: 140px;
  margin-top: 1rem;
}
.cid-tYG6iqDFkn .card {
  border-radius: 30px;
  align-items: center;
  position: relative;
}
.cid-tYG6iqDFkn .container-fluid {
  max-width: 1200px;
}
.cid-tYG6iqDFkn .btn {
  color: #fff;
}
.cid-tYG6iqDFkn .mbr-section-btn {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
}
.cid-tYG6iqDFkn .mbr-section-btn:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (max-width: 767px) {
  .cid-tYG6iqDFkn {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYG6iqDFkn .card {
    margin-bottom: 1rem;
  }
  .cid-tYG6iqDFkn .card-1 {
    margin-right: 0rem;
  }
  .cid-tYG6iqDFkn .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) {
  .cid-tYG6iqDFkn .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tYG6iqDFkn {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYG6iqDFkn .card {
    margin-bottom: 1rem;
  }
  .cid-tYG6iqDFkn .card-1 {
    margin-right: 0rem;
  }
  .cid-tYG6iqDFkn .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG6iqDFkn {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.cid-tYG6iqDFkn .icon-btn {
  transition: 0.3s;
  line-height: 0;
}
.cid-tYG6iqDFkn .card-img {
  text-align: center;
  margin-top: 2.5rem;
}
.cid-tYG6iqDFkn .inner-dashed-border {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-tYG6iqDFkn .card:hover .inner-dashed-border {
  animation-play-state: running;
  stroke: #ffffff;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-tYG6iqDFkn svg {
  position: relative;
}
.cid-tYG6iqDFkn rect {
  position: absolute;
}
.cid-tYG6iqDFkn .circle-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.cid-tYG6iqDFkn .svg1 {
  padding: 1.5rem 2.5rem;
  position: absolute;
}
.cid-tYG6iqDFkn .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-tYG6iqDFkn .card-box {
  width: 100%;
}
.cid-tYG6iqDFkn .btn-underline {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
.cid-tYG6isT0QY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG6isT0QY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6isT0QY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6isT0QY .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG6isT0QY .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG6isT0QY .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG6isT0QY .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG6isT0QY .mbr-text,
.cid-tYG6isT0QY .mbr-section-btn {
  color: #000000;
}
.cid-tYG6isT0QY .card-title,
.cid-tYG6isT0QY .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYG6iuAeSu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
@media (max-width: 992px) {
  .cid-tYG6iuAeSu .container {
    padding: 0 25px;
  }
}
.cid-tYG6iuAeSu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYG6iuAeSu .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tYG6iuAeSu .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tYG6iuAeSu .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tYG6iuAeSu .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tYG6iuAeSu .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tYG6iuAeSu .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYG6iuAeSu .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYG6iuAeSu .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tYG6iuAeSu .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tYG6iuAeSu .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tYG6iuAeSu .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tYG6iuAeSu .mbr-section-title {
  color: #000000;
}
.cid-tYG6iuAeSu .panel-title-edit {
  color: #000000;
}
.cid-tYG6iuAeSu .panel-text {
  color: #000000;
}
.cid-tYG6itEpuD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tYG6itEpuD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYG6itEpuD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tYG6itEpuD .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tYG6itEpuD .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #b8d94f;
}
.cid-tYG6itEpuD .name {
  margin-top: 0.70rem;
  color: #000000;
  text-align: left;
}
.cid-tYG6itEpuD .name b,
.cid-tYG6itEpuD .name strong {
  font-weight: 500;
}
.cid-tYG6itEpuD .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-tYG6itEpuD .mbr-text,
.cid-tYG6itEpuD .mbr-section-data {
  text-align: left;
}
.cid-tYG6itEpuD .mbr-text,
.cid-tYG6itEpuD .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tYG6itEpuD .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-tYG6ixlMqL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG6ixlMqL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6ixlMqL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6ixlMqL .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG6ixlMqL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG6ixlMqL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG6ixlMqL .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG6ixlMqL .mbr-text,
.cid-tYG6ixlMqL .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYG6ixlMqL .card-title,
.cid-tYG6ixlMqL .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYG6ivNlJ3 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tYG6ivNlJ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6ivNlJ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6ivNlJ3 .accordion .mbr-iconfont {
  font-size: 1rem !important;
  font-family: 'Moririse2' !important;
  color: #00004c;
  transform: rotate(0deg) !important;
  margin-left: 1rem;
  padding: 8px;
  border-radius: 50%;
}
.cid-tYG6ivNlJ3 .accordion .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg) !important;
}
.cid-tYG6ivNlJ3 .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cid-tYG6ivNlJ3 .col-title {
    margin-bottom: 40px;
  }
}
.cid-tYG6ivNlJ3 .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYG6ivNlJ3 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYG6ivNlJ3 .mbr-section-subtitle {
  color: #00004c;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .cid-tYG6ivNlJ3 .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG6ivNlJ3 .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-tYG6ivNlJ3 .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tYG6ivNlJ3 .accordion-title-container {
    display: none;
  }
}
.cid-tYG6ivNlJ3 .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #00004c;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG6ivNlJ3 .accordion-title {
    padding: 0 10px;
  }
}
.cid-tYG6ivNlJ3 .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-tYG6ivNlJ3 .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG6ivNlJ3 .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-tYG6ivNlJ3 .card {
    width: 100%;
  }
}
.cid-tYG6ivNlJ3 .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tYG6ivNlJ3 .card-border-top2 {
    display: none;
  }
}
.cid-tYG6ivNlJ3 .card-header {
  border-bottom: none !important;
  padding: 10px 0 !important;
}
.cid-tYG6ivNlJ3 .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tYG6ivNlJ3 .panel-body {
  padding-bottom: 20px;
}
.cid-tYG6ivNlJ3 .panel-text {
  margin-bottom: 20px !important;
  color: #00004c;
}
.cid-tYG6ivNlJ3 .panel-title {
  display: flex;
  align-items: center;
}
.cid-tYG6ivNlJ3 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tYG6ivNlJ3 .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-tYG6iybzkG {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tYG6iybzkG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6iybzkG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6iybzkG .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYG6iybzkG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYG6iybzkG .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-tYG6iybzkG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYG6iybzkG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYG6iybzkG .mbr-section-title {
  color: #000000;
}
.cid-tYG6iz029a {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYG6iz029a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG6iz029a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG6iz029a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYG6iz029a .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYG6iz029a .row {
    text-align: center;
  }
  .cid-tYG6iz029a .social-row {
    justify-content: center;
  }
}
.cid-tYG6iz029a .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYG6iz029a .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG6iz029a .list {
    margin-bottom: 0rem;
  }
}
.cid-tYG6iz029a .mbr-text {
  color: #bbbbbb;
}
.cid-tYG6iz029a .mbr-iconfont {
  color: black;
}
.cid-tYG6iz029a .copyright {
  text-align: left;
  color: #000000;
}
.cid-tYG6iz029a .mbr-section-subtitle {
  color: #000000;
}
.cid-tYG6iz029a H5 {
  color: #fafafa;
}
.cid-tYG9cDmuBe {
  background-color: transparent;
}
.cid-tYG9cDmuBe .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tYG9cDmuBe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tYG9cDmuBe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYG9cDmuBe .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYG9cDmuBe .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tYG9cDmuBe .menu_box .navbar.opened,
  .cid-tYG9cDmuBe .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYG9cDmuBe .navbar-dropdown {
  position: relative !important;
}
.cid-tYG9cDmuBe .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYG9cDmuBe .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYG9cDmuBe .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYG9cDmuBe .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYG9cDmuBe .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYG9cDmuBe .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f5f5f7;
  }
  .cid-tYG9cDmuBe .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYG9cDmuBe .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYG9cDmuBe .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYG9cDmuBe .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYG9cDmuBe .offcanvas-body .mbr-text,
  .cid-tYG9cDmuBe .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tYG9cDmuBe .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tYG9cDmuBe .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYG9cDmuBe .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1f;
  }
  .cid-tYG9cDmuBe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYG9cDmuBe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYG9cDmuBe .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYG9cDmuBe .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYG9cDmuBe ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYG9cDmuBe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYG9cDmuBe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYG9cDmuBe .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYG9cDmuBe li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tYG9cDmuBe .lg_brand {
    margin: 0 1rem;
  }
  .cid-tYG9cDmuBe .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tYG9cDmuBe .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYG9cDmuBe .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYG9cDmuBe .nav-item {
    margin: 0 !important;
  }
}
.cid-tYG9cDmuBe .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
}
.cid-tYG9cDmuBe .nav-item .nav-link:hover,
.cid-tYG9cDmuBe .nav-item .nav-link:focus {
  background-color: #f5f5f7 !important;
}
.cid-tYG9cDmuBe .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYG9cDmuBe .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tYG9cDmuBe .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYG9cDmuBe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYG9cDmuBe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYG9cDmuBe .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYG9cDmuBe .offcanvas_box {
    display: none;
  }
}
.cid-tYG9cDmuBe .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tYG9cDmuBe .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYG9cDmuBe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tYG9cDmuBe .container {
  display: flex;
  margin: auto;
}
.cid-tYG9cDmuBe .iconfont-wrapper {
  color: #1d1d1f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYG9cDmuBe .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYG9cDmuBe .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tYG9cDmuBe .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYG9cDmuBe .navbar-nav {
    margin: 0;
  }
}
.cid-tYG9cDmuBe .dropdown-menu,
.cid-tYG9cDmuBe .navbar.opened {
  background-color: false !important;
}
.cid-tYG9cDmuBe .nav-item:focus,
.cid-tYG9cDmuBe .nav-link:focus {
  outline: none;
}
.cid-tYG9cDmuBe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYG9cDmuBe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYG9cDmuBe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYG9cDmuBe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYG9cDmuBe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYG9cDmuBe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYG9cDmuBe .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tYG9cDmuBe .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tYG9cDmuBe .navbar.opened {
  transition: all 0.3s;
}
.cid-tYG9cDmuBe .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYG9cDmuBe .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tYG9cDmuBe .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tYG9cDmuBe .navbar.collapsed {
  justify-content: center;
}
.cid-tYG9cDmuBe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYG9cDmuBe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYG9cDmuBe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYG9cDmuBe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYG9cDmuBe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYG9cDmuBe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYG9cDmuBe .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYG9cDmuBe .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYG9cDmuBe .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tYG9cDmuBe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYG9cDmuBe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYG9cDmuBe .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYG9cDmuBe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYG9cDmuBe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tYG9cDmuBe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYG9cDmuBe .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYG9cDmuBe .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYG9cDmuBe .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYG9cDmuBe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tYG9cDmuBe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYG9cDmuBe .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYG9cDmuBe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYG9cDmuBe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYG9cDmuBe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYG9cDmuBe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYG9cDmuBe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tYG9cDmuBe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYG9cDmuBe .dropdown-item.active,
.cid-tYG9cDmuBe .dropdown-item:active {
  background-color: transparent;
}
.cid-tYG9cDmuBe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tYG9cDmuBe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYG9cDmuBe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYG9cDmuBe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYG9cDmuBe ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tYG9cDmuBe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYG9cDmuBe button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #52f4aa;
}
.cid-tYG9cDmuBe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1f;
}
.cid-tYG9cDmuBe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYG9cDmuBe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYG9cDmuBe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYG9cDmuBe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYG9cDmuBe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYG9cDmuBe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYG9cDmuBe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYG9cDmuBe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYG9cDmuBe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYG9cDmuBe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYG9cDmuBe .navbar {
    height: 70px;
  }
  .cid-tYG9cDmuBe .navbar.opened {
    height: auto;
  }
  .cid-tYG9cDmuBe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYG9cDmuBe .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYG9cDmuBe .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tYG9cDmuBe .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYG9cDmuBe .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tYG9cDmuBe .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 180px;
}
.cid-tYG9cDmuBe .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tYG9cDmuBe .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tYG9cDmuBe .text_widget {
  margin-bottom: 32px;
}
.cid-tYG9cDmuBe .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tYG9cDmuBe .text_widget a:hover,
.cid-tYG9cDmuBe .text_widget a:focus {
  opacity: .8;
}
.cid-tYG9cDmuBe .mbr-section-subtitle {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYG9cDmuBe .navbar-caption {
  color: #1D1D1F;
}
.cid-tYG9cDmuBe .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tYG9cDmuBe .mbr-section-subtitle,
.cid-tYG9cDmuBe .text_widget,
.cid-tYG9cDmuBe .mbr-section-btn {
  text-align: center;
}
.cid-tYG9cDmuBe a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYG9cF82VB {
  background-image: url("../../../assets/images/qq-907x680.jpg");
}
.cid-tYG9cF82VB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cF82VB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cF82VB .mbr-section-title {
  text-align: left;
}
.cid-tYG9cF82VB .mbr-text,
.cid-tYG9cF82VB .mbr-section-btn {
  text-align: center;
}
.cid-tYG9cG24nB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG9cG24nB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cG24nB .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-tYG9cG24nB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tYG9cG24nB .container {
    padding: 0 12px;
  }
}
.cid-tYG9cG24nB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tYG9cG24nB .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tYG9cG24nB .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tYG9cG24nB .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #19be48;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tYG9cG24nB .mbr-section-title {
  color: #222222;
}
.cid-tYG9cGLKpi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYG9cGLKpi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cGLKpi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cGLKpi .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG9cGLKpi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG9cGLKpi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG9cGLKpi .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG9cGLKpi .mbr-text,
.cid-tYG9cGLKpi .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYG9cGLKpi .card-title,
.cid-tYG9cGLKpi .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYG9cI0d8y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYG9cI0d8y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cI0d8y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cI0d8y .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tYG9cI0d8y .card {
    margin-bottom: 2rem!important;
  }
  .cid-tYG9cI0d8y .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYG9cI0d8y .link-wrap {
    align-items: center;
  }
}
.cid-tYG9cI0d8y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYG9cI0d8y .card-title,
.cid-tYG9cI0d8y .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYG9cILmbv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG9cILmbv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cILmbv .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-tYG9cILmbv .container {
    padding: 0 16px;
  }
}
.cid-tYG9cILmbv .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #19be48;
  margin: 40px 70px 40px 0;
  height: 290px;
}
@media (max-width: 992px) {
  .cid-tYG9cILmbv .image-wrapper {
    margin: 40px 0 80px 0;
    height: 250px;
  }
}
.cid-tYG9cILmbv .image-wrapper img {
  position: absolute;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tYG9cILmbv .image-wrapper img {
    height: 300px;
  }
}
.cid-tYG9cILmbv .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYG9cILmbv .text-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYG9cILmbv .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYG9cILmbv .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tYG9cILmbv .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tYG9cILmbv .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tYG9cJnwv3 {
  padding-top: 20px;
  background-color: #19be48;
}
.cid-tYG9cJnwv3 .container {
  margin-bottom: 15%;
}
.cid-tYG9cJnwv3 .content-container .btn-bgr {
  z-index: 0;
}
.cid-tYG9cJnwv3 .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #19be48;
}
.cid-tYG9cJnwv3 .icon-block-top span {
  background-color: #188ef4;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-tYG9cJnwv3 .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-tYG9cJnwv3 .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-tYG9cJnwv3 .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-tYG9cJnwv3 .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-tYG9cJnwv3 .mbr-text,
.cid-tYG9cJnwv3 .box-item-text {
  color: #8d97ad;
}
.cid-tYG9cJnwv3 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tYG9cJnwv3 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tYG9cJnwv3 .box-list li:last-child {
  border-bottom: none;
}
.cid-tYG9cJnwv3 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tYG9cJnwv3 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-tYG9cJnwv3 .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tYG9cJnwv3 .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tYG9cJnwv3 .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-tYG9cJnwv3 .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-tYG9cJnwv3 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-tYG9cJnwv3 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-tYG9cJnwv3 .box-item-text,
.cid-tYG9cJnwv3 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYG9cJnwv3 .box-item-title {
  text-align: center;
}
.cid-tYG9cKezVa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tYG9cKezVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cKezVa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cKezVa .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG9cKezVa .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG9cKezVa .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG9cKezVa .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG9cKezVa .card-title {
  color: #000000;
}
.cid-tYG9cKezVa .mbr-text,
.cid-tYG9cKezVa .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYG9cKOVCn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
.cid-tYG9cKOVCn .mbr-text {
  color: #000000;
}
.cid-tYG9cKOVCn .mbr-section-subtitle {
  color: #000000;
}
.cid-tYG9cLuayH {
  background-color: #ffffff;
}
.cid-tYG9cLuayH .mbr-text {
  text-align: center;
  padding: 0 2rem;
}
.cid-tYG9cLuayH h4 {
  text-align: center;
}
.cid-tYG9cLuayH p {
  text-align: center;
  margin: 0;
}
.cid-tYG9cLuayH .row {
  justify-content: center;
}
.cid-tYG9cLuayH .mbr-iconfont {
  transition: all 0.3s;
  color: #fff;
  font-size: 2rem;
  margin-left: 1rem;
}
.cid-tYG9cLuayH .mbr-fonts-style {
  color: #fff;
}
.cid-tYG9cLuayH .card-inner {
  border-radius: 30px;
}
.cid-tYG9cLuayH .card-inner1 {
  background: #ffe161;
}
.cid-tYG9cLuayH .card-inner2 {
  background: #5cdb95;
}
.cid-tYG9cLuayH .card-inner3 {
  background: #000000;
}
.cid-tYG9cLuayH img {
  width: auto;
  height: 140px;
  margin-top: 1rem;
}
.cid-tYG9cLuayH .card {
  border-radius: 30px;
  align-items: center;
  position: relative;
}
.cid-tYG9cLuayH .container-fluid {
  max-width: 1200px;
}
.cid-tYG9cLuayH .btn {
  color: #fff;
}
.cid-tYG9cLuayH .mbr-section-btn {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
}
.cid-tYG9cLuayH .mbr-section-btn:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (max-width: 767px) {
  .cid-tYG9cLuayH {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYG9cLuayH .card {
    margin-bottom: 1rem;
  }
  .cid-tYG9cLuayH .card-1 {
    margin-right: 0rem;
  }
  .cid-tYG9cLuayH .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) {
  .cid-tYG9cLuayH .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tYG9cLuayH {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .cid-tYG9cLuayH .card {
    margin-bottom: 1rem;
  }
  .cid-tYG9cLuayH .card-1 {
    margin-right: 0rem;
  }
  .cid-tYG9cLuayH .card-3 {
    margin-left: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG9cLuayH {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.cid-tYG9cLuayH .icon-btn {
  transition: 0.3s;
  line-height: 0;
}
.cid-tYG9cLuayH .card-img {
  text-align: center;
  margin-top: 2.5rem;
}
.cid-tYG9cLuayH .inner-dashed-border {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-tYG9cLuayH .card:hover .inner-dashed-border {
  animation-play-state: running;
  stroke: #ffffff;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-tYG9cLuayH svg {
  position: relative;
}
.cid-tYG9cLuayH rect {
  position: absolute;
}
.cid-tYG9cLuayH .circle-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.cid-tYG9cLuayH .svg1 {
  padding: 1.5rem 2.5rem;
  position: absolute;
}
.cid-tYG9cLuayH .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-tYG9cLuayH .card-box {
  width: 100%;
}
.cid-tYG9cLuayH .btn-underline {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
.cid-tYG9cMra52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG9cMra52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cMra52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cMra52 .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG9cMra52 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG9cMra52 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG9cMra52 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG9cMra52 .mbr-text,
.cid-tYG9cMra52 .mbr-section-btn {
  color: #000000;
}
.cid-tYG9cMra52 .card-title,
.cid-tYG9cMra52 .card-box {
  text-align: left;
  color: #000000;
}
.cid-tYG9cN5qer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #19be48;
}
@media (max-width: 992px) {
  .cid-tYG9cN5qer .container {
    padding: 0 25px;
  }
}
.cid-tYG9cN5qer .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYG9cN5qer .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tYG9cN5qer .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tYG9cN5qer .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tYG9cN5qer .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tYG9cN5qer .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tYG9cN5qer .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYG9cN5qer .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tYG9cN5qer .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tYG9cN5qer .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tYG9cN5qer .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tYG9cN5qer .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tYG9cN5qer .mbr-section-title {
  color: #000000;
}
.cid-tYG9cN5qer .panel-title-edit {
  color: #000000;
}
.cid-tYG9cN5qer .panel-text {
  color: #000000;
}
.cid-tYG9cO1kUa {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tYG9cO1kUa .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYG9cO1kUa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tYG9cO1kUa .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tYG9cO1kUa .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #b8d94f;
}
.cid-tYG9cO1kUa .name {
  margin-top: 0.70rem;
  color: #000000;
  text-align: left;
}
.cid-tYG9cO1kUa .name b,
.cid-tYG9cO1kUa .name strong {
  font-weight: 500;
}
.cid-tYG9cO1kUa .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-tYG9cO1kUa .mbr-text,
.cid-tYG9cO1kUa .mbr-section-data {
  text-align: left;
}
.cid-tYG9cO1kUa .mbr-text,
.cid-tYG9cO1kUa .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tYG9cO1kUa .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-tYG9cONAUP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYG9cONAUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cONAUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cONAUP .card-wrapper {
  background: #19be48;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tYG9cONAUP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tYG9cONAUP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG9cONAUP .card-wrapper {
    padding: 4rem;
  }
}
.cid-tYG9cONAUP .mbr-text,
.cid-tYG9cONAUP .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tYG9cONAUP .card-title,
.cid-tYG9cONAUP .card-box {
  text-align: center;
  color: #000000;
}
.cid-tYH0jwT9H2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYH0jwT9H2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYH0jwT9H2 .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-tYH0jwT9H2 .container {
    padding: 0 20px;
  }
}
.cid-tYH0jwT9H2 .row {
  margin: 0;
}
.cid-tYH0jwT9H2 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tYH0jwT9H2 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tYH0jwT9H2 .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tYH0jwT9H2 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tYH0jwT9H2 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tYH0jwT9H2 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tYH0jwT9H2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYG9cPx3tl {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tYG9cPx3tl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cPx3tl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cPx3tl .accordion .mbr-iconfont {
  font-size: 1rem !important;
  font-family: 'Moririse2' !important;
  color: #00004c;
  transform: rotate(0deg) !important;
  margin-left: 1rem;
  padding: 8px;
  border-radius: 50%;
}
.cid-tYG9cPx3tl .accordion .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg) !important;
}
.cid-tYG9cPx3tl .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cid-tYG9cPx3tl .col-title {
    margin-bottom: 40px;
  }
}
.cid-tYG9cPx3tl .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYG9cPx3tl .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYG9cPx3tl .mbr-section-subtitle {
  color: #00004c;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .cid-tYG9cPx3tl .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG9cPx3tl .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-tYG9cPx3tl .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tYG9cPx3tl .accordion-title-container {
    display: none;
  }
}
.cid-tYG9cPx3tl .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #00004c;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG9cPx3tl .accordion-title {
    padding: 0 10px;
  }
}
.cid-tYG9cPx3tl .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-tYG9cPx3tl .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tYG9cPx3tl .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-tYG9cPx3tl .card {
    width: 100%;
  }
}
.cid-tYG9cPx3tl .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tYG9cPx3tl .card-border-top2 {
    display: none;
  }
}
.cid-tYG9cPx3tl .card-header {
  border-bottom: none !important;
  padding: 10px 0 !important;
}
.cid-tYG9cPx3tl .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tYG9cPx3tl .panel-body {
  padding-bottom: 20px;
}
.cid-tYG9cPx3tl .panel-text {
  margin-bottom: 20px !important;
  color: #00004c;
}
.cid-tYG9cPx3tl .panel-title {
  display: flex;
  align-items: center;
}
.cid-tYG9cPx3tl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tYG9cPx3tl .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-tYG9cQsBLG {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tYG9cQsBLG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cQsBLG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cQsBLG .google-map {
  height: 30rem;
  position: relative;
}
.cid-tYG9cQsBLG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYG9cQsBLG .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-tYG9cQsBLG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYG9cQsBLG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYG9cQsBLG .mbr-section-title {
  color: #000000;
}
.cid-tYG9cRg0tc {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYG9cRg0tc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYG9cRg0tc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYG9cRg0tc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYG9cRg0tc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYG9cRg0tc .row {
    text-align: center;
  }
  .cid-tYG9cRg0tc .social-row {
    justify-content: center;
  }
}
.cid-tYG9cRg0tc .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYG9cRg0tc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYG9cRg0tc .list {
    margin-bottom: 0rem;
  }
}
.cid-tYG9cRg0tc .mbr-text {
  color: #bbbbbb;
}
.cid-tYG9cRg0tc .mbr-iconfont {
  color: black;
}
.cid-tYG9cRg0tc .copyright {
  text-align: left;
  color: #000000;
}
.cid-tYG9cRg0tc .mbr-section-subtitle {
  color: #000000;
}
.cid-tYG9cRg0tc H5 {
  color: #fafafa;
}
