.home-hero {
  position: relative;
  overflow: hidden;
  background: #f5f1eb;
  padding: 58px 0 64px;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 64px;
  align-items: center;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero__copy {
  max-width: 680px;
}

.home-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--htr-orange-dark);
  font-family: Intro, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif !important;
  font-size: clamp(2.65rem, 4.6vw, 4.05rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.home-hero__intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: #315e59;
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}

.home-hero__trust {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 7px 13px;
  border: 1px solid rgba(1, 75, 67, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-hero__trust-logo {
  display: inline-block;
  width: 74px;
  height: auto;
  flex: 0 0 74px;
  vertical-align: middle;
}

.home-hero__trust span {
  flex: 1 1 auto;
  min-width: 0;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 2px solid;
  border-radius: 999px;
  font-family: INTRODEMO-BLACKCAPS, Intro, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-hero__btn:hover,
.home-hero__btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.home-hero__btn--primary {
  border-color: var(--htr-orange-dark);
  background: var(--htr-orange-dark);
  box-shadow: 0 10px 24px rgba(189, 66, 0, 0.22);
  color: var(--htr-white);
}

.home-hero__btn--primary:hover,
.home-hero__btn--primary:focus {
  border-color: var(--htr-orange-dark);
  background: var(--htr-orange-dark);
  box-shadow: 0 13px 28px rgba(189, 66, 0, 0.28);
  color: var(--htr-white);
}

.home-hero__btn--secondary {
  border-color: #9eb8b2;
  background: transparent;
  color: var(--htr-green-dark);
}

.home-hero__btn--secondary:hover,
.home-hero__btn--secondary:focus {
  border-color: var(--htr-green-dark);
  background: var(--htr-white);
  color: var(--htr-green-dark);
}

.home-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.home-hero__image-frame {
  width: 100%;
  padding: 7px;
  border: 1px solid rgba(1, 75, 67, 0.14);
  border-radius: 22px;
  background: rgba(229, 255, 219, 0.45);
  box-shadow: 0 12px 24px rgba(10, 62, 55, 0.08);
}

.home-hero__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: brightness(1.06) contrast(1.03);
}

.home-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero__shape--orange {
  width: 220px;
  height: 220px;
  top: -142px;
  right: -88px;
  background: var(--htr-orange-dark);
  opacity: 0.68;
}

.home-hero__shape--green {
  width: 150px;
  height: 150px;
  bottom: -96px;
  left: -76px;
  background: var(--htr-green-dark);
  opacity: 0.72;
}

@media (max-width: 991px) {
  .home-hero {
    padding: 48px 0 54px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 36px;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 6vw, 3.5rem);
  }

}

@media (max-width: 767px) {
  .home-hero {
    padding: 38px 0 44px;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
  }

  .home-hero__copy {
    max-width: none;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1.03;
  }

  .home-hero__intro {
    margin-top: 16px;
    font-size: 1.15rem;
  }

  .home-hero__trust {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 34px;
    font-size: 0.94rem;
    line-height: 1.3;
  }

  .home-hero__trust-logo {
    width: 64px;
    flex-basis: 64px;
  }

  .home-hero__actions {
    margin-top: 24px;
  }

  .home-hero__visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__btn {
    width: 100%;
  }
}

.home-discovery-section {
  background: #f5f1eb;
  padding: 18px 20px 54px;
}

.home-discovery-section__inner {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  margin: 0 auto;
  max-width: 1140px;
  padding: 34px 38px;
  border: 1px solid rgba(1, 75, 67, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 112, 39, 0.09), transparent 15rem),
    var(--htr-white);
  box-shadow: 0 10px 24px rgba(10, 62, 55, 0.07);
}

.home-discovery-section__copy {
  max-width: 720px;
}

