body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Newsreader', serif;
  font-size: 4.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.055rem;
}
.display-2 {
  font-family: 'Newsreader', serif;
  font-size: 3.38rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.197rem;
}
.display-4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.975rem;
}
.display-5 {
  font-family: 'Newsreader', serif;
  font-size: 2.13rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.3845rem;
}
.display-7 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 0.8125rem;
}
/* ---- 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.76rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.29rem;
    font-size: calc( 1.7399999999999998rem + (4.7 - 1.7399999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7399999999999998rem + (4.7 - 1.7399999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.704rem;
    font-size: calc( 1.476rem + (3.38 - 1.476) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.476rem + (3.38 - 1.476) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.704rem;
    font-size: calc( 1.2825rem + (2.13 - 1.2825) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2825rem + (2.13 - 1.2825) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #f03a0b !important;
}
.bg-success {
  background-color: #526b51 !important;
}
.bg-info {
  background-color: #c9beb5 !important;
}
.bg-warning {
  background-color: #a09099 !important;
}
.bg-danger {
  background-color: #694f5f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f03a0b !important;
  border-color: #f03a0b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9d2607 !important;
  border-color: #9d2607 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6e7a7a !important;
  border-color: #6e7a7a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #454c4c !important;
  border-color: #454c4c !important;
}
.btn-info,
.btn-info:active {
  background-color: #c9beb5 !important;
  border-color: #c9beb5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a49283 !important;
  border-color: #a49283 !important;
}
.btn-success,
.btn-success:active {
  background-color: #526b51 !important;
  border-color: #526b51 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c3a2c !important;
  border-color: #2c3a2c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a09099 !important;
  border-color: #a09099 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #75646e !important;
  border-color: #75646e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #694f5f !important;
  border-color: #694f5f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #382a32 !important;
  border-color: #382a32 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #45494e !important;
  border-color: #45494e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1c1e20 !important;
  border-color: #1c1e20 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #f03a0b;
}
.btn-primary-outline:before,
.btn-primary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #f03a0b;
  opacity: 0.1;
}
.btn-primary-outline:after,
.btn-primary-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #f03a0b;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #f03a0b;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-primary-outline .mbr-iconfont:before,
.btn-primary-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #f03a0b !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline:hover .mbr-iconfont,
.btn-primary-outline:focus .mbr-iconfont,
.btn-primary-outline.focus .mbr-iconfont,
.btn-primary-outline.active .mbr-iconfont {
  background: #f03a0b;
  color: #ffffff;
}
.btn-primary-outline:hover .mbr-iconfont::before,
.btn-primary-outline:focus .mbr-iconfont::before,
.btn-primary-outline.focus .mbr-iconfont::before,
.btn-primary-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-primary-outline:hover:after,
.btn-primary-outline:focus:after,
.btn-primary-outline.focus:after,
.btn-primary-outline.active:after {
  transform: scaleX(1);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f03a0b !important;
  border-color: #f03a0b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #6e7a7a;
}
.btn-secondary-outline:before,
.btn-secondary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #6e7a7a;
  opacity: 0.1;
}
.btn-secondary-outline:after,
.btn-secondary-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #6e7a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #6e7a7a;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-secondary-outline .mbr-iconfont:before,
.btn-secondary-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6e7a7a !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline:hover .mbr-iconfont,
.btn-secondary-outline:focus .mbr-iconfont,
.btn-secondary-outline.focus .mbr-iconfont,
.btn-secondary-outline.active .mbr-iconfont {
  background: #6e7a7a;
  color: #ffffff;
}
.btn-secondary-outline:hover .mbr-iconfont::before,
.btn-secondary-outline:focus .mbr-iconfont::before,
.btn-secondary-outline.focus .mbr-iconfont::before,
.btn-secondary-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-secondary-outline:hover:after,
.btn-secondary-outline:focus:after,
.btn-secondary-outline.focus:after,
.btn-secondary-outline.active:after {
  transform: scaleX(1);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6e7a7a !important;
  border-color: #6e7a7a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #c9beb5;
}
.btn-info-outline:before,
.btn-info-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #c9beb5;
  opacity: 0.1;
}
.btn-info-outline:after,
.btn-info-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #c9beb5;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #c9beb5;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-info-outline .mbr-iconfont:before,
.btn-info-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c9beb5 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline:hover .mbr-iconfont,
.btn-info-outline:focus .mbr-iconfont,
.btn-info-outline.focus .mbr-iconfont,
.btn-info-outline.active .mbr-iconfont {
  background: #c9beb5;
  color: #ffffff;
}
.btn-info-outline:hover .mbr-iconfont::before,
.btn-info-outline:focus .mbr-iconfont::before,
.btn-info-outline.focus .mbr-iconfont::before,
.btn-info-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-info-outline:hover:after,
.btn-info-outline:focus:after,
.btn-info-outline.focus:after,
.btn-info-outline.active:after {
  transform: scaleX(1);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c9beb5 !important;
  border-color: #c9beb5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #526b51;
}
.btn-success-outline:before,
.btn-success-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #526b51;
  opacity: 0.1;
}
.btn-success-outline:after,
.btn-success-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #526b51;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #526b51;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-success-outline .mbr-iconfont:before,
.btn-success-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #526b51 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline:hover .mbr-iconfont,
.btn-success-outline:focus .mbr-iconfont,
.btn-success-outline.focus .mbr-iconfont,
.btn-success-outline.active .mbr-iconfont {
  background: #526b51;
  color: #ffffff;
}
.btn-success-outline:hover .mbr-iconfont::before,
.btn-success-outline:focus .mbr-iconfont::before,
.btn-success-outline.focus .mbr-iconfont::before,
.btn-success-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-success-outline:hover:after,
.btn-success-outline:focus:after,
.btn-success-outline.focus:after,
.btn-success-outline.active:after {
  transform: scaleX(1);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #526b51 !important;
  border-color: #526b51 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #a09099;
}
.btn-warning-outline:before,
.btn-warning-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #a09099;
  opacity: 0.1;
}
.btn-warning-outline:after,
.btn-warning-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #a09099;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #a09099;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-warning-outline .mbr-iconfont:before,
.btn-warning-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a09099 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline:hover .mbr-iconfont,
.btn-warning-outline:focus .mbr-iconfont,
.btn-warning-outline.focus .mbr-iconfont,
.btn-warning-outline.active .mbr-iconfont {
  background: #a09099;
  color: #ffffff;
}
.btn-warning-outline:hover .mbr-iconfont::before,
.btn-warning-outline:focus .mbr-iconfont::before,
.btn-warning-outline.focus .mbr-iconfont::before,
.btn-warning-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-warning-outline:hover:after,
.btn-warning-outline:focus:after,
.btn-warning-outline.focus:after,
.btn-warning-outline.active:after {
  transform: scaleX(1);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a09099 !important;
  border-color: #a09099 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #694f5f;
}
.btn-danger-outline:before,
.btn-danger-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #694f5f;
  opacity: 0.1;
}
.btn-danger-outline:after,
.btn-danger-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #694f5f;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #694f5f;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-danger-outline .mbr-iconfont:before,
.btn-danger-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #694f5f !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline:hover .mbr-iconfont,
.btn-danger-outline:focus .mbr-iconfont,
.btn-danger-outline.focus .mbr-iconfont,
.btn-danger-outline.active .mbr-iconfont {
  background: #694f5f;
  color: #ffffff;
}
.btn-danger-outline:hover .mbr-iconfont::before,
.btn-danger-outline:focus .mbr-iconfont::before,
.btn-danger-outline.focus .mbr-iconfont::before,
.btn-danger-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-danger-outline:hover:after,
.btn-danger-outline:focus:after,
.btn-danger-outline.focus:after,
.btn-danger-outline.active:after {
  transform: scaleX(1);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #694f5f !important;
  border-color: #694f5f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #45494e;
}
.btn-black-outline:before,
.btn-black-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #45494e;
  opacity: 0.1;
}
.btn-black-outline:after,
.btn-black-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #45494e;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #45494e;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-black-outline .mbr-iconfont:before,
.btn-black-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #45494e !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline:hover .mbr-iconfont,
.btn-black-outline:focus .mbr-iconfont,
.btn-black-outline.focus .mbr-iconfont,
.btn-black-outline.active .mbr-iconfont {
  background: #45494e;
  color: #ffffff;
}
.btn-black-outline:hover .mbr-iconfont::before,
.btn-black-outline:focus .mbr-iconfont::before,
.btn-black-outline.focus .mbr-iconfont::before,
.btn-black-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-black-outline:hover:after,
.btn-black-outline:focus:after,
.btn-black-outline.focus:after,
.btn-black-outline.active:after {
  transform: scaleX(1);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #45494e !important;
  border-color: #45494e !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #fafafa;
}
.btn-white-outline:before,
.btn-white-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fafafa;
  opacity: 0.1;
}
.btn-white-outline:after,
.btn-white-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fafafa;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #fafafa;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-white-outline .mbr-iconfont:before,
.btn-white-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fafafa !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline:hover .mbr-iconfont,
.btn-white-outline:focus .mbr-iconfont,
.btn-white-outline.focus .mbr-iconfont,
.btn-white-outline.active .mbr-iconfont {
  background: #fafafa;
  color: #7a7a7a;
}
.btn-white-outline:hover .mbr-iconfont::before,
.btn-white-outline:focus .mbr-iconfont::before,
.btn-white-outline.focus .mbr-iconfont::before,
.btn-white-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-white-outline:hover:after,
.btn-white-outline:focus:after,
.btn-white-outline.focus:after,
.btn-white-outline.active:after {
  transform: scaleX(1);
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f03a0b !important;
}
.text-secondary {
  color: #6e7a7a !important;
}
.text-success {
  color: #526b51 !important;
}
.text-info {
  color: #c9beb5 !important;
}
.text-warning {
  color: #a09099 !important;
}
.text-danger {
  color: #694f5f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #45494E !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8e2207 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3e4444 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #263125 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #9e8a7a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #6d5d66 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2f232a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #151618 !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: #f03a0b;
}
.nav-tabs .nav-link:not(.active) {
  color: #26292C;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c9beb5;
}
.alert-warning {
  background-color: #a09099;
}
.alert-danger {
  background-color: #694f5f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f03a0b;
  border-color: #f03a0b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f03a0b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdd5ca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #91ab90;
}
.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: #dbd5d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #aa8e9f;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.975rem;
}
.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: #f03a0b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.975rem;
}
blockquote {
  border-color: #f03a0b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f03a0b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f03a0b;
}
.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: #f03a0b;
  border-bottom-color: #f03a0b;
}
.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: #f03a0b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #6e7a7a !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='%23f03a0b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1599px) {
  .container,
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container {
  max-width: 1920px;
  margin: 0 auto;
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .row {
    margin-left: -18px;
    margin-right: -18px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 60px;
  padding: 15px 30px;
  font-weight: 500;
  line-height: 1 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@keyframes btn-move {
  0% {
    left: 0;
  }
  49% {
    left: -100%;
  }
  50% {
    left: -100%;
    opacity: 0;
  }
  51% {
    left: 100%;
    opacity: 0;
  }
  52% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
@keyframes btn-move-hover {
  0% {
    left: 0;
  }
  49% {
    left: 100%;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  51% {
    left: -100%;
    opacity: 0;
  }
  52% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
.cid-tWvMHtdmcZ {
  background-color: transparent;
}
.cid-tWvMHtdmcZ .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tWvMHtdmcZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tWvMHtdmcZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWvMHtdmcZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWvMHtdmcZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tWvMHtdmcZ .menu_box .navbar.opened,
  .cid-tWvMHtdmcZ .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tWvMHtdmcZ .navbar-dropdown {
  position: relative !important;
}
.cid-tWvMHtdmcZ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tWvMHtdmcZ .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWvMHtdmcZ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tWvMHtdmcZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tWvMHtdmcZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tWvMHtdmcZ .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #3283fb;
  }
  .cid-tWvMHtdmcZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tWvMHtdmcZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tWvMHtdmcZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tWvMHtdmcZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tWvMHtdmcZ .offcanvas-body .mbr-text,
  .cid-tWvMHtdmcZ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tWvMHtdmcZ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tWvMHtdmcZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tWvMHtdmcZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-tWvMHtdmcZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tWvMHtdmcZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tWvMHtdmcZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tWvMHtdmcZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tWvMHtdmcZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tWvMHtdmcZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWvMHtdmcZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tWvMHtdmcZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tWvMHtdmcZ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tWvMHtdmcZ .lg_brand {
    margin: 0 1rem;
  }
  .cid-tWvMHtdmcZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: fit-content;
    justify-content: center;
    min-width: 200px;
    margin: 0 auto;
    background-color: #e2e7f8;
    border-radius: 25px;
  }
}
.cid-tWvMHtdmcZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tWvMHtdmcZ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWvMHtdmcZ .nav-item {
    margin: 0 !important;
  }
}
.cid-tWvMHtdmcZ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  opacity: .5;
}
.cid-tWvMHtdmcZ .nav-item .nav-link:hover,
.cid-tWvMHtdmcZ .nav-item .nav-link:focus {
  color: #f03a0b !important;
  opacity: 1;
}
.cid-tWvMHtdmcZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tWvMHtdmcZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tWvMHtdmcZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tWvMHtdmcZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWvMHtdmcZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tWvMHtdmcZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tWvMHtdmcZ .offcanvas_box {
    display: none;
  }
}
.cid-tWvMHtdmcZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tWvMHtdmcZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tWvMHtdmcZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tWvMHtdmcZ .container {
  display: flex;
  margin: auto;
}
.cid-tWvMHtdmcZ .iconfont-wrapper {
  color: #222222;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tWvMHtdmcZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tWvMHtdmcZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tWvMHtdmcZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tWvMHtdmcZ .navbar-nav {
    margin: 0;
  }
}
.cid-tWvMHtdmcZ .dropdown-menu,
.cid-tWvMHtdmcZ .navbar.opened {
  background-color: false !important;
}
.cid-tWvMHtdmcZ .nav-item:focus,
.cid-tWvMHtdmcZ .nav-link:focus {
  outline: none;
}
.cid-tWvMHtdmcZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWvMHtdmcZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWvMHtdmcZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWvMHtdmcZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWvMHtdmcZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWvMHtdmcZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWvMHtdmcZ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tWvMHtdmcZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tWvMHtdmcZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tWvMHtdmcZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tWvMHtdmcZ .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tWvMHtdmcZ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tWvMHtdmcZ .navbar.collapsed {
  justify-content: center;
}
.cid-tWvMHtdmcZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWvMHtdmcZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWvMHtdmcZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWvMHtdmcZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWvMHtdmcZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWvMHtdmcZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tWvMHtdmcZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWvMHtdmcZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tWvMHtdmcZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tWvMHtdmcZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWvMHtdmcZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWvMHtdmcZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tWvMHtdmcZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWvMHtdmcZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tWvMHtdmcZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWvMHtdmcZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tWvMHtdmcZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tWvMHtdmcZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tWvMHtdmcZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tWvMHtdmcZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWvMHtdmcZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tWvMHtdmcZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWvMHtdmcZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWvMHtdmcZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWvMHtdmcZ .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-tWvMHtdmcZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tWvMHtdmcZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWvMHtdmcZ .dropdown-item.active,
.cid-tWvMHtdmcZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tWvMHtdmcZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tWvMHtdmcZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWvMHtdmcZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWvMHtdmcZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWvMHtdmcZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tWvMHtdmcZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWvMHtdmcZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #e2e7f8;
}
.cid-tWvMHtdmcZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tWvMHtdmcZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWvMHtdmcZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvMHtdmcZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWvMHtdmcZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWvMHtdmcZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvMHtdmcZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWvMHtdmcZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWvMHtdmcZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWvMHtdmcZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tWvMHtdmcZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWvMHtdmcZ .navbar {
    height: 70px;
  }
  .cid-tWvMHtdmcZ .navbar.opened {
    height: auto;
  }
  .cid-tWvMHtdmcZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWvMHtdmcZ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tWvMHtdmcZ .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tWvMHtdmcZ .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tWvMHtdmcZ .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tWvMHtdmcZ .mbr-section-btn-main .btn {
  margin: 8px;
  padding: 11px 25px;
  min-width: 180px;
  border-radius: 30px !important;
}
.cid-tWvMHtdmcZ .navbar-caption:hover {
  color: #f03a0b;
}
@media (min-width: 992px) {
  .cid-tWvMHtdmcZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tWvMHtdmcZ .text_widget {
  margin-bottom: 32px;
}
.cid-tWvMHtdmcZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tWvMHtdmcZ .text_widget a:hover,
.cid-tWvMHtdmcZ .text_widget a:focus {
  opacity: .8;
}
@media (max-width: 1199px) {
  .cid-tWvMHtdmcZ .navbar-nav.nav-dropdown {
    margin: 0 16px;
    width: 100%;
  }
}
.cid-tWvMHtdmcZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWvMHtdmcZ .navbar-caption {
  color: #222222;
}
.cid-tWvMHtdmcZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWvMHtdmcZ .mbr-section-subtitle,
.cid-tWvMHtdmcZ .text_widget,
.cid-tWvMHtdmcZ .mbr-section-btn {
  text-align: center;
}
.cid-tWvMHtdmcZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tfwmi2c9NS {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artificial-turf-dallas9-612x409.jpg");
}
.cid-tfwmi2c9NS .mbr-overlay {
  background-color: #a09099;
  opacity: 0.4;
}
.cid-tfwmi2c9NS .row {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-tfwmi2c9NS .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tfwmi2c9NS .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-tfwmi2c9NS .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tfwmi2c9NS .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tfwmi2c9NS .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-tfwmi2c9NS .mbr-text {
  margin-top: 5px;
}
.cid-tfwoItJy6f {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #c7b4b4;
}
.cid-tfwoItJy6f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwoItJy6f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwoItJy6f .card-wrapper {
  width: 100%;
}
.cid-tfwoItJy6f .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tfwoItJy6f .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tfwoItJy6f .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tfwoItJy6f .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tfwoItJy6f .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tfwoItJy6f .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tfwoItJy6f .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tfwoItJy6f .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tfwoItJy6f .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tfwoItJy6f .card-title {
    text-align: center !important;
  }
}
.cid-tfwoItJy6f .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tfwoItJy6f .card-text {
    text-align: center !important;
  }
}
.cid-tWw25YSdQc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWw25YSdQc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWw25YSdQc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWw25YSdQc .card-wrapper {
  width: 100%;
}
.cid-tWw25YSdQc .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWw25YSdQc .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWw25YSdQc .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWw25YSdQc .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWw25YSdQc .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWw25YSdQc .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWw25YSdQc .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWw25YSdQc .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWw25YSdQc .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWw25YSdQc .card-title {
    text-align: center !important;
  }
}
.cid-tWw25YSdQc .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWw25YSdQc .card-text {
    text-align: center !important;
  }
}
.cid-tfwtk4qnLp {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tfwtk4qnLp .row {
  justify-content: flex-start;
  align-items: stretch;
}
.cid-tfwtk4qnLp .mbr-section-head {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-tfwtk4qnLp .mbr-section-head {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tfwtk4qnLp .mbr-section-head {
    margin-bottom: 70px;
  }
}
.cid-tfwtk4qnLp .mbr-section-title {
  color: #000000;
}
.cid-tfwtk4qnLp .mbr-section-subtitle {
  color: #45494E;
}
.cid-tfwtk4qnLp .item {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cid-tfwtk4qnLp .item {
    margin-bottom: 50px;
  }
}
.cid-tfwtk4qnLp .item-content {
  display: flex;
  flex-direction: column;
  padding: 10%;
  width: 100%;
  flex-grow: 1;
}
.cid-tfwtk4qnLp .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-tfwtk4qnLp .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-tfwtk4qnLp .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-tfwtk4qnLp .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-tfwtk4qnLp .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-tfwtk4qnLp .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
}
.cid-tfwtk4qnLp .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-tfwtk4qnLp .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tfwtk4qnLp .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tfwtk4qnLp .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-tfwpZv9RW9 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfwpZv9RW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwpZv9RW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwpZv9RW9 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tfwpZv9RW9 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tfwpZv9RW9 .col-img {
    order: 2;
  }
}
.cid-tfwpZv9RW9 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tfwpZv9RW9 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tfwpZv9RW9 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tfwpZv9RW9 .col-tex {
    order: 1;
  }
}
.cid-tfwpZv9RW9 .card-title {
  color: #000000;
  text-align: center;
}
.cid-tfwpZv9RW9 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tfwpZv9RW9 .mbr-section-btn {
  margin-top: 60px;
}
.cid-tfwpZv9RW9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tfwpZv9RW9 .mbr-text,
.cid-tfwpZv9RW9 .mbr-section-btn {
  color: #000000;
}
.cid-tWvYd9t2St {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWvYd9t2St .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvYd9t2St .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWvYd9t2St .container {
    padding: 0 30px;
  }
}
.cid-tWvYd9t2St .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tWvYd9t2St .row {
    margin: 0 -34px;
  }
}
.cid-tWvYd9t2St .title-wrapper {
  margin-bottom: 30px;
}
.cid-tWvYd9t2St .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWvYd9t2St .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWvYd9t2St .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tWvYd9t2St .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tWvYd9t2St .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tWvYd9t2St .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tWvYd9t2St .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWvYd9t2St .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWvYd9t2St .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tWvYd9t2St .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWvYd9t2St .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWvYd9t2St .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tfwraNNowM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfwraNNowM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwraNNowM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwraNNowM .row {
  justify-content: flex-start;
}
.cid-tfwraNNowM .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tfwraNNowM .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tfwraNNowM .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tfwraNNowM .image-wrapper {
  width: 100%;
}
.cid-tfwraNNowM .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tfwraNNowM .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tfwraNNowM .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tfwraNNowM .mbr-text {
    margin-top: 45px;
  }
}
.cid-tfwraNNowM .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tfwraNNowM .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tfwraNNowM .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tfwraNNowM .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tfwraNNowM .mbr-text,
.cid-tfwraNNowM .mbr-section-btn {
  color: #000000;
}
.cid-tWvXD36ntn {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWvXD36ntn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWvXD36ntn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWvXD36ntn .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-tWvXD36ntn .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-tWvXD36ntn .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tWvXD36ntn .item-img {
    width: 100%;
  }
}
.cid-tWvXD36ntn .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tWvXD36ntn .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tWvXD36ntn .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tWvXD36ntn .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tWvXD36ntn .card-title {
  color: #131313;
  text-align: center;
}
.cid-tWvXD36ntn .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-tWvXD36ntn .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-tWvXD36ntn .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-tWvXD36ntn .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tWvXD36ntn .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-tWvXD36ntn .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-tWvXD36ntn .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-tWvXD36ntn .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tWvXD36ntn .card-text,
.cid-tWvXD36ntn .mbr-section-btn {
  text-align: center;
}
.cid-tfwv5px35b {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tfwv5px35b .col-title {
    margin-bottom: 20px;
  }
}
.cid-tfwv5px35b .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tfwv5px35b .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tfwv5px35b .mbr-text {
  color: #000000;
}
.cid-tWvUMmR4K1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f0e4e5;
}
.cid-tWvUMmR4K1 .row {
  flex-direction: row-reverse;
}
.cid-tWvUMmR4K1 .column1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tWvUMmR4K1 .column1 .list-column1 {
  list-style-type: disc;
  padding-left: 1rem;
}
.cid-tWvUMmR4K1 .column1 .list-column1 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWvUMmR4K1 .column1 {
    align-items: center;
    text-align: center;
  }
}
.cid-tWvUMmR4K1 .mbr-text-column1 {
  margin-bottom: 2.3125rem;
}
.cid-tWvUMmR4K1 .cards-row {
  display: flex;
  margin-bottom: 2.5rem;
}
.cid-tWvUMmR4K1 .card-item {
  width: 52px;
  height: 35px;
  margin-right: 1rem;
}
.cid-tWvUMmR4K1 .card-item:last-child {
  margin-right: 0;
}
.cid-tWvUMmR4K1 .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tWvUMmR4K1 .mbr-section-title-column1 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWvUMmR4K1 .mbr-section-title-column2 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWvUMmR4K1 .column2 {
  height: 100%;
}
.cid-tWvUMmR4K1 .column2 .list-column2 {
  list-style-type: none;
  padding-left: 0;
}
.cid-tWvUMmR4K1 .column2 .list-column2 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWvUMmR4K1 .column2 {
    text-align: center;
  }
}
.cid-tWvUMmR4K1 .mbr-text-column2 {
  margin-bottom: 2.3125rem;
}
.cid-tWw1n7cwE3 {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tWw1n7cwE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWw1n7cwE3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwqry9SUC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f0e4e5;
}
.cid-tfwqry9SUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwqry9SUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwqry9SUC .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tfwqry9SUC .mbr-section-head {
    margin-bottom: 18px;
  }
}
.cid-tfwqry9SUC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tfwqry9SUC .mbr-section-subtitle {
  color: #45494E;
}
.cid-tfwqry9SUC .card {
  padding-bottom: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tfwqry9SUC .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-tfwqry9SUC .panel-title {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tfwqry9SUC .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-tfwqry9SUC .panel-title:hover .sign:after {
  opacity: 1;
  transform: scale(1);
}
.cid-tfwqry9SUC .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #45494e;
  margin-left: 1rem;
}
.cid-tfwqry9SUC .panel-group {
  border: none;
}
.cid-tfwqry9SUC .panel-body {
  padding: 0 0 28px;
}
.cid-tfwqry9SUC .panel-text {
  color: #45494E;
}
.cid-tfwqry9SUC .mbr-section-btn {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .cid-tfwqry9SUC .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tfwqry9SUC .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tfwqry9SUC .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tfwqry9SUC .panel-title-edit {
  color: #000000;
}
.cid-tfwqry9SUC .sign {
  width: 34px;
  height: 34px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tfwqry9SUC .sign:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWw1ukE57D {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWw1ukE57D .wrapper {
  background: #f0e4e5;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tWw1ukE57D .wrapper {
    padding: 85px 160px 130px 85px;
    width: 720px;
    transform: translateX(15%);
  }
}
@media (min-width: 1400px) {
  .cid-tWw1ukE57D .wrapper {
    transform: translateX(30%);
  }
}
.cid-tWw1ukE57D .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-tWw1ukE57D .display-5 {
    font-size: 29px;
  }
}
.cid-tWw1ukE57D .mbr-section-subtitle {
  text-align: center;
}
.cid-tWwLHjTIsN {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwLHjTIsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwLHjTIsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwLHjTIsN .container {
    padding: 0 20px;
  }
}
.cid-tWwLHjTIsN .row {
  margin: 0;
}
.cid-tWwLHjTIsN .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWwLHjTIsN .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWwLHjTIsN .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tWwLHjTIsN .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tWwLHjTIsN .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tWwLHjTIsN .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tWwLHjTIsN .mbr-section-title {
  color: #010101;
}
.cid-tWwHnuHJTw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tWwHnuHJTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwHnuHJTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWw33YoZ7k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tWw33YoZ7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWw33YoZ7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWw33YoZ7k .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tWw33YoZ7k .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWw33YoZ7k .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-tWw33YoZ7k .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWw33YoZ7k .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWw33YoZ7k .content-head {
  max-width: 800px;
}
.cid-tWw33YoZ7k .mbr-section-title {
  color: #000000;
}
.cid-tWvNVZ1ngA .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tWvNVZ1ngA .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #f0e4e5;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .img-bg {
    display: none;
  }
}
.cid-tWvNVZ1ngA .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .container {
    padding: 0 !important;
  }
}
.cid-tWvNVZ1ngA .row {
  width: 100%;
  align-items: center;
}
.cid-tWvNVZ1ngA .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #f0e4e5;
  }
}
.cid-tWvNVZ1ngA .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tWvNVZ1ngA .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tWvNVZ1ngA .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWvNVZ1ngA .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWvNVZ1ngA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWvNVZ1ngA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWvNVZ1ngA .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .brand-text {
    margin-top: 45px;
  }
}
.cid-tWvNVZ1ngA .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tWvNVZ1ngA .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tWvNVZ1ngA .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tWvNVZ1ngA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tWvNVZ1ngA .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWvNVZ1ngA .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tWvNVZ1ngA .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tWvNVZ1ngA .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tWvNVZ1ngA .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tWvNVZ1ngA .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tWvNVZ1ngA .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tWvNVZ1ngA .col-link3 {
    padding-left: 0;
  }
}
.cid-tWvNVZ1ngA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tWvNVZ1ngA .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWvNVZ1ngA .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWvNVZ1ngA .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-tWvNVZ1ngA .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tWvNVZ1ngA .copyright {
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWvNVZ1ngA .copyright {
    text-align: center !important;
  }
}
.cid-tWwNofPr5t {
  background-color: transparent;
}
.cid-tWwNofPr5t .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tWwNofPr5t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tWwNofPr5t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwNofPr5t .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWwNofPr5t .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tWwNofPr5t .menu_box .navbar.opened,
  .cid-tWwNofPr5t .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tWwNofPr5t .navbar-dropdown {
  position: relative !important;
}
.cid-tWwNofPr5t .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tWwNofPr5t .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWwNofPr5t .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tWwNofPr5t .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tWwNofPr5t .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tWwNofPr5t .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #3283fb;
  }
  .cid-tWwNofPr5t .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tWwNofPr5t .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tWwNofPr5t .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tWwNofPr5t .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tWwNofPr5t .offcanvas-body .mbr-text,
  .cid-tWwNofPr5t .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tWwNofPr5t .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tWwNofPr5t .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tWwNofPr5t .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-tWwNofPr5t .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tWwNofPr5t .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tWwNofPr5t .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tWwNofPr5t .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tWwNofPr5t ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tWwNofPr5t .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwNofPr5t .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tWwNofPr5t .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tWwNofPr5t li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tWwNofPr5t .lg_brand {
    margin: 0 1rem;
  }
  .cid-tWwNofPr5t .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: fit-content;
    justify-content: center;
    min-width: 200px;
    margin: 0 auto;
    background-color: #e2e7f8;
    border-radius: 25px;
  }
}
.cid-tWwNofPr5t .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tWwNofPr5t .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWwNofPr5t .nav-item {
    margin: 0 !important;
  }
}
.cid-tWwNofPr5t .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  opacity: .5;
}
.cid-tWwNofPr5t .nav-item .nav-link:hover,
.cid-tWwNofPr5t .nav-item .nav-link:focus {
  color: #f03a0b !important;
  opacity: 1;
}
.cid-tWwNofPr5t .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tWwNofPr5t .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tWwNofPr5t .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwNofPr5t .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwNofPr5t .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tWwNofPr5t .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tWwNofPr5t .offcanvas_box {
    display: none;
  }
}
.cid-tWwNofPr5t .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tWwNofPr5t .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tWwNofPr5t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tWwNofPr5t .container {
  display: flex;
  margin: auto;
}
.cid-tWwNofPr5t .iconfont-wrapper {
  color: #222222;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tWwNofPr5t .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tWwNofPr5t .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tWwNofPr5t .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tWwNofPr5t .navbar-nav {
    margin: 0;
  }
}
.cid-tWwNofPr5t .dropdown-menu,
.cid-tWwNofPr5t .navbar.opened {
  background-color: false !important;
}
.cid-tWwNofPr5t .nav-item:focus,
.cid-tWwNofPr5t .nav-link:focus {
  outline: none;
}
.cid-tWwNofPr5t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwNofPr5t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwNofPr5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwNofPr5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwNofPr5t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwNofPr5t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwNofPr5t .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tWwNofPr5t .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tWwNofPr5t .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwNofPr5t .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tWwNofPr5t .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tWwNofPr5t .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tWwNofPr5t .navbar.collapsed {
  justify-content: center;
}
.cid-tWwNofPr5t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwNofPr5t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWwNofPr5t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwNofPr5t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwNofPr5t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwNofPr5t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tWwNofPr5t .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWwNofPr5t .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tWwNofPr5t .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tWwNofPr5t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwNofPr5t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwNofPr5t .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tWwNofPr5t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwNofPr5t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tWwNofPr5t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwNofPr5t .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tWwNofPr5t .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tWwNofPr5t .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tWwNofPr5t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tWwNofPr5t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwNofPr5t .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tWwNofPr5t .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwNofPr5t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwNofPr5t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwNofPr5t .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-tWwNofPr5t .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tWwNofPr5t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwNofPr5t .dropdown-item.active,
.cid-tWwNofPr5t .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwNofPr5t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tWwNofPr5t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwNofPr5t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwNofPr5t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwNofPr5t ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tWwNofPr5t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwNofPr5t button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #e2e7f8;
}
.cid-tWwNofPr5t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tWwNofPr5t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwNofPr5t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwNofPr5t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwNofPr5t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwNofPr5t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwNofPr5t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwNofPr5t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwNofPr5t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwNofPr5t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tWwNofPr5t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWwNofPr5t .navbar {
    height: 70px;
  }
  .cid-tWwNofPr5t .navbar.opened {
    height: auto;
  }
  .cid-tWwNofPr5t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWwNofPr5t .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tWwNofPr5t .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tWwNofPr5t .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tWwNofPr5t .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tWwNofPr5t .mbr-section-btn-main .btn {
  margin: 8px;
  padding: 11px 25px;
  min-width: 180px;
  border-radius: 30px !important;
}
.cid-tWwNofPr5t .navbar-caption:hover {
  color: #f03a0b;
}
@media (min-width: 992px) {
  .cid-tWwNofPr5t .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tWwNofPr5t .text_widget {
  margin-bottom: 32px;
}
.cid-tWwNofPr5t .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tWwNofPr5t .text_widget a:hover,
.cid-tWwNofPr5t .text_widget a:focus {
  opacity: .8;
}
@media (max-width: 1199px) {
  .cid-tWwNofPr5t .navbar-nav.nav-dropdown {
    margin: 0 16px;
    width: 100%;
  }
}
.cid-tWwNofPr5t .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWwNofPr5t .navbar-caption {
  color: #222222;
}
.cid-tWwNofPr5t .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWwNofPr5t .mbr-section-subtitle,
.cid-tWwNofPr5t .text_widget,
.cid-tWwNofPr5t .mbr-section-btn {
  text-align: center;
}
.cid-tWwNofPr5t a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tWwNogOXIO {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artificial-turf-dallas4-612x408.jpg");
}
.cid-tWwNogOXIO .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-tWwNogOXIO .row {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-tWwNogOXIO .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwNogOXIO .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-tWwNogOXIO .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tWwNogOXIO .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWwNogOXIO .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-tWwNogOXIO .mbr-text {
  margin-top: 5px;
}
.cid-tWwNohARPy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a58a8b;
}
.cid-tWwNohARPy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNohARPy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNohARPy .card-wrapper {
  width: 100%;
}
.cid-tWwNohARPy .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwNohARPy .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwNohARPy .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwNohARPy .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwNohARPy .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwNohARPy .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwNohARPy .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwNohARPy .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwNohARPy .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwNohARPy .card-title {
    text-align: center !important;
  }
}
.cid-tWwNohARPy .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwNohARPy .card-text {
    text-align: center !important;
  }
}
.cid-tWwNoihlCQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWwNoihlCQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNoihlCQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNoihlCQ .card-wrapper {
  width: 100%;
}
.cid-tWwNoihlCQ .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwNoihlCQ .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwNoihlCQ .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwNoihlCQ .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwNoihlCQ .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwNoihlCQ .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwNoihlCQ .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwNoihlCQ .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwNoihlCQ .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwNoihlCQ .card-title {
    text-align: center !important;
  }
}
.cid-tWwNoihlCQ .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwNoihlCQ .card-text {
    text-align: center !important;
  }
}
.cid-tWwNoj7crc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwNoj7crc .row {
  justify-content: flex-start;
  align-items: stretch;
}
.cid-tWwNoj7crc .mbr-section-head {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-tWwNoj7crc .mbr-section-head {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tWwNoj7crc .mbr-section-head {
    margin-bottom: 70px;
  }
}
.cid-tWwNoj7crc .mbr-section-title {
  color: #000000;
}
.cid-tWwNoj7crc .mbr-section-subtitle {
  color: #45494E;
}
.cid-tWwNoj7crc .item {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cid-tWwNoj7crc .item {
    margin-bottom: 50px;
  }
}
.cid-tWwNoj7crc .item-content {
  display: flex;
  flex-direction: column;
  padding: 10%;
  width: 100%;
  flex-grow: 1;
}
.cid-tWwNoj7crc .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-tWwNoj7crc .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-tWwNoj7crc .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-tWwNoj7crc .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-tWwNoj7crc .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-tWwNoj7crc .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
}
.cid-tWwNoj7crc .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-tWwNoj7crc .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWwNoj7crc .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tWwNoj7crc .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-tWwNojX3HM {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwNojX3HM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNojX3HM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNojX3HM .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWwNojX3HM .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tWwNojX3HM .col-img {
    order: 2;
  }
}
.cid-tWwNojX3HM .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tWwNojX3HM .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tWwNojX3HM .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tWwNojX3HM .col-tex {
    order: 1;
  }
}
.cid-tWwNojX3HM .card-title {
  color: #000000;
  text-align: center;
}
.cid-tWwNojX3HM .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tWwNojX3HM .mbr-section-btn {
  margin-top: 60px;
}
.cid-tWwNojX3HM .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tWwNojX3HM .mbr-text,
.cid-tWwNojX3HM .mbr-section-btn {
  color: #000000;
}
.cid-tWwNokFeUq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwNokFeUq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNokFeUq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwNokFeUq .container {
    padding: 0 30px;
  }
}
.cid-tWwNokFeUq .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tWwNokFeUq .row {
    margin: 0 -34px;
  }
}
.cid-tWwNokFeUq .title-wrapper {
  margin-bottom: 30px;
}
.cid-tWwNokFeUq .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWwNokFeUq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWwNokFeUq .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tWwNokFeUq .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tWwNokFeUq .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tWwNokFeUq .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tWwNokFeUq .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWwNokFeUq .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWwNokFeUq .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tWwNokFeUq .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWwNokFeUq .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWwNokFeUq .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWwNolyWCZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwNolyWCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNolyWCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNolyWCZ .row {
  justify-content: flex-start;
}
.cid-tWwNolyWCZ .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwNolyWCZ .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWwNolyWCZ .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tWwNolyWCZ .image-wrapper {
  width: 100%;
}
.cid-tWwNolyWCZ .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tWwNolyWCZ .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tWwNolyWCZ .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWwNolyWCZ .mbr-text {
    margin-top: 45px;
  }
}
.cid-tWwNolyWCZ .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tWwNolyWCZ .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tWwNolyWCZ .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tWwNolyWCZ .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tWwNolyWCZ .mbr-text,
.cid-tWwNolyWCZ .mbr-section-btn {
  color: #000000;
}
.cid-tWwNomqhRv {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwNomqhRv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNomqhRv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNomqhRv .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-tWwNomqhRv .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-tWwNomqhRv .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tWwNomqhRv .item-img {
    width: 100%;
  }
}
.cid-tWwNomqhRv .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tWwNomqhRv .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tWwNomqhRv .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwNomqhRv .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tWwNomqhRv .card-title {
  color: #131313;
  text-align: center;
}
.cid-tWwNomqhRv .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-tWwNomqhRv .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-tWwNomqhRv .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-tWwNomqhRv .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tWwNomqhRv .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-tWwNomqhRv .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-tWwNomqhRv .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-tWwNomqhRv .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tWwNomqhRv .card-text,
.cid-tWwNomqhRv .mbr-section-btn {
  text-align: center;
}
.cid-tWwNonqjK5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWwNonqjK5 .col-title {
    margin-bottom: 20px;
  }
}
.cid-tWwNonqjK5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWwNonqjK5 .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tWwNonqjK5 .mbr-text {
  color: #000000;
}
.cid-tWwNooaYBf {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f0e4e5;
}
.cid-tWwNooaYBf .row {
  flex-direction: row-reverse;
}
.cid-tWwNooaYBf .column1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tWwNooaYBf .column1 .list-column1 {
  list-style-type: disc;
  padding-left: 1rem;
}
.cid-tWwNooaYBf .column1 .list-column1 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWwNooaYBf .column1 {
    align-items: center;
    text-align: center;
  }
}
.cid-tWwNooaYBf .mbr-text-column1 {
  margin-bottom: 2.3125rem;
}
.cid-tWwNooaYBf .cards-row {
  display: flex;
  margin-bottom: 2.5rem;
}
.cid-tWwNooaYBf .card-item {
  width: 52px;
  height: 35px;
  margin-right: 1rem;
}
.cid-tWwNooaYBf .card-item:last-child {
  margin-right: 0;
}
.cid-tWwNooaYBf .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tWwNooaYBf .mbr-section-title-column1 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWwNooaYBf .mbr-section-title-column2 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWwNooaYBf .column2 {
  height: 100%;
}
.cid-tWwNooaYBf .column2 .list-column2 {
  list-style-type: none;
  padding-left: 0;
}
.cid-tWwNooaYBf .column2 .list-column2 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWwNooaYBf .column2 {
    text-align: center;
  }
}
.cid-tWwNooaYBf .mbr-text-column2 {
  margin-bottom: 2.3125rem;
}
.cid-tWwNop4Zug {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tWwNop4Zug .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNop4Zug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNopLgu5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f0e4e5;
}
.cid-tWwNopLgu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNopLgu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNopLgu5 .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwNopLgu5 .mbr-section-head {
    margin-bottom: 18px;
  }
}
.cid-tWwNopLgu5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWwNopLgu5 .mbr-section-subtitle {
  color: #45494E;
}
.cid-tWwNopLgu5 .card {
  padding-bottom: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tWwNopLgu5 .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-tWwNopLgu5 .panel-title {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwNopLgu5 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-tWwNopLgu5 .panel-title:hover .sign:after {
  opacity: 1;
  transform: scale(1);
}
.cid-tWwNopLgu5 .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #45494e;
  margin-left: 1rem;
}
.cid-tWwNopLgu5 .panel-group {
  border: none;
}
.cid-tWwNopLgu5 .panel-body {
  padding: 0 0 28px;
}
.cid-tWwNopLgu5 .panel-text {
  color: #45494E;
}
.cid-tWwNopLgu5 .mbr-section-btn {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .cid-tWwNopLgu5 .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tWwNopLgu5 .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tWwNopLgu5 .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tWwNopLgu5 .panel-title-edit {
  color: #000000;
}
.cid-tWwNopLgu5 .sign {
  width: 34px;
  height: 34px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWwNopLgu5 .sign:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWwNoqU3tv {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWwNoqU3tv .wrapper {
  background: #f0e4e5;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tWwNoqU3tv .wrapper {
    padding: 85px 160px 130px 85px;
    width: 720px;
    transform: translateX(15%);
  }
}
@media (min-width: 1400px) {
  .cid-tWwNoqU3tv .wrapper {
    transform: translateX(30%);
  }
}
.cid-tWwNoqU3tv .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-tWwNoqU3tv .display-5 {
    font-size: 29px;
  }
}
.cid-tWwNoqU3tv .mbr-section-subtitle {
  text-align: center;
}
.cid-tWwNorFWx3 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwNorFWx3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNorFWx3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwNorFWx3 .container {
    padding: 0 20px;
  }
}
.cid-tWwNorFWx3 .row {
  margin: 0;
}
.cid-tWwNorFWx3 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWwNorFWx3 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWwNorFWx3 .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tWwNorFWx3 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tWwNorFWx3 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tWwNorFWx3 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tWwNorFWx3 .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tWwNossMEx {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tWwNossMEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNossMEx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQkiAdxw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWwQkiAdxw .container {
    padding: 0 25px;
  }
}
.cid-tWwQkiAdxw .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWwQkiAdxw .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWwQkiAdxw .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tWwQkiAdxw .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWwQkiAdxw .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWwQkiAdxw .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwQkiAdxw .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQkiAdxw .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQkiAdxw .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWwQkiAdxw .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWwQkiAdxw .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWwQkiAdxw .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWwQkiAdxw .mbr-section-title {
  color: #050916;
}
.cid-tWwQkiAdxw .panel-title-edit {
  color: #050916;
}
.cid-tWwQkiAdxw .panel-text {
  color: #050916;
}
.cid-tWwNotmq0t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tWwNotmq0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwNotmq0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwNotmq0t .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tWwNotmq0t .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWwNotmq0t .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-tWwNotmq0t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwNotmq0t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwNotmq0t .content-head {
  max-width: 800px;
}
.cid-tWwNotmq0t .mbr-section-title {
  color: #000000;
}
.cid-tWwNouhkwb .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tWwNouhkwb .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #f0e4e5;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .img-bg {
    display: none;
  }
}
.cid-tWwNouhkwb .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .container {
    padding: 0 !important;
  }
}
.cid-tWwNouhkwb .row {
  width: 100%;
  align-items: center;
}
.cid-tWwNouhkwb .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #f0e4e5;
  }
}
.cid-tWwNouhkwb .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tWwNouhkwb .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tWwNouhkwb .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWwNouhkwb .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWwNouhkwb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwNouhkwb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwNouhkwb .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .brand-text {
    margin-top: 45px;
  }
}
.cid-tWwNouhkwb .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tWwNouhkwb .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tWwNouhkwb .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tWwNouhkwb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tWwNouhkwb .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwNouhkwb .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tWwNouhkwb .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tWwNouhkwb .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tWwNouhkwb .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tWwNouhkwb .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tWwNouhkwb .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tWwNouhkwb .col-link3 {
    padding-left: 0;
  }
}
.cid-tWwNouhkwb .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tWwNouhkwb .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwNouhkwb .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwNouhkwb .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-tWwNouhkwb .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tWwNouhkwb .copyright {
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwNouhkwb .copyright {
    text-align: center !important;
  }
}
.cid-tWwQxsDkXc {
  background-color: transparent;
}
.cid-tWwQxsDkXc .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tWwQxsDkXc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tWwQxsDkXc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwQxsDkXc .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWwQxsDkXc .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tWwQxsDkXc .menu_box .navbar.opened,
  .cid-tWwQxsDkXc .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tWwQxsDkXc .navbar-dropdown {
  position: relative !important;
}
.cid-tWwQxsDkXc .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tWwQxsDkXc .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxsDkXc .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tWwQxsDkXc .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tWwQxsDkXc .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tWwQxsDkXc .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #3283fb;
  }
  .cid-tWwQxsDkXc .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tWwQxsDkXc .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tWwQxsDkXc .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tWwQxsDkXc .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tWwQxsDkXc .offcanvas-body .mbr-text,
  .cid-tWwQxsDkXc .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tWwQxsDkXc .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tWwQxsDkXc .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tWwQxsDkXc .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-tWwQxsDkXc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tWwQxsDkXc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tWwQxsDkXc .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tWwQxsDkXc .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tWwQxsDkXc ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tWwQxsDkXc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwQxsDkXc .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tWwQxsDkXc .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tWwQxsDkXc li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tWwQxsDkXc .lg_brand {
    margin: 0 1rem;
  }
  .cid-tWwQxsDkXc .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: fit-content;
    justify-content: center;
    min-width: 200px;
    margin: 0 auto;
    background-color: #e2e7f8;
    border-radius: 25px;
  }
}
.cid-tWwQxsDkXc .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tWwQxsDkXc .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxsDkXc .nav-item {
    margin: 0 !important;
  }
}
.cid-tWwQxsDkXc .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  opacity: .5;
}
.cid-tWwQxsDkXc .nav-item .nav-link:hover,
.cid-tWwQxsDkXc .nav-item .nav-link:focus {
  color: #f03a0b !important;
  opacity: 1;
}
.cid-tWwQxsDkXc .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tWwQxsDkXc .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tWwQxsDkXc .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxsDkXc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwQxsDkXc .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tWwQxsDkXc .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tWwQxsDkXc .offcanvas_box {
    display: none;
  }
}
.cid-tWwQxsDkXc .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tWwQxsDkXc .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tWwQxsDkXc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tWwQxsDkXc .container {
  display: flex;
  margin: auto;
}
.cid-tWwQxsDkXc .iconfont-wrapper {
  color: #222222;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tWwQxsDkXc .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tWwQxsDkXc .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tWwQxsDkXc .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tWwQxsDkXc .navbar-nav {
    margin: 0;
  }
}
.cid-tWwQxsDkXc .dropdown-menu,
.cid-tWwQxsDkXc .navbar.opened {
  background-color: false !important;
}
.cid-tWwQxsDkXc .nav-item:focus,
.cid-tWwQxsDkXc .nav-link:focus {
  outline: none;
}
.cid-tWwQxsDkXc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwQxsDkXc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwQxsDkXc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwQxsDkXc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwQxsDkXc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwQxsDkXc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwQxsDkXc .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tWwQxsDkXc .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tWwQxsDkXc .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwQxsDkXc .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tWwQxsDkXc .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tWwQxsDkXc .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tWwQxsDkXc .navbar.collapsed {
  justify-content: center;
}
.cid-tWwQxsDkXc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwQxsDkXc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWwQxsDkXc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwQxsDkXc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwQxsDkXc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwQxsDkXc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tWwQxsDkXc .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWwQxsDkXc .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tWwQxsDkXc .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tWwQxsDkXc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwQxsDkXc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwQxsDkXc .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tWwQxsDkXc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwQxsDkXc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tWwQxsDkXc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwQxsDkXc .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tWwQxsDkXc .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tWwQxsDkXc .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tWwQxsDkXc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tWwQxsDkXc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwQxsDkXc .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tWwQxsDkXc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwQxsDkXc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwQxsDkXc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwQxsDkXc .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-tWwQxsDkXc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tWwQxsDkXc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwQxsDkXc .dropdown-item.active,
.cid-tWwQxsDkXc .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwQxsDkXc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tWwQxsDkXc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwQxsDkXc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwQxsDkXc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwQxsDkXc ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tWwQxsDkXc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwQxsDkXc button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #e2e7f8;
}
.cid-tWwQxsDkXc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tWwQxsDkXc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwQxsDkXc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwQxsDkXc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwQxsDkXc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwQxsDkXc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwQxsDkXc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwQxsDkXc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwQxsDkXc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwQxsDkXc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tWwQxsDkXc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWwQxsDkXc .navbar {
    height: 70px;
  }
  .cid-tWwQxsDkXc .navbar.opened {
    height: auto;
  }
  .cid-tWwQxsDkXc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWwQxsDkXc .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tWwQxsDkXc .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tWwQxsDkXc .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tWwQxsDkXc .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tWwQxsDkXc .mbr-section-btn-main .btn {
  margin: 8px;
  padding: 11px 25px;
  min-width: 180px;
  border-radius: 30px !important;
}
.cid-tWwQxsDkXc .navbar-caption:hover {
  color: #f03a0b;
}
@media (min-width: 992px) {
  .cid-tWwQxsDkXc .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tWwQxsDkXc .text_widget {
  margin-bottom: 32px;
}
.cid-tWwQxsDkXc .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tWwQxsDkXc .text_widget a:hover,
.cid-tWwQxsDkXc .text_widget a:focus {
  opacity: .8;
}
@media (max-width: 1199px) {
  .cid-tWwQxsDkXc .navbar-nav.nav-dropdown {
    margin: 0 16px;
    width: 100%;
  }
}
.cid-tWwQxsDkXc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWwQxsDkXc .navbar-caption {
  color: #222222;
}
.cid-tWwQxsDkXc .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWwQxsDkXc .mbr-section-subtitle,
.cid-tWwQxsDkXc .text_widget,
.cid-tWwQxsDkXc .mbr-section-btn {
  text-align: center;
}
.cid-tWwQxsDkXc a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tWwQxtEehj {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artificial-turf-dallas14-612x408.jpg");
}
.cid-tWwQxtEehj .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-tWwQxtEehj .row {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-tWwQxtEehj .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwQxtEehj .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-tWwQxtEehj .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tWwQxtEehj .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWwQxtEehj .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-tWwQxtEehj .mbr-text {
  margin-top: 5px;
}
.cid-tWwQxumBQO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a58a8b;
}
.cid-tWwQxumBQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxumBQO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxumBQO .card-wrapper {
  width: 100%;
}
.cid-tWwQxumBQO .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwQxumBQO .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwQxumBQO .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwQxumBQO .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwQxumBQO .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwQxumBQO .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwQxumBQO .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwQxumBQO .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwQxumBQO .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwQxumBQO .card-title {
    text-align: center !important;
  }
}
.cid-tWwQxumBQO .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwQxumBQO .card-text {
    text-align: center !important;
  }
}
.cid-tWwQxv8cam {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWwQxv8cam .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxv8cam .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxv8cam .card-wrapper {
  width: 100%;
}
.cid-tWwQxv8cam .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwQxv8cam .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwQxv8cam .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwQxv8cam .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwQxv8cam .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwQxv8cam .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwQxv8cam .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwQxv8cam .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwQxv8cam .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwQxv8cam .card-title {
    text-align: center !important;
  }
}
.cid-tWwQxv8cam .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwQxv8cam .card-text {
    text-align: center !important;
  }
}
.cid-tWwQxvOTUG {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwQxvOTUG .row {
  justify-content: flex-start;
  align-items: stretch;
}
.cid-tWwQxvOTUG .mbr-section-head {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-tWwQxvOTUG .mbr-section-head {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tWwQxvOTUG .mbr-section-head {
    margin-bottom: 70px;
  }
}
.cid-tWwQxvOTUG .mbr-section-title {
  color: #000000;
}
.cid-tWwQxvOTUG .mbr-section-subtitle {
  color: #45494E;
}
.cid-tWwQxvOTUG .item {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cid-tWwQxvOTUG .item {
    margin-bottom: 50px;
  }
}
.cid-tWwQxvOTUG .item-content {
  display: flex;
  flex-direction: column;
  padding: 10%;
  width: 100%;
  flex-grow: 1;
}
.cid-tWwQxvOTUG .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-tWwQxvOTUG .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-tWwQxvOTUG .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-tWwQxvOTUG .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-tWwQxvOTUG .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-tWwQxvOTUG .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
}
.cid-tWwQxvOTUG .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-tWwQxvOTUG .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWwQxvOTUG .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tWwQxvOTUG .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-tWwQxwCxq3 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwQxwCxq3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxwCxq3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxwCxq3 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWwQxwCxq3 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxwCxq3 .col-img {
    order: 2;
  }
}
.cid-tWwQxwCxq3 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tWwQxwCxq3 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tWwQxwCxq3 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxwCxq3 .col-tex {
    order: 1;
  }
}
.cid-tWwQxwCxq3 .card-title {
  color: #000000;
  text-align: center;
}
.cid-tWwQxwCxq3 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tWwQxwCxq3 .mbr-section-btn {
  margin-top: 60px;
}
.cid-tWwQxwCxq3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tWwQxwCxq3 .mbr-text,
.cid-tWwQxwCxq3 .mbr-section-btn {
  color: #000000;
}
.cid-tWwQxxh5LY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwQxxh5LY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxxh5LY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwQxxh5LY .container {
    padding: 0 30px;
  }
}
.cid-tWwQxxh5LY .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tWwQxxh5LY .row {
    margin: 0 -34px;
  }
}
.cid-tWwQxxh5LY .title-wrapper {
  margin-bottom: 30px;
}
.cid-tWwQxxh5LY .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWwQxxh5LY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWwQxxh5LY .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tWwQxxh5LY .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tWwQxxh5LY .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tWwQxxh5LY .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tWwQxxh5LY .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWwQxxh5LY .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWwQxxh5LY .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tWwQxxh5LY .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWwQxxh5LY .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWwQxxh5LY .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWwQxyecNa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwQxyecNa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxyecNa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxyecNa .row {
  justify-content: flex-start;
}
.cid-tWwQxyecNa .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwQxyecNa .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWwQxyecNa .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tWwQxyecNa .image-wrapper {
  width: 100%;
}
.cid-tWwQxyecNa .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tWwQxyecNa .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tWwQxyecNa .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWwQxyecNa .mbr-text {
    margin-top: 45px;
  }
}
.cid-tWwQxyecNa .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tWwQxyecNa .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tWwQxyecNa .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tWwQxyecNa .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tWwQxyecNa .mbr-text,
.cid-tWwQxyecNa .mbr-section-btn {
  color: #000000;
}
.cid-tWwQxzbdO1 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwQxzbdO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxzbdO1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxzbdO1 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-tWwQxzbdO1 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-tWwQxzbdO1 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tWwQxzbdO1 .item-img {
    width: 100%;
  }
}
.cid-tWwQxzbdO1 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tWwQxzbdO1 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tWwQxzbdO1 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxzbdO1 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tWwQxzbdO1 .card-title {
  color: #131313;
  text-align: center;
}
.cid-tWwQxzbdO1 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-tWwQxzbdO1 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-tWwQxzbdO1 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-tWwQxzbdO1 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tWwQxzbdO1 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-tWwQxzbdO1 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-tWwQxzbdO1 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-tWwQxzbdO1 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tWwQxzbdO1 .card-text,
.cid-tWwQxzbdO1 .mbr-section-btn {
  text-align: center;
}
.cid-tWwQxAaQ2q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWwQxAaQ2q .col-title {
    margin-bottom: 20px;
  }
}
.cid-tWwQxAaQ2q .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWwQxAaQ2q .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tWwQxAaQ2q .mbr-text {
  color: #000000;
}
.cid-tWwQxAVC0E {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f0e4e5;
}
.cid-tWwQxAVC0E .row {
  flex-direction: row-reverse;
}
.cid-tWwQxAVC0E .column1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tWwQxAVC0E .column1 .list-column1 {
  list-style-type: disc;
  padding-left: 1rem;
}
.cid-tWwQxAVC0E .column1 .list-column1 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWwQxAVC0E .column1 {
    align-items: center;
    text-align: center;
  }
}
.cid-tWwQxAVC0E .mbr-text-column1 {
  margin-bottom: 2.3125rem;
}
.cid-tWwQxAVC0E .cards-row {
  display: flex;
  margin-bottom: 2.5rem;
}
.cid-tWwQxAVC0E .card-item {
  width: 52px;
  height: 35px;
  margin-right: 1rem;
}
.cid-tWwQxAVC0E .card-item:last-child {
  margin-right: 0;
}
.cid-tWwQxAVC0E .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tWwQxAVC0E .mbr-section-title-column1 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWwQxAVC0E .mbr-section-title-column2 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWwQxAVC0E .column2 {
  height: 100%;
}
.cid-tWwQxAVC0E .column2 .list-column2 {
  list-style-type: none;
  padding-left: 0;
}
.cid-tWwQxAVC0E .column2 .list-column2 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWwQxAVC0E .column2 {
    text-align: center;
  }
}
.cid-tWwQxAVC0E .mbr-text-column2 {
  margin-bottom: 2.3125rem;
}
.cid-tWwQxBPNYQ {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tWwQxBPNYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxBPNYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxCGRRv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f0e4e5;
}
.cid-tWwQxCGRRv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxCGRRv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxCGRRv .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwQxCGRRv .mbr-section-head {
    margin-bottom: 18px;
  }
}
.cid-tWwQxCGRRv .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWwQxCGRRv .mbr-section-subtitle {
  color: #45494E;
}
.cid-tWwQxCGRRv .card {
  padding-bottom: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tWwQxCGRRv .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-tWwQxCGRRv .panel-title {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwQxCGRRv .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-tWwQxCGRRv .panel-title:hover .sign:after {
  opacity: 1;
  transform: scale(1);
}
.cid-tWwQxCGRRv .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #45494e;
  margin-left: 1rem;
}
.cid-tWwQxCGRRv .panel-group {
  border: none;
}
.cid-tWwQxCGRRv .panel-body {
  padding: 0 0 28px;
}
.cid-tWwQxCGRRv .panel-text {
  color: #45494E;
}
.cid-tWwQxCGRRv .mbr-section-btn {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .cid-tWwQxCGRRv .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tWwQxCGRRv .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tWwQxCGRRv .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tWwQxCGRRv .panel-title-edit {
  color: #000000;
}
.cid-tWwQxCGRRv .sign {
  width: 34px;
  height: 34px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWwQxCGRRv .sign:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWwQxDVdJn {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWwQxDVdJn .wrapper {
  background: #f0e4e5;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tWwQxDVdJn .wrapper {
    padding: 85px 160px 130px 85px;
    width: 720px;
    transform: translateX(15%);
  }
}
@media (min-width: 1400px) {
  .cid-tWwQxDVdJn .wrapper {
    transform: translateX(30%);
  }
}
.cid-tWwQxDVdJn .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-tWwQxDVdJn .display-5 {
    font-size: 29px;
  }
}
.cid-tWwQxDVdJn .mbr-section-subtitle {
  text-align: center;
}
.cid-tWwQxELc4p {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwQxELc4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxELc4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwQxELc4p .container {
    padding: 0 20px;
  }
}
.cid-tWwQxELc4p .row {
  margin: 0;
}
.cid-tWwQxELc4p .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWwQxELc4p .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tWwQxELc4p .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tWwQxELc4p .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tWwQxELc4p .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tWwQxELc4p .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tWwQxELc4p .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tWwQxFB3jH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tWwQxFB3jH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxFB3jH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxGqXMt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWwQxGqXMt .container {
    padding: 0 25px;
  }
}
.cid-tWwQxGqXMt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWwQxGqXMt .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWwQxGqXMt .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tWwQxGqXMt .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWwQxGqXMt .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWwQxGqXMt .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwQxGqXMt .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQxGqXMt .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQxGqXMt .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWwQxGqXMt .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWwQxGqXMt .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWwQxGqXMt .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWwQxGqXMt .mbr-section-title {
  color: #050916;
}
.cid-tWwQxGqXMt .panel-title-edit {
  color: #050916;
}
.cid-tWwQxGqXMt .panel-text {
  color: #050916;
}
.cid-tWwQxHiFSP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tWwQxHiFSP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQxHiFSP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQxHiFSP .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tWwQxHiFSP .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWwQxHiFSP .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-tWwQxHiFSP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwQxHiFSP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwQxHiFSP .content-head {
  max-width: 800px;
}
.cid-tWwQxHiFSP .mbr-section-title {
  color: #000000;
}
.cid-tWwQxIeHgd .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tWwQxIeHgd .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #f0e4e5;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .img-bg {
    display: none;
  }
}
.cid-tWwQxIeHgd .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .container {
    padding: 0 !important;
  }
}
.cid-tWwQxIeHgd .row {
  width: 100%;
  align-items: center;
}
.cid-tWwQxIeHgd .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #f0e4e5;
  }
}
.cid-tWwQxIeHgd .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tWwQxIeHgd .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tWwQxIeHgd .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWwQxIeHgd .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWwQxIeHgd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwQxIeHgd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwQxIeHgd .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .brand-text {
    margin-top: 45px;
  }
}
.cid-tWwQxIeHgd .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tWwQxIeHgd .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tWwQxIeHgd .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tWwQxIeHgd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tWwQxIeHgd .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwQxIeHgd .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tWwQxIeHgd .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tWwQxIeHgd .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tWwQxIeHgd .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tWwQxIeHgd .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tWwQxIeHgd .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tWwQxIeHgd .col-link3 {
    padding-left: 0;
  }
}
.cid-tWwQxIeHgd .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tWwQxIeHgd .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwQxIeHgd .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwQxIeHgd .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-tWwQxIeHgd .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tWwQxIeHgd .copyright {
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwQxIeHgd .copyright {
    text-align: center !important;
  }
}
.cid-tWwX3mmXM6 {
  background-color: transparent;
}
.cid-tWwX3mmXM6 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tWwX3mmXM6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tWwX3mmXM6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwX3mmXM6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWwX3mmXM6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tWwX3mmXM6 .menu_box .navbar.opened,
  .cid-tWwX3mmXM6 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tWwX3mmXM6 .navbar-dropdown {
  position: relative !important;
}
.cid-tWwX3mmXM6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tWwX3mmXM6 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3mmXM6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tWwX3mmXM6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tWwX3mmXM6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tWwX3mmXM6 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #3283fb;
  }
  .cid-tWwX3mmXM6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tWwX3mmXM6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tWwX3mmXM6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tWwX3mmXM6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tWwX3mmXM6 .offcanvas-body .mbr-text,
  .cid-tWwX3mmXM6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tWwX3mmXM6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tWwX3mmXM6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tWwX3mmXM6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-tWwX3mmXM6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tWwX3mmXM6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tWwX3mmXM6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tWwX3mmXM6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tWwX3mmXM6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tWwX3mmXM6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwX3mmXM6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tWwX3mmXM6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tWwX3mmXM6 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tWwX3mmXM6 .lg_brand {
    margin: 0 1rem;
  }
  .cid-tWwX3mmXM6 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: fit-content;
    justify-content: center;
    min-width: 200px;
    margin: 0 auto;
    background-color: #e2e7f8;
    border-radius: 25px;
  }
}
.cid-tWwX3mmXM6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tWwX3mmXM6 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3mmXM6 .nav-item {
    margin: 0 !important;
  }
}
.cid-tWwX3mmXM6 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  opacity: .5;
}
.cid-tWwX3mmXM6 .nav-item .nav-link:hover,
.cid-tWwX3mmXM6 .nav-item .nav-link:focus {
  color: #f03a0b !important;
  opacity: 1;
}
.cid-tWwX3mmXM6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tWwX3mmXM6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tWwX3mmXM6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3mmXM6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwX3mmXM6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tWwX3mmXM6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tWwX3mmXM6 .offcanvas_box {
    display: none;
  }
}
.cid-tWwX3mmXM6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tWwX3mmXM6 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tWwX3mmXM6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tWwX3mmXM6 .container {
  display: flex;
  margin: auto;
}
.cid-tWwX3mmXM6 .iconfont-wrapper {
  color: #222222;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tWwX3mmXM6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tWwX3mmXM6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tWwX3mmXM6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tWwX3mmXM6 .navbar-nav {
    margin: 0;
  }
}
.cid-tWwX3mmXM6 .dropdown-menu,
.cid-tWwX3mmXM6 .navbar.opened {
  background-color: false !important;
}
.cid-tWwX3mmXM6 .nav-item:focus,
.cid-tWwX3mmXM6 .nav-link:focus {
  outline: none;
}
.cid-tWwX3mmXM6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwX3mmXM6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwX3mmXM6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwX3mmXM6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwX3mmXM6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwX3mmXM6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwX3mmXM6 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tWwX3mmXM6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tWwX3mmXM6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwX3mmXM6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tWwX3mmXM6 .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tWwX3mmXM6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tWwX3mmXM6 .navbar.collapsed {
  justify-content: center;
}
.cid-tWwX3mmXM6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwX3mmXM6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWwX3mmXM6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwX3mmXM6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwX3mmXM6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwX3mmXM6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tWwX3mmXM6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWwX3mmXM6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tWwX3mmXM6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tWwX3mmXM6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwX3mmXM6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwX3mmXM6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tWwX3mmXM6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwX3mmXM6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tWwX3mmXM6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwX3mmXM6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tWwX3mmXM6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tWwX3mmXM6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tWwX3mmXM6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tWwX3mmXM6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwX3mmXM6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tWwX3mmXM6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwX3mmXM6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwX3mmXM6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwX3mmXM6 .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-tWwX3mmXM6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tWwX3mmXM6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwX3mmXM6 .dropdown-item.active,
.cid-tWwX3mmXM6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwX3mmXM6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tWwX3mmXM6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwX3mmXM6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwX3mmXM6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwX3mmXM6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tWwX3mmXM6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwX3mmXM6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #e2e7f8;
}
.cid-tWwX3mmXM6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tWwX3mmXM6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwX3mmXM6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwX3mmXM6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwX3mmXM6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwX3mmXM6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwX3mmXM6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwX3mmXM6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwX3mmXM6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwX3mmXM6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tWwX3mmXM6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWwX3mmXM6 .navbar {
    height: 70px;
  }
  .cid-tWwX3mmXM6 .navbar.opened {
    height: auto;
  }
  .cid-tWwX3mmXM6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWwX3mmXM6 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tWwX3mmXM6 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tWwX3mmXM6 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tWwX3mmXM6 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tWwX3mmXM6 .mbr-section-btn-main .btn {
  margin: 8px;
  padding: 11px 25px;
  min-width: 180px;
  border-radius: 30px !important;
}
.cid-tWwX3mmXM6 .navbar-caption:hover {
  color: #f03a0b;
}
@media (min-width: 992px) {
  .cid-tWwX3mmXM6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tWwX3mmXM6 .text_widget {
  margin-bottom: 32px;
}
.cid-tWwX3mmXM6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tWwX3mmXM6 .text_widget a:hover,
.cid-tWwX3mmXM6 .text_widget a:focus {
  opacity: .8;
}
@media (max-width: 1199px) {
  .cid-tWwX3mmXM6 .navbar-nav.nav-dropdown {
    margin: 0 16px;
    width: 100%;
  }
}
.cid-tWwX3mmXM6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWwX3mmXM6 .navbar-caption {
  color: #222222;
}
.cid-tWwX3mmXM6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWwX3mmXM6 .mbr-section-subtitle,
.cid-tWwX3mmXM6 .text_widget,
.cid-tWwX3mmXM6 .mbr-section-btn {
  text-align: center;
}
.cid-tWwX3mmXM6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tWwX3nsGjc {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artificial-turf-dallas17-612x459.jpg");
}
.cid-tWwX3nsGjc .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-tWwX3nsGjc .row {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-tWwX3nsGjc .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwX3nsGjc .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-tWwX3nsGjc .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tWwX3nsGjc .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWwX3nsGjc .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-tWwX3nsGjc .mbr-text {
  margin-top: 5px;
}
.cid-tWwX3odsoY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a58a8b;
}
.cid-tWwX3odsoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3odsoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3odsoY .card-wrapper {
  width: 100%;
}
.cid-tWwX3odsoY .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwX3odsoY .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwX3odsoY .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwX3odsoY .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwX3odsoY .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwX3odsoY .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwX3odsoY .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwX3odsoY .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwX3odsoY .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwX3odsoY .card-title {
    text-align: center !important;
  }
}
.cid-tWwX3odsoY .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwX3odsoY .card-text {
    text-align: center !important;
  }
}
.cid-tWwX3oXci3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWwX3oXci3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3oXci3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3oXci3 .card-wrapper {
  width: 100%;
}
.cid-tWwX3oXci3 .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwX3oXci3 .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwX3oXci3 .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwX3oXci3 .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwX3oXci3 .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwX3oXci3 .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwX3oXci3 .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwX3oXci3 .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwX3oXci3 .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwX3oXci3 .card-title {
    text-align: center !important;
  }
}
.cid-tWwX3oXci3 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwX3oXci3 .card-text {
    text-align: center !important;
  }
}
.cid-tWwX3pE4Or {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwX3pE4Or .row {
  justify-content: flex-start;
  align-items: stretch;
}
.cid-tWwX3pE4Or .mbr-section-head {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-tWwX3pE4Or .mbr-section-head {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tWwX3pE4Or .mbr-section-head {
    margin-bottom: 70px;
  }
}
.cid-tWwX3pE4Or .mbr-section-title {
  color: #000000;
}
.cid-tWwX3pE4Or .mbr-section-subtitle {
  color: #45494E;
}
.cid-tWwX3pE4Or .item {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cid-tWwX3pE4Or .item {
    margin-bottom: 50px;
  }
}
.cid-tWwX3pE4Or .item-content {
  display: flex;
  flex-direction: column;
  padding: 10%;
  width: 100%;
  flex-grow: 1;
}
.cid-tWwX3pE4Or .item-title {
  color: #45494E;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .cid-tWwX3pE4Or .item-title {
    margin-bottom: 34px !important;
  }
}
.cid-tWwX3pE4Or .item-subtitle {
  color: #45494E;
  margin-bottom: 24px;
}
.cid-tWwX3pE4Or .mbr-section-btn {
  margin-bottom: 20px;
}
.cid-tWwX3pE4Or .mbr-text {
  color: #A2A4A7;
  margin-top: auto;
}
.cid-tWwX3pE4Or .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
}
.cid-tWwX3pE4Or .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cid-tWwX3pE4Or .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWwX3pE4Or .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tWwX3pE4Or .item-wrapper:hover .img-wrap {
  transform: scale(1.1);
}
.cid-tWwX3quFaK {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwX3quFaK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3quFaK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3quFaK .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWwX3quFaK .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3quFaK .col-img {
    order: 2;
  }
}
.cid-tWwX3quFaK .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tWwX3quFaK .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tWwX3quFaK .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3quFaK .col-tex {
    order: 1;
  }
}
.cid-tWwX3quFaK .card-title {
  color: #000000;
  text-align: center;
}
.cid-tWwX3quFaK .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tWwX3quFaK .mbr-section-btn {
  margin-top: 60px;
}
.cid-tWwX3quFaK .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tWwX3quFaK .mbr-text,
.cid-tWwX3quFaK .mbr-section-btn {
  color: #000000;
}
.cid-tWwX3riWT7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwX3riWT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3riWT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwX3riWT7 .container {
    padding: 0 30px;
  }
}
.cid-tWwX3riWT7 .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tWwX3riWT7 .row {
    margin: 0 -34px;
  }
}
.cid-tWwX3riWT7 .title-wrapper {
  margin-bottom: 30px;
}
.cid-tWwX3riWT7 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tWwX3riWT7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWwX3riWT7 .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tWwX3riWT7 .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tWwX3riWT7 .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tWwX3riWT7 .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tWwX3riWT7 .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tWwX3riWT7 .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tWwX3riWT7 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tWwX3riWT7 .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tWwX3riWT7 .mbr-card-title {
  color: #000000;
  text-align: center;
}
.cid-tWwX3riWT7 .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tWwX3seRCG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWwX3seRCG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3seRCG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3seRCG .row {
  justify-content: flex-start;
}
.cid-tWwX3seRCG .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwX3seRCG .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWwX3seRCG .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tWwX3seRCG .image-wrapper {
  width: 100%;
}
.cid-tWwX3seRCG .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tWwX3seRCG .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tWwX3seRCG .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tWwX3seRCG .mbr-text {
    margin-top: 45px;
  }
}
.cid-tWwX3seRCG .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tWwX3seRCG .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tWwX3seRCG .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tWwX3seRCG .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tWwX3seRCG .mbr-text,
.cid-tWwX3seRCG .mbr-section-btn {
  color: #000000;
}
.cid-tWwX3t6pqg {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f0e4e5;
}
.cid-tWwX3t6pqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3t6pqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3t6pqg .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-tWwX3t6pqg .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-tWwX3t6pqg .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tWwX3t6pqg .item-img {
    width: 100%;
  }
}
.cid-tWwX3t6pqg .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tWwX3t6pqg .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tWwX3t6pqg .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3t6pqg .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tWwX3t6pqg .card-title {
  color: #131313;
  text-align: center;
}
.cid-tWwX3t6pqg .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-tWwX3t6pqg .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-tWwX3t6pqg .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-tWwX3t6pqg .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tWwX3t6pqg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-tWwX3t6pqg .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-tWwX3t6pqg .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-tWwX3t6pqg .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tWwX3t6pqg .card-text,
.cid-tWwX3t6pqg .mbr-section-btn {
  text-align: center;
}
.cid-tWwX3u3Ut0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWwX3u3Ut0 .col-title {
    margin-bottom: 20px;
  }
}
.cid-tWwX3u3Ut0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWwX3u3Ut0 .mbr-section-subtitle {
  color: #f03a0b;
  margin-top: 24px;
}
.cid-tWwX3u3Ut0 .mbr-text {
  color: #000000;
}
.cid-tWwX3uN0xs {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #f0e4e5;
}
.cid-tWwX3uN0xs .row {
  flex-direction: row-reverse;
}
.cid-tWwX3uN0xs .column1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-tWwX3uN0xs .column1 .list-column1 {
  list-style-type: disc;
  padding-left: 1rem;
}
.cid-tWwX3uN0xs .column1 .list-column1 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWwX3uN0xs .column1 {
    align-items: center;
    text-align: center;
  }
}
.cid-tWwX3uN0xs .mbr-text-column1 {
  margin-bottom: 2.3125rem;
}
.cid-tWwX3uN0xs .cards-row {
  display: flex;
  margin-bottom: 2.5rem;
}
.cid-tWwX3uN0xs .card-item {
  width: 52px;
  height: 35px;
  margin-right: 1rem;
}
.cid-tWwX3uN0xs .card-item:last-child {
  margin-right: 0;
}
.cid-tWwX3uN0xs .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tWwX3uN0xs .mbr-section-title-column1 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWwX3uN0xs .mbr-section-title-column2 {
  margin-bottom: 2.3rem;
  color: #000000;
}
.cid-tWwX3uN0xs .column2 {
  height: 100%;
}
.cid-tWwX3uN0xs .column2 .list-column2 {
  list-style-type: none;
  padding-left: 0;
}
.cid-tWwX3uN0xs .column2 .list-column2 li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-tWwX3uN0xs .column2 {
    text-align: center;
  }
}
.cid-tWwX3uN0xs .mbr-text-column2 {
  margin-bottom: 2.3125rem;
}
.cid-tWwX3vTvcL {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tWwX3vTvcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3vTvcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3wEelo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f0e4e5;
}
.cid-tWwX3wEelo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3wEelo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3wEelo .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwX3wEelo .mbr-section-head {
    margin-bottom: 18px;
  }
}
.cid-tWwX3wEelo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tWwX3wEelo .mbr-section-subtitle {
  color: #45494E;
}
.cid-tWwX3wEelo .card {
  padding-bottom: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tWwX3wEelo .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-tWwX3wEelo .panel-title {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwX3wEelo .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-tWwX3wEelo .panel-title:hover .sign:after {
  opacity: 1;
  transform: scale(1);
}
.cid-tWwX3wEelo .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #45494e;
  margin-left: 1rem;
}
.cid-tWwX3wEelo .panel-group {
  border: none;
}
.cid-tWwX3wEelo .panel-body {
  padding: 0 0 28px;
}
.cid-tWwX3wEelo .panel-text {
  color: #45494E;
}
.cid-tWwX3wEelo .mbr-section-btn {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .cid-tWwX3wEelo .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tWwX3wEelo .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tWwX3wEelo .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tWwX3wEelo .panel-title-edit {
  color: #000000;
}
.cid-tWwX3wEelo .sign {
  width: 34px;
  height: 34px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWwX3wEelo .sign:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cid-tWwX3xJmtF {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWwX3xJmtF .wrapper {
  background: #f0e4e5;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tWwX3xJmtF .wrapper {
    padding: 85px 160px 130px 85px;
    width: 720px;
    transform: translateX(15%);
  }
}
@media (min-width: 1400px) {
  .cid-tWwX3xJmtF .wrapper {
    transform: translateX(30%);
  }
}
.cid-tWwX3xJmtF .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-tWwX3xJmtF .display-5 {
    font-size: 29px;
  }
}
.cid-tWwX3xJmtF .mbr-section-subtitle {
  text-align: center;
}
.cid-tWwX3zmjtp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tWwX3zmjtp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3zmjtp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3A91e6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWwX3A91e6 .container {
    padding: 0 25px;
  }
}
.cid-tWwX3A91e6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWwX3A91e6 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWwX3A91e6 .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tWwX3A91e6 .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWwX3A91e6 .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWwX3A91e6 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwX3A91e6 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwX3A91e6 .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwX3A91e6 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWwX3A91e6 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWwX3A91e6 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWwX3A91e6 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWwX3A91e6 .mbr-section-title {
  color: #050916;
}
.cid-tWwX3A91e6 .panel-title-edit {
  color: #050916;
}
.cid-tWwX3A91e6 .panel-text {
  color: #050916;
}
.cid-tWwX3B4GZo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tWwX3B4GZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwX3B4GZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwX3B4GZo .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tWwX3B4GZo .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWwX3B4GZo .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-tWwX3B4GZo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwX3B4GZo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwX3B4GZo .content-head {
  max-width: 800px;
}
.cid-tWwX3B4GZo .mbr-section-title {
  color: #000000;
}
.cid-tWwX3BZbd3 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tWwX3BZbd3 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #f0e4e5;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .img-bg {
    display: none;
  }
}
.cid-tWwX3BZbd3 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .container {
    padding: 0 !important;
  }
}
.cid-tWwX3BZbd3 .row {
  width: 100%;
  align-items: center;
}
.cid-tWwX3BZbd3 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #f0e4e5;
  }
}
.cid-tWwX3BZbd3 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tWwX3BZbd3 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tWwX3BZbd3 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWwX3BZbd3 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWwX3BZbd3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwX3BZbd3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwX3BZbd3 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .brand-text {
    margin-top: 45px;
  }
}
.cid-tWwX3BZbd3 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tWwX3BZbd3 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tWwX3BZbd3 .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tWwX3BZbd3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tWwX3BZbd3 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwX3BZbd3 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tWwX3BZbd3 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tWwX3BZbd3 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tWwX3BZbd3 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tWwX3BZbd3 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tWwX3BZbd3 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tWwX3BZbd3 .col-link3 {
    padding-left: 0;
  }
}
.cid-tWwX3BZbd3 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tWwX3BZbd3 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwX3BZbd3 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwX3BZbd3 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-tWwX3BZbd3 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tWwX3BZbd3 .copyright {
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwX3BZbd3 .copyright {
    text-align: center !important;
  }
}
.cid-tWwMbY7v6d {
  background-color: transparent;
}
.cid-tWwMbY7v6d .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tWwMbY7v6d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tWwMbY7v6d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwMbY7v6d .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWwMbY7v6d .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tWwMbY7v6d .menu_box .navbar.opened,
  .cid-tWwMbY7v6d .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tWwMbY7v6d .navbar-dropdown {
  position: relative !important;
}
.cid-tWwMbY7v6d .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tWwMbY7v6d .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWwMbY7v6d .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tWwMbY7v6d .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tWwMbY7v6d .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tWwMbY7v6d .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #3283fb;
  }
  .cid-tWwMbY7v6d .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tWwMbY7v6d .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tWwMbY7v6d .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tWwMbY7v6d .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tWwMbY7v6d .offcanvas-body .mbr-text,
  .cid-tWwMbY7v6d .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tWwMbY7v6d .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tWwMbY7v6d .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tWwMbY7v6d .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-tWwMbY7v6d .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tWwMbY7v6d .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tWwMbY7v6d .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tWwMbY7v6d .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tWwMbY7v6d ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tWwMbY7v6d .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwMbY7v6d .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tWwMbY7v6d .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tWwMbY7v6d li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tWwMbY7v6d .lg_brand {
    margin: 0 1rem;
  }
  .cid-tWwMbY7v6d .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: fit-content;
    justify-content: center;
    min-width: 200px;
    margin: 0 auto;
    background-color: #e2e7f8;
    border-radius: 25px;
  }
}
.cid-tWwMbY7v6d .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tWwMbY7v6d .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWwMbY7v6d .nav-item {
    margin: 0 !important;
  }
}
.cid-tWwMbY7v6d .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  opacity: .5;
}
.cid-tWwMbY7v6d .nav-item .nav-link:hover,
.cid-tWwMbY7v6d .nav-item .nav-link:focus {
  color: #f03a0b !important;
  opacity: 1;
}
.cid-tWwMbY7v6d .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tWwMbY7v6d .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tWwMbY7v6d .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwMbY7v6d .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwMbY7v6d .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tWwMbY7v6d .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tWwMbY7v6d .offcanvas_box {
    display: none;
  }
}
.cid-tWwMbY7v6d .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tWwMbY7v6d .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tWwMbY7v6d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tWwMbY7v6d .container {
  display: flex;
  margin: auto;
}
.cid-tWwMbY7v6d .iconfont-wrapper {
  color: #222222;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tWwMbY7v6d .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tWwMbY7v6d .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tWwMbY7v6d .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tWwMbY7v6d .navbar-nav {
    margin: 0;
  }
}
.cid-tWwMbY7v6d .dropdown-menu,
.cid-tWwMbY7v6d .navbar.opened {
  background-color: false !important;
}
.cid-tWwMbY7v6d .nav-item:focus,
.cid-tWwMbY7v6d .nav-link:focus {
  outline: none;
}
.cid-tWwMbY7v6d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwMbY7v6d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwMbY7v6d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwMbY7v6d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwMbY7v6d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwMbY7v6d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwMbY7v6d .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tWwMbY7v6d .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tWwMbY7v6d .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwMbY7v6d .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tWwMbY7v6d .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tWwMbY7v6d .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tWwMbY7v6d .navbar.collapsed {
  justify-content: center;
}
.cid-tWwMbY7v6d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwMbY7v6d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWwMbY7v6d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwMbY7v6d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwMbY7v6d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwMbY7v6d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tWwMbY7v6d .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWwMbY7v6d .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tWwMbY7v6d .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tWwMbY7v6d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwMbY7v6d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwMbY7v6d .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tWwMbY7v6d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwMbY7v6d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tWwMbY7v6d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwMbY7v6d .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tWwMbY7v6d .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tWwMbY7v6d .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tWwMbY7v6d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tWwMbY7v6d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwMbY7v6d .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tWwMbY7v6d .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwMbY7v6d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwMbY7v6d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwMbY7v6d .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-tWwMbY7v6d .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tWwMbY7v6d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwMbY7v6d .dropdown-item.active,
.cid-tWwMbY7v6d .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwMbY7v6d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tWwMbY7v6d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwMbY7v6d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwMbY7v6d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwMbY7v6d ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tWwMbY7v6d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwMbY7v6d button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #e2e7f8;
}
.cid-tWwMbY7v6d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tWwMbY7v6d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwMbY7v6d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwMbY7v6d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwMbY7v6d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwMbY7v6d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwMbY7v6d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwMbY7v6d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwMbY7v6d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwMbY7v6d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tWwMbY7v6d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWwMbY7v6d .navbar {
    height: 70px;
  }
  .cid-tWwMbY7v6d .navbar.opened {
    height: auto;
  }
  .cid-tWwMbY7v6d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWwMbY7v6d .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tWwMbY7v6d .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tWwMbY7v6d .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tWwMbY7v6d .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tWwMbY7v6d .mbr-section-btn-main .btn {
  margin: 8px;
  padding: 11px 25px;
  min-width: 180px;
  border-radius: 30px !important;
}
.cid-tWwMbY7v6d .navbar-caption:hover {
  color: #f03a0b;
}
@media (min-width: 992px) {
  .cid-tWwMbY7v6d .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tWwMbY7v6d .text_widget {
  margin-bottom: 32px;
}
.cid-tWwMbY7v6d .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tWwMbY7v6d .text_widget a:hover,
.cid-tWwMbY7v6d .text_widget a:focus {
  opacity: .8;
}
@media (max-width: 1199px) {
  .cid-tWwMbY7v6d .navbar-nav.nav-dropdown {
    margin: 0 16px;
    width: 100%;
  }
}
.cid-tWwMbY7v6d .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWwMbY7v6d .navbar-caption {
  color: #222222;
}
.cid-tWwMbY7v6d .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWwMbY7v6d .mbr-section-subtitle,
.cid-tWwMbY7v6d .text_widget,
.cid-tWwMbY7v6d .mbr-section-btn {
  text-align: center;
}
.cid-tWwMbY7v6d a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tWwMbZ8yLm {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artificial-turf-dallas3-612x408.jpg");
}
.cid-tWwMbZ8yLm .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-tWwMbZ8yLm .row {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-tWwMbZ8yLm .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwMbZ8yLm .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-tWwMbZ8yLm .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tWwMbZ8yLm .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWwMbZ8yLm .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-tWwMbZ8yLm .mbr-section-subtitle {
  text-align: center;
}
.cid-tWwMbZ8yLm .mbr-text {
  margin-top: 5px;
}
.cid-tWwMc0syIw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWwMc0syIw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwMc0syIw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwMc0syIw .card-wrapper {
  width: 100%;
}
.cid-tWwMc0syIw .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwMc0syIw .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwMc0syIw .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwMc0syIw .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwMc0syIw .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwMc0syIw .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwMc0syIw .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwMc0syIw .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwMc0syIw .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwMc0syIw .card-title {
    text-align: center !important;
  }
}
.cid-tWwMc0syIw .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwMc0syIw .card-text {
    text-align: center !important;
  }
}
.cid-tWwMc19qiK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tWwMc19qiK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwMc19qiK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwMc19qiK .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tWwMc19qiK .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWwMc19qiK .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-tWwMc19qiK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwMc19qiK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwMc19qiK .content-head {
  max-width: 800px;
}
.cid-tWwMc19qiK .mbr-section-title {
  color: #000000;
}
.cid-tWwMc1Ux8H .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tWwMc1Ux8H .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #f0e4e5;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .img-bg {
    display: none;
  }
}
.cid-tWwMc1Ux8H .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .container {
    padding: 0 !important;
  }
}
.cid-tWwMc1Ux8H .row {
  width: 100%;
  align-items: center;
}
.cid-tWwMc1Ux8H .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #f0e4e5;
  }
}
.cid-tWwMc1Ux8H .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tWwMc1Ux8H .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tWwMc1Ux8H .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWwMc1Ux8H .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWwMc1Ux8H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwMc1Ux8H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwMc1Ux8H .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .brand-text {
    margin-top: 45px;
  }
}
.cid-tWwMc1Ux8H .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tWwMc1Ux8H .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tWwMc1Ux8H .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tWwMc1Ux8H .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tWwMc1Ux8H .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwMc1Ux8H .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tWwMc1Ux8H .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tWwMc1Ux8H .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tWwMc1Ux8H .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tWwMc1Ux8H .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tWwMc1Ux8H .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tWwMc1Ux8H .col-link3 {
    padding-left: 0;
  }
}
.cid-tWwMc1Ux8H .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tWwMc1Ux8H .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwMc1Ux8H .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwMc1Ux8H .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-tWwMc1Ux8H .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tWwMc1Ux8H .copyright {
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwMc1Ux8H .copyright {
    text-align: center !important;
  }
}
.cid-tWwLPItlu6 {
  background-color: transparent;
}
.cid-tWwLPItlu6 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tWwLPItlu6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tWwLPItlu6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwLPItlu6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWwLPItlu6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tWwLPItlu6 .menu_box .navbar.opened,
  .cid-tWwLPItlu6 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tWwLPItlu6 .navbar-dropdown {
  position: relative !important;
}
.cid-tWwLPItlu6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tWwLPItlu6 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWwLPItlu6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tWwLPItlu6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tWwLPItlu6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tWwLPItlu6 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #3283fb;
  }
  .cid-tWwLPItlu6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tWwLPItlu6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tWwLPItlu6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tWwLPItlu6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tWwLPItlu6 .offcanvas-body .mbr-text,
  .cid-tWwLPItlu6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tWwLPItlu6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tWwLPItlu6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tWwLPItlu6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-tWwLPItlu6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tWwLPItlu6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tWwLPItlu6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tWwLPItlu6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tWwLPItlu6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tWwLPItlu6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwLPItlu6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tWwLPItlu6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tWwLPItlu6 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tWwLPItlu6 .lg_brand {
    margin: 0 1rem;
  }
  .cid-tWwLPItlu6 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: fit-content;
    justify-content: center;
    min-width: 200px;
    margin: 0 auto;
    background-color: #e2e7f8;
    border-radius: 25px;
  }
}
.cid-tWwLPItlu6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tWwLPItlu6 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWwLPItlu6 .nav-item {
    margin: 0 !important;
  }
}
.cid-tWwLPItlu6 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  opacity: .5;
}
.cid-tWwLPItlu6 .nav-item .nav-link:hover,
.cid-tWwLPItlu6 .nav-item .nav-link:focus {
  color: #f03a0b !important;
  opacity: 1;
}
.cid-tWwLPItlu6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tWwLPItlu6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tWwLPItlu6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwLPItlu6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tWwLPItlu6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tWwLPItlu6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tWwLPItlu6 .offcanvas_box {
    display: none;
  }
}
.cid-tWwLPItlu6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tWwLPItlu6 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tWwLPItlu6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tWwLPItlu6 .container {
  display: flex;
  margin: auto;
}
.cid-tWwLPItlu6 .iconfont-wrapper {
  color: #222222;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tWwLPItlu6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tWwLPItlu6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tWwLPItlu6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tWwLPItlu6 .navbar-nav {
    margin: 0;
  }
}
.cid-tWwLPItlu6 .dropdown-menu,
.cid-tWwLPItlu6 .navbar.opened {
  background-color: false !important;
}
.cid-tWwLPItlu6 .nav-item:focus,
.cid-tWwLPItlu6 .nav-link:focus {
  outline: none;
}
.cid-tWwLPItlu6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwLPItlu6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwLPItlu6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwLPItlu6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwLPItlu6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwLPItlu6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwLPItlu6 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tWwLPItlu6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tWwLPItlu6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwLPItlu6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tWwLPItlu6 .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tWwLPItlu6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tWwLPItlu6 .navbar.collapsed {
  justify-content: center;
}
.cid-tWwLPItlu6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwLPItlu6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWwLPItlu6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwLPItlu6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwLPItlu6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwLPItlu6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tWwLPItlu6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWwLPItlu6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tWwLPItlu6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tWwLPItlu6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwLPItlu6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwLPItlu6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tWwLPItlu6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwLPItlu6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tWwLPItlu6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwLPItlu6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tWwLPItlu6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tWwLPItlu6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tWwLPItlu6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tWwLPItlu6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwLPItlu6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tWwLPItlu6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwLPItlu6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwLPItlu6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwLPItlu6 .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-tWwLPItlu6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-tWwLPItlu6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwLPItlu6 .dropdown-item.active,
.cid-tWwLPItlu6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwLPItlu6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 12px !important;
}
.cid-tWwLPItlu6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwLPItlu6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwLPItlu6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwLPItlu6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tWwLPItlu6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwLPItlu6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #e2e7f8;
}
.cid-tWwLPItlu6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tWwLPItlu6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwLPItlu6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwLPItlu6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwLPItlu6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwLPItlu6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwLPItlu6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwLPItlu6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwLPItlu6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwLPItlu6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tWwLPItlu6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWwLPItlu6 .navbar {
    height: 70px;
  }
  .cid-tWwLPItlu6 .navbar.opened {
    height: auto;
  }
  .cid-tWwLPItlu6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWwLPItlu6 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tWwLPItlu6 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tWwLPItlu6 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tWwLPItlu6 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tWwLPItlu6 .mbr-section-btn-main .btn {
  margin: 8px;
  padding: 11px 25px;
  min-width: 180px;
  border-radius: 30px !important;
}
.cid-tWwLPItlu6 .navbar-caption:hover {
  color: #f03a0b;
}
@media (min-width: 992px) {
  .cid-tWwLPItlu6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tWwLPItlu6 .text_widget {
  margin-bottom: 32px;
}
.cid-tWwLPItlu6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tWwLPItlu6 .text_widget a:hover,
.cid-tWwLPItlu6 .text_widget a:focus {
  opacity: .8;
}
@media (max-width: 1199px) {
  .cid-tWwLPItlu6 .navbar-nav.nav-dropdown {
    margin: 0 16px;
    width: 100%;
  }
}
.cid-tWwLPItlu6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tWwLPItlu6 .navbar-caption {
  color: #222222;
}
.cid-tWwLPItlu6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWwLPItlu6 .mbr-section-subtitle,
.cid-tWwLPItlu6 .text_widget,
.cid-tWwLPItlu6 .mbr-section-btn {
  text-align: center;
}
.cid-tWwLPItlu6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tWwLPJuHrB {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artificial-turf-dallas1-612x404.jpg");
}
.cid-tWwLPJuHrB .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-tWwLPJuHrB .row {
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-tWwLPJuHrB .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwLPJuHrB .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-tWwLPJuHrB .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tWwLPJuHrB .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tWwLPJuHrB .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-tWwLPJuHrB .mbr-section-subtitle {
  text-align: center;
}
.cid-tWwLPJuHrB .mbr-text {
  margin-top: 5px;
}
.cid-tWwLPKZKOL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWwLPKZKOL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwLPKZKOL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwLPKZKOL .card-wrapper {
  width: 100%;
}
.cid-tWwLPKZKOL .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWwLPKZKOL .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tWwLPKZKOL .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tWwLPKZKOL .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tWwLPKZKOL .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tWwLPKZKOL .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWwLPKZKOL .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tWwLPKZKOL .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tWwLPKZKOL .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tWwLPKZKOL .card-title {
    text-align: center !important;
  }
}
.cid-tWwLPKZKOL .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tWwLPKZKOL .card-text {
    text-align: center !important;
  }
}
.cid-tWwLPX4dfR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tWwLPX4dfR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwLPX4dfR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwLPX4dfR .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tWwLPX4dfR .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tWwLPX4dfR .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-tWwLPX4dfR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwLPX4dfR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwLPX4dfR .content-head {
  max-width: 800px;
}
.cid-tWwLPX4dfR .mbr-section-title {
  color: #000000;
}
.cid-tWwLPY1AeL .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tWwLPY1AeL .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #f0e4e5;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .img-bg {
    display: none;
  }
}
.cid-tWwLPY1AeL .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .container {
    padding: 0 !important;
  }
}
.cid-tWwLPY1AeL .row {
  width: 100%;
  align-items: center;
}
.cid-tWwLPY1AeL .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #f0e4e5;
  }
}
.cid-tWwLPY1AeL .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tWwLPY1AeL .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tWwLPY1AeL .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWwLPY1AeL .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWwLPY1AeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwLPY1AeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwLPY1AeL .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .brand-text {
    margin-top: 45px;
  }
}
.cid-tWwLPY1AeL .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tWwLPY1AeL .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tWwLPY1AeL .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tWwLPY1AeL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tWwLPY1AeL .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwLPY1AeL .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tWwLPY1AeL .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tWwLPY1AeL .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tWwLPY1AeL .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tWwLPY1AeL .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tWwLPY1AeL .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tWwLPY1AeL .col-link3 {
    padding-left: 0;
  }
}
.cid-tWwLPY1AeL .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tWwLPY1AeL .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwLPY1AeL .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tWwLPY1AeL .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-tWwLPY1AeL .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tWwLPY1AeL .copyright {
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tWwLPY1AeL .copyright {
    text-align: center !important;
  }
}
