body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 5.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.48rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.92rem;
    font-size: calc( 2.61rem + (5.6 - 2.61) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.61rem + (5.6 - 2.61) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #7d9a3d !important;
}
.bg-danger {
  background-color: #fca40a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #51ab2f !important;
  border-color: #51ab2f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #31671c !important;
  border-color: #31671c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #31671c !important;
  border-color: #31671c !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #7d9a3d !important;
  border-color: #7d9a3d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #4b5c24 !important;
  border-color: #4b5c24 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4b5c24 !important;
  border-color: #4b5c24 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fca40a !important;
  border-color: #fca40a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ad6f02 !important;
  border-color: #ad6f02 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ad6f02 !important;
  border-color: #ad6f02 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #51ab2f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #31671c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #51ab2f !important;
  border-color: #51ab2f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7d9a3d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #4b5c24 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #7d9a3d !important;
  border-color: #7d9a3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fca40a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ad6f02 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #fca40a !important;
  border-color: #fca40a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #51ab2f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #7d9a3d !important;
}
.text-danger {
  color: #fca40a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2b5b19 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #425120 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #9e6502 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #7d9a3d;
}
.alert-danger {
  background-color: #fca40a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b9cf87;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #feefd4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #51ab2f !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uPDmwCBIKR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDmwCBIKR H2 {
  color: #63ce3a;
}
.cid-uPDmwCBIKR .mbr-text,
.cid-uPDmwCBIKR .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDmwCBIKR img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDmwCBIKR img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDmwCBIKR H1 {
  color: #ffffff;
}
.cid-uKJ5c4t2qy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uKJ5aMv978 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uKJ5aMv978 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJ5aMv978 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uKJ5aMv978 H2 {
  color: #e7272d;
}
.cid-uKJ5aMv978 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJ5aMv978 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJ5aMv978 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uKJ5aMv978 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uKJ5aMv978 .col-lg-12 {
  overflow: hidden;
}
.cid-uKJ5aMv978 H4 {
  color: #fbbe36;
}
.cid-uKJ5aMv978 .mbr-text,
.cid-uKJ5aMv978 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKJ5aMv978 .logo-wrap:before {
    content: none;
  }
  .cid-uKJ5aMv978 .logo-wrap:after {
    content: none;
  }
}
.cid-uKJ5aMv978 H3 {
  color: #ffffff;
}
.cid-uPDucc7BVl {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDucc7BVl H2 {
  color: #63ce3a;
}
.cid-uPDucc7BVl .mbr-text,
.cid-uPDucc7BVl .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDucc7BVl img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDucc7BVl img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDucc7BVl H1 {
  color: #ffffff;
}
.cid-uPDuccBkMO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDuccRIl0 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDuccRIl0 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDuccRIl0 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDuccRIl0 H2 {
  color: #e7272d;
}
.cid-uPDuccRIl0 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDuccRIl0 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDuccRIl0 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDuccRIl0 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDuccRIl0 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDuccRIl0 H4 {
  color: #fbbe36;
}
.cid-uPDuccRIl0 .mbr-text,
.cid-uPDuccRIl0 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDuccRIl0 .logo-wrap:before {
    content: none;
  }
  .cid-uPDuccRIl0 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDuccRIl0 H3 {
  color: #ffffff;
}
.cid-uPDvmUzDN4 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDvmUzDN4 H2 {
  color: #63ce3a;
}
.cid-uPDvmUzDN4 .mbr-text,
.cid-uPDvmUzDN4 .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDvmUzDN4 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDvmUzDN4 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDvmUzDN4 H1 {
  color: #ffffff;
}
.cid-uPDvmVkxLN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDvmVGOJm {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDvmVGOJm .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDvmVGOJm .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDvmVGOJm H2 {
  color: #e7272d;
}
.cid-uPDvmVGOJm .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDvmVGOJm .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDvmVGOJm .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDvmVGOJm .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDvmVGOJm .col-lg-12 {
  overflow: hidden;
}
.cid-uPDvmVGOJm H4 {
  color: #fbbe36;
}
.cid-uPDvmVGOJm .mbr-text,
.cid-uPDvmVGOJm .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDvmVGOJm .logo-wrap:before {
    content: none;
  }
  .cid-uPDvmVGOJm .logo-wrap:after {
    content: none;
  }
}
.cid-uPDvmVGOJm H3 {
  color: #ffffff;
}
.cid-uPDvwrn7xT {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDvwrn7xT H2 {
  color: #63ce3a;
}
.cid-uPDvwrn7xT .mbr-text,
.cid-uPDvwrn7xT .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDvwrn7xT img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDvwrn7xT img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDvwrn7xT H1 {
  color: #ffffff;
}
.cid-uPDvwrKYF2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDvwrYQRi {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDvwrYQRi .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDvwrYQRi .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDvwrYQRi H2 {
  color: #e7272d;
}
.cid-uPDvwrYQRi .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDvwrYQRi .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDvwrYQRi .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDvwrYQRi .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDvwrYQRi .col-lg-12 {
  overflow: hidden;
}
.cid-uPDvwrYQRi H4 {
  color: #fbbe36;
}
.cid-uPDvwrYQRi .mbr-text,
.cid-uPDvwrYQRi .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDvwrYQRi .logo-wrap:before {
    content: none;
  }
  .cid-uPDvwrYQRi .logo-wrap:after {
    content: none;
  }
}
.cid-uPDvwrYQRi H3 {
  color: #ffffff;
}
.cid-uPDwf6h5bb {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDwf6h5bb H2 {
  color: #63ce3a;
}
.cid-uPDwf6h5bb .mbr-text,
.cid-uPDwf6h5bb .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDwf6h5bb img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDwf6h5bb img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDwf6h5bb H1 {
  color: #ffffff;
}
.cid-uPDwf6OIEl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDwf76Koa {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDwf76Koa .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDwf76Koa .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDwf76Koa H2 {
  color: #e7272d;
}
.cid-uPDwf76Koa .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDwf76Koa .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDwf76Koa .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDwf76Koa .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDwf76Koa .col-lg-12 {
  overflow: hidden;
}
.cid-uPDwf76Koa H4 {
  color: #fbbe36;
}
.cid-uPDwf76Koa .mbr-text,
.cid-uPDwf76Koa .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDwf76Koa .logo-wrap:before {
    content: none;
  }
  .cid-uPDwf76Koa .logo-wrap:after {
    content: none;
  }
}
.cid-uPDwf76Koa H3 {
  color: #ffffff;
}
.cid-uPDFFplQNp {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDFFplQNp H2 {
  color: #63ce3a;
}
.cid-uPDFFplQNp .mbr-text,
.cid-uPDFFplQNp .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDFFplQNp img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDFFplQNp img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDFFplQNp H1 {
  color: #ffffff;
}
.cid-uPDFFpWOr6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDFFq9pKO {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDFFq9pKO .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDFFq9pKO .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDFFq9pKO H2 {
  color: #e7272d;
}
.cid-uPDFFq9pKO .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDFFq9pKO .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDFFq9pKO .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDFFq9pKO .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDFFq9pKO .col-lg-12 {
  overflow: hidden;
}
.cid-uPDFFq9pKO H4 {
  color: #fbbe36;
}
.cid-uPDFFq9pKO .mbr-text,
.cid-uPDFFq9pKO .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDFFq9pKO .logo-wrap:before {
    content: none;
  }
  .cid-uPDFFq9pKO .logo-wrap:after {
    content: none;
  }
}
.cid-uPDFFq9pKO H3 {
  color: #ffffff;
}
.cid-uPDHdmhtss {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDHdmhtss H2 {
  color: #63ce3a;
}
.cid-uPDHdmhtss .mbr-text,
.cid-uPDHdmhtss .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDHdmhtss img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDHdmhtss img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDHdmhtss H1 {
  color: #ffffff;
}
.cid-uPDHdn7dZN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDHdnmerj {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDHdnmerj .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDHdnmerj .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDHdnmerj H2 {
  color: #e7272d;
}
.cid-uPDHdnmerj .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDHdnmerj .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDHdnmerj .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDHdnmerj .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDHdnmerj .col-lg-12 {
  overflow: hidden;
}
.cid-uPDHdnmerj H4 {
  color: #fbbe36;
}
.cid-uPDHdnmerj .mbr-text,
.cid-uPDHdnmerj .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDHdnmerj .logo-wrap:before {
    content: none;
  }
  .cid-uPDHdnmerj .logo-wrap:after {
    content: none;
  }
}
.cid-uPDHdnmerj H3 {
  color: #ffffff;
}
.cid-uPDIf4mUgT {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDIf4mUgT H2 {
  color: #63ce3a;
}
.cid-uPDIf4mUgT .mbr-text,
.cid-uPDIf4mUgT .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDIf4mUgT img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDIf4mUgT img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDIf4mUgT H1 {
  color: #ffffff;
}
.cid-uPDIf53NlO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDIf5kX8i {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDIf5kX8i .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDIf5kX8i .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDIf5kX8i H2 {
  color: #e7272d;
}
.cid-uPDIf5kX8i .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDIf5kX8i .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDIf5kX8i .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDIf5kX8i .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDIf5kX8i .col-lg-12 {
  overflow: hidden;
}
.cid-uPDIf5kX8i H4 {
  color: #fbbe36;
}
.cid-uPDIf5kX8i .mbr-text,
.cid-uPDIf5kX8i .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDIf5kX8i .logo-wrap:before {
    content: none;
  }
  .cid-uPDIf5kX8i .logo-wrap:after {
    content: none;
  }
}
.cid-uPDIf5kX8i H3 {
  color: #ffffff;
}
.cid-uPDIJrjebp {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDIJrjebp H2 {
  color: #63ce3a;
}
.cid-uPDIJrjebp .mbr-text,
.cid-uPDIJrjebp .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDIJrjebp img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDIJrjebp img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDIJrjebp H1 {
  color: #ffffff;
}
.cid-uPDIJrWiwp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDIJscRN7 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDIJscRN7 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDIJscRN7 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDIJscRN7 H2 {
  color: #e7272d;
}
.cid-uPDIJscRN7 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDIJscRN7 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDIJscRN7 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDIJscRN7 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDIJscRN7 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDIJscRN7 H4 {
  color: #fbbe36;
}
.cid-uPDIJscRN7 .mbr-text,
.cid-uPDIJscRN7 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDIJscRN7 .logo-wrap:before {
    content: none;
  }
  .cid-uPDIJscRN7 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDIJscRN7 H3 {
  color: #ffffff;
}
.cid-uPDJ6REZ0X {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDJ6REZ0X H2 {
  color: #63ce3a;
}
.cid-uPDJ6REZ0X .mbr-text,
.cid-uPDJ6REZ0X .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDJ6REZ0X img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDJ6REZ0X img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDJ6REZ0X H1 {
  color: #ffffff;
}
.cid-uPDJ6Sla11 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDJ6SAyX0 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDJ6SAyX0 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDJ6SAyX0 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDJ6SAyX0 H2 {
  color: #e7272d;
}
.cid-uPDJ6SAyX0 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDJ6SAyX0 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDJ6SAyX0 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDJ6SAyX0 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDJ6SAyX0 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDJ6SAyX0 H4 {
  color: #fbbe36;
}
.cid-uPDJ6SAyX0 .mbr-text,
.cid-uPDJ6SAyX0 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDJ6SAyX0 .logo-wrap:before {
    content: none;
  }
  .cid-uPDJ6SAyX0 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDJ6SAyX0 H3 {
  color: #ffffff;
}
.cid-uPDJgsWTSf {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDJgsWTSf H2 {
  color: #63ce3a;
}
.cid-uPDJgsWTSf .mbr-text,
.cid-uPDJgsWTSf .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDJgsWTSf img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDJgsWTSf img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDJgsWTSf H1 {
  color: #ffffff;
}
.cid-uPDJgtXMUC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDJgunJPV {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDJgunJPV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDJgunJPV .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDJgunJPV H2 {
  color: #e7272d;
}
.cid-uPDJgunJPV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDJgunJPV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDJgunJPV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDJgunJPV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDJgunJPV .col-lg-12 {
  overflow: hidden;
}
.cid-uPDJgunJPV H4 {
  color: #fbbe36;
}
.cid-uPDJgunJPV .mbr-text,
.cid-uPDJgunJPV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDJgunJPV .logo-wrap:before {
    content: none;
  }
  .cid-uPDJgunJPV .logo-wrap:after {
    content: none;
  }
}
.cid-uPDJgunJPV H3 {
  color: #ffffff;
}
.cid-uPDKMTGukz {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDKMTGukz H2 {
  color: #63ce3a;
}
.cid-uPDKMTGukz .mbr-text,
.cid-uPDKMTGukz .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDKMTGukz img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDKMTGukz img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDKMTGukz H1 {
  color: #ffffff;
}
.cid-uPDKMUEqJc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDKMUVWtL {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDKMUVWtL .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDKMUVWtL .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDKMUVWtL H2 {
  color: #e7272d;
}
.cid-uPDKMUVWtL .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDKMUVWtL .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDKMUVWtL .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDKMUVWtL .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDKMUVWtL .col-lg-12 {
  overflow: hidden;
}
.cid-uPDKMUVWtL H4 {
  color: #fbbe36;
}
.cid-uPDKMUVWtL .mbr-text,
.cid-uPDKMUVWtL .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDKMUVWtL .logo-wrap:before {
    content: none;
  }
  .cid-uPDKMUVWtL .logo-wrap:after {
    content: none;
  }
}
.cid-uPDKMUVWtL H3 {
  color: #ffffff;
}
.cid-uPDL2RQX8v {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDL2RQX8v H2 {
  color: #63ce3a;
}
.cid-uPDL2RQX8v .mbr-text,
.cid-uPDL2RQX8v .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDL2RQX8v img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDL2RQX8v img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDL2RQX8v H1 {
  color: #ffffff;
}
.cid-uPDL2Svb0E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDL2SQZvi {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDL2SQZvi .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDL2SQZvi .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDL2SQZvi H2 {
  color: #e7272d;
}
.cid-uPDL2SQZvi .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDL2SQZvi .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDL2SQZvi .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDL2SQZvi .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDL2SQZvi .col-lg-12 {
  overflow: hidden;
}
.cid-uPDL2SQZvi H4 {
  color: #fbbe36;
}
.cid-uPDL2SQZvi .mbr-text,
.cid-uPDL2SQZvi .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDL2SQZvi .logo-wrap:before {
    content: none;
  }
  .cid-uPDL2SQZvi .logo-wrap:after {
    content: none;
  }
}
.cid-uPDL2SQZvi H3 {
  color: #ffffff;
}
.cid-uPDLgXSia5 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDLgXSia5 H2 {
  color: #63ce3a;
}
.cid-uPDLgXSia5 .mbr-text,
.cid-uPDLgXSia5 .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDLgXSia5 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDLgXSia5 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDLgXSia5 H1 {
  color: #ffffff;
}
.cid-uPDLgYA69P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDLgYUdoS {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDLgYUdoS .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDLgYUdoS .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDLgYUdoS H2 {
  color: #e7272d;
}
.cid-uPDLgYUdoS .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDLgYUdoS .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDLgYUdoS .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDLgYUdoS .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDLgYUdoS .col-lg-12 {
  overflow: hidden;
}
.cid-uPDLgYUdoS H4 {
  color: #fbbe36;
}
.cid-uPDLgYUdoS .mbr-text,
.cid-uPDLgYUdoS .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDLgYUdoS .logo-wrap:before {
    content: none;
  }
  .cid-uPDLgYUdoS .logo-wrap:after {
    content: none;
  }
}
.cid-uPDLgYUdoS H3 {
  color: #ffffff;
}
.cid-uPDLBy0MQl {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDLBy0MQl H2 {
  color: #63ce3a;
}
.cid-uPDLBy0MQl .mbr-text,
.cid-uPDLBy0MQl .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDLBy0MQl img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDLBy0MQl img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDLBy0MQl H1 {
  color: #ffffff;
}
.cid-uPDLByDBGg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDLByTEBz {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDLByTEBz .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDLByTEBz .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDLByTEBz H2 {
  color: #e7272d;
}
.cid-uPDLByTEBz .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDLByTEBz .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDLByTEBz .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDLByTEBz .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDLByTEBz .col-lg-12 {
  overflow: hidden;
}
.cid-uPDLByTEBz H4 {
  color: #fbbe36;
}
.cid-uPDLByTEBz .mbr-text,
.cid-uPDLByTEBz .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDLByTEBz .logo-wrap:before {
    content: none;
  }
  .cid-uPDLByTEBz .logo-wrap:after {
    content: none;
  }
}
.cid-uPDLByTEBz H3 {
  color: #ffffff;
}
.cid-uPDLOceQFS {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDLOceQFS H2 {
  color: #63ce3a;
}
.cid-uPDLOceQFS .mbr-text,
.cid-uPDLOceQFS .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDLOceQFS img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDLOceQFS img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDLOceQFS H1 {
  color: #ffffff;
}
.cid-uPDLOcTXBe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDLOdcGJc {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDLOdcGJc .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDLOdcGJc .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDLOdcGJc H2 {
  color: #e7272d;
}
.cid-uPDLOdcGJc .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDLOdcGJc .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDLOdcGJc .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDLOdcGJc .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDLOdcGJc .col-lg-12 {
  overflow: hidden;
}
.cid-uPDLOdcGJc H4 {
  color: #fbbe36;
}
.cid-uPDLOdcGJc .mbr-text,
.cid-uPDLOdcGJc .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDLOdcGJc .logo-wrap:before {
    content: none;
  }
  .cid-uPDLOdcGJc .logo-wrap:after {
    content: none;
  }
}
.cid-uPDLOdcGJc H3 {
  color: #ffffff;
}
.cid-uPDM0BP0eY {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDM0BP0eY H2 {
  color: #63ce3a;
}
.cid-uPDM0BP0eY .mbr-text,
.cid-uPDM0BP0eY .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDM0BP0eY img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDM0BP0eY img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDM0BP0eY H1 {
  color: #ffffff;
}
.cid-uPDM0DSygA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDM0EdAG7 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDM0EdAG7 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDM0EdAG7 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDM0EdAG7 H2 {
  color: #e7272d;
}
.cid-uPDM0EdAG7 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDM0EdAG7 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDM0EdAG7 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDM0EdAG7 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDM0EdAG7 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDM0EdAG7 H4 {
  color: #fbbe36;
}
.cid-uPDM0EdAG7 .mbr-text,
.cid-uPDM0EdAG7 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDM0EdAG7 .logo-wrap:before {
    content: none;
  }
  .cid-uPDM0EdAG7 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDM0EdAG7 H3 {
  color: #ffffff;
}
.cid-uPDNPnpbDo {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDNPnpbDo H2 {
  color: #63ce3a;
}
.cid-uPDNPnpbDo .mbr-text,
.cid-uPDNPnpbDo .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDNPnpbDo img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDNPnpbDo img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDNPnpbDo H1 {
  color: #ffffff;
}
.cid-uPDNPoe74L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDNPotETA {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDNPotETA .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDNPotETA .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDNPotETA H2 {
  color: #e7272d;
}
.cid-uPDNPotETA .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDNPotETA .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDNPotETA .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDNPotETA .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDNPotETA .col-lg-12 {
  overflow: hidden;
}
.cid-uPDNPotETA H4 {
  color: #fbbe36;
}
.cid-uPDNPotETA .mbr-text,
.cid-uPDNPotETA .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDNPotETA .logo-wrap:before {
    content: none;
  }
  .cid-uPDNPotETA .logo-wrap:after {
    content: none;
  }
}
.cid-uPDNPotETA H3 {
  color: #ffffff;
}
.cid-uPDOZkBcgY {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDOZkBcgY H2 {
  color: #63ce3a;
}
.cid-uPDOZkBcgY .mbr-text,
.cid-uPDOZkBcgY .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDOZkBcgY img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDOZkBcgY img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDOZkBcgY H1 {
  color: #ffffff;
}
.cid-uPDOZmI75O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDOZnqFUO {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDOZnqFUO .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDOZnqFUO .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDOZnqFUO H2 {
  color: #e7272d;
}
.cid-uPDOZnqFUO .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDOZnqFUO .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDOZnqFUO .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDOZnqFUO .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDOZnqFUO .col-lg-12 {
  overflow: hidden;
}
.cid-uPDOZnqFUO H4 {
  color: #fbbe36;
}
.cid-uPDOZnqFUO .mbr-text,
.cid-uPDOZnqFUO .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDOZnqFUO .logo-wrap:before {
    content: none;
  }
  .cid-uPDOZnqFUO .logo-wrap:after {
    content: none;
  }
}
.cid-uPDOZnqFUO H3 {
  color: #ffffff;
}
.cid-uPDRFv2jyr {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDRFv2jyr H2 {
  color: #63ce3a;
}
.cid-uPDRFv2jyr .mbr-text,
.cid-uPDRFv2jyr .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDRFv2jyr img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDRFv2jyr img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDRFv2jyr H1 {
  color: #ffffff;
}
.cid-uPDRFvADJB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDRFw4faE {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDRFw4faE .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDRFw4faE .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDRFw4faE H2 {
  color: #e7272d;
}
.cid-uPDRFw4faE .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDRFw4faE .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDRFw4faE .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDRFw4faE .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDRFw4faE .col-lg-12 {
  overflow: hidden;
}
.cid-uPDRFw4faE H4 {
  color: #fbbe36;
}
.cid-uPDRFw4faE .mbr-text,
.cid-uPDRFw4faE .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDRFw4faE .logo-wrap:before {
    content: none;
  }
  .cid-uPDRFw4faE .logo-wrap:after {
    content: none;
  }
}
.cid-uPDRFw4faE H3 {
  color: #ffffff;
}
.cid-uPDSyPYZYj {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDSyPYZYj H2 {
  color: #63ce3a;
}
.cid-uPDSyPYZYj .mbr-text,
.cid-uPDSyPYZYj .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDSyPYZYj img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDSyPYZYj img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDSyPYZYj H1 {
  color: #ffffff;
}
.cid-uPDSyQHfHh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDSyR1C5b {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDSyR1C5b .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDSyR1C5b .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDSyR1C5b H2 {
  color: #e7272d;
}
.cid-uPDSyR1C5b .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDSyR1C5b .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDSyR1C5b .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDSyR1C5b .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDSyR1C5b .col-lg-12 {
  overflow: hidden;
}
.cid-uPDSyR1C5b H4 {
  color: #fbbe36;
}
.cid-uPDSyR1C5b .mbr-text,
.cid-uPDSyR1C5b .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDSyR1C5b .logo-wrap:before {
    content: none;
  }
  .cid-uPDSyR1C5b .logo-wrap:after {
    content: none;
  }
}
.cid-uPDSyR1C5b H3 {
  color: #ffffff;
}
.cid-uPDSH185cW {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDSH185cW H2 {
  color: #63ce3a;
}
.cid-uPDSH185cW .mbr-text,
.cid-uPDSH185cW .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDSH185cW img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDSH185cW img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDSH185cW H1 {
  color: #ffffff;
}
.cid-uPDSH1N9fv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDSH26BRY {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDSH26BRY .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDSH26BRY .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDSH26BRY H2 {
  color: #e7272d;
}
.cid-uPDSH26BRY .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDSH26BRY .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDSH26BRY .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDSH26BRY .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDSH26BRY .col-lg-12 {
  overflow: hidden;
}
.cid-uPDSH26BRY H4 {
  color: #fbbe36;
}
.cid-uPDSH26BRY .mbr-text,
.cid-uPDSH26BRY .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDSH26BRY .logo-wrap:before {
    content: none;
  }
  .cid-uPDSH26BRY .logo-wrap:after {
    content: none;
  }
}
.cid-uPDSH26BRY H3 {
  color: #ffffff;
}
.cid-uPDVuQuczd {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDVuQuczd H2 {
  color: #63ce3a;
}
.cid-uPDVuQuczd .mbr-text,
.cid-uPDVuQuczd .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDVuQuczd img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDVuQuczd img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDVuQuczd H1 {
  color: #ffffff;
}
.cid-uPDVuRdVkp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDVuRuykb {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDVuRuykb .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDVuRuykb .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDVuRuykb H2 {
  color: #e7272d;
}
.cid-uPDVuRuykb .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDVuRuykb .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDVuRuykb .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDVuRuykb .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDVuRuykb .col-lg-12 {
  overflow: hidden;
}
.cid-uPDVuRuykb H4 {
  color: #fbbe36;
}
.cid-uPDVuRuykb .mbr-text,
.cid-uPDVuRuykb .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDVuRuykb .logo-wrap:before {
    content: none;
  }
  .cid-uPDVuRuykb .logo-wrap:after {
    content: none;
  }
}
.cid-uPDVuRuykb H3 {
  color: #ffffff;
}
.cid-uPDW42owLC {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDW42owLC H2 {
  color: #63ce3a;
}
.cid-uPDW42owLC .mbr-text,
.cid-uPDW42owLC .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDW42owLC img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDW42owLC img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDW42owLC H1 {
  color: #ffffff;
}
.cid-uPDW43fC2u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDW43AYqD {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDW43AYqD .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDW43AYqD .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDW43AYqD H2 {
  color: #e7272d;
}
.cid-uPDW43AYqD .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDW43AYqD .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDW43AYqD .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDW43AYqD .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDW43AYqD .col-lg-12 {
  overflow: hidden;
}
.cid-uPDW43AYqD H4 {
  color: #fbbe36;
}
.cid-uPDW43AYqD .mbr-text,
.cid-uPDW43AYqD .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDW43AYqD .logo-wrap:before {
    content: none;
  }
  .cid-uPDW43AYqD .logo-wrap:after {
    content: none;
  }
}
.cid-uPDW43AYqD H3 {
  color: #ffffff;
}
.cid-uPDWewBWSl {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/perfect-condition-artificial-turf.jpg");
}
.cid-uPDWewBWSl H2 {
  color: #63ce3a;
}
.cid-uPDWewBWSl .mbr-text,
.cid-uPDWewBWSl .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDWewBWSl img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDWewBWSl img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDWewBWSl H1 {
  color: #ffffff;
}
.cid-uPDWexhQli {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDWexyfQ6 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDWexyfQ6 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDWexyfQ6 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDWexyfQ6 H2 {
  color: #e7272d;
}
.cid-uPDWexyfQ6 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDWexyfQ6 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDWexyfQ6 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDWexyfQ6 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDWexyfQ6 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDWexyfQ6 H4 {
  color: #fbbe36;
}
.cid-uPDWexyfQ6 .mbr-text,
.cid-uPDWexyfQ6 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDWexyfQ6 .logo-wrap:before {
    content: none;
  }
  .cid-uPDWexyfQ6 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDWexyfQ6 H3 {
  color: #ffffff;
}
.cid-uPDMilDnBa {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDMilDnBa H2 {
  color: #63ce3a;
}
.cid-uPDMilDnBa .mbr-text,
.cid-uPDMilDnBa .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDMilDnBa img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDMilDnBa img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDMilDnBa H1 {
  color: #ffffff;
}
.cid-uPDMim87Tw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDMimr5dy {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDMimr5dy .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDMimr5dy .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDMimr5dy H2 {
  color: #e7272d;
}
.cid-uPDMimr5dy .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDMimr5dy .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDMimr5dy .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMimr5dy .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMimr5dy .col-lg-12 {
  overflow: hidden;
}
.cid-uPDMimr5dy H4 {
  color: #fbbe36;
}
.cid-uPDMimr5dy .mbr-text,
.cid-uPDMimr5dy .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDMimr5dy .logo-wrap:before {
    content: none;
  }
  .cid-uPDMimr5dy .logo-wrap:after {
    content: none;
  }
}
.cid-uPDMimr5dy H3 {
  color: #ffffff;
}
.cid-uPDMp74hbK {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDMp74hbK H2 {
  color: #63ce3a;
}
.cid-uPDMp74hbK .mbr-text,
.cid-uPDMp74hbK .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDMp74hbK img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDMp74hbK img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDMp74hbK H1 {
  color: #ffffff;
}
.cid-uPDMp7Er2y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDMp7UuSb {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDMp7UuSb .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDMp7UuSb .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDMp7UuSb H2 {
  color: #e7272d;
}
.cid-uPDMp7UuSb .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDMp7UuSb .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDMp7UuSb .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMp7UuSb .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMp7UuSb .col-lg-12 {
  overflow: hidden;
}
.cid-uPDMp7UuSb H4 {
  color: #fbbe36;
}
.cid-uPDMp7UuSb .mbr-text,
.cid-uPDMp7UuSb .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDMp7UuSb .logo-wrap:before {
    content: none;
  }
  .cid-uPDMp7UuSb .logo-wrap:after {
    content: none;
  }
}
.cid-uPDMp7UuSb H3 {
  color: #ffffff;
}
.cid-uPDMwh87dI {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDMwh87dI H2 {
  color: #63ce3a;
}
.cid-uPDMwh87dI .mbr-text,
.cid-uPDMwh87dI .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDMwh87dI img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDMwh87dI img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDMwh87dI H1 {
  color: #ffffff;
}
.cid-uPDMwhMXMY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDMwi1nMR {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDMwi1nMR .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDMwi1nMR .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDMwi1nMR H2 {
  color: #e7272d;
}
.cid-uPDMwi1nMR .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDMwi1nMR .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDMwi1nMR .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMwi1nMR .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMwi1nMR .col-lg-12 {
  overflow: hidden;
}
.cid-uPDMwi1nMR H4 {
  color: #fbbe36;
}
.cid-uPDMwi1nMR .mbr-text,
.cid-uPDMwi1nMR .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDMwi1nMR .logo-wrap:before {
    content: none;
  }
  .cid-uPDMwi1nMR .logo-wrap:after {
    content: none;
  }
}
.cid-uPDMwi1nMR H3 {
  color: #ffffff;
}
.cid-uPDMBwjaD8 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDMBwjaD8 H2 {
  color: #63ce3a;
}
.cid-uPDMBwjaD8 .mbr-text,
.cid-uPDMBwjaD8 .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDMBwjaD8 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDMBwjaD8 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDMBwjaD8 H1 {
  color: #ffffff;
}
.cid-uPDMBx6c1f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDMBxk7b7 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDMBxk7b7 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDMBxk7b7 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDMBxk7b7 H2 {
  color: #e7272d;
}
.cid-uPDMBxk7b7 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDMBxk7b7 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDMBxk7b7 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMBxk7b7 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMBxk7b7 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDMBxk7b7 H4 {
  color: #fbbe36;
}
.cid-uPDMBxk7b7 .mbr-text,
.cid-uPDMBxk7b7 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDMBxk7b7 .logo-wrap:before {
    content: none;
  }
  .cid-uPDMBxk7b7 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDMBxk7b7 H3 {
  color: #ffffff;
}
.cid-uPDMJ83HD6 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDMJ83HD6 H2 {
  color: #63ce3a;
}
.cid-uPDMJ83HD6 .mbr-text,
.cid-uPDMJ83HD6 .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDMJ83HD6 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDMJ83HD6 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDMJ83HD6 H1 {
  color: #ffffff;
}
.cid-uPDMJ8NvAH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDMJ92BLR {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDMJ92BLR .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDMJ92BLR .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDMJ92BLR H2 {
  color: #e7272d;
}
.cid-uPDMJ92BLR .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDMJ92BLR .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDMJ92BLR .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMJ92BLR .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMJ92BLR .col-lg-12 {
  overflow: hidden;
}
.cid-uPDMJ92BLR H4 {
  color: #fbbe36;
}
.cid-uPDMJ92BLR .mbr-text,
.cid-uPDMJ92BLR .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDMJ92BLR .logo-wrap:before {
    content: none;
  }
  .cid-uPDMJ92BLR .logo-wrap:after {
    content: none;
  }
}
.cid-uPDMJ92BLR H3 {
  color: #ffffff;
}
.cid-uPDMNW1tH7 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/chatgpt-image-jun-30-2025-02-46-25-pm.png");
}
.cid-uPDMNW1tH7 H2 {
  color: #63ce3a;
}
.cid-uPDMNW1tH7 .mbr-text,
.cid-uPDMNW1tH7 .mbr-section-btn {
  color: #ffffff;
}
.cid-uPDMNW1tH7 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-uPDMNW1tH7 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-uPDMNW1tH7 H1 {
  color: #ffffff;
}
.cid-uPDMNWAgWb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #43622f;
}
.cid-uPDMNWWs75 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo.jpg");
}
.cid-uPDMNWWs75 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uPDMNWWs75 .row {
  border-bottom: 1px solid #7d9a3d;
}
.cid-uPDMNWWs75 H2 {
  color: #e7272d;
}
.cid-uPDMNWWs75 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uPDMNWWs75 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uPDMNWWs75 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMNWWs75 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7d9a3d;
}
.cid-uPDMNWWs75 .col-lg-12 {
  overflow: hidden;
}
.cid-uPDMNWWs75 H4 {
  color: #fbbe36;
}
.cid-uPDMNWWs75 .mbr-text,
.cid-uPDMNWWs75 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPDMNWWs75 .logo-wrap:before {
    content: none;
  }
  .cid-uPDMNWWs75 .logo-wrap:after {
    content: none;
  }
}
.cid-uPDMNWWs75 H3 {
  color: #ffffff;
}