.home-discovery-section__eyebrow {
  color: var(--htr-orange-dark);
  font-family: Intro, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.home-discovery-section h2 {
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.home-discovery-section__copy p:last-child {
  max-width: 680px;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.45;
  margin: 14px 0 0;
}

.home-discovery-section__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
  min-width: 205px;
  padding-left: 34px;
  border-left: 1px solid #d8e1dc;
}

.home-discovery-section__btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: INTRODEMO-BLACKCAPS, Intro, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1px;
  min-height: 50px;
  padding: 12px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-discovery-section__btn:hover,
.home-discovery-section__btn:focus {
  text-decoration: none;
}

.home-discovery-section__btn--primary {
  background: var(--htr-orange-dark);
  border: 2px solid var(--htr-orange-dark);
  box-shadow: 0 9px 20px rgba(189, 66, 0, 0.18);
  color: var(--htr-white);
}

.home-discovery-section__btn--primary:hover,
.home-discovery-section__btn--primary:focus {
  background: var(--htr-orange-dark);
  border-color: var(--htr-orange-dark);
  color: var(--htr-white);
}

.home-discovery-section__btn--secondary {
  background: transparent;
  border: 2px solid #9eb8b2;
  color: var(--htr-green-dark);
}

.home-discovery-section__btn--secondary:hover,
.home-discovery-section__btn--secondary:focus {
  background: #f5f1eb;
  border-color: var(--htr-green-dark);
  color: var(--htr-green-dark);
}

@media (max-width: 900px) {
  .home-discovery-section__inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-discovery-section__actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid #d8e1dc;
    border-left: 0;
  }

  .home-discovery-section__btn {
    flex: 1 1 190px;
  }
}

@media (max-width: 575px) {
  .home-discovery-section {
    padding: 14px 14px 36px;
  }

  .home-discovery-section__inner {
    gap: 20px;
    padding: 26px 20px 22px;
    border-radius: 18px;
  }

  .home-discovery-section h2 {
    font-size: 1.75rem;
  }

  .home-discovery-section__copy p:last-child {
    font-size: 1rem;
  }

  .home-discovery-section__actions {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }

  .home-discovery-section__btn {
    flex-basis: auto;
    width: 100%;
  }
}
.home-metrics {
  background: #f5f1eb;
  padding: 0 20px 48px;
}

.home-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.home-metric-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 24px 26px 22px;
  border: 1px solid rgba(1, 75, 67, 0.14);
  border-radius: 18px;
  background: var(--htr-white);
  box-shadow: 0 8px 20px rgba(10, 62, 55, 0.06);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-metric-card__accent {
  position: absolute;
  top: 0;
  left: 50%;
  width: 36px;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: var(--htr-orange-dark);
  opacity: 0.75;
  transform: translateX(-50%);
}

.home-metric-card__value {
  display: block;
  min-height: 1.1em;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}

