body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 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: #ef3c08 !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #ef3c08 !important;
  background: linear-gradient(90deg, #ef3c08 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #ef3c08;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #9b2705;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9b2705;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ff6f45 !important;
  background: linear-gradient(90deg, #ff6f45 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6f45;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ef3c08;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9b2705 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ef3c08 !important;
  border-color: #ef3c08 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6f45;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ed3600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6f45 !important;
  border-color: #ff6f45 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ef3c08 !important;
}
.text-secondary {
  color: #ff6f45 !important;
}
.text-success {
  color: #263d5a !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8c2305 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #de3200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !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: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !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: #ef3c08;
}
.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: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ef3c08;
  border-color: #ef3c08;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ef3c08;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdd2c6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4c7ab3;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #ef3c08 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #ef3c08;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ef3c08;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ef3c08;
}
.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: #ef3c08;
  border-bottom-color: #ef3c08;
}
.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: #ef3c08 !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: #ff6f45 !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='%23ef3c08' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 445px) {
  .container-banner {
    height: 11.5rem!important;
  }
}
.cid-sz52OrCkah {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz52OrCkah nav.navbar {
  position: fixed;
}
.cid-sz52OrCkah .navbar-nav {
  margin: auto;
}
.cid-sz52OrCkah .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz52OrCkah .dropdown-item:hover,
.cid-sz52OrCkah .dropdown-item:focus {
  background: #ef3c08 !important;
  color: white !important;
}
.cid-sz52OrCkah .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz52OrCkah .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz52OrCkah .navbar-short,
.cid-sz52OrCkah .opened {
  background: #ffe885 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sz52OrCkah .navbar-short .nav-link,
.cid-sz52OrCkah .opened .nav-link,
.cid-sz52OrCkah .navbar-short .navbar-caption,
.cid-sz52OrCkah .opened .navbar-caption,
.cid-sz52OrCkah .navbar-short .mbr-iconfont,
.cid-sz52OrCkah .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-sz52OrCkah .navbar-short .hamburger span,
.cid-sz52OrCkah .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-sz52OrCkah .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sz52OrCkah .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz52OrCkah .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz52OrCkah .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz52OrCkah .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz52OrCkah .container {
  display: flex;
  margin: auto;
}
.cid-sz52OrCkah .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz52OrCkah .dropdown-menu,
.cid-sz52OrCkah .navbar.opened {
  background: #ffe885 !important;
}
.cid-sz52OrCkah .nav-item:focus,
.cid-sz52OrCkah .nav-link:focus {
  outline: none;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz52OrCkah .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz52OrCkah .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz52OrCkah .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffe885;
}
.cid-sz52OrCkah .navbar.opened {
  transition: all 0.3s;
}
.cid-sz52OrCkah .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz52OrCkah .navbar .navbar-logo img {
  width: auto;
}
.cid-sz52OrCkah .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz52OrCkah .navbar.collapsed {
  justify-content: center;
}
.cid-sz52OrCkah .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz52OrCkah .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz52OrCkah .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz52OrCkah .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz52OrCkah .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz52OrCkah .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz52OrCkah .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz52OrCkah .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz52OrCkah .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz52OrCkah .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz52OrCkah .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz52OrCkah .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz52OrCkah .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz52OrCkah .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz52OrCkah .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz52OrCkah .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-sz52OrCkah .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz52OrCkah .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz52OrCkah .dropdown-item.active,
.cid-sz52OrCkah .dropdown-item:active {
  background-color: transparent;
}
.cid-sz52OrCkah .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz52OrCkah .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz52OrCkah .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz52OrCkah .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe885;
}
.cid-sz52OrCkah .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz52OrCkah .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz52OrCkah ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz52OrCkah .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz52OrCkah button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb5b5;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz52OrCkah .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz52OrCkah a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz52OrCkah .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz52OrCkah .navbar {
    height: 70px;
  }
  .cid-sz52OrCkah .navbar.opened {
    height: auto;
  }
  .cid-sz52OrCkah .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYd40RkYXl {
  background-image: url("../../../assets/images/synthetic-turf-2000x1283.jpg");
}
.cid-tYd40RkYXl .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYd40RkYXl .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYd40RkYXl .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYd40RkYXl .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYd40RkYXl .col-12 {
  position: relative;
}
.cid-tYd40RkYXl .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tYd40RkYXl .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tYd40RkYXl .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tYd40RkYXl .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tYd40RkYXl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYd40RkYXl .mbr-text,
.cid-tYd40RkYXl .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYd47qFrv4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYd47qFrv4 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #263d5a;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: visible;
}
.cid-tYd47qFrv4 .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin: 0;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYd47qFrv4 .row {
    padding: 2rem 1rem;
  }
}
.cid-tYd47qFrv4 .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYd47qFrv4 .card-wrapper {
  overflow: visible;
  margin-bottom: 2rem;
}
.cid-tYd47qFrv4 .card-text {
  color: #263d5a;
  text-align: center;
}
.cid-tYd47qFrv4 .card-title,
.cid-tYd47qFrv4 .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYd47qFrv4 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tYd47qFrv4 .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tYd47qFrv4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYd47qFrv4 .card-link {
  text-align: center;
}
.cid-tYcd5mqXXM {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-tYcd5mqXXM .mbr-section-title {
  color: #ffffff;
}
.cid-tYcd5mqXXM .mbr-text,
.cid-tYcd5mqXXM .mbr-section-btn {
  color: #000000;
}
.cid-sz51Oyfrn1 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sz51Oyfrn1 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #000000;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.cid-sz51Oyfrn1 .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sz51Oyfrn1 .row {
    padding: 2rem 1rem;
  }
}
.cid-sz51Oyfrn1 .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sz51Oyfrn1 .card-wrapper {
  overflow: visible;
}
.cid-sz51Oyfrn1 .card-text {
  color: #263d5a;
}
.cid-sz51Oyfrn1 .card-title,
.cid-sz51Oyfrn1 .iconfont-wrapper {
  color: #000000;
}
.cid-sz51Oyfrn1 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sz51Oyfrn1 .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-sz51Oyfrn1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYd92ECZDb {
  padding-top: 560px;
  background-image: url("../../../assets/images/synthetic-turf3-1600x800.png");
}
.cid-tYcd9g1Hw5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYcd9g1Hw5 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYcd9g1Hw5 .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYcd9g1Hw5 .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYcd9g1Hw5 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYcd9g1Hw5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYcd9g1Hw5 .mbr-text {
  color: #000000;
}
.cid-sz52wpUfhF {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sz52wpUfhF .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz52wpUfhF .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sz52wpUfhF .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sz52wpUfhF .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-sz52wpUfhF .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz52wpUfhF .row {
  justify-content: center;
}
.cid-sz52wpUfhF .card-text {
  color: #263d5a;
}
.cid-sz52wpUfhF .card-title,
.cid-sz52wpUfhF .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-sz52wpUfhF .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sz52wpUfhF .mbr-section-title {
  color: #263d5a;
}
.cid-sz52wpUfhF .card-price,
.cid-sz52wpUfhF .iconfont-wrapper {
  color: #263d5a;
}
.cid-tYcdbwQtce {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYcdbwQtce .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYcdbwQtce .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYcdbwQtce .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYcdbwQtce .mbr-text,
.cid-tYcdbwQtce .mbr-section-btn {
  color: #000000;
}
.cid-tYcdbwQtce .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sz51ZxbhFN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sz51ZxbhFN .container {
  margin-right: 0rem;
  max-width: 1500px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sz51ZxbhFN .container {
    padding: 0 1rem;
  }
}
.cid-sz51ZxbhFN .item-wrapper {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 30px;
  flex-flow: column nowrap;
  padding: 2rem;
}
.cid-sz51ZxbhFN .item-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  pointer-events: none;
  height: 100%;
  background: black;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sz51ZxbhFN .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translateY(0px);
}
.cid-sz51ZxbhFN .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-sz51ZxbhFN .item-wrapper:hover:before {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-sz51ZxbhFN .item-wrapper .item-content {
    opacity: 1;
    transform: translateY(0px);
  }
  .cid-sz51ZxbhFN .item-wrapper .item-img {
    transform: scale(1.1);
  }
  .cid-sz51ZxbhFN .item-wrapper:before {
    opacity: 0.5;
  }
}
.cid-sz51ZxbhFN .item-img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.cid-sz51ZxbhFN .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sz51ZxbhFN .item-content {
  z-index: 3;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(5px);
  position: relative;
}
.cid-sz51ZxbhFN .item:focus,
.cid-sz51ZxbhFN span:focus {
  outline: none;
}
.cid-sz51ZxbhFN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sz51ZxbhFN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sz51ZxbhFN .mbr-section-title {
  color: #232323;
}
.cid-sz51ZxbhFN .mbr-text,
.cid-sz51ZxbhFN .mbr-section-btn {
  color: #ffffff;
}
.cid-sz51ZxbhFN .item-title {
  color: #ffffff;
}
.cid-tYcdaidZqy {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYcdaidZqy .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYcdaidZqy .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYcdaidZqy .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYcdaidZqy .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYcdaidZqy .mbr-section-title {
  color: #000000;
}
.cid-tYcdaidZqy .mbr-text {
  color: #000000;
}
.cid-sz54YLvblQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sz54YLvblQ .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sz54YLvblQ img {
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-sz54YLvblQ img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-sz54YLvblQ .row {
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-sz54YLvblQ .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sz54YLvblQ .row {
    padding: 1rem 0rem;
  }
}
.cid-sz54YLvblQ .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sz54YLvblQ .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-sz54YLvblQ span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-sz54YLvblQ .collapsed span {
  transform: rotate(0deg);
}
.cid-sz54YLvblQ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sz54YLvblQ .panel-group {
  width: 100%;
}
.cid-sz54YLvblQ .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-sz54YLvblQ .card {
  border-radius: 0px;
}
.cid-sz54YLvblQ .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: #ffe885;
  padding: 0 1rem;
}
.cid-sz54YLvblQ .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sz54YLvblQ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz54YLvblQ .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-sz54YLvblQ .card .panel-body {
  background: #ffe885;
  padding: 1rem 1rem 0;
}
.cid-sz54YLvblQ .panel-text {
  color: #263d5a;
}
.cid-sz54YLvblQ .header-text,
.cid-sz54YLvblQ .sign {
  color: #263d5a;
  text-align: right;
}
.cid-sz54YLvblQ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sz54YLvblQ .header-text,
.cid-sz54YLvblQ .sign,
.cid-sz54YLvblQ .card-header {
  color: #000000;
  text-align: left;
}
.cid-sz54YLvblQ .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sz52o0Z0ww {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-sz52o0Z0ww .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-sz52o0Z0ww .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sz52o0Z0ww .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sz52o0Z0ww .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-sz52o0Z0ww .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sz52o0Z0ww .mbr-text,
.cid-sz52o0Z0ww .mbr-section-btn {
  color: #263d5a;
  text-align: center;
}
.cid-sz52o0Z0ww .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tYd6uxNJGr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYd6uxNJGr .item-img {
  position: relative;
}
.cid-tYd6uxNJGr .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-tYd6uxNJGr .cardbg {
  background: #ffe885;
  height: 100%;
  min-height: 300px;
}
.cid-tYd6uxNJGr .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-tYd6uxNJGr .image-wrapper {
  overflow: hidden;
}
.cid-tYd6uxNJGr .item1 {
  margin-bottom: 2rem !important;
}
.cid-tYd6uxNJGr .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tYd6uxNJGr .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-tYd6uxNJGr .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-tYd6uxNJGr .item1,
.cid-tYd6uxNJGr .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-tYd6uxNJGr .item1 .item:hover,
.cid-tYd6uxNJGr .item .item:hover {
  cursor: pointer;
}
.cid-tYd6uxNJGr .item1:hover .link-icon-wrapper span,
.cid-tYd6uxNJGr .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-tYd6uxNJGr .card2 {
    margin-top: 1rem;
  }
}
.cid-tYd6uxNJGr .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-tYd6uxNJGr .link-icon-wrapper .icon-wrap {
  background: #ffe885;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-tYd6uxNJGr .link-icon-wrapper .icon-wrap span {
  color: #ffe885;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-tYd6uxNJGr .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-tYd6uxNJGr .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-tYd6uxNJGr .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-tYd6uxNJGr .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-tYd6uxNJGr .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tYd6uxNJGr .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-tYd6uxNJGr img,
.cid-tYd6uxNJGr .item-img {
  width: 100%;
}
.cid-tYd6uxNJGr .item:focus,
.cid-tYd6uxNJGr span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-tYd6uxNJGr .item {
    margin-bottom: 1rem;
  }
}
.cid-tYd6uxNJGr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tYd6uxNJGr .item-title {
  text-align: center;
  color: #000000;
}
.cid-tYd6uxNJGr .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tYd6uxNJGr .mbr-section-subtitle,
.cid-tYd6uxNJGr .subtitle-wrap,
.cid-tYd6uxNJGr .mbr-section-btn {
  text-align: left;
}
.cid-tYd6uxNJGr .mbr-text,
.cid-tYd6uxNJGr .item .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sz54G4LKIS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-sz54G4LKIS img {
  border-radius: 30px;
}
.cid-sz54G4LKIS .my-auto {
  margin-bottom: 0!important;
}
.cid-sz54G4LKIS .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sz54G4LKIS .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sz54G4LKIS .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-sz54G4LKIS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz54G4LKIS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sz54G4LKIS .mbr-text,
.cid-sz54G4LKIS .mbr-section-btn {
  color: #263d5a;
}
.cid-sz54G4LKIS .mbr-section-subtitle {
  color: #000000;
}
.cid-tYcmHT9YHh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYcmHT9YHh .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYcmHT9YHh .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tYcmHT9YHh .row .img-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-tYcmFmwBxm {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYcmFmwBxm .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYcmFmwBxm .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYcmFmwBxm .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYcmFmwBxm .mbr-text,
.cid-tYcmFmwBxm .mbr-section-btn {
  color: #000000;
}
.cid-tYcmFmwBxm .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sz52st4Y7Z {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-sz52st4Y7Z .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-sz52st4Y7Z .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-sz52st4Y7Z .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-sz52st4Y7Z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sz52st4Y7Z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sz52st4Y7Z .mbr-section-title {
  color: #000000;
}
.cid-sz52xzhH9a {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-sz52xzhH9a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sz52xzhH9a .wrapper {
  max-width: 350px;
}
.cid-sz52xzhH9a .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-sz52xzhH9a .row {
    text-align: center;
  }
  .cid-sz52xzhH9a .social-row {
    justify-content: center;
  }
}
.cid-sz52xzhH9a .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-sz52xzhH9a .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz52xzhH9a .list {
    margin-bottom: 0rem;
  }
}
.cid-sz52xzhH9a .mbr-text {
  color: #000000;
}
.cid-sz52xzhH9a .mbr-iconfont {
  color: black;
}
.cid-sz52xzhH9a H5 {
  color: #000000;
}
.cid-sz52xzhH9a .copyright {
  color: #000000;
}
.cid-sz52OrCkah {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz52OrCkah nav.navbar {
  position: fixed;
}
.cid-sz52OrCkah .navbar-nav {
  margin: auto;
}
.cid-sz52OrCkah .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz52OrCkah .dropdown-item:hover,
.cid-sz52OrCkah .dropdown-item:focus {
  background: #ef3c08 !important;
  color: white !important;
}
.cid-sz52OrCkah .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz52OrCkah .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz52OrCkah .navbar-short,
.cid-sz52OrCkah .opened {
  background: #ffe885 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sz52OrCkah .navbar-short .nav-link,
.cid-sz52OrCkah .opened .nav-link,
.cid-sz52OrCkah .navbar-short .navbar-caption,
.cid-sz52OrCkah .opened .navbar-caption,
.cid-sz52OrCkah .navbar-short .mbr-iconfont,
.cid-sz52OrCkah .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-sz52OrCkah .navbar-short .hamburger span,
.cid-sz52OrCkah .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-sz52OrCkah .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sz52OrCkah .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz52OrCkah .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz52OrCkah .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz52OrCkah .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz52OrCkah .container {
  display: flex;
  margin: auto;
}
.cid-sz52OrCkah .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz52OrCkah .dropdown-menu,
.cid-sz52OrCkah .navbar.opened {
  background: #ffe885 !important;
}
.cid-sz52OrCkah .nav-item:focus,
.cid-sz52OrCkah .nav-link:focus {
  outline: none;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz52OrCkah .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz52OrCkah .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz52OrCkah .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz52OrCkah .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffe885;
}
.cid-sz52OrCkah .navbar.opened {
  transition: all 0.3s;
}
.cid-sz52OrCkah .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz52OrCkah .navbar .navbar-logo img {
  width: auto;
}
.cid-sz52OrCkah .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz52OrCkah .navbar.collapsed {
  justify-content: center;
}
.cid-sz52OrCkah .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz52OrCkah .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz52OrCkah .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz52OrCkah .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz52OrCkah .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz52OrCkah .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz52OrCkah .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz52OrCkah .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz52OrCkah .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz52OrCkah .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz52OrCkah .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz52OrCkah .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz52OrCkah .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz52OrCkah .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz52OrCkah .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz52OrCkah .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz52OrCkah .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz52OrCkah .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-sz52OrCkah .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz52OrCkah .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz52OrCkah .dropdown-item.active,
.cid-sz52OrCkah .dropdown-item:active {
  background-color: transparent;
}
.cid-sz52OrCkah .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz52OrCkah .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz52OrCkah .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz52OrCkah .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe885;
}
.cid-sz52OrCkah .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz52OrCkah .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz52OrCkah ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz52OrCkah .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz52OrCkah button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb5b5;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz52OrCkah button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz52OrCkah nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz52OrCkah .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz52OrCkah a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz52OrCkah .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz52OrCkah .navbar {
    height: 70px;
  }
  .cid-sz52OrCkah .navbar.opened {
    height: auto;
  }
  .cid-sz52OrCkah .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYctbTusw5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/landscaping-ideas-for-gig-harbor-residents.jpg1-2000x1330.jpg");
}
.cid-tYctbTusw5 .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYctbTusw5 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYctbTusw5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYctbTusw5 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYctbTusw5 .col-12 {
  position: relative;
}
.cid-tYctbTusw5 .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tYctbTusw5 .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tYctbTusw5 .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tYctbTusw5 .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tYctbTusw5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYctbTusw5 .mbr-text,
.cid-tYctbTusw5 .mbr-section-btn {
  color: #263d5a;
}
.cid-tYctgpQlSE {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYctgpQlSE .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYctgpQlSE .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYctgpQlSE .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYctgpQlSE .mbr-text,
.cid-tYctgpQlSE .mbr-section-btn {
  color: #263d5a;
}
.cid-tYctgpQlSE .mbr-section-title {
  color: #263d5a;
}
.cid-tYctiCOBhW {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-tYctiCOBhW .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-tYctiCOBhW .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-tYctiCOBhW .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-tYctiCOBhW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYctiCOBhW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYctiCOBhW .mbr-section-title {
  color: #263d5a;
}
.cid-sz52xzhH9a {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-sz52xzhH9a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sz52xzhH9a .wrapper {
  max-width: 350px;
}
.cid-sz52xzhH9a .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-sz52xzhH9a .row {
    text-align: center;
  }
  .cid-sz52xzhH9a .social-row {
    justify-content: center;
  }
}
.cid-sz52xzhH9a .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-sz52xzhH9a .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz52xzhH9a .list {
    margin-bottom: 0rem;
  }
}
.cid-sz52xzhH9a .mbr-text {
  color: #000000;
}
.cid-sz52xzhH9a .mbr-iconfont {
  color: black;
}
.cid-sz52xzhH9a H5 {
  color: #000000;
}
.cid-sz52xzhH9a .copyright {
  color: #000000;
}
.cid-tYcuJ8T2ZI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tYcuJ8T2ZI nav.navbar {
  position: fixed;
}
.cid-tYcuJ8T2ZI .navbar-nav {
  margin: auto;
}
.cid-tYcuJ8T2ZI .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYcuJ8T2ZI .dropdown-item:hover,
.cid-tYcuJ8T2ZI .dropdown-item:focus {
  background: #ef3c08 !important;
  color: white !important;
}
.cid-tYcuJ8T2ZI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYcuJ8T2ZI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYcuJ8T2ZI .navbar-short,
.cid-tYcuJ8T2ZI .opened {
  background: #ffe885 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-tYcuJ8T2ZI .navbar-short .nav-link,
.cid-tYcuJ8T2ZI .opened .nav-link,
.cid-tYcuJ8T2ZI .navbar-short .navbar-caption,
.cid-tYcuJ8T2ZI .opened .navbar-caption,
.cid-tYcuJ8T2ZI .navbar-short .mbr-iconfont,
.cid-tYcuJ8T2ZI .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-tYcuJ8T2ZI .navbar-short .hamburger span,
.cid-tYcuJ8T2ZI .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-tYcuJ8T2ZI .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-tYcuJ8T2ZI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYcuJ8T2ZI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYcuJ8T2ZI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYcuJ8T2ZI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYcuJ8T2ZI .container {
  display: flex;
  margin: auto;
}
.cid-tYcuJ8T2ZI .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYcuJ8T2ZI .dropdown-menu,
.cid-tYcuJ8T2ZI .navbar.opened {
  background: #ffe885 !important;
}
.cid-tYcuJ8T2ZI .nav-item:focus,
.cid-tYcuJ8T2ZI .nav-link:focus {
  outline: none;
}
.cid-tYcuJ8T2ZI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYcuJ8T2ZI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYcuJ8T2ZI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYcuJ8T2ZI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYcuJ8T2ZI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYcuJ8T2ZI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYcuJ8T2ZI .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffe885;
}
.cid-tYcuJ8T2ZI .navbar.opened {
  transition: all 0.3s;
}
.cid-tYcuJ8T2ZI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYcuJ8T2ZI .navbar .navbar-logo img {
  width: auto;
}
.cid-tYcuJ8T2ZI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tYcuJ8T2ZI .navbar.collapsed {
  justify-content: center;
}
.cid-tYcuJ8T2ZI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYcuJ8T2ZI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYcuJ8T2ZI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tYcuJ8T2ZI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYcuJ8T2ZI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYcuJ8T2ZI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tYcuJ8T2ZI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYcuJ8T2ZI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYcuJ8T2ZI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYcuJ8T2ZI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYcuJ8T2ZI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYcuJ8T2ZI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYcuJ8T2ZI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYcuJ8T2ZI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tYcuJ8T2ZI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYcuJ8T2ZI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYcuJ8T2ZI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYcuJ8T2ZI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYcuJ8T2ZI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYcuJ8T2ZI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tYcuJ8T2ZI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYcuJ8T2ZI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYcuJ8T2ZI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYcuJ8T2ZI .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-tYcuJ8T2ZI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYcuJ8T2ZI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYcuJ8T2ZI .dropdown-item.active,
.cid-tYcuJ8T2ZI .dropdown-item:active {
  background-color: transparent;
}
.cid-tYcuJ8T2ZI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYcuJ8T2ZI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYcuJ8T2ZI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYcuJ8T2ZI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe885;
}
.cid-tYcuJ8T2ZI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYcuJ8T2ZI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYcuJ8T2ZI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tYcuJ8T2ZI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYcuJ8T2ZI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tYcuJ8T2ZI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb5b5;
}
.cid-tYcuJ8T2ZI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYcuJ8T2ZI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYcuJ8T2ZI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYcuJ8T2ZI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYcuJ8T2ZI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYcuJ8T2ZI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYcuJ8T2ZI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYcuJ8T2ZI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYcuJ8T2ZI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tYcuJ8T2ZI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYcuJ8T2ZI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYcuJ8T2ZI .navbar {
    height: 70px;
  }
  .cid-tYcuJ8T2ZI .navbar.opened {
    height: auto;
  }
  .cid-tYcuJ8T2ZI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYcuJ9T4zt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/landscaping-ideas-for-gig-harbor-residents.jpg1.jpg2-1440x961.jpg");
}
.cid-tYcuJ9T4zt .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYcuJ9T4zt .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYcuJ9T4zt .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYcuJ9T4zt .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYcuJ9T4zt .col-12 {
  position: relative;
}
.cid-tYcuJ9T4zt .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tYcuJ9T4zt .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tYcuJ9T4zt .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tYcuJ9T4zt .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tYcuJ9T4zt .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYcuJ9T4zt .mbr-text,
.cid-tYcuJ9T4zt .mbr-section-btn {
  color: #263d5a;
}
.cid-tYcuJamME9 {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYcuJamME9 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYcuJamME9 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYcuJamME9 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYcuJamME9 .mbr-text,
.cid-tYcuJamME9 .mbr-section-btn {
  color: #263d5a;
}
.cid-tYcuJamME9 .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
.cid-tYcuJaG9Gi {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-tYcuJaG9Gi .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-tYcuJaG9Gi .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-tYcuJaG9Gi .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-tYcuJaG9Gi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYcuJaG9Gi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYcuJaG9Gi .mbr-section-title {
  color: #263d5a;
}
.cid-tYcuJb3Xp9 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-tYcuJb3Xp9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYcuJb3Xp9 .wrapper {
  max-width: 350px;
}
.cid-tYcuJb3Xp9 .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-tYcuJb3Xp9 .row {
    text-align: center;
  }
  .cid-tYcuJb3Xp9 .social-row {
    justify-content: center;
  }
}
.cid-tYcuJb3Xp9 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYcuJb3Xp9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYcuJb3Xp9 .list {
    margin-bottom: 0rem;
  }
}
.cid-tYcuJb3Xp9 .mbr-text {
  color: #000000;
}
.cid-tYcuJb3Xp9 .mbr-iconfont {
  color: black;
}
.cid-tYcuJb3Xp9 H5 {
  color: #000000;
}
.cid-tYcuJb3Xp9 .copyright {
  color: #000000;
}
.cid-tYdaC0BT7O {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tYdaC0BT7O nav.navbar {
  position: fixed;
}
.cid-tYdaC0BT7O .navbar-nav {
  margin: auto;
}
.cid-tYdaC0BT7O .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYdaC0BT7O .dropdown-item:hover,
.cid-tYdaC0BT7O .dropdown-item:focus {
  background: #ef3c08 !important;
  color: white !important;
}
.cid-tYdaC0BT7O .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYdaC0BT7O .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYdaC0BT7O .navbar-short,
.cid-tYdaC0BT7O .opened {
  background: #ffe885 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-tYdaC0BT7O .navbar-short .nav-link,
.cid-tYdaC0BT7O .opened .nav-link,
.cid-tYdaC0BT7O .navbar-short .navbar-caption,
.cid-tYdaC0BT7O .opened .navbar-caption,
.cid-tYdaC0BT7O .navbar-short .mbr-iconfont,
.cid-tYdaC0BT7O .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-tYdaC0BT7O .navbar-short .hamburger span,
.cid-tYdaC0BT7O .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-tYdaC0BT7O .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-tYdaC0BT7O .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYdaC0BT7O .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYdaC0BT7O .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYdaC0BT7O .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYdaC0BT7O .container {
  display: flex;
  margin: auto;
}
.cid-tYdaC0BT7O .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYdaC0BT7O .dropdown-menu,
.cid-tYdaC0BT7O .navbar.opened {
  background: #ffe885 !important;
}
.cid-tYdaC0BT7O .nav-item:focus,
.cid-tYdaC0BT7O .nav-link:focus {
  outline: none;
}
.cid-tYdaC0BT7O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYdaC0BT7O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYdaC0BT7O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYdaC0BT7O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYdaC0BT7O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYdaC0BT7O .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYdaC0BT7O .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffe885;
}
.cid-tYdaC0BT7O .navbar.opened {
  transition: all 0.3s;
}
.cid-tYdaC0BT7O .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYdaC0BT7O .navbar .navbar-logo img {
  width: auto;
}
.cid-tYdaC0BT7O .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tYdaC0BT7O .navbar.collapsed {
  justify-content: center;
}
.cid-tYdaC0BT7O .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYdaC0BT7O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYdaC0BT7O .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tYdaC0BT7O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYdaC0BT7O .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYdaC0BT7O .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tYdaC0BT7O .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYdaC0BT7O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYdaC0BT7O .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYdaC0BT7O .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYdaC0BT7O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYdaC0BT7O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYdaC0BT7O .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYdaC0BT7O .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tYdaC0BT7O .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYdaC0BT7O .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYdaC0BT7O .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYdaC0BT7O .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYdaC0BT7O .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYdaC0BT7O .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tYdaC0BT7O .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYdaC0BT7O .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYdaC0BT7O .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYdaC0BT7O .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-tYdaC0BT7O .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYdaC0BT7O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYdaC0BT7O .dropdown-item.active,
.cid-tYdaC0BT7O .dropdown-item:active {
  background-color: transparent;
}
.cid-tYdaC0BT7O .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYdaC0BT7O .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYdaC0BT7O .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYdaC0BT7O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe885;
}
.cid-tYdaC0BT7O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYdaC0BT7O .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYdaC0BT7O ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tYdaC0BT7O .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYdaC0BT7O button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tYdaC0BT7O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb5b5;
}
.cid-tYdaC0BT7O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYdaC0BT7O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYdaC0BT7O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYdaC0BT7O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYdaC0BT7O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYdaC0BT7O nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYdaC0BT7O nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYdaC0BT7O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYdaC0BT7O .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tYdaC0BT7O a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYdaC0BT7O .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYdaC0BT7O .navbar {
    height: 70px;
  }
  .cid-tYdaC0BT7O .navbar.opened {
    height: auto;
  }
  .cid-tYdaC0BT7O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYdaC1a5N3 {
  background-image: url("../../../assets/images/synthetic-turf2-1440x797.jpg");
}
.cid-tYdaC1a5N3 .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYdaC1a5N3 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC1a5N3 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC1a5N3 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYdaC1a5N3 .col-12 {
  position: relative;
}
.cid-tYdaC1a5N3 .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tYdaC1a5N3 .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tYdaC1a5N3 .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tYdaC1a5N3 .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tYdaC1a5N3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC1a5N3 .mbr-text,
.cid-tYdaC1a5N3 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYdaC1AhEF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYdaC1AhEF .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #263d5a;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: visible;
}
.cid-tYdaC1AhEF .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin: 0;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYdaC1AhEF .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC1AhEF .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC1AhEF .card-wrapper {
  overflow: visible;
  margin-bottom: 2rem;
}
.cid-tYdaC1AhEF .card-text {
  color: #263d5a;
  text-align: center;
}
.cid-tYdaC1AhEF .card-title,
.cid-tYdaC1AhEF .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYdaC1AhEF .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tYdaC1AhEF .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tYdaC1AhEF .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdaC1AhEF .card-link {
  text-align: center;
}
.cid-tYdaC26CjW {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-tYdaC26CjW .mbr-section-title {
  color: #ffffff;
}
.cid-tYdaC26CjW .mbr-text,
.cid-tYdaC26CjW .mbr-section-btn {
  color: #000000;
}
.cid-tYdaC2uLHq {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tYdaC2uLHq .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #000000;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.cid-tYdaC2uLHq .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC2uLHq .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC2uLHq .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC2uLHq .card-wrapper {
  overflow: visible;
}
.cid-tYdaC2uLHq .card-text {
  color: #263d5a;
}
.cid-tYdaC2uLHq .card-title,
.cid-tYdaC2uLHq .iconfont-wrapper {
  color: #000000;
}
.cid-tYdaC2uLHq .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdaC2uLHq .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-tYdaC2uLHq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdaC39d57 {
  padding-top: 560px;
  background-image: url("../../../assets/images/lawn-sprinkler-system.webp");
}
.cid-tYdaC3xi2X {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdaC3xi2X .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC3xi2X .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYdaC3xi2X .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYdaC3xi2X .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC3xi2X .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC3xi2X .mbr-text {
  color: #000000;
}
.cid-tYdaC3UKfW {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tYdaC3UKfW .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYdaC3UKfW .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC3UKfW .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC3UKfW .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-tYdaC3UKfW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdaC3UKfW .row {
  justify-content: center;
}
.cid-tYdaC3UKfW .card-text {
  color: #263d5a;
}
.cid-tYdaC3UKfW .card-title,
.cid-tYdaC3UKfW .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYdaC3UKfW .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdaC3UKfW .mbr-section-title {
  color: #263d5a;
}
.cid-tYdaC3UKfW .card-price,
.cid-tYdaC3UKfW .iconfont-wrapper {
  color: #263d5a;
}
.cid-tYdaC4G0M5 {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdaC4G0M5 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC4G0M5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC4G0M5 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC4G0M5 .mbr-text,
.cid-tYdaC4G0M5 .mbr-section-btn {
  color: #000000;
}
.cid-tYdaC4G0M5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC5kAzN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYdaC5kAzN .container {
  margin-right: 0rem;
  max-width: 1500px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-tYdaC5kAzN .container {
    padding: 0 1rem;
  }
}
.cid-tYdaC5kAzN .item-wrapper {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 30px;
  flex-flow: column nowrap;
  padding: 2rem;
}
.cid-tYdaC5kAzN .item-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  pointer-events: none;
  height: 100%;
  background: black;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tYdaC5kAzN .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translateY(0px);
}
.cid-tYdaC5kAzN .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-tYdaC5kAzN .item-wrapper:hover:before {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-tYdaC5kAzN .item-wrapper .item-content {
    opacity: 1;
    transform: translateY(0px);
  }
  .cid-tYdaC5kAzN .item-wrapper .item-img {
    transform: scale(1.1);
  }
  .cid-tYdaC5kAzN .item-wrapper:before {
    opacity: 0.5;
  }
}
.cid-tYdaC5kAzN .item-img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.cid-tYdaC5kAzN .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tYdaC5kAzN .item-content {
  z-index: 3;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(5px);
  position: relative;
}
.cid-tYdaC5kAzN .item:focus,
.cid-tYdaC5kAzN span:focus {
  outline: none;
}
.cid-tYdaC5kAzN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYdaC5kAzN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYdaC5kAzN .mbr-section-title {
  color: #232323;
}
.cid-tYdaC5kAzN .mbr-text,
.cid-tYdaC5kAzN .mbr-section-btn {
  color: #ffffff;
}
.cid-tYdaC5kAzN .item-title {
  color: #ffffff;
}
.cid-tYdaC5PH9G {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdaC5PH9G .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC5PH9G .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYdaC5PH9G .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYdaC5PH9G .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC5PH9G .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC5PH9G .mbr-text {
  color: #000000;
}
.cid-tYdaC6fMGY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYdaC6fMGY .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tYdaC6fMGY img {
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-tYdaC6fMGY img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-tYdaC6fMGY .row {
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tYdaC6fMGY .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYdaC6fMGY .row {
    padding: 1rem 0rem;
  }
}
.cid-tYdaC6fMGY .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC6fMGY .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-tYdaC6fMGY span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-tYdaC6fMGY .collapsed span {
  transform: rotate(0deg);
}
.cid-tYdaC6fMGY .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYdaC6fMGY .panel-group {
  width: 100%;
}
.cid-tYdaC6fMGY .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-tYdaC6fMGY .card {
  border-radius: 0px;
}
.cid-tYdaC6fMGY .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: #ffe885;
  padding: 0 1rem;
}
.cid-tYdaC6fMGY .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYdaC6fMGY .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYdaC6fMGY .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-tYdaC6fMGY .card .panel-body {
  background: #ffe885;
  padding: 1rem 1rem 0;
}
.cid-tYdaC6fMGY .panel-text {
  color: #263d5a;
}
.cid-tYdaC6fMGY .header-text,
.cid-tYdaC6fMGY .sign {
  color: #263d5a;
  text-align: right;
}
.cid-tYdaC6fMGY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC6fMGY .header-text,
.cid-tYdaC6fMGY .sign,
.cid-tYdaC6fMGY .card-header {
  color: #000000;
  text-align: left;
}
.cid-tYdaC6fMGY .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdaC6YLqz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-tYdaC6YLqz .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYdaC6YLqz .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC6YLqz .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC6YLqz .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYdaC6YLqz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC6YLqz .mbr-text,
.cid-tYdaC6YLqz .mbr-section-btn {
  color: #263d5a;
  text-align: center;
}
.cid-tYdaC6YLqz .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tYdaC7rKph {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYdaC7rKph .item-img {
  position: relative;
}
.cid-tYdaC7rKph .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-tYdaC7rKph .cardbg {
  background: #ffe885;
  height: 100%;
  min-height: 300px;
}
.cid-tYdaC7rKph .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-tYdaC7rKph .image-wrapper {
  overflow: hidden;
}
.cid-tYdaC7rKph .item1 {
  margin-bottom: 2rem !important;
}
.cid-tYdaC7rKph .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tYdaC7rKph .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-tYdaC7rKph .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-tYdaC7rKph .item1,
.cid-tYdaC7rKph .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-tYdaC7rKph .item1 .item:hover,
.cid-tYdaC7rKph .item .item:hover {
  cursor: pointer;
}
.cid-tYdaC7rKph .item1:hover .link-icon-wrapper span,
.cid-tYdaC7rKph .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-tYdaC7rKph .card2 {
    margin-top: 1rem;
  }
}
.cid-tYdaC7rKph .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-tYdaC7rKph .link-icon-wrapper .icon-wrap {
  background: #ffe885;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-tYdaC7rKph .link-icon-wrapper .icon-wrap span {
  color: #ffe885;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-tYdaC7rKph .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-tYdaC7rKph .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-tYdaC7rKph .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-tYdaC7rKph .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-tYdaC7rKph .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tYdaC7rKph .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-tYdaC7rKph img,
.cid-tYdaC7rKph .item-img {
  width: 100%;
}
.cid-tYdaC7rKph .item:focus,
.cid-tYdaC7rKph span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-tYdaC7rKph .item {
    margin-bottom: 1rem;
  }
}
.cid-tYdaC7rKph .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tYdaC7rKph .item-title {
  text-align: center;
  color: #000000;
}
.cid-tYdaC7rKph .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tYdaC7rKph .mbr-section-subtitle,
.cid-tYdaC7rKph .subtitle-wrap,
.cid-tYdaC7rKph .mbr-section-btn {
  text-align: left;
}
.cid-tYdaC7rKph .mbr-text,
.cid-tYdaC7rKph .item .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYdaC85jST {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-tYdaC85jST img {
  border-radius: 30px;
}
.cid-tYdaC85jST .my-auto {
  margin-bottom: 0!important;
}
.cid-tYdaC85jST .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC85jST .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC85jST .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-tYdaC85jST .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdaC85jST .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdaC85jST .mbr-text,
.cid-tYdaC85jST .mbr-section-btn {
  color: #263d5a;
}
.cid-tYdaC85jST .mbr-section-subtitle {
  color: #000000;
}
.cid-tYdaC8yoXm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYdaC8yoXm .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYdaC8yoXm .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tYdaC8yoXm .row .img-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-tYdaC938om {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdaC938om .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdaC938om .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdaC938om .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdaC938om .mbr-text,
.cid-tYdaC938om .mbr-section-btn {
  color: #000000;
}
.cid-tYdaC938om .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdgngv5rs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tYdgngv5rs .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tYdgngv5rs .row {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYdgngv5rs .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdgngv5rs .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdgngv5rs .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-tYdgngv5rs span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-tYdgngv5rs .collapsed span {
  transform: rotate(0deg);
}
.cid-tYdgngv5rs .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYdgngv5rs .panel-group {
  width: 100%;
}
.cid-tYdgngv5rs .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-tYdgngv5rs .card {
  border-radius: 0px;
}
.cid-tYdgngv5rs .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-tYdgngv5rs .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYdgngv5rs .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYdgngv5rs .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-tYdgngv5rs .panel-text {
  color: #ffffff;
}
.cid-tYdgngv5rs .header-text,
.cid-tYdgngv5rs .sign {
  color: #263d5a;
  text-align: right;
}
.cid-tYdgngv5rs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tYdgngv5rs .header-text,
.cid-tYdgngv5rs .sign,
.cid-tYdgngv5rs .card-header {
  color: #ffffff;
  text-align: left;
}
.cid-tYdgngv5rs .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdgngv5rs .mbr-section-title DIV {
  text-align: center;
}
.cid-tYdaC9ztvZ {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-tYdaC9ztvZ .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-tYdaC9ztvZ .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-tYdaC9ztvZ .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-tYdaC9ztvZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYdaC9ztvZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYdaC9ztvZ .mbr-section-title {
  color: #000000;
}
.cid-tYdaCa7N1f {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-tYdaCa7N1f .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYdaCa7N1f .wrapper {
  max-width: 350px;
}
.cid-tYdaCa7N1f .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-tYdaCa7N1f .row {
    text-align: center;
  }
  .cid-tYdaCa7N1f .social-row {
    justify-content: center;
  }
}
.cid-tYdaCa7N1f .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYdaCa7N1f .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYdaCa7N1f .list {
    margin-bottom: 0rem;
  }
}
.cid-tYdaCa7N1f .mbr-text {
  color: #000000;
}
.cid-tYdaCa7N1f .mbr-iconfont {
  color: black;
}
.cid-tYdaCa7N1f H5 {
  color: #000000;
}
.cid-tYdaCa7N1f .copyright {
  color: #000000;
}
.cid-tYdhAK9awB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tYdhAK9awB nav.navbar {
  position: fixed;
}
.cid-tYdhAK9awB .navbar-nav {
  margin: auto;
}
.cid-tYdhAK9awB .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYdhAK9awB .dropdown-item:hover,
.cid-tYdhAK9awB .dropdown-item:focus {
  background: #ef3c08 !important;
  color: white !important;
}
.cid-tYdhAK9awB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYdhAK9awB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYdhAK9awB .navbar-short,
.cid-tYdhAK9awB .opened {
  background: #ffe885 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-tYdhAK9awB .navbar-short .nav-link,
.cid-tYdhAK9awB .opened .nav-link,
.cid-tYdhAK9awB .navbar-short .navbar-caption,
.cid-tYdhAK9awB .opened .navbar-caption,
.cid-tYdhAK9awB .navbar-short .mbr-iconfont,
.cid-tYdhAK9awB .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-tYdhAK9awB .navbar-short .hamburger span,
.cid-tYdhAK9awB .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-tYdhAK9awB .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-tYdhAK9awB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYdhAK9awB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYdhAK9awB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYdhAK9awB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYdhAK9awB .container {
  display: flex;
  margin: auto;
}
.cid-tYdhAK9awB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYdhAK9awB .dropdown-menu,
.cid-tYdhAK9awB .navbar.opened {
  background: #ffe885 !important;
}
.cid-tYdhAK9awB .nav-item:focus,
.cid-tYdhAK9awB .nav-link:focus {
  outline: none;
}
.cid-tYdhAK9awB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYdhAK9awB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYdhAK9awB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYdhAK9awB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYdhAK9awB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYdhAK9awB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYdhAK9awB .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffe885;
}
.cid-tYdhAK9awB .navbar.opened {
  transition: all 0.3s;
}
.cid-tYdhAK9awB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYdhAK9awB .navbar .navbar-logo img {
  width: auto;
}
.cid-tYdhAK9awB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tYdhAK9awB .navbar.collapsed {
  justify-content: center;
}
.cid-tYdhAK9awB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYdhAK9awB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYdhAK9awB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tYdhAK9awB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYdhAK9awB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYdhAK9awB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tYdhAK9awB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYdhAK9awB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYdhAK9awB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYdhAK9awB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYdhAK9awB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYdhAK9awB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYdhAK9awB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYdhAK9awB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tYdhAK9awB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYdhAK9awB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYdhAK9awB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYdhAK9awB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYdhAK9awB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYdhAK9awB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tYdhAK9awB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYdhAK9awB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYdhAK9awB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYdhAK9awB .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-tYdhAK9awB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYdhAK9awB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYdhAK9awB .dropdown-item.active,
.cid-tYdhAK9awB .dropdown-item:active {
  background-color: transparent;
}
.cid-tYdhAK9awB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYdhAK9awB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYdhAK9awB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYdhAK9awB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe885;
}
.cid-tYdhAK9awB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYdhAK9awB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYdhAK9awB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tYdhAK9awB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYdhAK9awB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tYdhAK9awB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb5b5;
}
.cid-tYdhAK9awB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYdhAK9awB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYdhAK9awB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYdhAK9awB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYdhAK9awB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYdhAK9awB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYdhAK9awB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYdhAK9awB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYdhAK9awB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tYdhAK9awB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYdhAK9awB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYdhAK9awB .navbar {
    height: 70px;
  }
  .cid-tYdhAK9awB .navbar.opened {
    height: auto;
  }
  .cid-tYdhAK9awB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYdhAL8QTw {
  background-image: url("../../../assets/images/landscaping-specialist.webp");
}
.cid-tYdhAL8QTw .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYdhAL8QTw .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhAL8QTw .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdhAL8QTw .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYdhAL8QTw .col-12 {
  position: relative;
}
.cid-tYdhAL8QTw .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tYdhAL8QTw .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tYdhAL8QTw .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tYdhAL8QTw .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tYdhAL8QTw .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhAL8QTw .mbr-text,
.cid-tYdhAL8QTw .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYdhALHwU3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYdhALHwU3 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #263d5a;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: visible;
}
.cid-tYdhALHwU3 .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin: 0;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYdhALHwU3 .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdhALHwU3 .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhALHwU3 .card-wrapper {
  overflow: visible;
  margin-bottom: 2rem;
}
.cid-tYdhALHwU3 .card-text {
  color: #263d5a;
  text-align: center;
}
.cid-tYdhALHwU3 .card-title,
.cid-tYdhALHwU3 .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYdhALHwU3 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tYdhALHwU3 .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tYdhALHwU3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdhALHwU3 .card-link {
  text-align: center;
}
.cid-tYdhAMgtM6 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-tYdhAMgtM6 .mbr-section-title {
  color: #ffffff;
}
.cid-tYdhAMgtM6 .mbr-text,
.cid-tYdhAMgtM6 .mbr-section-btn {
  color: #000000;
}
.cid-tYdhAMGwUY {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tYdhAMGwUY .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #000000;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.cid-tYdhAMGwUY .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhAMGwUY .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdhAMGwUY .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhAMGwUY .card-wrapper {
  overflow: visible;
}
.cid-tYdhAMGwUY .card-text {
  color: #263d5a;
}
.cid-tYdhAMGwUY .card-title,
.cid-tYdhAMGwUY .iconfont-wrapper {
  color: #000000;
}
.cid-tYdhAMGwUY .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdhAMGwUY .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-tYdhAMGwUY .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdhANlhhA {
  padding-top: 560px;
  background-image: url("../../../assets/images/landscaping-specialist1-1600x912.jpg");
}
.cid-tYdhANM2kL {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdhANM2kL .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhANM2kL .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYdhANM2kL .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYdhANM2kL .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhANM2kL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhANM2kL .mbr-text {
  color: #000000;
}
.cid-tYdhAOcbIL {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tYdhAOcbIL .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYdhAOcbIL .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhAOcbIL .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdhAOcbIL .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-tYdhAOcbIL .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdhAOcbIL .row {
  justify-content: center;
}
.cid-tYdhAOcbIL .card-text {
  color: #263d5a;
}
.cid-tYdhAOcbIL .card-title,
.cid-tYdhAOcbIL .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYdhAOcbIL .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdhAOcbIL .mbr-section-title {
  color: #263d5a;
}
.cid-tYdhAOcbIL .card-price,
.cid-tYdhAOcbIL .iconfont-wrapper {
  color: #263d5a;
}
.cid-tYdhAORfmn {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdhAORfmn .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhAORfmn .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdhAORfmn .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhAORfmn .mbr-text,
.cid-tYdhAORfmn .mbr-section-btn {
  color: #000000;
}
.cid-tYdhAORfmn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhAPjdZA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYdhAPjdZA .container {
  margin-right: 0rem;
  max-width: 1500px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-tYdhAPjdZA .container {
    padding: 0 1rem;
  }
}
.cid-tYdhAPjdZA .item-wrapper {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 30px;
  flex-flow: column nowrap;
  padding: 2rem;
}
.cid-tYdhAPjdZA .item-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  pointer-events: none;
  height: 100%;
  background: black;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tYdhAPjdZA .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translateY(0px);
}
.cid-tYdhAPjdZA .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-tYdhAPjdZA .item-wrapper:hover:before {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-tYdhAPjdZA .item-wrapper .item-content {
    opacity: 1;
    transform: translateY(0px);
  }
  .cid-tYdhAPjdZA .item-wrapper .item-img {
    transform: scale(1.1);
  }
  .cid-tYdhAPjdZA .item-wrapper:before {
    opacity: 0.5;
  }
}
.cid-tYdhAPjdZA .item-img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.cid-tYdhAPjdZA .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tYdhAPjdZA .item-content {
  z-index: 3;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(5px);
  position: relative;
}
.cid-tYdhAPjdZA .item:focus,
.cid-tYdhAPjdZA span:focus {
  outline: none;
}
.cid-tYdhAPjdZA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYdhAPjdZA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYdhAPjdZA .mbr-section-title {
  color: #232323;
}
.cid-tYdhAPjdZA .mbr-text,
.cid-tYdhAPjdZA .mbr-section-btn {
  color: #ffffff;
}
.cid-tYdhAPjdZA .item-title {
  color: #ffffff;
}
.cid-tYdhAPSCOU {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdhAPSCOU .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhAPSCOU .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYdhAPSCOU .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYdhAPSCOU .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhAPSCOU .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhAPSCOU .mbr-text {
  color: #000000;
}
.cid-tYdhAQpKQy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYdhAQpKQy .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tYdhAQpKQy img {
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-tYdhAQpKQy img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-tYdhAQpKQy .row {
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tYdhAQpKQy .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYdhAQpKQy .row {
    padding: 1rem 0rem;
  }
}
.cid-tYdhAQpKQy .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhAQpKQy .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-tYdhAQpKQy span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-tYdhAQpKQy .collapsed span {
  transform: rotate(0deg);
}
.cid-tYdhAQpKQy .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYdhAQpKQy .panel-group {
  width: 100%;
}
.cid-tYdhAQpKQy .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-tYdhAQpKQy .card {
  border-radius: 0px;
}
.cid-tYdhAQpKQy .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: #ffe885;
  padding: 0 1rem;
}
.cid-tYdhAQpKQy .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYdhAQpKQy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYdhAQpKQy .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-tYdhAQpKQy .card .panel-body {
  background: #ffe885;
  padding: 1rem 1rem 0;
}
.cid-tYdhAQpKQy .panel-text {
  color: #263d5a;
}
.cid-tYdhAQpKQy .header-text,
.cid-tYdhAQpKQy .sign {
  color: #263d5a;
  text-align: right;
}
.cid-tYdhAQpKQy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhAQpKQy .header-text,
.cid-tYdhAQpKQy .sign,
.cid-tYdhAQpKQy .card-header {
  color: #000000;
  text-align: left;
}
.cid-tYdhAQpKQy .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdhAR9Uyj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-tYdhAR9Uyj .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYdhAR9Uyj .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhAR9Uyj .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdhAR9Uyj .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYdhAR9Uyj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhAR9Uyj .mbr-text,
.cid-tYdhAR9Uyj .mbr-section-btn {
  color: #263d5a;
  text-align: center;
}
.cid-tYdhAR9Uyj .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tYdhARCL7k {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYdhARCL7k .item-img {
  position: relative;
}
.cid-tYdhARCL7k .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-tYdhARCL7k .cardbg {
  background: #ffe885;
  height: 100%;
  min-height: 300px;
}
.cid-tYdhARCL7k .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-tYdhARCL7k .image-wrapper {
  overflow: hidden;
}
.cid-tYdhARCL7k .item1 {
  margin-bottom: 2rem !important;
}
.cid-tYdhARCL7k .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tYdhARCL7k .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-tYdhARCL7k .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-tYdhARCL7k .item1,
.cid-tYdhARCL7k .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-tYdhARCL7k .item1 .item:hover,
.cid-tYdhARCL7k .item .item:hover {
  cursor: pointer;
}
.cid-tYdhARCL7k .item1:hover .link-icon-wrapper span,
.cid-tYdhARCL7k .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-tYdhARCL7k .card2 {
    margin-top: 1rem;
  }
}
.cid-tYdhARCL7k .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-tYdhARCL7k .link-icon-wrapper .icon-wrap {
  background: #ffe885;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-tYdhARCL7k .link-icon-wrapper .icon-wrap span {
  color: #ffe885;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-tYdhARCL7k .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-tYdhARCL7k .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-tYdhARCL7k .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-tYdhARCL7k .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-tYdhARCL7k .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tYdhARCL7k .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-tYdhARCL7k img,
.cid-tYdhARCL7k .item-img {
  width: 100%;
}
.cid-tYdhARCL7k .item:focus,
.cid-tYdhARCL7k span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-tYdhARCL7k .item {
    margin-bottom: 1rem;
  }
}
.cid-tYdhARCL7k .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tYdhARCL7k .item-title {
  text-align: center;
  color: #000000;
}
.cid-tYdhARCL7k .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tYdhARCL7k .mbr-section-subtitle,
.cid-tYdhARCL7k .subtitle-wrap,
.cid-tYdhARCL7k .mbr-section-btn {
  text-align: left;
}
.cid-tYdhARCL7k .mbr-text,
.cid-tYdhARCL7k .item .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYdhASkx8d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-tYdhASkx8d img {
  border-radius: 30px;
}
.cid-tYdhASkx8d .my-auto {
  margin-bottom: 0!important;
}
.cid-tYdhASkx8d .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhASkx8d .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdhASkx8d .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-tYdhASkx8d .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdhASkx8d .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdhASkx8d .mbr-text,
.cid-tYdhASkx8d .mbr-section-btn {
  color: #263d5a;
}
.cid-tYdhASkx8d .mbr-section-subtitle {
  color: #000000;
}
.cid-tYdhASPPDD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYdhASPPDD .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYdhASPPDD .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tYdhASPPDD .row .img-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-tYdhATiwoq {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdhATiwoq .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdhATiwoq .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdhATiwoq .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhATiwoq .mbr-text,
.cid-tYdhATiwoq .mbr-section-btn {
  color: #000000;
}
.cid-tYdhATiwoq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tYdhATiwoq .mbr-section-subtitle {
  text-align: center;
}
.cid-tYdhATTgYe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tYdhATTgYe .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tYdhATTgYe .row {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYdhATTgYe .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdhATTgYe .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdhATTgYe .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-tYdhATTgYe span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-tYdhATTgYe .collapsed span {
  transform: rotate(0deg);
}
.cid-tYdhATTgYe .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYdhATTgYe .panel-group {
  width: 100%;
}
.cid-tYdhATTgYe .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-tYdhATTgYe .card {
  border-radius: 0px;
}
.cid-tYdhATTgYe .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-tYdhATTgYe .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYdhATTgYe .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYdhATTgYe .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-tYdhATTgYe .panel-text {
  color: #ffffff;
}
.cid-tYdhATTgYe .header-text,
.cid-tYdhATTgYe .sign {
  color: #263d5a;
  text-align: right;
}
.cid-tYdhATTgYe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tYdhATTgYe .header-text,
.cid-tYdhATTgYe .sign,
.cid-tYdhATTgYe .card-header {
  color: #ffffff;
  text-align: left;
}
.cid-tYdhATTgYe .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdhATTgYe .mbr-section-title DIV {
  text-align: center;
}
.cid-tYdhAUrKNa {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-tYdhAUrKNa .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-tYdhAUrKNa .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-tYdhAUrKNa .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-tYdhAUrKNa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYdhAUrKNa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYdhAUrKNa .mbr-section-title {
  color: #000000;
}
.cid-tYdhAV2oDf {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-tYdhAV2oDf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYdhAV2oDf .wrapper {
  max-width: 350px;
}
.cid-tYdhAV2oDf .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-tYdhAV2oDf .row {
    text-align: center;
  }
  .cid-tYdhAV2oDf .social-row {
    justify-content: center;
  }
}
.cid-tYdhAV2oDf .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYdhAV2oDf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYdhAV2oDf .list {
    margin-bottom: 0rem;
  }
}
.cid-tYdhAV2oDf .mbr-text {
  color: #000000;
}
.cid-tYdhAV2oDf .mbr-iconfont {
  color: black;
}
.cid-tYdhAV2oDf H5 {
  color: #000000;
}
.cid-tYdhAV2oDf .copyright {
  color: #000000;
}
.cid-tYdnMxsCFZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tYdnMxsCFZ nav.navbar {
  position: fixed;
}
.cid-tYdnMxsCFZ .navbar-nav {
  margin: auto;
}
.cid-tYdnMxsCFZ .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYdnMxsCFZ .dropdown-item:hover,
.cid-tYdnMxsCFZ .dropdown-item:focus {
  background: #ef3c08 !important;
  color: white !important;
}
.cid-tYdnMxsCFZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYdnMxsCFZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYdnMxsCFZ .navbar-short,
.cid-tYdnMxsCFZ .opened {
  background: #ffe885 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-tYdnMxsCFZ .navbar-short .nav-link,
.cid-tYdnMxsCFZ .opened .nav-link,
.cid-tYdnMxsCFZ .navbar-short .navbar-caption,
.cid-tYdnMxsCFZ .opened .navbar-caption,
.cid-tYdnMxsCFZ .navbar-short .mbr-iconfont,
.cid-tYdnMxsCFZ .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-tYdnMxsCFZ .navbar-short .hamburger span,
.cid-tYdnMxsCFZ .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-tYdnMxsCFZ .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-tYdnMxsCFZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYdnMxsCFZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYdnMxsCFZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYdnMxsCFZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYdnMxsCFZ .container {
  display: flex;
  margin: auto;
}
.cid-tYdnMxsCFZ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYdnMxsCFZ .dropdown-menu,
.cid-tYdnMxsCFZ .navbar.opened {
  background: #ffe885 !important;
}
.cid-tYdnMxsCFZ .nav-item:focus,
.cid-tYdnMxsCFZ .nav-link:focus {
  outline: none;
}
.cid-tYdnMxsCFZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYdnMxsCFZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYdnMxsCFZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYdnMxsCFZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYdnMxsCFZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYdnMxsCFZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYdnMxsCFZ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffe885;
}
.cid-tYdnMxsCFZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tYdnMxsCFZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYdnMxsCFZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tYdnMxsCFZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tYdnMxsCFZ .navbar.collapsed {
  justify-content: center;
}
.cid-tYdnMxsCFZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYdnMxsCFZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYdnMxsCFZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tYdnMxsCFZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYdnMxsCFZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYdnMxsCFZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tYdnMxsCFZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYdnMxsCFZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYdnMxsCFZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYdnMxsCFZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYdnMxsCFZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYdnMxsCFZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYdnMxsCFZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYdnMxsCFZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tYdnMxsCFZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYdnMxsCFZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYdnMxsCFZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYdnMxsCFZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYdnMxsCFZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYdnMxsCFZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tYdnMxsCFZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYdnMxsCFZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYdnMxsCFZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYdnMxsCFZ .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-tYdnMxsCFZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYdnMxsCFZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYdnMxsCFZ .dropdown-item.active,
.cid-tYdnMxsCFZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tYdnMxsCFZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYdnMxsCFZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYdnMxsCFZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYdnMxsCFZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe885;
}
.cid-tYdnMxsCFZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYdnMxsCFZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYdnMxsCFZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tYdnMxsCFZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYdnMxsCFZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tYdnMxsCFZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb5b5;
}
.cid-tYdnMxsCFZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYdnMxsCFZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYdnMxsCFZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYdnMxsCFZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYdnMxsCFZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYdnMxsCFZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYdnMxsCFZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYdnMxsCFZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYdnMxsCFZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tYdnMxsCFZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYdnMxsCFZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYdnMxsCFZ .navbar {
    height: 70px;
  }
  .cid-tYdnMxsCFZ .navbar.opened {
    height: auto;
  }
  .cid-tYdnMxsCFZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYdnMyqJit {
  background-image: url("../../../assets/images/landscaping-techniques3-1173x814.jpg");
}
.cid-tYdnMyqJit .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYdnMyqJit .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMyqJit .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMyqJit .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYdnMyqJit .col-12 {
  position: relative;
}
.cid-tYdnMyqJit .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tYdnMyqJit .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tYdnMyqJit .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tYdnMyqJit .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tYdnMyqJit .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMyqJit .mbr-text,
.cid-tYdnMyqJit .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYdnMyX7NI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYdnMyX7NI .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #263d5a;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: visible;
}
.cid-tYdnMyX7NI .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin: 0;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYdnMyX7NI .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMyX7NI .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMyX7NI .card-wrapper {
  overflow: visible;
  margin-bottom: 2rem;
}
.cid-tYdnMyX7NI .card-text {
  color: #263d5a;
  text-align: center;
}
.cid-tYdnMyX7NI .card-title,
.cid-tYdnMyX7NI .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYdnMyX7NI .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tYdnMyX7NI .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tYdnMyX7NI .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdnMyX7NI .card-link {
  text-align: center;
}
.cid-tYdnMzxzzY {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-tYdnMzxzzY .mbr-section-title {
  color: #ffffff;
}
.cid-tYdnMzxzzY .mbr-text,
.cid-tYdnMzxzzY .mbr-section-btn {
  color: #000000;
}
.cid-tYdnMzXR8I {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tYdnMzXR8I .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #000000;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.cid-tYdnMzXR8I .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMzXR8I .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMzXR8I .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMzXR8I .card-wrapper {
  overflow: visible;
}
.cid-tYdnMzXR8I .card-text {
  color: #263d5a;
}
.cid-tYdnMzXR8I .card-title,
.cid-tYdnMzXR8I .iconfont-wrapper {
  color: #000000;
}
.cid-tYdnMzXR8I .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdnMzXR8I .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-tYdnMzXR8I .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdnMAGLBf {
  padding-top: 560px;
  background-image: url("../../../assets/images/landscaping-techniques1-2000x837.jpg");
}
.cid-tYdnMB28Ie {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdnMB28Ie .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMB28Ie .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYdnMB28Ie .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYdnMB28Ie .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMB28Ie .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMB28Ie .mbr-text {
  color: #000000;
}
.cid-tYdnMBvMSX {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tYdnMBvMSX .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYdnMBvMSX .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMBvMSX .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMBvMSX .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-tYdnMBvMSX .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdnMBvMSX .row {
  justify-content: center;
}
.cid-tYdnMBvMSX .card-text {
  color: #263d5a;
}
.cid-tYdnMBvMSX .card-title,
.cid-tYdnMBvMSX .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-tYdnMBvMSX .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdnMBvMSX .mbr-section-title {
  color: #263d5a;
}
.cid-tYdnMBvMSX .card-price,
.cid-tYdnMBvMSX .iconfont-wrapper {
  color: #263d5a;
}
.cid-tYdnMCcm5O {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdnMCcm5O .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMCcm5O .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMCcm5O .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMCcm5O .mbr-text,
.cid-tYdnMCcm5O .mbr-section-btn {
  color: #000000;
}
.cid-tYdnMCcm5O .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMCD3ZI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYdnMCD3ZI .container {
  margin-right: 0rem;
  max-width: 1500px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-tYdnMCD3ZI .container {
    padding: 0 1rem;
  }
}
.cid-tYdnMCD3ZI .item-wrapper {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 30px;
  flex-flow: column nowrap;
  padding: 2rem;
}
.cid-tYdnMCD3ZI .item-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  pointer-events: none;
  height: 100%;
  background: black;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tYdnMCD3ZI .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translateY(0px);
}
.cid-tYdnMCD3ZI .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-tYdnMCD3ZI .item-wrapper:hover:before {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-tYdnMCD3ZI .item-wrapper .item-content {
    opacity: 1;
    transform: translateY(0px);
  }
  .cid-tYdnMCD3ZI .item-wrapper .item-img {
    transform: scale(1.1);
  }
  .cid-tYdnMCD3ZI .item-wrapper:before {
    opacity: 0.5;
  }
}
.cid-tYdnMCD3ZI .item-img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.cid-tYdnMCD3ZI .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tYdnMCD3ZI .item-content {
  z-index: 3;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(5px);
  position: relative;
}
.cid-tYdnMCD3ZI .item:focus,
.cid-tYdnMCD3ZI span:focus {
  outline: none;
}
.cid-tYdnMCD3ZI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYdnMCD3ZI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYdnMCD3ZI .mbr-section-title {
  color: #232323;
}
.cid-tYdnMCD3ZI .mbr-text,
.cid-tYdnMCD3ZI .mbr-section-btn {
  color: #ffffff;
}
.cid-tYdnMCD3ZI .item-title {
  color: #ffffff;
}
.cid-tYdnMD8m0Y {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdnMD8m0Y .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMD8m0Y .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tYdnMD8m0Y .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-tYdnMD8m0Y .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMD8m0Y .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMD8m0Y .mbr-text {
  color: #000000;
}
.cid-tYdnMDEUfp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYdnMDEUfp .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tYdnMDEUfp img {
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-tYdnMDEUfp img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-tYdnMDEUfp .row {
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tYdnMDEUfp .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYdnMDEUfp .row {
    padding: 1rem 0rem;
  }
}
.cid-tYdnMDEUfp .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMDEUfp .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-tYdnMDEUfp span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-tYdnMDEUfp .collapsed span {
  transform: rotate(0deg);
}
.cid-tYdnMDEUfp .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYdnMDEUfp .panel-group {
  width: 100%;
}
.cid-tYdnMDEUfp .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-tYdnMDEUfp .card {
  border-radius: 0px;
}
.cid-tYdnMDEUfp .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: #ffe885;
  padding: 0 1rem;
}
.cid-tYdnMDEUfp .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYdnMDEUfp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYdnMDEUfp .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-tYdnMDEUfp .card .panel-body {
  background: #ffe885;
  padding: 1rem 1rem 0;
}
.cid-tYdnMDEUfp .panel-text {
  color: #263d5a;
}
.cid-tYdnMDEUfp .header-text,
.cid-tYdnMDEUfp .sign {
  color: #263d5a;
  text-align: right;
}
.cid-tYdnMDEUfp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMDEUfp .header-text,
.cid-tYdnMDEUfp .sign,
.cid-tYdnMDEUfp .card-header {
  color: #000000;
  text-align: left;
}
.cid-tYdnMDEUfp .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdnMEmL6i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-tYdnMEmL6i .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tYdnMEmL6i .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMEmL6i .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMEmL6i .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tYdnMEmL6i .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMEmL6i .mbr-text,
.cid-tYdnMEmL6i .mbr-section-btn {
  color: #263d5a;
  text-align: center;
}
.cid-tYdnMEmL6i .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tYdnMEXraO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYdnMEXraO .item-img {
  position: relative;
}
.cid-tYdnMEXraO .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-tYdnMEXraO .cardbg {
  background: #ffe885;
  height: 100%;
  min-height: 300px;
}
.cid-tYdnMEXraO .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-tYdnMEXraO .image-wrapper {
  overflow: hidden;
}
.cid-tYdnMEXraO .item1 {
  margin-bottom: 2rem !important;
}
.cid-tYdnMEXraO .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tYdnMEXraO .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-tYdnMEXraO .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-tYdnMEXraO .item1,
.cid-tYdnMEXraO .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-tYdnMEXraO .item1 .item:hover,
.cid-tYdnMEXraO .item .item:hover {
  cursor: pointer;
}
.cid-tYdnMEXraO .item1:hover .link-icon-wrapper span,
.cid-tYdnMEXraO .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-tYdnMEXraO .card2 {
    margin-top: 1rem;
  }
}
.cid-tYdnMEXraO .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-tYdnMEXraO .link-icon-wrapper .icon-wrap {
  background: #ffe885;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-tYdnMEXraO .link-icon-wrapper .icon-wrap span {
  color: #ffe885;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-tYdnMEXraO .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-tYdnMEXraO .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-tYdnMEXraO .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-tYdnMEXraO .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-tYdnMEXraO .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tYdnMEXraO .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-tYdnMEXraO img,
.cid-tYdnMEXraO .item-img {
  width: 100%;
}
.cid-tYdnMEXraO .item:focus,
.cid-tYdnMEXraO span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-tYdnMEXraO .item {
    margin-bottom: 1rem;
  }
}
.cid-tYdnMEXraO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tYdnMEXraO .item-title {
  text-align: center;
  color: #000000;
}
.cid-tYdnMEXraO .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tYdnMEXraO .mbr-section-subtitle,
.cid-tYdnMEXraO .subtitle-wrap,
.cid-tYdnMEXraO .mbr-section-btn {
  text-align: left;
}
.cid-tYdnMEXraO .mbr-text,
.cid-tYdnMEXraO .item .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tYdnMFGvNe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-tYdnMFGvNe img {
  border-radius: 30px;
}
.cid-tYdnMFGvNe .my-auto {
  margin-bottom: 0!important;
}
.cid-tYdnMFGvNe .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMFGvNe .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMFGvNe .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-tYdnMFGvNe .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYdnMFGvNe .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMFGvNe .mbr-text,
.cid-tYdnMFGvNe .mbr-section-btn {
  color: #263d5a;
}
.cid-tYdnMFGvNe .mbr-section-subtitle {
  color: #000000;
}
.cid-tYdnMGblYy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tYdnMGblYy .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYdnMGblYy .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tYdnMGblYy .row .img-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-tYdnMGExMr {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffe885;
}
.cid-tYdnMGExMr .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tYdnMGExMr .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMGExMr .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMGExMr .mbr-text,
.cid-tYdnMGExMr .mbr-section-btn {
  color: #000000;
}
.cid-tYdnMGExMr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tYdnMHa2f7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tYdnMHa2f7 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tYdnMHa2f7 .row {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tYdnMHa2f7 .row {
    padding: 2rem 1rem;
  }
}
.cid-tYdnMHa2f7 .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tYdnMHa2f7 .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-tYdnMHa2f7 span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-tYdnMHa2f7 .collapsed span {
  transform: rotate(0deg);
}
.cid-tYdnMHa2f7 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYdnMHa2f7 .panel-group {
  width: 100%;
}
.cid-tYdnMHa2f7 .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-tYdnMHa2f7 .card {
  border-radius: 0px;
}
.cid-tYdnMHa2f7 .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-tYdnMHa2f7 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYdnMHa2f7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYdnMHa2f7 .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-tYdnMHa2f7 .panel-text {
  color: #ffffff;
}
.cid-tYdnMHa2f7 .header-text,
.cid-tYdnMHa2f7 .sign {
  color: #263d5a;
  text-align: right;
}
.cid-tYdnMHa2f7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tYdnMHa2f7 .header-text,
.cid-tYdnMHa2f7 .sign,
.cid-tYdnMHa2f7 .card-header {
  color: #ffffff;
  text-align: left;
}
.cid-tYdnMHa2f7 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tYdnMHa2f7 .mbr-section-title DIV {
  text-align: center;
}
.cid-tYdnMHLMQN {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-tYdnMHLMQN .google-map {
  height: 30rem;
  position: relative;
  border-radius: 30px;
}
.cid-tYdnMHLMQN .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  opacity: 0.8;
  backdrop-filter: blur(3.5px);
}
.cid-tYdnMHLMQN .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-tYdnMHLMQN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYdnMHLMQN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYdnMHLMQN .mbr-section-title {
  color: #000000;
}
.cid-tYdnMImKGR {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-tYdnMImKGR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYdnMImKGR .wrapper {
  max-width: 350px;
}
.cid-tYdnMImKGR .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-tYdnMImKGR .row {
    text-align: center;
  }
  .cid-tYdnMImKGR .social-row {
    justify-content: center;
  }
}
.cid-tYdnMImKGR .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYdnMImKGR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYdnMImKGR .list {
    margin-bottom: 0rem;
  }
}
.cid-tYdnMImKGR .mbr-text {
  color: #000000;
}
.cid-tYdnMImKGR .mbr-iconfont {
  color: black;
}
.cid-tYdnMImKGR H5 {
  color: #000000;
}
.cid-tYdnMImKGR .copyright {
  color: #000000;
}