.home-metric-card p {
  max-width: 240px;
  margin: 10px auto 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .home-metrics {
    padding: 10px 14px 30px;
  }

  .home-metrics__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-metric-card {
    padding: 12px 18px 11px;
    border-radius: 16px;
  }

  .home-metric-card__value {
    font-size: 1.85rem;
  }

  .home-metric-card p {
    max-width: 280px;
    margin-top: 4px;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .home-metric-card__accent {
    width: 28px;
  }
}

.home-management {
  background: #f5f1eb;
  padding: 64px 20px 72px;
}

.home-management__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.home-management__heading {
  max-width: 760px;
  margin: 0 0 34px;
}

.home-management__eyebrow {
  margin: 0 0 8px;
  color: var(--htr-orange-dark);
  font-family: Intro, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-management__heading h2 {
  margin: 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
}

.home-management__heading > p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.home-management__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-benefit-card {
  position: relative;
  min-width: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(1, 75, 67, 0.14);
  border-radius: 18px;
  background: var(--htr-white);
  box-shadow: 0 8px 20px rgba(10, 62, 55, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(1, 75, 67, 0.12);
  border-radius: 50%;
  background: var(--htr-green-light);
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.home-benefit-card h3 {
  margin: 16px 0 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-benefit-card p {
  margin: 8px 0 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .home-management__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .home-management {
    padding: 38px 14px 42px;
  }

  .home-management__heading {
    margin-bottom: 20px;
  }

  .home-management__heading h2 {
    font-size: 1.85rem;
  }

  .home-management__heading > p:last-child {
    margin-top: 10px;
    font-size: 1rem;
  }

  .home-management__grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .home-benefit-card {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 10px;
    padding: 11px 14px;
    border-radius: 15px;
  }

  .home-benefit-card__icon {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
  }

  .home-benefit-card h3 {
    margin: 1px 0 0;
    font-size: 1rem;
  }

  .home-benefit-card p {
    margin-top: 3px;
    font-size: 0.87rem;
    line-height: 1.25;
  }
}

.u-section-3 {
  min-height: 663px;
}

.u-section-3 .u-layout-wrap-1 {
  margin-top: 0;
  margin-bottom: 60px;
}

.u-section-3 .u-layout-cell-1 {
  min-height: 579px;
}

.u-section-3 .u-container-layout-1 {
  padding: 0;
}

.u-section-3 .u-image-1 {
  min-height: 535px;
  background-image: url("../img/mancha_naranja.png");
  background-position: 50% 50%;
  width: 460px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-container-layout-2 {
  padding: 0;
}

.u-section-3 .u-text-1 {
  font-family: Intro;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 159px 31px 0 auto;
}

.u-section-3 .u-group-2 {
  width: 129px;
  min-height: 137px;
  margin: 0 auto -93px 0;
}

.u-section-3 .u-container-layout-3 {
  padding: 0;
}

.u-section-3 .u-image-2 {
  width: 128px;
  height: 112px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-shape-1 {
  width: 68px;
  height: 68px;
  margin: -44px auto 0 46px;
}

.u-section-3 .u-layout-cell-2 {
  min-height: 579px;
}

.u-section-3 .u-container-layout-4 {
  padding: 0;
}

.u-section-3 .u-group-3 {
  width: 555px;
  min-height: 564px;
  margin: 14px auto 0 0;
}

.u-section-3 .u-container-layout-5 {
  padding: 30px 12px 0;
}

.u-section-3 .u-text-2 {
  font-family: HARABARA;
  line-height: 1.2;
  font-size: 1.375rem;
  margin: 0 auto 0 1px;
}

.u-section-3 .u-text-3 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 auto 0 1px;
}

.u-section-3 .u-text-4 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px auto 0 1px;
}

.u-section-3 .u-text-5 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-6 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-3 .u-text-7 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-8 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-3 .u-text-9 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-10 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-3 .u-text-11 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 auto 0 1px;
}

.u-section-3 .u-group-4 {
  width: 118px;
  min-height: 224px;
  margin: -578px 0 0 auto;
}

.u-section-3 .u-container-layout-6 {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  .u-section-3 {
    min-height: 561px;
  }

  .u-section-3 .u-layout-cell-1 {
    margin-top: 0;
    background-position: 50% 50%;
  }

  .u-section-3 .u-image-1 {
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-3 .u-text-1 {
    font-size: 2rem;
  }

  .u-section-3 .u-image-2 {
    height: 113px;
  }

  .u-section-3 .u-shape-1 {
    margin-top: -45px;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 578px;
  }

  .u-section-3 .u-group-3 {
    width: 544px;
  }

  .u-section-3 .u-group-4 {
    width: 115px;
    margin-top: -564px;
  }
}

@media (max-width: 991px) {
  .u-section-3 {
    min-height: 522px;
  }

  .u-section-3 .u-layout-wrap-1 {
    margin-top: 33px;
    margin-bottom: 0;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 406px;
  }

  .u-section-3 .u-image-1 {
    width: 264px;
    margin-right: auto;
    margin-left: 0;
  }

  .u-section-3 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-3 .u-group-2 {
    width: 80px;
    min-height: 72px;
    margin-top: -117px;
    margin-bottom: 0;
  }

  .u-section-3 .u-image-2 {
    width: 75px;
    height: 68px;
  }

  .u-section-3 .u-shape-1 {
    width: 41px;
    height: 41px;
    margin-top: -37px;
    margin-left: auto;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 406px;
  }

  .u-section-3 .u-group-3 {
    width: 436px;
    min-height: 396px;
  }

  .u-section-3 .u-container-layout-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .u-section-3 .u-text-2 {
    font-size: 1rem;
    margin-left: 0;
  }

  .u-section-3 .u-text-3 {
    font-size: 1rem;
    margin-left: 0;
  }

  .u-section-3 .u-text-4 {
    font-size: 1rem;
    margin-left: 0;
  }

  .u-section-3 .u-text-5 {
    font-size: 1rem;
  }

  .u-section-3 .u-text-6 {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-3 .u-text-7 {
    font-size: 1rem;
  }

  .u-section-3 .u-text-8 {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-3 .u-text-9 {
    font-size: 1rem;
  }

  .u-section-3 .u-text-10 {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-3 .u-text-11 {
    font-size: 1rem;
    margin-left: 0;
  }

  .u-section-3 .u-group-4 {
    width: 63px;
    min-height: 125px;
    margin-top: -410px;
  }
}

@media (max-width: 767px) {
  .u-section-3 {
    min-height: 284px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 431px;
  }

  .u-section-3 .u-group-2 {
    margin-top: 20px;
    margin-bottom: initial;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 410px;
  }

  .u-section-3 .u-container-layout-5 {
    padding-top: 13px;
  }

  .u-section-3 .u-group-4 {
    width: 173px;
    min-height: 344px;
    margin-top: -825px;
  }
}

@media (max-width: 575px) {
  .u-section-3 {
    min-height: 671px;
  }

  .u-section-3 .u-layout-wrap-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 261px;
  }

  .u-section-3 .u-image-1 {
    min-height: 259px;
    width: 225px;
    margin-top: 3px;
    margin-right: 215px;
  }

  .u-section-3 .u-text-1 {
    font-size: 1.375rem;
    margin-top: 0;
  }

  .u-section-3 .u-group-2 {
    margin-top: 650px;
    margin-bottom: -767px;
    margin-left: 1px;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 409px;
  }

  .u-section-3 .u-group-3 {
    width: 340px;
    min-height: 384px;
  }

  .u-section-3 .u-container-layout-5 {
    padding-top: 0;
  }

  .u-section-3 .u-group-4 {
    width: 68px;
    min-height: 147px;
    margin-top: -659px;
  }
}.u-section-4 {
  min-height: 537px;
}

.u-section-4 .u-layout-wrap-1 {
  margin-top: 1px;
  margin-bottom: 1px;
}

.u-section-4 .u-layout-cell-1 {
  min-height: 536px;
}

.u-section-4 .u-container-layout-1 {
  padding: 0;
}

.u-section-4 .u-group-1 {
  width: 467px;
  min-height: 383px;
  margin: 76px 20px 0 auto;
}

.u-section-4 .u-container-layout-2 {
  padding: 30px 0 0;
}

.u-section-4 .u-text-1 {
  font-family: HARABARA;
  line-height: 1.2;
  font-size: 1.375rem;
  margin: 0 1px 0 0;
}

.u-section-4 .u-text-2 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 1px 0 0;
}

.u-section-4 .u-text-3 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0 0;
}

.u-section-4 .u-text-4 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0;
}

.u-section-4 .u-text-5 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-4 .u-text-6 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0;
}

.u-section-4 .u-layout-cell-2 {
  min-height: 536px;
}

.u-section-4 .u-container-layout-3 {
  padding: 0;
}

.u-section-4 .u-image-1 {
  min-height: 535px;
  background-image: url("../img/mancha_negra.png");
  background-position: 50% 50%;
  width: 460px;
  margin: 0 0 0 auto;
}

.u-section-4 .u-container-layout-4 {
  padding: 0;
}

.u-section-4 .u-text-7 {
  font-family: Intro;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 161px auto 0 57px;
}

@media (max-width: 1199px) {
  .u-section-4 {
    min-height: 449px;
  }

  .u-section-4 .u-layout-cell-1 {
    margin-top: 0;
    background-position: 50% 50%;
    min-height: 448px;
  }

  .u-section-4 .u-text-1 {
    margin-left: 1px;
  }

  .u-section-4 .u-text-2 {
    margin-left: 1px;
  }

  .u-section-4 .u-text-3 {
    margin-left: 1px;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 448px;
  }

  .u-section-4 .u-image-1 {
    min-height: 415px;
    width: 384px;
    margin-right: -11px;
  }

  .u-section-4 .u-container-layout-4 {
    padding-bottom: 15px;
  }

  .u-section-4 .u-text-7 {
    font-size: 2rem;
    width: auto;
    margin-top: 154px;
    margin-right: 116px;
  }
}

@media (max-width: 991px) {
  .u-section-4 {
    min-height: 369px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 368px;
  }

  .u-section-4 .u-group-1 {
    width: 444px;
    margin-right: 0;
  }

  .u-section-4 .u-text-1 {
    font-size: 1rem;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-4 .u-text-2 {
    font-size: 1rem;
    margin-right: 0;
    margin-left: auto;
  }

  .u-section-4 .u-text-3 {
    font-size: 1rem;
    margin-right: 0;
    margin-left: auto;
  }

  .u-section-4 .u-text-4 {
    font-size: 1rem;
    margin-left: auto;
  }

  .u-section-4 .u-text-5 {
    font-size: 1rem;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-4 .u-text-6 {
    font-size: 1rem;
    margin-left: auto;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 368px;
  }

  .u-section-4 .u-image-1 {
    min-height: 335px;
    width: 306px;
    margin-right: -8px;
  }

  .u-section-4 .u-text-7 {
    font-size: 1.875rem;
    margin-top: 94px;
    margin-right: 57px;
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .u-section-4 {
    min-height: 363px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 251px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-top: 13px;
  }

  .u-section-4 .u-text-3 {
    width: auto;
    margin-left: 0;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 298px;
  }
}

@media (max-width: 575px) {
  .u-section-4 {
    min-height: 526px;
  }

  .u-section-4 .u-layout-wrap-1 {
    margin-top: 17px;
    margin-bottom: 0;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 253px;
  }

  .u-section-4 .u-group-1 {
    width: 340px;
    min-height: 258px;
    margin-top: 0;
    margin-left: 100px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-top: 0;
  }

  .u-section-4 .u-text-2 {
    width: auto;
    margin-right: 25px;
    margin-left: 0;
  }

  .u-section-4 .u-text-3 {
    margin-top: 5px;
  }

  .u-section-4 .u-text-4 {
    width: auto;
    margin-left: 1px;
    margin-right: 1px;
  }

  .u-section-4 .u-text-5 {
    margin-top: 5px;
  }

  .u-section-4 .u-text-6 {
    width: auto;
    margin-left: 0;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 252px;
  }

  .u-section-4 .u-image-1 {
    min-height: 247px;
    width: 220px;
  }

  .u-section-4 .u-text-7 {
    font-size: 1.375rem;
    margin-top: 80px;
    margin-right: 20px;
    margin-left: 38px;
  }
}

.home-brand {
  background: var(--htr-white);
  padding: 64px 20px 72px;
}

.home-brand__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.home-brand__heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-brand__eyebrow {
  margin: 0 0 8px;
  color: var(--htr-orange-dark);
  font-family: Intro, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-brand__heading h2 {
  margin: 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
}

.home-brand__heading > p:last-child {
  max-width: 680px;
  margin: 14px auto 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.home-brand__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-brand-card {
  position: relative;
  min-width: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(1, 75, 67, 0.14);
  border-radius: 18px;
  background: #fdfcf9;
  box-shadow: 0 8px 20px rgba(10, 62, 55, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-brand-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(189, 66, 0, 0.12);
  background: #fff0e6;
  color: var(--htr-orange-dark);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-brand-card h3 {
  margin: 16px 0 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-brand-card p {
  margin: 8px 0 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .home-brand__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .home-brand {
    padding: 40px 14px 44px;
  }

  .home-brand__heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .home-brand__heading h2 {
    font-size: 1.9rem;
  }

  .home-brand__heading > p:last-child {
    margin-top: 10px;
    font-size: 1rem;
  }

  .home-brand__grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .home-brand-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
    padding: 12px 14px;
    border-radius: 15px;
  }

  .home-brand-card__icon {
    grid-row: 1 / 3;
    min-width: 0;
    width: 38px;
    height: 26px;
    padding: 0;
  }

  .home-brand-card h3 {
    margin: 1px 0 0;
    font-size: 1rem;
  }

  .home-brand-card p {
    margin-top: 3px;
    font-size: 0.87rem;
    line-height: 1.25;
  }
}

.home-final-cta {
  background: #f5f1eb;
  padding: 42px 20px;
}

.home-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 30px 34px;
  border: 1px solid rgba(1, 75, 67, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 112, 39, 0.11), transparent 14rem),
    var(--htr-white);
  box-shadow: 0 10px 24px rgba(10, 62, 55, 0.07);
}

.home-final-cta__copy {
  max-width: 740px;
}

.home-final-cta h2 {
  margin: 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-final-cta p {
  margin: 10px 0 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
}

.home-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 50px;
  padding: 12px 26px;
  border: 2px solid var(--htr-orange-dark);
  border-radius: 999px;
  background: var(--htr-orange-dark);
  box-shadow: 0 10px 24px rgba(189, 66, 0, 0.2);
  color: var(--htr-white);
  font-family: INTRODEMO-BLACKCAPS, Intro, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-final-cta__button:hover,
.home-final-cta__button:focus {
  border-color: var(--htr-orange-dark);
  background: var(--htr-orange-dark);
  box-shadow: 0 13px 28px rgba(189, 66, 0, 0.26);
  color: var(--htr-white);
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .home-final-cta {
    padding: 30px 14px;
  }

  .home-final-cta__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px 22px;
    border-radius: 18px;
  }

  .home-final-cta h2 {
    font-size: 1.75rem;
  }

  .home-final-cta p {
    font-size: 1rem;
  }

  .home-final-cta__button {
    width: 100%;
  }
}

.u-section-5 {
  min-height: 537px;
}

.u-section-5 .u-layout-wrap-1 {
  margin-top: 1px;
  margin-bottom: 1px;
}

.u-section-5 .u-layout-cell-1 {
  min-height: 535px;
}

.u-section-5 .u-container-layout-1 {
  padding: 0;
}

.u-section-5 .u-image-1 {
  min-height: 535px;
  background-image: url("../img/mancha_verde.png");
  background-position: 50% 50%;
  width: 460px;
  margin: 0 auto 0 0;
}

.u-section-5 .u-container-layout-2 {
  padding: 0;
}

.u-section-5 .u-text-1 {
  font-family: Intro;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 159px 32px 0 218px;
}

.u-section-5 .u-layout-cell-2 {
  min-height: 535px;
}

.u-section-5 .u-container-layout-3 {
  padding: 0;
}

.u-section-5 .u-group-2 {
  width: 555px;
  min-height: 455px;
  margin: 0 222px 0 46px;
}

.u-section-5 .u-container-layout-4 {
  padding: 30px 12px 0;
}

.u-section-5 .u-text-2 {
  font-family: HARABARA;
  line-height: 1.2;
  font-size: 1.375rem;
  margin: 0 1px;
}

.u-section-5 .u-text-3 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 1px;
}

.u-section-5 .u-text-4 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-5 .u-text-5 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0;
}

.u-section-5 .u-text-6 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-5 .u-text-7 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0;
}

.u-section-5 .u-text-8 {
  font-family: HARABARA;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 20px 1px 0;
}

.u-section-5 .u-text-9 {
  font-family: HARABARA-MAIS-LIGHT;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 1199px) {
  .u-section-5 {
    min-height: 533px;
  }

  .u-section-5 .u-layout-cell-1 {
    margin-top: 0;
    background-position: 50% 50%;
    min-height: 531px;
  }

  .u-section-5 .u-image-1 {
    min-height: 431px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-5 .u-text-1 {
    font-size: 2rem;
    width: auto;
    margin-top: 124px;
    margin-right: 20px;
    margin-left: 127px;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 531px;
  }

  .u-section-5 .u-group-2 {
    width: 510px;
    min-height: 531px;
    margin-right: auto;
    margin-left: 25px;
  }

  .u-section-5 .u-text-2 {
    width: auto;
  }

  .u-section-5 .u-text-9 {
    width: auto;
  }
}

@media (max-width: 991px) {
  .u-section-5 {
    min-height: 416px;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 415px;
  }

  .u-section-5 .u-image-1 {
    min-height: 324px;
    width: 301px;
    margin-right: auto;
    margin-left: -12px;
  }

  .u-section-5 .u-text-1 {
    font-size: 1.875rem;
    margin-top: 99px;
    margin-left: 54px;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 415px;
  }

  .u-section-5 .u-group-2 {
    width: 377px;
    min-height: 414px;
    margin-right: 131px;
    margin-left: 11px;
  }

  .u-section-5 .u-container-layout-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .u-section-5 .u-text-2 {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-text-3 {
    font-size: 1rem;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-text-4 {
    font-size: 1rem;
    width: auto;
    margin-right: 0;
    margin-left: 12px;
  }

  .u-section-5 .u-text-5 {
    font-size: 1rem;
    width: auto;
  }

  .u-section-5 .u-text-6 {
    font-size: 1rem;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-text-7 {
    font-size: 1rem;
    width: auto;
  }

  .u-section-5 .u-text-8 {
    font-size: 1rem;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-text-9 {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .u-section-5 {
    min-height: 578px;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 265px;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 252px;
  }

  .u-section-5 .u-group-2 {
    width: 332px;
    min-height: 377px;
    margin-top: -188px;
    margin-right: 53px;
    margin-left: auto;
  }

  .u-section-5 .u-container-layout-4 {
    padding-top: 13px;
  }

  .u-section-5 .u-text-3 {
    margin-left: 20px;
  }

  .u-section-5 .u-text-5 {
    margin-left: 20px;
  }

  .u-section-5 .u-text-7 {
    margin-left: 20px;
  }

  .u-section-5 .u-text-9 {
    margin-left: 20px;
  }
}

@media (max-width: 575px) {
  .u-section-5 {
    min-height: 582px;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 257px;
  }

  .u-section-5 .u-image-1 {
    min-height: 239px;
    width: 232px;
  }

  .u-section-5 .u-text-1 {
    font-size: 1.375rem;
    margin-top: 0;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 306px;
    order: 0;
  }

  .u-section-5 .u-group-2 {
    width: 341px;
    min-height: 306px;
    margin-top: 0;
    margin-right: auto;
  }

  .u-section-5 .u-container-layout-4 {
    padding-top: 0;
  }

  .u-section-5 .u-text-2 {
    margin-left: 25px;
  }

  .u-section-5 .u-text-3 {
    margin-left: 0;
  }

  .u-section-5 .u-text-4 {
    margin-top: 5px;
    margin-left: 0;
  }

  .u-section-5 .u-text-5 {
    margin-left: 0;
  }

  .u-section-5 .u-text-6 {
    margin-top: 5px;
  }

  .u-section-5 .u-text-7 {
    margin-top: 1px;
    margin-left: 0;
  }

  .u-section-5 .u-text-8 {
    margin-top: -1px;
  }

  .u-section-5 .u-text-9 {
    margin-left: 0;
  }
}

.home-steps {
  background: var(--htr-white);
  padding: 64px 20px 70px;
}

.home-steps__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.home-steps__heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-steps__eyebrow {
  margin: 0 0 8px;
  color: var(--htr-orange-dark);
  font-family: Intro, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-steps__heading h2 {
  margin: 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-steps__heading > p:last-child {
  margin: 12px auto 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.home-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-step-card {
  position: relative;
  min-width: 0;
  padding: 28px 26px 26px;
  border: 1px solid rgba(1, 75, 67, 0.14);
  border-radius: 18px;
  background: #fdfcf9;
  box-shadow: 0 8px 20px rgba(10, 62, 55, 0.06);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-step-card__number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(1, 75, 67, 0.12);
  background: var(--htr-green-light);
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .home-metric-card:hover,
  .home-benefit-card:hover,
  .home-brand-card:hover,
  .home-step-card:hover {
    border-color: rgba(1, 75, 67, 0.28);
    box-shadow: 0 14px 28px rgba(10, 62, 55, 0.1);
    transform: translateY(-3px);
  }

  .home-discovery-section__btn:hover,
  .home-final-cta__button:hover,
  .home-hero__btn:hover {
    box-shadow: 0 12px 24px rgba(10, 62, 55, 0.1);
  }
}

.home-step-card img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: 130px;
  margin: 0 auto;
  object-fit: contain;
}

.home-step-card h3 {
  margin: 16px 0 0;
  color: var(--htr-green-dark);
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
}

.home-step-card p {
  max-width: 260px;
  margin: 9px auto 0;
  color: #536f6a;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .home-steps {
    padding: 46px 14px 50px;
  }

  .home-steps__heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .home-steps__heading h2 {
    font-size: 2rem;
  }

  .home-steps__heading > p:last-child {
    font-size: 1rem;
  }

  .home-steps__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-step-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    padding: 16px 18px 16px 58px;
    text-align: left;
  }

  .home-step-card__number {
    top: 16px;
    left: 14px;
    width: 30px;
    height: 30px;
  }

  .home-step-card img {
    grid-row: 1 / 3;
    width: 72px;
    height: 72px;
  }

  .home-step-card h3 {
    margin: 0;
    font-size: 1.2rem;
  }

  .home-step-card p {
    margin: 4px 0 0;
    font-size: 0.94rem;
    line-height: 1.3;
  }
}

.u-section-6 .u-sheet-1 {
  min-height: 839px;
}

.u-section-6 .u-layout-wrap-1 {
  width: 1140px;
  margin: 44px 0 1px;
}

.u-section-6 .u-layout-cell-1 {
  min-height: 163px;
  margin-top: 0;
}

.u-section-6 .u-container-layout-1 {
  padding: 0 30px;
}

.u-section-6 .u-image-1 {
  width: 385px;
  left: 64px;
  right: auto;
}

.u-section-6 .u-layout-cell-2 {
  min-height: 71px;
  margin-top: 0;
}

.u-section-6 .u-container-layout-2 {
  padding: 30px 30px 0;
}

.u-section-6 .u-text-1 {
  font-family: INTRODEMO-BLACKCAPS;
  font-size: 3.25rem;
  font-weight: 700;
  margin: 0 0 0 364px;
}

.u-section-6 .u-layout-cell-3 {
  min-height: 544px;
}

.u-section-6 .u-container-layout-3 {
  padding: 30px;
}

.u-section-6 .u-text-2 {
  font-size: 3.75rem;
  font-weight: 700;
  font-family: Intro;
  width: 31px;
  margin: 0 auto;
}

.u-section-6 .u-image-2 {
  width: 160px;
  height: 161px;
  margin: 0 auto;
}

.u-section-6 .u-text-3 {
  font-family: Intro;
  width: 252px;
  font-weight: 700;
  margin: 15px auto 0;
}

.u-section-6 .u-text-4 {
  width: 252px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: Roboto, sans-serif;
  margin: 16px auto 0;
}

.u-section-6 .u-layout-cell-4 {
  min-height: 544px;
}

.u-section-6 .u-container-layout-4 {
  padding: 30px;
}

.u-section-6 .u-text-5 {
  font-size: 3.75rem;
  font-weight: 700;
  font-family: Intro;
  width: 35px;
  margin: 0 auto;
}

.u-section-6 .u-image-3 {
  width: 225px;
  height: 164px;
  margin: 0 48px;
}

.u-section-6 .u-text-6 {
  font-family: Intro;
  font-weight: 700;
  margin: 15px 52px 0 65px;
}

.u-section-6 .u-text-7 {
  width: 252px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: Roboto, sans-serif;
  margin: 16px auto 0;
}

.u-section-6 .u-layout-cell-5 {
  min-height: 544px;
}

.u-section-6 .u-container-layout-5 {
  padding: 26px 30px;
}

.u-section-6 .u-text-8 {
  font-size: 3.75rem;
  font-weight: 700;
  font-family: Intro;
  margin: 4px auto 0;
}

.u-section-6 .u-image-4 {
  width: 215px;
  height: 153px;
  margin: 0 53px;
}

.u-section-6 .u-text-9 {
  font-family: Intro;
  font-weight: 700;
  margin: 15px 0 0;
}

.u-section-6 .u-text-10 {
  width: 252px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: Roboto, sans-serif;
  margin: 16px auto 0;
}

@media (max-width: 1199px) {
  .u-section-6 .u-sheet-1 {
    min-height: 749px;
  }

  .u-section-6 .u-layout-wrap-1 {
    width: 940px;
    margin-top: 0;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 134px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 59px;
  }

  .u-section-6 .u-text-1 {
    margin-left: 164px;
  }

  .u-section-6 .u-layout-cell-3 {
    min-height: 449px;
  }

  .u-section-6 .u-layout-cell-4 {
    min-height: 449px;
  }

  .u-section-6 .u-image-3 {
    margin-left: 14px;
    margin-right: 14px;
  }

  .u-section-6 .u-text-6 {
    margin-left: 32px;
    margin-right: 19px;
    width: 190px;
  }

  .u-section-6 .u-layout-cell-5 {
    min-height: 449px;
  }

  .u-section-6 .u-image-4 {
    margin-left: 19px;
    margin-right: 19px;
  }
}

@media (max-width: 991px) {
  .u-section-6 .u-sheet-1 {
    min-height: 371px;
  }

  .u-section-6 .u-layout-wrap-1 {
    position: relative;
    width: 720px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 173px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-6 .u-text-1 {
    width: auto;
    margin-left: 0;
  }

  .u-section-6 .u-layout-cell-3 {
    min-height: 100px;
  }

  .u-section-6 .u-text-3 {
    width: 180px;
  }

  .u-section-6 .u-text-4 {
    width: 180px;
  }

  .u-section-6 .u-layout-cell-4 {
    min-height: 100px;
  }

  .u-section-6 .u-container-layout-4 {
    padding-left: 19px;
    padding-right: 19px;
  }

  .u-section-6 .u-image-3 {
    width: 180px;
    height: 131px;
    margin-left: 11px;
    margin-right: 11px;
  }

  .u-section-6 .u-text-6 {
    width: auto;
    margin-top: 43px;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-6 .u-text-7 {
    width: 180px;
  }

  .u-section-6 .u-layout-cell-5 {
    min-height: 100px;
  }

  .u-section-6 .u-image-4 {
    width: 180px;
    height: 128px;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-6 .u-text-9 {
    width: auto;
    margin-top: 50px;
  }

  .u-section-6 .u-text-10 {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .u-section-6 .u-sheet-1 {
    min-height: 793px;
  }

  .u-section-6 .u-layout-wrap-1 {
    width: 540px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 130px;
  }

  .u-section-6 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-image-1 {
    width: 374px;
    height: 169px;
    left: auto;
    bottom: auto;
    right: auto;
    top: auto;
    margin: 0 auto 0 63px;
  }

  .u-section-6 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-image-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .u-section-6 .u-container-layout-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-image-4 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .u-section-6 .u-sheet-1 {
    min-height: 536px;
  }

  .u-section-6 .u-layout-wrap-1 {
    width: 340px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 82px;
  }

  .u-section-6 .u-image-1 {
    height: 109px;
    width: 242px;
    margin-top: 29px;
    margin-left: auto;
  }

  .u-section-6 .u-text-1 {
    font-size: 1.5rem;
  }
}
