@charset "UTF-8";
body {
  margin: 0 auto;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

ul {
  margin: 0 !important;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.h100p {
  height: 100%;
}

#header {
  height: 100px;
  background: transparent;
  z-index: 1200;
  transition: background-color 0.3s ease;
}

#header.active {
  /* Sin fondo ni sombra: .active solo controla botón PROYECTOS en desktop */
}

#header .row,
#header .col-12,
#navbar_header {
  height: 100%;
}

#header .row {
  align-items: center;
}

#navbar_header {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
  height: 80px;
}

.header__logo {
  display: block;
  height: 80px;
  width: auto;
  max-height: 100%;
}

.header__logo--blanco {
  display: block;
}

.header__logo--negro {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__btn-proyectos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  background-color: #1C9B83;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#header.active .header__btn-proyectos {
  opacity: 1;
  pointer-events: auto;
}

.header__btn-proyectos:hover {
  color: #ffffff;
  background-color: rgb(21.7573770492, 120.4426229508, 101.793442623);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.header__btn-proyectos:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(28, 155, 131, 0.25);
}

.header__hamburguesa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: auto;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.header__hamburguesa-icon {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
  opacity: 0;
}

#menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: flex-end;
  z-index: 1300;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0.35s;
}
#menu-mobile.show {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0s;
}
#menu-mobile > div:first-child {
  flex-basis: 60%;
  height: 100%;
  cursor: pointer;
}
#menu-mobile > div:nth-child(2) {
  flex-basis: 40%;
  height: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
#menu-mobile.show > div:nth-child(2) {
  transform: translateX(0);
}

#contenedor-interno-menu-mobile,
.header__mobile-panel {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.close-menu-mobile {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.close-menu-mobile::before, .close-menu-mobile::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.close-menu-mobile::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-menu-mobile::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 65%;
  height: 80%;
  max-height: 80%;
  flex: 0 0 80%;
  text-align: center;
  box-sizing: border-box;
}

.header__mobile-link {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  transition: color 0.25s ease;
  text-align: start;
}
.header__mobile-link:hover {
  color: #1C9B83;
  text-decoration: none;
}
.header__mobile-link--active {
  color: #1C9B83;
  font-weight: 600;
}

.header__mobile-nav__social {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 28px;
  width: 100%;
  margin-top: 30px;
  padding-top: 24px;
  flex-shrink: 0;
}

.header__mobile-nav__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.header__mobile-nav__social-link:hover {
  opacity: 0.85;
}

.header__mobile-nav__social-icon {
  display: block;
  width: 26px;
  height: auto;
}
.header__mobile-nav__social-icon--instagram {
  width: 32px;
}

@media (min-width: 992px) {
  .header__hamburguesa-icon {
    opacity: 1;
  }
  #header.header--logo-blanco .header__logo--blanco {
    display: block;
  }
  #header.header--logo-blanco .header__logo--negro {
    display: none;
  }
  #header.header--logo-negro .header__logo--blanco {
    display: none;
  }
  #header.header--logo-negro .header__logo--negro {
    display: block;
  }
  #header.header--logo-blanco .header__hamburguesa-icon {
    filter: brightness(0) invert(1);
    mix-blend-mode: normal;
  }
  #header.header--logo-negro .header__hamburguesa-icon {
    filter: brightness(0);
    mix-blend-mode: normal;
  }
  .header__mobile-panel {
    padding: 80px 48px 48px;
  }
  .header__mobile-link {
    font-size: 16px;
    padding: 14px 0;
  }
}
@media (max-height: 700px) {
  .header__mobile-panel {
    padding-top: 48px;
    padding-bottom: 16px;
  }
  .header__mobile-nav {
    height: 85%;
    max-height: 85%;
    flex: 0 0 85%;
    gap: 4px;
  }
  .header__mobile-link {
    padding: 7px 0;
    font-size: 13px;
  }
  .header__mobile-nav__social {
    margin-top: 14px;
    padding-top: 10px;
    gap: 22px;
  }
}
@media (max-width: 1399.98px) {
  #header {
    height: 80px;
  }
  .header__logo-link {
    height: 64px;
  }
  .header__logo {
    height: 64px;
  }
}
@media (max-width: 991.98px) {
  #header {
    height: 80px;
    background: #000;
  }
  .header__btn-proyectos {
    display: none;
  }
  .header__hamburguesa-icon {
    opacity: 1;
    filter: brightness(0) invert(1);
  }
  #menu-mobile > div:first-child {
    flex-basis: 20%;
  }
  #menu-mobile > div:nth-child(2) {
    flex-basis: 80%;
  }
  .header__mobile-panel {
    padding: 76px 20px 36px;
  }
  .header__mobile-link {
    font-size: 14px;
    padding: 11px 0;
  }
  .close-menu-mobile {
    top: 28px;
    right: 28px;
  }
}
@media (max-width: 767.98px) {
  #header {
    height: 65px;
  }
  #navbar_header {
    padding: 0 16px;
  }
  .header__logo-link {
    height: 58px;
  }
  .header__logo {
    height: 58px;
  }
  .header__btn-proyectos {
    width: 120px;
    height: 36px;
    font-size: 14px;
  }
}
.site-footer {
  width: 100%;
  padding: 0;
  background-color: #000000;
}

.site-footer__main {
  background-color: #000000 !important;
  height: 370px;
}

.site-footer__col-content {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

.site-footer__col-logo {
  display: flex;
  align-items: flex-start;
}

.site-footer__logo {
  width: 194px;
  height: auto;
  margin-top: -50px;
}

.site-footer__col {
  padding-top: 4px;
}

.site-footer__heading {
  font-size: 12px;
  font-weight: 400;
  color: #1C9B83;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.site-footer__text {
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 12px;
}
.site-footer__text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__text a:visited {
  color: #ffffff;
}
.site-footer__text a:hover {
  color: #1C9B83;
}
.site-footer__text a:focus-visible {
  outline: 1px solid #1C9B83;
  outline-offset: 2px;
}

.site-footer__link {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.site-footer__link:hover {
  color: #1C9B83;
}

.site-footer__col-social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 4px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: -20px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.site-footer__social-link:hover {
  opacity: 0.7;
}

.site-footer__social-icon {
  width: 24px;
  height: 24px;
}

.site-footer__bottom {
  background-color: #000000 !important;
  height: 100px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1254901961);
}

.site-footer__copy {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin: 0 0 2px;
}

.site-footer__disclaimer {
  font-size: 9px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2745098039);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

@media (max-width: 1399.98px) {
  .site-footer__logo {
    width: 165px;
    height: auto;
    margin-top: -40px;
  }
}
@media (max-width: 1199.98px) {
  .site-footer {
    width: 100%;
    padding: 0 24px;
    background-color: #000000;
  }
}
@media (max-width: 991.98px) {
  .site-footer__main {
    height: auto;
    padding: 50px 20px 36px;
  }
  .site-footer__main .site-footer__col-logo,
  .site-footer__main .site-footer__col,
  .site-footer__main .site-footer__col-social {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .site-footer__col-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
  }
  .site-footer__logo {
    margin-top: 0;
    width: 105px;
  }
  .site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 0;
  }
  .site-footer__col-content {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer__col-social {
    margin-top: 24px;
  }
  .site-footer__heading {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .site-footer__text,
  .site-footer__link {
    font-size: 14px;
  }
  .site-footer__text {
    margin-bottom: 10px;
  }
  .site-footer__link {
    margin-bottom: 8px;
  }
  .site-footer__col-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    padding-top: 0;
  }
  .site-footer__social {
    justify-content: center;
    margin-top: 0;
    gap: 20px;
  }
  .site-footer__social-icon {
    width: 28px;
    height: 28px;
  }
  .site-footer__bottom {
    height: auto;
    padding: 28px 20px 36px;
  }
  .site-footer__copy {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .site-footer__disclaimer {
    font-size: 14px;
    padding: 0 12px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .site-footer__main {
    padding: 44px 16px 32px;
  }
  .site-footer__logo {
    width: 105px;
  }
  .site-footer__bottom {
    padding: 24px 16px 32px;
  }
}
.home-banner {
  padding: 0;
  height: 100vh;
}

.home-banner__row {
  min-height: 100vh;
}

.home-banner__left {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.home-banner__content {
  width: fit-content;
  max-width: 90%;
}

.home-banner__title {
  margin: 0 0 8px;
  color: #1C9B83;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.home-banner__subtitle {
  margin: 0 0 40px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.home-banner__filters {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-banner__select-wrap {
  position: relative;
}

.home-banner__select {
  appearance: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 32px 0 16px;
  width: 220px;
  height: 50px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.home-banner__select:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.home-banner__select:focus {
  border-color: #1C9B83;
}

.home-banner__select option {
  background: #1a1a1a;
  color: #ffffff;
}

.home-banner__btn-buscar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 50px;
  background-color: #1C9B83;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-banner__btn-buscar:hover {
  background-color: rgb(21.7573770492, 120.4426229508, 101.793442623);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.home-banner__btn-buscar:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(28, 155, 131, 0.25);
}

.home-banner__right {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.home-banner__media,
.home-banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-elegirnos {
  background-color: #ffffff;
  padding: 80px 0;
}

.home-elegirnos__title {
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  color: #1C9B83;
  margin: 0 0 24px;
  letter-spacing: 0.03em;
}

.home-elegirnos__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0 0 32px;
}

.home-elegirnos__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 50px;
  background-color: #1C9B83;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.home-elegirnos__btn:hover {
  background-color: rgb(21.7573770492, 120.4426229508, 101.793442623);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}
.home-elegirnos__btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(28, 155, 131, 0.25);
}

.home-lineas {
  padding: 0;
}

.home-lineas__panels {
  display: flex;
  width: 100%;
  height: 1080px;
  overflow: hidden;
}

.home-lineas__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
}
.home-lineas__panel:hover {
  flex: 1.6;
}
.home-lineas__panel:hover .home-lineas__img--hover {
  opacity: 1;
}
.home-lineas__panel:hover .home-lineas__overlay {
  background-color: var(--overlay-hover);
}

.home-lineas__panel:nth-child(1) {
  --overlay-hover: rgba(28, 155, 131, 0.7);
}

.home-lineas__panel:nth-child(2) {
  --overlay-hover: rgba(218, 32, 12, 0.79);
}

.home-lineas__panel:nth-child(3) {
  --overlay-hover: rgba(129, 129, 129, 0.7);
}

.home-lineas__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-lineas__img--hover {
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.home-lineas__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background-color 0.5s ease;
}

.home-lineas__title {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  z-index: 3;
  margin: 0;
}

.home-inversion {
  background-color: #ffffff;
  padding: 80px 0 100px;
}

.home-inversion__title {
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  color: #1C9B83;
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}

.home-inversion__subtitle {
  font-size: 22px;
  font-weight: 300;
  color: #3a3a3a;
  margin: 0 0 50px;
  letter-spacing: 0.04em;
}

.home-inversion__map-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.home-inversion__map {
  width: 100%;
  height: auto;
  display: block;
}

.home-inversion__hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.home-inversion__hotspot:hover {
  background-color: rgba(28, 155, 131, 0.12);
}

.home-inversion__tooltip-unit {
  position: absolute;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(-28px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.55s, left 0s, top 0s;
}
.home-inversion__tooltip-unit.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s, left 0s, top 0s;
}
.home-inversion__tooltip-unit.active.is-switching {
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s, left 0.48s cubic-bezier(0.22, 1, 0.36, 1), top 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-inversion__tooltip-pin {
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.home-inversion__tooltip-body {
  position: relative;
  margin-left: 14px;
  min-width: 220px;
  padding: 16px 22px 14px 26px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(28, 155, 131, 0.88) 0%, rgba(28, 155, 131, 0.62) 45%, rgba(255, 255, 255, 0.38) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-inversion__tooltip-body.is-content-fading {
  opacity: 0.12;
}

.home-inversion__tooltip-nombre {
  display: block;
  text-align: start;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.home-inversion__tooltip-lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-inversion__tooltip-item {
  padding: 4px 0;
  list-style: none;
}

.home-inversion__tooltip-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.home-inversion__tooltip-item-link:hover {
  opacity: 0.85;
  color: #ffffff;
}

.home-inversion__tooltip-item-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.home-inversion__tooltip-item--habitacional .home-inversion__tooltip-item-text {
  color: #ffffff;
}

.home-inversion__tooltip-item--bodegas .home-inversion__tooltip-item-text {
  color: #ffffff;
}

.home-inversion__tooltip-item--locales .home-inversion__tooltip-item-text {
  color: rgba(255, 255, 255, 0.92);
}

.home-inversion__tooltip-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.home-inversion__tooltip-item--locales .home-inversion__tooltip-item-icon {
  filter: grayscale(1) brightness(1.15);
}

.home-inversion__carousel-wrap {
  display: none;
}

.home-inversion__slide {
  padding: 0 12px;
}

.home-inversion__slide-map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  max-width: 300px;
}

.home-inversion__slide-map-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.home-inversion__slide-content {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.home-inversion__slide-nombre {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #3a3a3a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.home-inversion__slide-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.home-inversion__slide-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  width: auto;
}

.home-inversion__slide-item-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-align: start;
  text-wrap: nowrap;
}

.home-inversion__slide-item--rojo .home-inversion__slide-item-text {
  color: #da200c;
}

.home-inversion__slide-item--verde .home-inversion__slide-item-text {
  color: #1C9B83;
}

.home-inversion__slide-item--gris .home-inversion__slide-item-text {
  color: #818181;
}

.home-inversion__slide-item-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.home-inversion__slide-item--gris .home-inversion__slide-item-icon {
  filter: grayscale(1) brightness(1.1);
}

.home-beneficios {
  padding: 0;
  min-height: 600px;
}

.home-beneficios__left {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 100px;
}

.home-beneficios__left-content {
  width: 70%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.home-beneficios__left-content-inner {
  margin-bottom: 135px;
  margin-top: 0;
  line-height: 25px;
}

.home-beneficios__title {
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  color: #1C9B83;
  margin: 0 0 6px;
  letter-spacing: 0.03em;
}

.home-beneficios__subtitle {
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 60px;
  letter-spacing: 0.06em;
}

.home-beneficios__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
}
.home-beneficios__list .home-beneficios__item-text {
  font-size: 26px;
  font-weight: 900;
  font-style: normal;
  color: #1C9B83;
}

.home-beneficios__item-check {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 1499.98px) {
  .home-beneficios__list .home-beneficios__item-text {
    font-size: 24px;
  }
  .home-beneficios__item-check {
    width: 22px;
  }
}
@media (max-width: 1299.98px) {
  .home-beneficios__list .home-beneficios__item-text {
    font-size: 23px;
  }
  .home-beneficios__item-check {
    width: 21px;
  }
}
@media (max-width: 991.98px) {
  .home-beneficios__list .home-beneficios__item-text {
    font-size: 22px;
  }
  .home-beneficios__item-check {
    width: 20px;
  }
}
@media (max-width: 767.98px) {
  .home-beneficios__list .home-beneficios__item-text {
    font-size: 20px;
  }
  .home-beneficios__item-check {
    width: 18px;
  }
}
.home-beneficios__item {
  padding: 18px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  list-style: none;
}
.home-beneficios__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0);
}

/* Estilos hover/active anteriores (desactivados — reactivar con initBeneficios en home.js):
.home-beneficios__item.is-active .home-beneficios__item-text,
.home-beneficios__item:hover .home-beneficios__item-text {
  color: #1C9B83;
}
.home-beneficios__item.is-active .home-beneficios__item-arrow,
.home-beneficios__item:hover .home-beneficios__item-arrow {
  color: #1C9B83;
  transform: translateX(10px);
}
.home-beneficios__list .home-beneficios__item.is-active .home-beneficios__item-text {
  font-weight: 900;
  font-size: 26px;
}
.home-beneficios__item-arrow {
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #ffffff;
  transform: translateX(0);
  transition: color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
*/

.home-beneficios__item-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}
.home-beneficios__item-link:hover {
  color: #ffffff;
}

.home-beneficios__item-text {
  transition: color 0.25s ease, font-size 0.25s ease;
}

.home-beneficios__right {
  position: relative;
  overflow: hidden;
}

.home-beneficios__media {
  position: relative;
  width: 100%;
}

/* Imagen fija: solo la primera .home-beneficios__picture lleva .is-active en el HTML.
   El crossfade por hover quedó desactivado (ver initBeneficios en home.js). */
.home-beneficios__picture {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
  z-index: 0;
}
.home-beneficios__picture:not(.is-active) {
  position: absolute;
  inset: 0;
}
.home-beneficios__picture.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.home-beneficios__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-beneficios__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  background-color: #1C9B83;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
}

.home-beneficios__btn:hover {
  color: #ffffff;
  background-color: #167866;
  transform: translate(-50%, calc(-50% - 1px));
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.home-beneficios__btn:active {
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 8px rgba(28, 155, 131, 0.25);
}

/* Estilos anteriores botón VER MÁS (desactivados):
.home-beneficios__btn {
  width: 132px;
  height: 50px;
  background-color: transparent;
  color: #1C9B83;
  font-size: 12px;
  border: 1px solid #1C9B83;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.home-beneficios__right:hover .home-beneficios__btn {
  background-color: #1C9B83;
  color: #ffffff;
}
.home-beneficios__btn:hover {
  background-color: #167866;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}
*/

.home-decisiones {
  padding: 0;
}

.home-decisiones__wrap {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
}

.home-decisiones__line--1 {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  text-wrap: nowrap;
}

.home-decisiones__line--2 {
  top: 100%;
  transform: translateY(-100%);
  opacity: 0;
}

.home-decisiones:not(.is-visible) .home-decisiones__line--1 {
  animation: none;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.home-decisiones:not(.is-visible) .home-decisiones__line--2 {
  animation: none;
  top: 100%;
  transform: translateY(-100%);
  opacity: 0;
}

.home-decisiones.is-visible .home-decisiones__line--1 {
  transition: none;
  animation: decisiones-line1-out 1.8s cubic-bezier(0.33, 1, 0.48, 1) forwards;
}

.home-decisiones.is-visible .home-decisiones__line--2 {
  transition: none;
  animation: decisiones-line2-in 1.8s cubic-bezier(0.33, 1, 0.48, 1) 0.5s forwards;
}

@keyframes decisiones-line1-out {
  0% {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  100% {
    top: 0;
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes decisiones-line2-in {
  0% {
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
}
.home-decisiones__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-decisiones__media-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-decisiones__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.home-decisiones__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
}

.home-decisiones__copy {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.home-decisiones__line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 45px;
  font-weight: 900;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
  line-height: 1.25;
  will-change: top, transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .home-decisiones__line--1 {
    display: none;
  }
  .home-decisiones__line--2 {
    top: 50%;
    opacity: 1 !important;
    transform: translateY(-50%) !important;
    animation: none !important;
  }
}
.home-decisiones__title--verde {
  color: #1C9B83;
  font-weight: 700;
}

@media (max-width: 1899.98px) {
  .home-banner__left {
    padding: 0 50px;
  }
  .home-banner__title {
    font-size: 68px;
  }
  .home-banner__subtitle {
    font-size: 36px;
  }
  .home-elegirnos {
    padding: 72px 0;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 42px;
  }
  .home-lineas__panels {
    height: 1000px;
  }
  .home-decisiones__wrap {
    height: 1000px;
  }
  .home-beneficios__left-content-inner {
    margin-bottom: 120px;
  }
}
@media (max-width: 1799.98px) {
  .home-banner__title {
    font-size: 64px;
  }
  .home-banner__subtitle {
    font-size: 34px;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 40px;
  }
  .home-inversion__subtitle {
    font-size: 21px;
  }
  .home-beneficios__subtitle {
    font-size: 28px;
  }
  .home-lineas__panels {
    height: 920px;
  }
  .home-decisiones__wrap {
    height: 920px;
  }
  .home-beneficios__left {
    padding: 72px 50px 72px 80px;
  }
}
@media (max-width: 1699.98px) {
  .home-banner__left {
    padding: 0 44px;
  }
  .home-banner__title {
    font-size: 60px;
  }
  .home-banner__subtitle {
    font-size: 32px;
    margin-bottom: 36px;
  }
  .home-banner__select {
    width: 200px;
  }
  .home-elegirnos {
    padding: 68px 0;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 38px;
  }
  .home-lineas__panels {
    height: 840px;
  }
  .home-lineas__title {
    font-size: 22px;
  }
  .home-decisiones__wrap {
    height: 840px;
  }
  .home-inversion {
    padding: 72px 0 90px;
  }
  .home-beneficios__left-content-inner {
    margin-bottom: 100px;
  }
}
@media (max-width: 1599.98px) {
  .home-banner__title {
    font-size: 56px;
  }
  .home-banner__subtitle {
    font-size: 30px;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 36px;
  }
  .home-inversion__subtitle {
    font-size: 20px;
  }
  .home-beneficios__subtitle {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .home-beneficios__item {
    font-size: 17px;
  }
  .home-lineas__panels {
    height: 760px;
  }
  .home-decisiones__wrap {
    height: 760px;
  }
  .home-inversion__map-wrap {
    max-width: 640px;
  }
}
@media (max-width: 1499.98px) {
  .home-banner__left {
    padding: 0 36px;
  }
  .home-banner__title {
    font-size: 52px;
  }
  .home-banner__subtitle {
    font-size: 28px;
  }
  .home-banner__select {
    width: 185px;
    height: 48px;
    font-size: 13px;
  }
  .home-banner__btn-buscar {
    width: 120px;
    height: 48px;
  }
  .home-elegirnos {
    padding: 64px 0;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 34px;
  }
  .home-lineas__panels {
    height: 700px;
  }
  .home-decisiones__wrap {
    height: 700px;
  }
  .home-beneficios__left {
    padding: 64px 40px 64px 60px;
  }
  .home-beneficios__left-content-inner {
    margin-bottom: 80px;
  }
}
@media (max-width: 1399.98px) {
  .home-banner__title {
    font-size: 48px;
  }
  .home-banner__subtitle {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .home-banner__select {
    width: 170px;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 32px;
  }
  .home-elegirnos__text {
    font-size: 16px;
  }
  .home-inversion__subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .home-beneficios__subtitle {
    font-size: 24px;
  }
  .home-beneficios__item {
    font-size: 16px;
  }
  .home-lineas__panels {
    height: 650px;
  }
  .home-lineas__title {
    font-size: 20px;
  }
  .home-decisiones__wrap {
    height: 650px;
  }
  .home-inversion {
    padding: 64px 0 80px;
  }
  .home-inversion__tooltip-nombre {
    font-size: 16px;
  }
  .home-inversion__tooltip-item {
    font-size: 14px;
  }
}
@media (max-width: 1299.98px) {
  .home-banner__left {
    padding: 0 28px;
  }
  .home-banner__title {
    font-size: 44px;
  }
  .home-banner__subtitle {
    font-size: 24px;
  }
  .home-banner__filters {
    gap: 10px;
  }
  .home-banner__select {
    width: 155px;
    height: 46px;
  }
  .home-banner__btn-buscar {
    width: 112px;
    height: 46px;
    font-size: 11px;
  }
  .home-elegirnos {
    padding: 56px 0;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 30px;
  }
  .home-elegirnos__text {
    font-size: 16px;
  }
  .home-inversion__subtitle {
    font-size: 17px;
  }
  .home-beneficios__subtitle {
    font-size: 22px;
    margin-bottom: 44px;
  }
  .home-beneficios__item {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .home-lineas__panels {
    height: 600px;
  }
  .home-decisiones__wrap {
    height: 600px;
  }
  .home-beneficios__left {
    padding: 56px 32px 56px 48px;
  }
  .home-beneficios__left-content-inner {
    margin-bottom: 64px;
  }
  .home-inversion__map-wrap {
    max-width: 580px;
  }
}
@media (max-width: 1249.98px) {
  .home-beneficios {
    min-height: auto;
  }
  #beneficios > .row {
    height: 100%;
  }
}
@media (max-width: 1199.98px) {
  .home-banner__title {
    font-size: 40px;
  }
  .home-banner__subtitle {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .home-banner__select {
    width: 145px;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 28px;
  }
  .home-elegirnos__text {
    font-size: 16px;
  }
  .home-inversion__subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .home-beneficios__subtitle {
    font-size: 20px;
  }
  .home-beneficios__item {
    font-size: 16px;
  }
  .home-lineas__panels {
    height: 550px;
  }
  .home-lineas__title {
    font-size: 18px;
  }
  .home-decisiones__wrap {
    height: 550px;
  }
  .home-inversion {
    padding: 56px 24px 72px;
  }
}
@media (max-width: 1100.98px) {
  .home-banner__left {
    padding: 0 24px;
  }
  .home-banner__title {
    font-size: 38px;
  }
  .home-banner__subtitle {
    font-size: 20px;
  }
  .home-banner__select {
    width: 135px;
    height: 44px;
    font-size: 12px;
  }
  .home-banner__btn-buscar {
    width: 108px;
    height: 44px;
  }
  .home-elegirnos {
    padding: 52px 0;
  }
  .home-elegirnos__title,
  .home-inversion__title,
  .home-beneficios__title,
  .home-decisiones__line {
    font-size: 26px;
  }
  .home-elegirnos__text {
    font-size: 16px;
  }
  .home-inversion__subtitle {
    font-size: 16px;
  }
  .home-beneficios__subtitle {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .home-beneficios__item {
    font-size: 16px;
    padding: 14px 0;
  }
  .home-lineas__panels {
    height: 500px;
  }
  .home-lineas__title {
    font-size: 17px;
  }
  .home-decisiones__wrap {
    height: 500px;
  }
  .home-beneficios__left {
    padding: 52px 28px 52px 36px;
  }
  .home-beneficios__left-content {
    width: 85%;
  }
  .home-beneficios__left-content-inner {
    margin-bottom: 48px;
  }
  .home-inversion__map-wrap {
    max-width: 520px;
  }
  .home-inversion__tooltip-item {
    font-size: 14px;
  }
}
@media (min-width: 991.99px) {
  .home-banner__btn-buscar.mobile {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .home-banner {
    position: relative;
    height: auto;
  }
  .home-banner__row {
    min-height: auto;
  }
  .home-banner__left {
    padding: 120px 30px 50px;
    min-height: 50vh;
  }
  .home-banner__right {
    min-height: 50vh;
    height: 50vh;
  }
  .home-banner__title {
    font-size: 42px;
  }
  .home-banner__subtitle {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .home-banner__filters {
    flex-direction: column;
  }
  .home-banner__select {
    width: 140px;
    font-size: 14px;
  }
  .home-banner__btn-buscar {
    font-size: 14px;
  }
  .home-elegirnos {
    padding: 60px 0;
  }
  .home-elegirnos__title {
    font-size: 32px;
  }
  .home-elegirnos__text {
    font-size: 18px;
  }
  .home-elegirnos__btn {
    font-size: 16px;
  }
  .home-lineas__panels {
    height: 350px;
  }
  .home-lineas__panel .home-lineas__img--hover {
    opacity: 1;
  }
  .home-lineas__panel .home-lineas__overlay {
    background-color: var(--overlay-hover);
  }
  .home-lineas__title {
    font-size: 16px;
    bottom: 30px;
  }
  .home-inversion {
    padding: 60px 24px 120px;
  }
  .home-inversion__title {
    font-size: 36px;
  }
  .home-inversion__subtitle {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .home-inversion__map-wrap {
    display: none;
  }
  .home-inversion__carousel-wrap {
    display: block;
    max-width: 80%;
    margin: 0 auto;
  }
  .home-inversion__carousel.owl-carousel .owl-dots {
    margin-top: 28px;
    line-height: 0;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .home-inversion__carousel.owl-carousel .owl-dot {
    outline: none;
  }
  .home-inversion__carousel.owl-carousel .owl-dot span {
    width: 15px !important;
    height: 15px !important;
    margin: 0 7px !important;
    border-radius: 50%;
    background: rgba(28, 155, 131, 0.1254901961) !important;
    transition: background 0.25s ease, transform 0.25s ease !important;
  }
  .home-inversion__carousel.owl-carousel .owl-dot.active span,
  .home-inversion__carousel.owl-carousel .owl-dot:hover span {
    background: #1C9B83 !important;
  }
  .home-inversion__slide-nombre {
    font-size: 16px;
  }
  .home-inversion__slide-item-text {
    font-size: 14px;
  }
  .home-inversion__tooltip-nombre {
    font-size: 18px;
  }
  .home-inversion__tooltip-item {
    font-size: 14px;
  }
  .home-beneficios__left {
    padding: 60px 40px;
  }
  .home-beneficios__title {
    font-size: 36px;
  }
  .home-beneficios__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .home-beneficios__item {
    font-size: 18px;
  }
  .home-beneficios__btn {
    font-size: 14px;
    background-color: #1C9B83;
    color: #ffffff;
  }
  .home-beneficios {
    min-height: 450px;
  }
  .home-decisiones__wrap {
    height: 380px;
  }
  .home-decisiones__line {
    font-size: 28px;
  }
  .home-banner__select-wrap {
    position: relative;
    width: 100%;
  }
  .home-banner__select {
    width: 100%;
    font-size: 14px;
  }
  .home-banner__btn-buscar.pc {
    display: none;
  }
  .home-banner__btn-buscar.mobile {
    display: inline-flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 142px;
    height: 57px;
  }
  .home-lineas__panels {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 1080px;
    overflow: hidden;
  }
  .home-lineas__title {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.08em;
    z-index: 3;
    margin: 0;
  }
  .home-beneficios__list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767.98px) {
  .home-banner__left {
    padding: 100px 20px 40px;
  }
  .home-banner__title {
    font-size: 36px;
  }
  .home-banner__subtitle {
    font-size: 20px;
  }
  .home-banner__select {
    width: 100%;
    height: 36px;
    font-size: 14px;
  }
  .home-banner__btn-buscar {
    width: 100px;
    height: 36px;
    font-size: 14px;
  }
  .home-elegirnos {
    padding: 50px 0;
  }
  .home-elegirnos__title {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .home-elegirnos__text {
    font-size: 16px;
    margin-bottom: 24px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .home-elegirnos__btn {
    font-size: 14px;
    width: 150px;
    height: 58px;
    margin-top: 24px;
  }
  .home-lineas__panels {
    flex-direction: column;
    height: auto;
  }
  .home-lineas__panel {
    height: 260px;
    flex: none;
  }
  .home-lineas__panel:hover {
    flex: none;
  }
  .home-lineas__title {
    font-size: 18px;
  }
  .home-inversion {
    padding: 40px 15px 110px;
  }
  .home-inversion__title {
    font-size: 30px;
  }
  .home-inversion__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .home-inversion__tooltip-nombre {
    font-size: 16px;
  }
  .home-inversion__tooltip-item {
    font-size: 14px;
  }
  .home-beneficios {
    min-height: auto;
  }
  .home-beneficios__left {
    padding: 50px 20px;
  }
  .home-beneficios__title {
    font-size: 30px;
  }
  .home-beneficios__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .home-beneficios__item {
    font-size: 18px;
  }
  .home-beneficios__right {
    height: 350px;
  }
  .home-beneficios__btn {
    opacity: 1;
    visibility: visible;
    font-size: 14px;
  }
  .home-decisiones__wrap {
    height: 280px;
  }
  .home-decisiones__line {
    font-size: 20px;
  }
  .home-inversion__slide-item-icon {
    width: 22px;
    height: 22px;
    flex-shrink: initial;
    margin-left: 10px;
  }
  .home-inversion__slide-nombre {
    text-align: start;
  }
}
body[data-page=proyectos-en-venta] {
  background-color: #000000;
}

.pev-main {
  background-color: #000000;
}

.pev-layout {
  padding: 0;
}
.pev-layout.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.pev-layout__left {
  background-color: #000000;
}

.pev-hero {
  padding: 120px 32px 40px;
  background-color: #000000;
}

.pev-hero__title {
  margin: 0 0 6px;
  color: #1c9b83;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.pev-hero__subtitle {
  margin: 0 0 32px;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pev-hero__filters {
  align-items: center;
  gap: 12px;
}

.pev-hero__filters--desktop {
  flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .pev-hero__filters--desktop {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) and (max-width: 1279.98px) {
  .pev-hero__filters--desktop .pev-hero__select {
    width: 150px;
    padding-left: 14px;
    padding-right: 30px;
  }
}

.pev-hero__filters--mobile {
  display: flex;
  flex-direction: column;
}

.pev-hero__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  height: 50px;
  padding: 0 22px;
  border: 1.5px solid #4a4a4a;
  border-radius: 999px;
  background-color: #4a4a4a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.pev-hero__pill--locales {
  height: auto;
  padding: 8px 18px;
}

.pev-hero__pill--habitacional.is-active {
  background-color: #1c9b83;
  border-color: #1c9b83;
}

.pev-hero__pill--bodegas.is-active {
  background-color: #da200c;
  border-color: #da200c;
}

.pev-hero__pill--locales.is-active {
  background-color: #818181;
  border-color: #818181;
}

.pev-hero__pill:hover:not(.is-active) {
  background-color: rgb(94.4, 94.4, 94.4);
  border-color: rgb(94.4, 94.4, 94.4);
}

.pev-hero__pill.is-active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.pev-hero__select-wrap {
  position: relative;
}

.pev-hero__select-wrap--full {
  width: 100%;
}

.pev-hero__select {
  appearance: none;
  width: 200px;
  height: 50px;
  padding: 0 36px 0 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}

.pev-hero__select-wrap--full .pev-hero__select {
  width: 100%;
}

.pev-hero__select option {
  background: #1a1a1a;
  color: #ffffff;
}

.pev-hero__btn-buscar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 50px;
  border: none;
  border-radius: 999px;
  background-color: #1c9b83;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pev-hero__btn-buscar:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.pev-hero__btn-buscar--mobile {
  width: 100%;
  margin-top: 8px;
}

.pev-listado {
  padding: 0;
  background-color: #ffffff;
}

.pev-listado__scroll {
  padding: 24px 24px 48px;
}

@media (min-width: 992px) {
  .pev-layout__row {
    align-items: flex-start;
  }
  .pev-layout__left {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pev-layout__right {
    flex: 0 0 50%;
    max-width: 50%;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    z-index: 2;
  }
  .pev-listado__mapa-wrap {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .pev-listado__mapa {
    width: 100%;
    height: 100vh;
  }
  .pev-listado__scroll {
    max-height: none;
    overflow: visible;
    padding: 8px 28px 56px;
  }
  .pev-hero {
    padding: 120px 40px 36px;
  }
  .pev-hero__title {
    font-size: 30px;
  }
  .pev-hero__subtitle {
    font-size: 17px;
    letter-spacing: 0.06em;
    margin-bottom: 36px;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pev-hero {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pev-hero__title {
    font-size: 34px;
  }
  .pev-hero__subtitle {
    font-size: 20px;
    letter-spacing: 0.07em;
  }
}
@media (min-width: 1500px) {
  .pev-hero__title {
    font-size: 42px;
  }
  .pev-hero__subtitle {
    font-size: 28px;
    letter-spacing: 0.1em;
    white-space: normal;
  }
}
@media (min-width: 1600px) {
  .pev-hero__title {
    font-size: 44px;
  }
  .pev-hero__subtitle {
    font-size: 30px;
  }
}
.pev-listado__empty {
  padding: 40px 16px;
  text-align: center;
  color: #666666;
  font-size: 1rem;
}

.pev-card {
  margin-bottom: 24px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
}

.pev-card--oculto {
  display: none;
}

.pev-card__link {
  display: flex;
  flex-direction: row;
  color: inherit;
  text-decoration: none;
}

.pev-card__media {
  flex: 0 0 48%;
  max-width: 48%;
  overflow: hidden;
}

.pev-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.pev-card__img--pc,
.pev-card__img--mobile {
  min-height: 220px;
}

.pev-card__body {
  flex: 1;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.pev-card__ubicacion {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 400;
}

.pev-card__pin {
  width: 12px;
  height: auto;
}

.pev-card__categoria {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
}

.pev-card__nombre {
  margin: 0 0 16px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.pev-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.pev-card--habitacional .pev-card__specs {
  grid-template-columns: repeat(2, 1fr);
}

.pev-card__spec-label {
  display: block;
  margin-bottom: 4px;
  color: #9a9a9a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pev-card__spec-value {
  display: block;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.pev-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pev-card__precios {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pev-card__precio {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.pev-card__precio--secundario {
  font-size: 13px;
}

.pev-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pev-card--habitacional .pev-card__categoria,
.pev-card--habitacional .pev-card__nombre,
.pev-card--habitacional .pev-card__precio {
  color: #1c9b83;
}

.pev-card--habitacional .pev-card__btn {
  color: #1c9b83;
}

.pev-card--bodegas .pev-card__categoria,
.pev-card--bodegas .pev-card__nombre,
.pev-card--bodegas .pev-card__precio {
  color: #da200c;
}

.pev-card--bodegas .pev-card__btn {
  color: #da200c;
}

.pev-card--locales .pev-card__categoria {
  color: #818181;
}

.pev-card--locales .pev-card__nombre,
.pev-card--locales .pev-card__precio {
  color: #000000;
}

.pev-card--locales .pev-card__btn {
  color: #818181;
}

.pev-card:hover .pev-card__btn {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pev-map-iw {
  width: 170px;
  box-sizing: border-box;
  text-align: center;
}

.pev-map-iw__media {
  width: 150px;
  height: 90px;
  margin: 0 auto 8px;
  overflow: hidden;
}

.pev-map-iw__img {
  display: block;
  width: 150px;
  height: 90px;
  object-fit: cover;
}

.pev-map-iw__direccion {
  width: 150px;
  min-height: 40px;
  max-height: 40px;
  margin: 0 auto;
  padding: 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pev-listado__mapa .gm-style-iw-t > .gm-style-iw-c,
.pev-listado__mapa .gm-style-iw-tc::after {
  background-color: #1c9b83 !important;
}

.pev-listado__mapa .gm-style-iw-t:has(.pev-map-iw--habitacional) > .gm-style-iw-c,
.pev-listado__mapa .gm-style-iw-t:has(.pev-map-iw--habitacional) .gm-style-iw-tc::after {
  background-color: #1c9b83 !important;
}

.pev-listado__mapa .gm-style-iw-t:has(.pev-map-iw--bodegas) > .gm-style-iw-c,
.pev-listado__mapa .gm-style-iw-t:has(.pev-map-iw--bodegas) .gm-style-iw-tc::after {
  background-color: #da200c !important;
}

.pev-listado__mapa .gm-style-iw-t:has(.pev-map-iw--locales) > .gm-style-iw-c,
.pev-listado__mapa .gm-style-iw-t:has(.pev-map-iw--locales) .gm-style-iw-tc::after {
  background-color: #000000 !important;
}

.pev-listado__mapa .gm-style-iw-t > .gm-style-iw-c {
  padding: 10px !important;
  max-width: 190px !important;
  color: #ffffff;
}

.pev-listado__mapa .gm-style-iw-t > .gm-style-iw-c > .gm-style-iw-d {
  overflow: hidden !important;
  max-height: none !important;
}

.pev-listado__mapa .gm-style-iw-chr,
.pev-listado__mapa .gm-style-iw button.gm-ui-hover-effect {
  display: none !important;
}

@media (max-width: 991.98px) {
  .pev-main {
    background-color: #000000;
  }
  .pev-layout__left {
    background-color: transparent;
  }
  .pev-hero {
    padding: 100px 20px 32px;
  }
  .pev-hero__title {
    font-size: 28px;
    margin-bottom: 4px;
  }
  .pev-hero__subtitle {
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 24px;
    white-space: nowrap;
  }
}
@media (max-width: 991.98px) and (max-width: 359.98px) {
  .pev-hero__subtitle {
    white-space: normal;
  }
}
@media (max-width: 991.98px) and (min-width: 576px) {
  .pev-hero__title {
    font-size: 34px;
  }
  .pev-hero__subtitle {
    font-size: 20px;
    margin-bottom: 28px;
    white-space: normal;
  }
}
@media (max-width: 991.98px) {
  .pev-hero__filters--mobile {
    gap: 14px;
  }
  .pev-listado__scroll {
    padding: 20px 16px 32px;
  }
  .pev-card__link {
    flex-direction: column;
  }
  .pev-card__media {
    flex: none;
    max-width: 100%;
  }
  .pev-card__img {
    min-height: 200px;
  }
  .pev-card__body {
    padding: 16px 16px 20px;
  }
  .pev-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .pev-card__precio {
    font-size: 18px;
  }
  .pev-card__btn {
    width: 100%;
    min-width: 0;
    height: 48px;
    border: none;
    color: #ffffff !important;
  }
  .pev-card--habitacional .pev-card__btn {
    background-color: #1c9b83;
  }
  .pev-card--bodegas .pev-card__btn {
    background-color: #da200c;
  }
  .pev-card--locales .pev-card__btn {
    background-color: #818181;
  }
}
@media (max-width: 575.98px) {
  .pev-card__specs {
    gap: 8px;
  }
  .pev-card__spec-label {
    font-size: 9px;
  }
  .pev-card__spec-value {
    font-size: 11px;
  }
}
/* ── TOAST sin resultados ── */
.pev-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.88);
  color: #ffffff;
  border-radius: 12px;
  padding: 28px 40px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.pev-toast--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.pev-toast__msg {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

body[data-page=proyecto-interior] {
  background-color: #fff;
}

.pi-main {
  background-color: #fff;
}

.pi-hero__content-container-2 {
  margin-top: 10vh;
}

.pi-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.pi-hero__media {
  position: absolute;
  inset: 0;
}

.pi-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.65) 100%);
}

.pi-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 120px 24px 100px;
  box-sizing: border-box;
}

.pi-hero__logo {
  display: block;
  width: min(420px, 85vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto 28px;
}

.pi-hero__ubicacion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.pi-hero__pin {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}

.pi-hero__btn-container-btn {
  margin-top: 3vh;
}

.pi-hero__visita {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(20px, 1.6vw, 42px);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: clamp(20px, 2.2vw, 24px);
  text-transform: uppercase;
}

.pi-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border-radius: 999px;
  background-color: #1C9B83;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pi-hero__btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.pi-hero__btn:active {
  transform: translateY(0);
}

.pi-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pi-hero__scroll:hover {
  transform: translateX(-50%) translateY(4px);
  opacity: 0.85;
}

.pi-hero__scroll-icon {
  width: 18px;
  height: auto;
}

/* ── PI-PRESENTACION ── */
.pi-presentacion {
  padding: 0;
  background-color: #E7F5F2;
  color: #ffffff;
}

.pi-presentacion__wrap {
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 48px);
}

.pi-presentacion__top {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.pi-presentacion__categoria {
  margin: 0 0 12px;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #1C9B83;
}

.pi-presentacion__titulo {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 45px);
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #1C9B83;
}

.pi-presentacion__content {
  line-height: 45px;
}

.pi-presentacion__desc {
  margin: 0px;
  font-size: clamp(25px, 1.6vw, 42px);
  font-weight: 400;
  line-height: 1.35;
  color: #000000;
}

.pi-presentacion__precio {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #1C9B83;
}

.pi-presentacion__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 !important;
  margin-top: 2vh !important;
  padding: 0;
  list-style: none;
}

.pi-presentacion__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  background-color: #323232;
  color: #ffffff;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.pi-presentacion__titulo-wrap-1 {
  height: 100%;
}

/* ── PI-GALERIA ── */
.pi-galeria {
  padding: 0;
  background-color: #ffffff;
  color: #323232;
}

.pi-galeria__wrap {
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px) clamp(24px, 6vw, 48px) clamp(20px, 4vw, 48px);
}

.pi-galeria__header {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.pi-galeria__header > [class*=col-] {
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.pi-galeria__titulo {
  margin: 0;
  color: #1C9B83;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.pi-galeria__texto {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

@media (min-width: 992px) {
  .pi-galeria__texto {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991.98px) {
  .pi-galeria__texto br {
    display: none;
  }
}
.pi-galeria__brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background-color: #323232;
  color: #ffffff;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pi-galeria__brochure:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(50, 50, 50, 0.25);
}

.pi-galeria__carousel-wrap {
  position: relative;
}

@media (min-width: 992px) {
  .pi-galeria__carousel-wrap {
    padding-left: 20px;
  }
}
.pi-galeria__item {
  width: 100%;
}

.pi-galeria__item-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
  background-color: #e8eceb;
}

.pi-galeria__item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi-galeria__item-label {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 32px);
  padding: 10px 22px;
  border-radius: 999px;
  background-color: rgba(50, 50, 50, 0.78);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.pi-galeria__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pi-galeria__nav img {
  display: block;
  width: 48px;
  height: 48px;
}

.pi-galeria__nav:hover {
  transform: translateY(-50%) scale(1.05);
  opacity: 0.9;
}

.pi-galeria__nav--prev {
  left: 0;
}

.pi-galeria__nav--next {
  right: 0;
}

/* ── PI-GALERIA-AC ── */
.pi-galeria-ac {
  padding: 0;
  background-color: #F3FAF9;
  color: #323232;
}

.pi-galeria-ac__wrap {
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px) clamp(24px, 6vw, 40px) clamp(20px, 4vw, 48px);
}

.pi-galeria-ac__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.pi-galeria-ac__header > [class*=col-] {
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.pi-galeria-ac__titulo {
  margin: 0;
  color: #1C9B83;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.pi-galeria-ac__subtitulo {
  margin: 0;
  color: #323232;
  font-size: clamp(20px, 1.2vw, 28px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
}

.pi-galeria-ac__amenidades {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pi-galeria-ac__amenidad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b6b6b;
  font-size: clamp(16px, 1.1vw, 17px);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.pi-galeria-ac__check {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}

.pi-galeria-ac__carousel-wrap {
  position: relative;
}

.pi-galeria-ac__item {
  width: 100%;
}

.pi-galeria-ac__item-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
  background-color: #e8eceb;
}

.pi-galeria-ac__item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi-galeria-ac__item-label {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 32px);
  padding: 10px 22px;
  border-radius: 999px;
  background-color: rgba(50, 50, 50, 0.88);
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.pi-galeria-ac__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pi-galeria-ac__nav img {
  display: block;
  width: 48px;
  height: 48px;
}

.pi-galeria-ac__nav:hover {
  transform: translateY(-50%) scale(1.05);
  opacity: 0.9;
}

.pi-galeria-ac__nav--prev {
  left: 0;
}

.pi-galeria-ac__nav--next {
  right: 0;
}

/* ── PI-UBICACION ── */
.pi-ubicacion {
  padding: 0;
  background-color: #ffffff;
  color: #323232;
}

.pi-ubicacion__grid {
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px);
}

.pi-ubicacion__info {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pi-ubicacion__mapa {
  width: 100%;
}

.pi-ubicacion__mapa-img {
  display: block;
  width: 100%;
  height: auto;
}

.pi-ubicacion__titulo {
  margin: 0;
  color: #1C9B83;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.pi-ubicacion__subtitulo {
  margin: 0;
  margin-bottom: 50px;
  color: #323232;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
}

.pi-ubicacion__lista {
  margin: 0 0 clamp(24px, 3vw, 28px);
  padding: 0;
  list-style: none;
}

.pi-ubicacion__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.pi-ubicacion__item:last-child {
  margin-bottom: 0;
}

.pi-ubicacion__bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border: 2px solid #1C9B83;
  border-radius: 50%;
}

.pi-ubicacion__item-texto {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
}

.pi-ubicacion__item-texto strong {
  font-weight: 700;
}

.pi-ubicacion__direccion {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(24px, 3vw, 28px);
  margin-top: 55px;
  margin-bottom: 45px;
  color: #1C9B83;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pi-ubicacion__direccion:hover, .pi-ubicacion__direccion:focus-visible {
  color: #1C9B83;
  opacity: 0.85;
}

.pi-ubicacion__pin {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}

.pi-ubicacion__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pi-ubicacion__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 50px;
  border: 1px solid #1C9B83;
  border-radius: 999px;
  background-color: #ffffff;
  color: #1C9B83;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pi-ubicacion__btn:hover {
  background-color: #1C9B83;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(28, 155, 131, 0.25);
}

/* ── PI-VIDEO ── */
.pi-video {
  padding: 0;
  background-color: #000000;
}

.pi-video__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-height: 100vh;
  background-color: #1a1a1a;
}

.pi-video__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.pi-video__play:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.05);
}

.pi-video__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}

.pi-video__wrap--playing .pi-video__play {
  opacity: 0;
  pointer-events: none;
}

/* ── PI-PLANTAS ── */
.pi-plantas {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.pi-plantas__wrap {
  padding: 0;
}

.pi-plantas__titulo {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  color: #1C9B83;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.pi-plantas__filtros {
  display: flex;
  position: relative;
  margin-bottom: 28px;
  border-radius: 999px;
  background-color: #E8F5F2;
  width: fit-content;
  padding: 5px;
}

.pi-plantas__pildora {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  border-radius: 999px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 1;
}

.pi-plantas__filtro-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 10px 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 0.9vw, 16px);
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.pi-plantas__filtro-btn--activo {
  color: #1C9B83;
}

.pi-plantas__filtros-mobile {
  margin-bottom: 20px;
}

.pi-plantas__select {
  width: 100%;
  padding: 14px 44px 14px 20px;
  border: none;
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1C9B83;
  background-color: #E8F5F2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231C9B83' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
}

.pi-plantas__visor {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.pi-plantas__imagen-principal {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 520px;
}

.pi-plantas__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.pi-plantas__thumbs-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.pi-plantas__thumbs-nav img {
  width: 36px;
  height: 36px;
}

.pi-plantas__thumbs-nav:hover {
  opacity: 0.75;
}

.pi-plantas__thumbs {
  flex: 1;
  overflow: hidden;
}

.pi-plantas__thumb {
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s ease;
  padding: 2px;
}

.pi-plantas__thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.pi-plantas__thumb--activo,
.pi-plantas__thumb:hover {
  border-color: #1C9B83;
}

.pi-plantas__col-der {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.pi-plantas__item {
  display: none;
}

.pi-plantas__item--activo {
  display: block;
}

.pi-plantas__item-thumbs {
  display: none;
}

.pi-plantas__depto-select-wrap {
  margin-bottom: 24px;
  position: relative;
}

.pi-plantas__depto-select {
  width: 100%;
  padding: 0 28px 14px 0;
  border: 0;
  border-bottom: 1px solid #1C9B83;
  border-radius: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: #1C9B83;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231C9B83' d='M1.4.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.pi-plantas__depto-select:focus {
  outline: none;
}

.pi-plantas__depto-nombre {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: #1C9B83;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1C9B83;
}

.pi-plantas__info {
  flex: 1;
}

.pi-plantas__fila {
  display: flex;
  gap: 30px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
}

.pi-plantas__fila--superficies {
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.pi-plantas__campo {
  flex: 1;
  min-width: 0;
}

.pi-plantas__label {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 0.7vw, 16px);
  font-weight: 400;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pi-plantas__label.entrega {
  color: #1C9B83;
}

.pi-plantas__valor {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 700;
  color: #333;
}

.pi-plantas__valor--verde {
  color: #1C9B83;
}

.pi-plantas__caract {
  margin-top: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
}

.pi-plantas__caract-titulo {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 600;
  color: #1C9B83;
  margin-bottom: 8px;
  text-decoration: none;
  text-underline-offset: 4px;
}

.pi-plantas__caract-texto {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 0.85vw, 16px);
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}

.pi-plantas__precio {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  color: #1C9B83;
  margin-bottom: 20px;
}

.pi-plantas__btns {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.pi-plantas__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 180px;
  height: 48px;
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 0.85vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.pi-plantas__btn:hover {
  transform: translateY(-1px);
}

.pi-plantas__btn--cotizar {
  background-color: #1C9B83;
  color: #ffffff;
  border: 2px solid #1C9B83;
}

.pi-plantas__btn--cotizar:hover {
  box-shadow: 0 6px 20px rgba(28, 155, 131, 0.35);
  color: #ffffff;
}

.pi-plantas__btn--brochure {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
}

.pi-plantas__btn--brochure:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: #333;
}

.pi-plantas__desc {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 0.8vw, 16px);
  font-weight: 400;
  color: #888;
  line-height: 1.6;
}

/* ── PI-CONTACTO ── */
.pi-contacto {
  background-color: #1C9B83;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pi-contacto__titulo {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.pi-contacto__row {
  padding-top: 28px;
}

.pi-contacto__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pi-contacto__logo {
  width: 280px;
  height: auto;
  display: block;
}

.pi-contacto__dato {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 0.9vw, 16px);
  font-weight: 400;
  color: #ffffff;
}

.pi-contacto__icono {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pi-contacto__link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.pi-contacto__link:hover {
  opacity: 0.8;
  color: #ffffff;
}

.pi-contacto__titulo-mobile-wrap {
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   MEDIA QUERIES — de más grande a más pequeña
   ══════════════════════════════════════════ */
@media (max-width: 1399.98px) {
  .pi-presentacion__wrap {
    padding: clamp(40px, 5vw, 72px) clamp(15px, 4vw, 20px);
  }
  .pi-galeria__wrap {
    padding: clamp(48px, 6vw, 88px) clamp(15px, 4vw, 20px) clamp(24px, 6vw, 48px) clamp(15px, 4vw, 20px);
  }
  .pi-galeria-ac__wrap {
    padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px) clamp(24px, 6vw, 40px) clamp(20px, 4vw, 48px);
  }
}
@media (max-width: 1199.98px) {
  .pi-plantas__filtro-btn {
    font-size: clamp(14px, 0.9vw, 15px);
  }
}
@media (min-width: 992px) {
  .pi-presentacion__pills {
    justify-content: flex-end;
    gap: 16px;
  }
  .pi-presentacion__pill {
    min-height: 48px;
    padding: 12px 28px;
    font-size: clamp(16px, 0.95vw, 18px);
  }
  .pi-galeria__header > [class*=col-] {
    margin-bottom: 0;
  }
  .pi-galeria__nav--prev {
    left: 5%;
  }
  .pi-galeria__nav--next {
    right: 5%;
  }
  .pi-galeria-ac__header > [class*=col-] {
    margin-bottom: 0;
  }
  .pi-galeria-ac__nav--prev {
    left: 5%;
  }
  .pi-galeria-ac__nav--next {
    right: 5%;
  }
  .pi-video__wrap {
    aspect-ratio: 16/9;
    max-height: min(72vh, 820px);
    min-height: 400px;
  }
  .pi-video__play {
    width: 88px;
    height: 88px;
  }
  .pi-video__play-icon {
    margin-left: 8px;
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 28px;
  }
}
@media (max-width: 991.98px) {
  .pi-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .pi-hero__content {
    padding: 100px 20px 88px;
  }
  .pi-hero__logo {
    width: min(300px, 78vw);
    margin-bottom: 22px;
  }
  .pi-hero__visita {
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .pi-hero__btn {
    min-width: unset;
    width: 204px;
    height: 57px;
  }
  .pi-hero__scroll {
    bottom: 22px;
  }
  .pi-presentacion__top > [class*=col-]:first-child {
    margin-bottom: clamp(20px, 3vw, 32px);
  }
  .pi-galeria__nav {
    width: 40px;
    height: 40px;
  }
  .pi-galeria__nav img {
    width: 40px;
    height: 40px;
  }
  .pi-galeria__nav--prev {
    left: 4px;
  }
  .pi-galeria__nav--next {
    right: 4px;
  }
  .pi-galeria__item-media {
    aspect-ratio: 4/5;
  }
  .pi-galeria__item-label {
    white-space: normal;
  }
  .pi-galeria__brochure {
    width: 182px;
    max-width: 280px;
    height: 58px;
    padding: 0;
  }
  .pi-galeria-ac__amenidades {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .pi-galeria-ac__nav {
    width: 40px;
    height: 40px;
  }
  .pi-galeria-ac__nav img {
    width: 40px;
    height: 40px;
  }
  .pi-galeria-ac__nav--prev {
    left: 4px;
  }
  .pi-galeria-ac__nav--next {
    right: 4px;
  }
  .pi-galeria-ac__item-media {
    aspect-ratio: 4/5;
  }
  .pi-galeria-ac__item-label {
    white-space: normal;
  }
  .pi-ubicacion__grid > [class*=col-] {
    margin-bottom: clamp(28px, 4vw, 40px);
  }
  .pi-ubicacion__grid > [class*=col-]:first-child {
    margin-bottom: 0;
  }
  .pi-ubicacion__btns {
    justify-content: center;
  }
  .pi-ubicacion__info {
    text-align: left;
  }
  .pi-plantas {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pi-plantas__col-der {
    padding-left: 12px;
    margin-top: 30px;
  }
  .pi-plantas__fila {
    flex-wrap: wrap;
    gap: 16px;
  }
  .pi-plantas__fila--superficies {
    gap: 14px;
  }
  .pi-plantas__fila--superficies .pi-plantas__campo {
    flex: 0 0 calc(50% - 7px);
  }
  .pi-plantas__imagen-principal {
    max-height: 360px;
  }
  .pi-plantas__btns {
    flex-direction: row;
    gap: 10px;
  }
  .pi-plantas__btn {
    width: 100%;
  }
  .pi-plantas__thumb img {
    height: 60px;
  }
  .pi-contacto {
    padding-top: 36px;
    padding-bottom: 36px;
    text-align: center;
  }
  .pi-contacto__row {
    border-top: none;
    padding-top: 0;
  }
  .pi-contacto__logo-wrap {
    justify-content: center;
    margin-bottom: 28px;
  }
  .pi-contacto__logo {
    width: 220px;
  }
  .pi-contacto__dato {
    justify-content: center;
    margin-bottom: 16px;
    font-size: 16px;
  }
  .pi-galeria {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pi-presentacion__wrap {
    padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 30px);
  }
  .pi-galeria__wrap {
    padding: clamp(48px, 6vw, 88px) clamp(24px, 4vw, 30px) clamp(24px, 6vw, 48px) clamp(24px, 4vw, 30px);
  }
  .pi-plantas__wrap {
    padding: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767.98px) {
  .pi-presentacion__content {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .pi-galeria {
    padding-left: 0;
    padding-right: 0;
  }
  .pi-galeria__texto {
    margin-bottom: 20px;
  }
  .pi-plantas__select {
    padding: 18px 44px 18px 20px;
  }
  .pi-plantas__btn {
    height: 58px;
  }
  .pi-galeria-ac__amenidades {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .pi-galeria-ac__wrap {
    padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px) clamp(24px, 6vw, 40px) 15%;
  }
}
@media (max-width: 575.98px) {
  .pi-presentacion__pills {
    gap: 10px;
  }
  .pi-presentacion__pill {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 10px 14px;
    font-size: clamp(16px, 3.2vw, 16px);
    white-space: normal;
  }
}
.bounce2 {
  animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
#contenedor-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1050;
  width: 84px;
  height: 84px;
}

#contenedor-whatsapp a {
  display: block;
  line-height: 0;
}

#contenedor-whatsapp img {
  width: auto;
  height: 84px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

@media (max-width: 767.98px) {
  #contenedor-whatsapp {
    left: 16px;
    bottom: 16px;
    width: 84px;
    height: 84px;
  }
  #contenedor-whatsapp img {
    height: 84px;
  }
}
.somos-banner {
  padding: 0;
}

.somos-banner__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.somos-banner__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.somos-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.somos-banner__content {
  text-align: center;
}

.somos-banner__titulo {
  margin: 0;
  color: #1C9B83;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.somos-banner__subtitulo {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.somos-banner__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: somos-bounce 2s infinite;
}

@keyframes somos-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(8px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}
.somos-equipo {
  padding: 0;
  background-color: #ffffff;
}

.somos-equipo__texto-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3FAF9;
}

.somos-equipo__texto-wrap {
  /* padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 80px);*/
  /* max-width: 480px;*/
}

.somos-equipo__texto {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.somos-equipo__gris {
  color: #191919;
  font-weight: 400;
}

.somos-equipo__verde {
  color: #1C9B83;
}

.somos-equipo__img-col {
  padding: 0;
}

.somos-equipo__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.somos-mision {
  padding: 0;
  background-color: #ffffff;
}

.somos-mision .row:first-child {
  padding: clamp(30px, 8vw, 50px) clamp(20px, 4vw, 48px) clamp(30px, 8vw, 50px) clamp(20px, 4vw, 48px);
}

.somos-mision__titulo {
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: #1C9B83;
  font-size: clamp(22px, 2.8vw, 45px);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.somos-mision__texto {
  margin: 0;
  color: #191919;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .somos-banner__scroll {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .somos-mision__titulo {
    font-size: clamp(22px, 5vw, 30px);
  }
  .somos-mision__texto {
    text-align: left;
  }
  .somos-equipo__texto-col {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .somos-mision__texto {
    text-align: center;
  }
  .somos-equipo__texto {
    font-size: clamp(17px, 1.6vw, 22px);
  }
}
.pr-banner {
  padding: 0;
}

.pr-banner__wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.pr-banner__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.38);
}

.pr-banner__content {
  text-align: center;
}

.pr-banner__titulo {
  margin: 0;
  color: #1C9B83;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pr-banner__subtitulo {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pr-banner__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  animation: pr-bounce 2s infinite;
}

@keyframes pr-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(7px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}
.pr-filtros {
  padding: clamp(22px, 3vw, 36px) 0;
  background-color: #ffffff;
  margin-top: 30px;
}

.pr-filtros__wrap {
  display: flex;
  justify-content: center;
}

.pr-filtros .pi-plantas__filtros {
  width: 160px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.pr-filtros .pi-plantas__filtro-btn {
  width: 100%;
  max-width: 150px;
}

.pr-filtros .pi-plantas__filtros-mobile {
  width: min(360px, 100%);
}

.pr-listado {
  padding: 0 0 clamp(30px, 4vw, 56px);
  background-color: #ffffff;
}

.pr-listado__grid {
  --bs-gutter-x: 34px;
  --bs-gutter-y: 26px;
}

.pr-card {
  margin-bottom: 35px;
}

.pr-card__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

.pr-card__img-wrap {
  width: 100%;
  max-width: 435px;
  flex-shrink: 0;
}

.pr-card__img {
  display: block;
  width: 100%;
  height: auto;
}

.pr-card__body {
  width: 100%;
  padding-top: 8px;
}

.pr-card__titulo {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #0f9485;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-wrap: nowrap;
}

.pr-card__direccion {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #0f9485;
}

.pr-card__stats {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.pr-card__stat {
  display: flex;
  flex-direction: column;
}

.pr-card__valor {
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.pr-card__label {
  font-size: 8px;
  line-height: 1.2;
  font-weight: 400;
  color: #9b9b9b;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.pr-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 34px;
  border: 1px solid #82cfc5;
  border-radius: 999px;
  padding: 0 18px;
  color: #0f9485;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pr-card__btn:hover {
  background-color: #1C9B83;
  border-color: #1C9B83;
  color: #ffffff;
}

@media (max-width: 1699.98px) {
  .pr-card__img {
    width: 90%;
  }
  .pr-card__img-wrap {
    max-width: 400px;
  }
  .pr-card__box {
    gap: 0%;
  }
}
@media (max-width: 1599.98px) {
  .pr-card__img-wrap {
    max-width: 60%;
  }
}
@media (max-width: 1199.98px) {
  .pr-card__stats {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .pr-card__valor {
    font-size: 18px;
  }
  .pr-card__titulo {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 991.98px) {
  .pr-banner__wrap {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .pr-banner__scroll {
    bottom: 22px;
  }
  .pr-filtros {
    padding: 16px 0 22px;
  }
  .pr-listado__grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 24px;
  }
  .pr-card__box {
    flex-direction: column;
    gap: 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .pr-card__img {
    width: 100%;
  }
  .pr-card__img-wrap {
    max-width: none;
  }
  .pr-card__body {
    max-width: none;
    padding: 12px 6px 0;
  }
  .pr-card__titulo {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .pr-card__direccion {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .pr-card__stats {
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .pr-card__valor {
    font-size: 30px;
  }
  .pr-card__btn {
    min-width: 140px;
    height: 42px;
    background-color: #1C9B83;
    border-color: #1C9B83;
    color: #ffffff;
    margin-top: 10px;
  }
  .pr-card__stats {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 90%;
  }
}
body[data-page=oportunidades] {
  background-color: #ffffff;
}

.op-banner {
  padding: 0;
}

.op-banner__wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.op-banner__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.42);
}

.op-banner__content {
  text-align: center;
  padding: 0 20px;
}

.op-banner__titulo {
  margin: 0;
  color: #1C9B83;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.op-banner__subtitulo {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(15px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.op-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  margin-top: 28px;
  border-radius: 999px;
  background-color: #1C9B83;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.op-banner__btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 155, 131, 0.35);
}

.op-banner__btn:active {
  transform: translateY(0);
}

.op-banner__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  text-decoration: none;
  animation: op-bounce 2s infinite;
}

@keyframes op-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(7px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}
.op-intro {
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 40px);
  background-color: #ffffff;
}

.op-intro__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.op-intro__titulo {
  margin: 0;
  color: #0f9485;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.op-intro__filtros {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.op-intro__filtros .pi-plantas__filtros {
  margin-bottom: 0;
}

.op-intro .pi-plantas__filtros-mobile {
  width: 100%;
  margin-bottom: 0;
}

.op-listado {
  padding: 0 0 clamp(40px, 5vw, 64px);
  background-color: #ffffff;
}

.op-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.op-mosaic__item {
  min-width: 0;
}

.op-promo--arriendo {
  /* grid-row: span 2; */
  grid-row: 1;
}

.op-promo--cuotas {
  grid-column: span 3;
}

.op-card-slot {
  min-width: 0;
}

/* Slots vacíos reservaban altura al filtrar en desktop (revertir: descomentar y quitar bloque inferior)
.op-card-slot--empty::before {
  content: "";
  display: block;
  min-height: 420px;
} se deben borrar los dos de abajo
*/
.op-card-slot--empty {
  display: none;
}

.op-card-slot--empty::before {
  display: none;
}

.op-card-slot .op-card {
  height: 100%;
}

.op-cards-pool {
  display: none;
}

.op-promo {
  background-color: #e8f5f2;
  border-radius: 4px;
  min-height: 100%;
  height: 360px;
}

.op-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 32px);
  box-sizing: border-box;
}

.op-promo__titulo {
  margin: 0 0 12px;
  color: #0f9485;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.op-promo__titulo-verde,
.op-promo__titulo-negro {
  display: block;
}

.op-promo__titulo-verde {
  color: #0f9485;
}

.op-promo__titulo-negro {
  margin-top: 4px;
  color: #111111;
  font-size: 0.82em;
  letter-spacing: 3px;
}

.op-promo__titulo--cuotas strong {
  font-weight: 800;
}

.op-promo__cuotas-top,
.op-promo__cuotas-bottom {
  display: inline;
}

.op-promo__sub {
  margin: 10px 0 45px;
  color: #0f9485;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.op-promo__sub-top,
.op-promo__sub-main {
  display: block;
}

.op-promo__sub-top {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #111111;
}

.op-promo__sub-main {
  font-weight: 700;
}

.op-promo__wsp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 80px;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.op-promo__wsp-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  object-fit: contain;
}

.op-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 234px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.op-promo__btn--outline {
  border: 1px solid #818181;
  background-color: transparent;
  color: #111111;
}

.op-promo__btn--outline:hover {
  border-color: #111111;
  background-color: #111111;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.18);
}

.op-promo__cuotas-wrap {
  display: flex;
  height: 100%;
  min-height: 220px;
}

.op-promo__cuotas-media {
  flex: 0 0 52%;
  background-color: #d9d9d9;
  background-image: url("../../images/oportunidades/oportunidad/1.jpg");
  background-size: cover;
  background-position: center;
}

.op-promo__cuotas-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  box-sizing: border-box;
}

.op-promo__cuotas-mobile-media,
.op-promo__cuotas-mobile-body,
.op-promo__cuotas-mobile-title,
.op-promo__cuotas-mobile-top,
.op-promo__cuotas-mobile-bottom {
  display: none;
}

.op-promo__titulo--cuotas {
  margin: 0 0 16px;
  text-transform: uppercase;
}

.op-promo__cuotas-desktop-top,
.op-promo__cuotas-desktop-main,
.op-promo__cuotas-desktop-bottom {
  display: block;
}

.op-promo__cuotas-desktop-top {
  color: #0f9485;
  font-size: clamp(24px, 1.55vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.8px;
}

.op-promo__cuotas-desktop-main {
  margin-top: 2px;
  color: #0f9485;
  font-size: clamp(50px, 3.2vw, 64px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.8px;
}

.op-promo__cuotas-desktop-bottom {
  margin-top: 8px;
  color: #111111;
  font-size: clamp(16px, 1.05vw, 21px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.1px;
}

.op-promo--cuotas .op-promo__btn--outline {
  min-width: 200px;
  height: 42px;
  border: 1px solid #8f9aa0;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.op-card__box {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
}

.op-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background-color: #e8e8e8;
  overflow: hidden;
}

.op-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  padding: 0 8px;
  border-radius: 50%;
  background-color: #1c9b83;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.2px;
}

.op-card__badge-top {
  font-size: 21px;
  line-height: 1;
}

.op-card__badge-bottom {
  font-size: 13px;
  line-height: 1;
}

.op-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 16px 18px;
}

.op-card__edificio {
  margin: 0 0 4px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.25s ease;
}

.op-card__depto {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.25s ease;
}

.op-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
}

.op-card__stat {
  text-align: center;
}

.op-card__stat-label {
  display: block;
  margin-bottom: 4px;
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.op-card__stat-val {
  display: block;
  color: #111111;
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.op-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "ubicacion ahora" "antes ahora";
  gap: 6px 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 2px;
}

.op-card__ubicacion {
  grid-area: ubicacion;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.op-card__pin-wrap {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

.op-card__pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: auto;
  transition: opacity 0.25s ease;
}

.op-card__pin--hover {
  opacity: 0;
}

.op-card:hover .op-card__edificio,
.op-card:hover .op-card__depto,
.op-card:hover .op-card__ubicacion {
  color: #1C9B83;
}

.op-card:hover .op-card__body {
  background-color: #F8FDFC;
}

.op-card:hover .op-card__pin--default {
  opacity: 0;
}

.op-card:hover .op-card__pin--hover {
  opacity: 1;
}

.op-card:hover .op-card__btn--reserva {
  background-color: #1C9B83;
  border-color: #1C9B83;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28, 155, 131, 0.25);
}

.op-card__antes {
  grid-area: antes;
  display: block;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: line-through;
}

.op-card__ahora-wrap {
  grid-area: ahora;
  display: block;
  text-align: right;
  align-self: center;
}

.op-card__ahora-label {
  display: block;
  margin-bottom: 1px;
  color: #0f9485;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.op-card__ahora {
  display: block;
  color: #0f9485;
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 800;
  line-height: 1.05;
}

.op-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: auto;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.op-card__btn--reserva {
  border: 1px solid #1c9b83;
  background-color: transparent;
  color: #0f9485;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  height: 50px;
}

.op-card__btn--reserva:hover {
  background-color: #1c9b83;
  border-color: #1c9b83;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28, 155, 131, 0.25);
}

.op-card__btn--info {
  display: none;
  border: none;
  background-color: #1c9b83;
  color: #ffffff;
}

.op-card__btn--info:hover {
  background-color: #168a74;
  color: #ffffff;
}

@media (max-width: 1499.98px) {
  .op-intro__titulo {
    font-size: clamp(24px, 3.2vw, 34px);
  }
}
@media (min-width: 992px) {
  .op-intro__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .op-intro__titulo {
    flex: 1 1 auto;
  }
}
@media (max-width: 991.98px) {
  .op-banner__wrap {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .op-banner__btn {
    width: 204px;
    height: 52px;
    margin-top: 32px;
    font-size: 14px;
  }
  .op-banner__scroll {
    bottom: 22px;
  }
  .op-intro {
    padding: 32px 0 28px;
  }
  .op-intro__titulo {
    font-size: clamp(28px, 7vw, 36px);
  }
  .op-mosaic {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .op-promo--arriendo,
  .op-promo--cuotas {
    grid-column: auto;
    grid-row: auto;
  }
  .op-promo--cuotas-mobile {
    grid-column: auto;
    grid-row: auto;
    display: block;
    height: auto;
    background-color: #f8fdfc;
  }
  /* Ocultar slots vacíos en mobile (ahora cubierto por regla global; revertir junto con bloque desktop)
  .op-card-slot--empty {
    display: none;
  }
  .op-card-slot--empty::before {
    display: none;
  }
  */
  .op-promo__inner {
    min-height: 320px;
  }
  .op-promo__cuotas-mobile-media {
    display: none;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #e5e5e5;
  }
  .op-promo__cuotas-mobile-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px 30px;
    height: 380px;
  }
  .op-promo__cuotas-mobile-title {
    display: block;
    max-width: 270px;
    margin: 0 0 24px;
    text-transform: uppercase;
  }
  .op-promo__cuotas-mobile-top,
  .op-promo__cuotas-mobile-bottom {
    display: block;
  }
  .op-promo__cuotas-mobile-top {
    margin-bottom: 14px;
    color: #0f9485;
    font-size: clamp(24px, 9.2vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2px;
  }
  .op-promo__cuotas-mobile-bottom {
    color: #111111;
    font-size: clamp(16px, 6.2vw, 31px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .op-card__btn--reserva {
    display: none;
  }
  .op-card__btn--info {
    display: flex;
  }
  .op-card__btn {
    font-size: 14px;
  }
  .op-card__footer {
    grid-template-columns: 1fr auto;
    grid-template-areas: "ubicacion ahora" "antes ahora";
    gap: 6px 10px;
  }
  .op-card__ahora-wrap {
    text-align: right;
  }
  .op-card__ubicacion {
    font-size: 14px;
  }
  .op-card__antes {
    font-size: 14px;
  }
  .op-card__ahora {
    font-size: 18px;
  }
  .op-promo__wsp {
    margin-bottom: 25px;
  }
  .op-promo__sub {
    margin: 10px 0 25px;
  }
  .op-promo__btn--mobile-dark {
    min-width: 280px;
    height: 58px;
    border: 1px solid #111111;
    background-color: #000000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.8px;
  }
}
.contacto-main {
  background-color: #ffffff;
}

.contacto {
  padding: 0;
  margin-top: 0;
}

.contacto__row {
  min-height: calc(100vh - 100px);
}

.contacto__left {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto__form-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 72px 42px 58px;
}

.contacto__titulo {
  margin: 0 0 38px;
  color: #00a394;
  font-size: clamp(40px, 2.7vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacto__field {
  width: 100%;
}

.contacto__input {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contacto__input::placeholder {
  color: #8c8c8c;
  opacity: 1;
}

.contacto__input:focus {
  border-color: #1c9b83;
  box-shadow: 0 0 0 3px rgba(28, 155, 131, 0.15);
}

.contacto__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23898989' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 34px;
}

.contacto__textarea {
  height: 146px;
  padding: 14px 16px;
  border-radius: 18px;
  resize: none;
}

.contacto__btn {
  margin-top: 4px;
  width: 170px;
  height: 40px;
  border: 1px solid #1c9b83;
  border-radius: 999px;
  background-color: #ffffff;
  color: #1c9b83;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.contacto__btn:hover {
  background-color: #1c9b83;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28, 155, 131, 0.25);
}

.contacto__right {
  background-color: #f3f3f3;
}

.contacto__mapa {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 100px);
}

@media (min-width: 992px) {
  .contacto__left,
  .contacto__right {
    padding-top: 100px;
  }
  .contacto__left {
    align-items: center;
  }
  .contacto__form-wrap {
    padding-top: 40px;
    padding-bottom: 32px;
  }
}
@media (min-width: 992px) and (max-height: 950px) {
  .contacto__form-wrap {
    padding-bottom: 48px;
  }
  .contacto__titulo {
    margin-bottom: 24px;
    font-size: clamp(34px, 2.2vw, 44px);
  }
  .contacto__textarea {
    height: 120px;
  }
}
@media (max-width: 991.98px) {
  .contacto {
    margin-top: 75px;
  }
  .contacto__row {
    min-height: auto;
  }
  .contacto__form-wrap {
    max-width: 420px;
    padding: 60px 24px 70px;
  }
  .contacto__titulo {
    margin-bottom: 20px;
    font-size: clamp(40px, 11vw, 52px);
    letter-spacing: 0.5px;
  }
  .contacto__form {
    gap: 9px;
  }
  .contacto__input {
    height: 40px;
    font-size: 13px;
  }
  .contacto__textarea {
    height: 118px;
    border-radius: 16px;
  }
  .contacto__btn {
    width: 210px;
    height: 44px;
    margin-top: 8px;
    border: none;
    background-color: #1c9b83;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .contacto__mapa {
    min-height: 680px;
  }
}
@media (max-width: 767.98px) {
  .contacto__titulo {
    margin-bottom: 20px;
    font-size: 38px;
    letter-spacing: 0.5px;
    text-align: center;
  }
  .contacto__form-wrap {
    max-width: 420px;
    padding: 60px 0 70px;
    width: 95%;
  }
}
/* BG COLORES */
.bg-blanco {
  background-color: #ffffff;
}

.bg-negro {
  background-color: #000000;
}

.bg-verde {
  background-color: #1C9B83;
}

/* COLORES */
.blanco {
  color: #ffffff;
}

.negro {
  color: #000000;
}

.verde {
  color: #1C9B83;
}

/* FONT WEIGHT */
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* LINE HEIGHT y LETTER SPACING en rem */
.lh-1 {
  line-height: 0.0625rem;
}

.ls-1 {
  letter-spacing: 0.0625rem;
}

.lh-2 {
  line-height: 0.125rem;
}

.ls-2 {
  letter-spacing: 0.125rem;
}

.lh-3 {
  line-height: 0.1875rem;
}

.ls-3 {
  letter-spacing: 0.1875rem;
}

.lh-4 {
  line-height: 0.25rem;
}

.ls-4 {
  letter-spacing: 0.25rem;
}

.lh-5 {
  line-height: 0.3125rem;
}

.ls-5 {
  letter-spacing: 0.3125rem;
}

.lh-6 {
  line-height: 0.375rem;
}

.ls-6 {
  letter-spacing: 0.375rem;
}

.lh-7 {
  line-height: 0.4375rem;
}

.ls-7 {
  letter-spacing: 0.4375rem;
}

.lh-8 {
  line-height: 0.5rem;
}

.ls-8 {
  letter-spacing: 0.5rem;
}

.lh-9 {
  line-height: 0.5625rem;
}

.ls-9 {
  letter-spacing: 0.5625rem;
}

.lh-10 {
  line-height: 0.625rem;
}

.ls-10 {
  letter-spacing: 0.625rem;
}

.lh-11 {
  line-height: 0.6875rem;
}

.ls-11 {
  letter-spacing: 0.6875rem;
}

.lh-12 {
  line-height: 0.75rem;
}

.ls-12 {
  letter-spacing: 0.75rem;
}

.lh-13 {
  line-height: 0.8125rem;
}

.ls-13 {
  letter-spacing: 0.8125rem;
}

.lh-14 {
  line-height: 0.875rem;
}

.ls-14 {
  letter-spacing: 0.875rem;
}

.lh-15 {
  line-height: 0.9375rem;
}

.ls-15 {
  letter-spacing: 0.9375rem;
}

.lh-16 {
  line-height: 1rem;
}

.ls-16 {
  letter-spacing: 1rem;
}

.lh-17 {
  line-height: 1.0625rem;
}

.ls-17 {
  letter-spacing: 1.0625rem;
}

.lh-18 {
  line-height: 1.125rem;
}

.ls-18 {
  letter-spacing: 1.125rem;
}

.lh-19 {
  line-height: 1.1875rem;
}

.ls-19 {
  letter-spacing: 1.1875rem;
}

.lh-20 {
  line-height: 1.25rem;
}

.ls-20 {
  letter-spacing: 1.25rem;
}

.lh-21 {
  line-height: 1.3125rem;
}

.ls-21 {
  letter-spacing: 1.3125rem;
}

.lh-22 {
  line-height: 1.375rem;
}

.ls-22 {
  letter-spacing: 1.375rem;
}

.lh-23 {
  line-height: 1.4375rem;
}

.ls-23 {
  letter-spacing: 1.4375rem;
}

.lh-24 {
  line-height: 1.5rem;
}

.ls-24 {
  letter-spacing: 1.5rem;
}

.lh-25 {
  line-height: 1.5625rem;
}

.ls-25 {
  letter-spacing: 1.5625rem;
}

.lh-26 {
  line-height: 1.625rem;
}

.ls-26 {
  letter-spacing: 1.625rem;
}

.lh-27 {
  line-height: 1.6875rem;
}

.ls-27 {
  letter-spacing: 1.6875rem;
}

.lh-28 {
  line-height: 1.75rem;
}

.ls-28 {
  letter-spacing: 1.75rem;
}

.lh-29 {
  line-height: 1.8125rem;
}

.ls-29 {
  letter-spacing: 1.8125rem;
}

.lh-30 {
  line-height: 1.875rem;
}

.ls-30 {
  letter-spacing: 1.875rem;
}

.lh-31 {
  line-height: 1.9375rem;
}

.ls-31 {
  letter-spacing: 1.9375rem;
}

.lh-32 {
  line-height: 2rem;
}

.ls-32 {
  letter-spacing: 2rem;
}

.lh-33 {
  line-height: 2.0625rem;
}

.ls-33 {
  letter-spacing: 2.0625rem;
}

.lh-34 {
  line-height: 2.125rem;
}

.ls-34 {
  letter-spacing: 2.125rem;
}

.lh-35 {
  line-height: 2.1875rem;
}

.ls-35 {
  letter-spacing: 2.1875rem;
}

.lh-36 {
  line-height: 2.25rem;
}

.ls-36 {
  letter-spacing: 2.25rem;
}

.lh-37 {
  line-height: 2.3125rem;
}

.ls-37 {
  letter-spacing: 2.3125rem;
}

.lh-38 {
  line-height: 2.375rem;
}

.ls-38 {
  letter-spacing: 2.375rem;
}

.lh-39 {
  line-height: 2.4375rem;
}

.ls-39 {
  letter-spacing: 2.4375rem;
}

.lh-40 {
  line-height: 2.5rem;
}

.ls-40 {
  letter-spacing: 2.5rem;
}

.lh-41 {
  line-height: 2.5625rem;
}

.ls-41 {
  letter-spacing: 2.5625rem;
}

.lh-42 {
  line-height: 2.625rem;
}

.ls-42 {
  letter-spacing: 2.625rem;
}

.lh-43 {
  line-height: 2.6875rem;
}

.ls-43 {
  letter-spacing: 2.6875rem;
}

.lh-44 {
  line-height: 2.75rem;
}

.ls-44 {
  letter-spacing: 2.75rem;
}

.lh-45 {
  line-height: 2.8125rem;
}

.ls-45 {
  letter-spacing: 2.8125rem;
}

.lh-46 {
  line-height: 2.875rem;
}

.ls-46 {
  letter-spacing: 2.875rem;
}

.lh-47 {
  line-height: 2.9375rem;
}

.ls-47 {
  letter-spacing: 2.9375rem;
}

.lh-48 {
  line-height: 3rem;
}

.ls-48 {
  letter-spacing: 3rem;
}

.lh-49 {
  line-height: 3.0625rem;
}

.ls-49 {
  letter-spacing: 3.0625rem;
}

.lh-50 {
  line-height: 3.125rem;
}

.ls-50 {
  letter-spacing: 3.125rem;
}

.lh-51 {
  line-height: 3.1875rem;
}

.ls-51 {
  letter-spacing: 3.1875rem;
}

.lh-52 {
  line-height: 3.25rem;
}

.ls-52 {
  letter-spacing: 3.25rem;
}

.lh-53 {
  line-height: 3.3125rem;
}

.ls-53 {
  letter-spacing: 3.3125rem;
}

.lh-54 {
  line-height: 3.375rem;
}

.ls-54 {
  letter-spacing: 3.375rem;
}

.lh-55 {
  line-height: 3.4375rem;
}

.ls-55 {
  letter-spacing: 3.4375rem;
}

.lh-56 {
  line-height: 3.5rem;
}

.ls-56 {
  letter-spacing: 3.5rem;
}

.lh-57 {
  line-height: 3.5625rem;
}

.ls-57 {
  letter-spacing: 3.5625rem;
}

.lh-58 {
  line-height: 3.625rem;
}

.ls-58 {
  letter-spacing: 3.625rem;
}

.lh-59 {
  line-height: 3.6875rem;
}

.ls-59 {
  letter-spacing: 3.6875rem;
}

.lh-60 {
  line-height: 3.75rem;
}

.ls-60 {
  letter-spacing: 3.75rem;
}

.lh-61 {
  line-height: 3.8125rem;
}

.ls-61 {
  letter-spacing: 3.8125rem;
}

.lh-62 {
  line-height: 3.875rem;
}

.ls-62 {
  letter-spacing: 3.875rem;
}

.lh-63 {
  line-height: 3.9375rem;
}

.ls-63 {
  letter-spacing: 3.9375rem;
}

.lh-64 {
  line-height: 4rem;
}

.ls-64 {
  letter-spacing: 4rem;
}

.lh-65 {
  line-height: 4.0625rem;
}

.ls-65 {
  letter-spacing: 4.0625rem;
}

.lh-66 {
  line-height: 4.125rem;
}

.ls-66 {
  letter-spacing: 4.125rem;
}

.lh-67 {
  line-height: 4.1875rem;
}

.ls-67 {
  letter-spacing: 4.1875rem;
}

.lh-68 {
  line-height: 4.25rem;
}

.ls-68 {
  letter-spacing: 4.25rem;
}

.lh-69 {
  line-height: 4.3125rem;
}

.ls-69 {
  letter-spacing: 4.3125rem;
}

.lh-70 {
  line-height: 4.375rem;
}

.ls-70 {
  letter-spacing: 4.375rem;
}

.lh-71 {
  line-height: 4.4375rem;
}

.ls-71 {
  letter-spacing: 4.4375rem;
}

.lh-72 {
  line-height: 4.5rem;
}

.ls-72 {
  letter-spacing: 4.5rem;
}

.lh-73 {
  line-height: 4.5625rem;
}

.ls-73 {
  letter-spacing: 4.5625rem;
}

.lh-74 {
  line-height: 4.625rem;
}

.ls-74 {
  letter-spacing: 4.625rem;
}

.lh-75 {
  line-height: 4.6875rem;
}

.ls-75 {
  letter-spacing: 4.6875rem;
}

.lh-76 {
  line-height: 4.75rem;
}

.ls-76 {
  letter-spacing: 4.75rem;
}

.lh-77 {
  line-height: 4.8125rem;
}

.ls-77 {
  letter-spacing: 4.8125rem;
}

.lh-78 {
  line-height: 4.875rem;
}

.ls-78 {
  letter-spacing: 4.875rem;
}

.lh-79 {
  line-height: 4.9375rem;
}

.ls-79 {
  letter-spacing: 4.9375rem;
}

.lh-80 {
  line-height: 5rem;
}

.ls-80 {
  letter-spacing: 5rem;
}

.lh-81 {
  line-height: 5.0625rem;
}

.ls-81 {
  letter-spacing: 5.0625rem;
}

.lh-82 {
  line-height: 5.125rem;
}

.ls-82 {
  letter-spacing: 5.125rem;
}

.lh-83 {
  line-height: 5.1875rem;
}

.ls-83 {
  letter-spacing: 5.1875rem;
}

.lh-84 {
  line-height: 5.25rem;
}

.ls-84 {
  letter-spacing: 5.25rem;
}

.lh-85 {
  line-height: 5.3125rem;
}

.ls-85 {
  letter-spacing: 5.3125rem;
}

.lh-86 {
  line-height: 5.375rem;
}

.ls-86 {
  letter-spacing: 5.375rem;
}

.lh-87 {
  line-height: 5.4375rem;
}

.ls-87 {
  letter-spacing: 5.4375rem;
}

.lh-88 {
  line-height: 5.5rem;
}

.ls-88 {
  letter-spacing: 5.5rem;
}

.lh-89 {
  line-height: 5.5625rem;
}

.ls-89 {
  letter-spacing: 5.5625rem;
}

.lh-90 {
  line-height: 5.625rem;
}

.ls-90 {
  letter-spacing: 5.625rem;
}

.lh-91 {
  line-height: 5.6875rem;
}

.ls-91 {
  letter-spacing: 5.6875rem;
}

.lh-92 {
  line-height: 5.75rem;
}

.ls-92 {
  letter-spacing: 5.75rem;
}

.lh-93 {
  line-height: 5.8125rem;
}

.ls-93 {
  letter-spacing: 5.8125rem;
}

.lh-94 {
  line-height: 5.875rem;
}

.ls-94 {
  letter-spacing: 5.875rem;
}

.lh-95 {
  line-height: 5.9375rem;
}

.ls-95 {
  letter-spacing: 5.9375rem;
}

.lh-96 {
  line-height: 6rem;
}

.ls-96 {
  letter-spacing: 6rem;
}

.lh-97 {
  line-height: 6.0625rem;
}

.ls-97 {
  letter-spacing: 6.0625rem;
}

.lh-98 {
  line-height: 6.125rem;
}

.ls-98 {
  letter-spacing: 6.125rem;
}

.lh-99 {
  line-height: 6.1875rem;
}

.ls-99 {
  letter-spacing: 6.1875rem;
}

.lh-100 {
  line-height: 6.25rem;
}

.ls-100 {
  letter-spacing: 6.25rem;
}

/* FONT SIZE en rem */
.size1 {
  font-size: 0.0625rem;
}

.size2 {
  font-size: 0.125rem;
}

.size3 {
  font-size: 0.1875rem;
}

.size4 {
  font-size: 0.25rem;
}

.size5 {
  font-size: 0.3125rem;
}

.size6 {
  font-size: 0.375rem;
}

.size7 {
  font-size: 0.4375rem;
}

.size8 {
  font-size: 0.5rem;
}

.size9 {
  font-size: 0.5625rem;
}

.size10 {
  font-size: 0.625rem;
}

.size11 {
  font-size: 0.6875rem;
}

.size12 {
  font-size: 0.75rem;
}

.size13 {
  font-size: 0.8125rem;
}

.size14 {
  font-size: 0.875rem;
}

.size15 {
  font-size: 0.9375rem;
}

.size16 {
  font-size: 1rem;
}

.size17 {
  font-size: 1.0625rem;
}

.size18 {
  font-size: 1.125rem;
}

.size19 {
  font-size: 1.1875rem;
}

.size20 {
  font-size: 1.25rem;
}

.size21 {
  font-size: 1.3125rem;
}

.size22 {
  font-size: 1.375rem;
}

.size23 {
  font-size: 1.4375rem;
}

.size24 {
  font-size: 1.5rem;
}

.size25 {
  font-size: 1.5625rem;
}

.size26 {
  font-size: 1.625rem;
}

.size27 {
  font-size: 1.6875rem;
}

.size28 {
  font-size: 1.75rem;
}

.size29 {
  font-size: 1.8125rem;
}

.size30 {
  font-size: 1.875rem;
}

.size31 {
  font-size: 1.9375rem;
}

.size32 {
  font-size: 2rem;
}

.size33 {
  font-size: 2.0625rem;
}

.size34 {
  font-size: 2.125rem;
}

.size35 {
  font-size: 2.1875rem;
}

.size36 {
  font-size: 2.25rem;
}

.size37 {
  font-size: 2.3125rem;
}

.size38 {
  font-size: 2.375rem;
}

.size39 {
  font-size: 2.4375rem;
}

.size40 {
  font-size: 2.5rem;
}

.size41 {
  font-size: 2.5625rem;
}

.size42 {
  font-size: 2.625rem;
}

.size43 {
  font-size: 2.6875rem;
}

.size44 {
  font-size: 2.75rem;
}

.size45 {
  font-size: 2.8125rem;
}

.size46 {
  font-size: 2.875rem;
}

.size47 {
  font-size: 2.9375rem;
}

.size48 {
  font-size: 3rem;
}

.size49 {
  font-size: 3.0625rem;
}

.size50 {
  font-size: 3.125rem;
}

.size51 {
  font-size: 3.1875rem;
}

.size52 {
  font-size: 3.25rem;
}

.size53 {
  font-size: 3.3125rem;
}

.size54 {
  font-size: 3.375rem;
}

.size55 {
  font-size: 3.4375rem;
}

.size56 {
  font-size: 3.5rem;
}

.size57 {
  font-size: 3.5625rem;
}

.size58 {
  font-size: 3.625rem;
}

.size59 {
  font-size: 3.6875rem;
}

.size60 {
  font-size: 3.75rem;
}

.size61 {
  font-size: 3.8125rem;
}

.size62 {
  font-size: 3.875rem;
}

.size63 {
  font-size: 3.9375rem;
}

.size64 {
  font-size: 4rem;
}

.size65 {
  font-size: 4.0625rem;
}

.size66 {
  font-size: 4.125rem;
}

.size67 {
  font-size: 4.1875rem;
}

.size68 {
  font-size: 4.25rem;
}

.size69 {
  font-size: 4.3125rem;
}

.size70 {
  font-size: 4.375rem;
}

.size71 {
  font-size: 4.4375rem;
}

.size72 {
  font-size: 4.5rem;
}

.size73 {
  font-size: 4.5625rem;
}

.size74 {
  font-size: 4.625rem;
}

.size75 {
  font-size: 4.6875rem;
}

.size76 {
  font-size: 4.75rem;
}

.size77 {
  font-size: 4.8125rem;
}

.size78 {
  font-size: 4.875rem;
}

.size79 {
  font-size: 4.9375rem;
}

.size80 {
  font-size: 5rem;
}

.size81 {
  font-size: 5.0625rem;
}

.size82 {
  font-size: 5.125rem;
}

.size83 {
  font-size: 5.1875rem;
}

.size84 {
  font-size: 5.25rem;
}

.size85 {
  font-size: 5.3125rem;
}

.size86 {
  font-size: 5.375rem;
}

.size87 {
  font-size: 5.4375rem;
}

.size88 {
  font-size: 5.5rem;
}

.size89 {
  font-size: 5.5625rem;
}

.size90 {
  font-size: 5.625rem;
}

.size91 {
  font-size: 5.6875rem;
}

.size92 {
  font-size: 5.75rem;
}

.size93 {
  font-size: 5.8125rem;
}

.size94 {
  font-size: 5.875rem;
}

.size95 {
  font-size: 5.9375rem;
}

.size96 {
  font-size: 6rem;
}

.size97 {
  font-size: 6.0625rem;
}

.size98 {
  font-size: 6.125rem;
}

.size99 {
  font-size: 6.1875rem;
}

.size100 {
  font-size: 6.25rem;
}

.size101 {
  font-size: 6.3125rem;
}

.size102 {
  font-size: 6.375rem;
}

.size103 {
  font-size: 6.4375rem;
}

.size104 {
  font-size: 6.5rem;
}

.size105 {
  font-size: 6.5625rem;
}

.size106 {
  font-size: 6.625rem;
}

.size107 {
  font-size: 6.6875rem;
}

.size108 {
  font-size: 6.75rem;
}

.size109 {
  font-size: 6.8125rem;
}

.size110 {
  font-size: 6.875rem;
}

.size111 {
  font-size: 6.9375rem;
}

.size112 {
  font-size: 7rem;
}

.size113 {
  font-size: 7.0625rem;
}

.size114 {
  font-size: 7.125rem;
}

.size115 {
  font-size: 7.1875rem;
}

.size116 {
  font-size: 7.25rem;
}

.size117 {
  font-size: 7.3125rem;
}

.size118 {
  font-size: 7.375rem;
}

.size119 {
  font-size: 7.4375rem;
}

.size120 {
  font-size: 7.5rem;
}

.size121 {
  font-size: 7.5625rem;
}

.size122 {
  font-size: 7.625rem;
}

.size123 {
  font-size: 7.6875rem;
}

.size124 {
  font-size: 7.75rem;
}

.size125 {
  font-size: 7.8125rem;
}

.size126 {
  font-size: 7.875rem;
}

.size127 {
  font-size: 7.9375rem;
}

.size128 {
  font-size: 8rem;
}

.size129 {
  font-size: 8.0625rem;
}

.size130 {
  font-size: 8.125rem;
}

.size131 {
  font-size: 8.1875rem;
}

.size132 {
  font-size: 8.25rem;
}

.size133 {
  font-size: 8.3125rem;
}

.size134 {
  font-size: 8.375rem;
}

.size135 {
  font-size: 8.4375rem;
}

.size136 {
  font-size: 8.5rem;
}

.size137 {
  font-size: 8.5625rem;
}

.size138 {
  font-size: 8.625rem;
}

.size139 {
  font-size: 8.6875rem;
}

.size140 {
  font-size: 8.75rem;
}

.size141 {
  font-size: 8.8125rem;
}

.size142 {
  font-size: 8.875rem;
}

.size143 {
  font-size: 8.9375rem;
}

.size144 {
  font-size: 9rem;
}

.size145 {
  font-size: 9.0625rem;
}

.size146 {
  font-size: 9.125rem;
}

.size147 {
  font-size: 9.1875rem;
}

.size148 {
  font-size: 9.25rem;
}

.size149 {
  font-size: 9.3125rem;
}

.size150 {
  font-size: 9.375rem;
}

.size151 {
  font-size: 9.4375rem;
}

.size152 {
  font-size: 9.5rem;
}

.size153 {
  font-size: 9.5625rem;
}

.size154 {
  font-size: 9.625rem;
}

.size155 {
  font-size: 9.6875rem;
}

.size156 {
  font-size: 9.75rem;
}

.size157 {
  font-size: 9.8125rem;
}

.size158 {
  font-size: 9.875rem;
}

.size159 {
  font-size: 9.9375rem;
}

.size160 {
  font-size: 10rem;
}

.size161 {
  font-size: 10.0625rem;
}

.size162 {
  font-size: 10.125rem;
}

.size163 {
  font-size: 10.1875rem;
}

.size164 {
  font-size: 10.25rem;
}

.size165 {
  font-size: 10.3125rem;
}

.size166 {
  font-size: 10.375rem;
}

.size167 {
  font-size: 10.4375rem;
}

.size168 {
  font-size: 10.5rem;
}

.size169 {
  font-size: 10.5625rem;
}

.size170 {
  font-size: 10.625rem;
}

.size171 {
  font-size: 10.6875rem;
}

.size172 {
  font-size: 10.75rem;
}

.size173 {
  font-size: 10.8125rem;
}

.size174 {
  font-size: 10.875rem;
}

.size175 {
  font-size: 10.9375rem;
}

.size176 {
  font-size: 11rem;
}

.size177 {
  font-size: 11.0625rem;
}

.size178 {
  font-size: 11.125rem;
}

.size179 {
  font-size: 11.1875rem;
}

.size180 {
  font-size: 11.25rem;
}

.size181 {
  font-size: 11.3125rem;
}

.size182 {
  font-size: 11.375rem;
}

.size183 {
  font-size: 11.4375rem;
}

.size184 {
  font-size: 11.5rem;
}

.size185 {
  font-size: 11.5625rem;
}

.size186 {
  font-size: 11.625rem;
}

.size187 {
  font-size: 11.6875rem;
}

.size188 {
  font-size: 11.75rem;
}

.size189 {
  font-size: 11.8125rem;
}

.size190 {
  font-size: 11.875rem;
}

.size191 {
  font-size: 11.9375rem;
}

.size192 {
  font-size: 12rem;
}

.size193 {
  font-size: 12.0625rem;
}

.size194 {
  font-size: 12.125rem;
}

.size195 {
  font-size: 12.1875rem;
}

.size196 {
  font-size: 12.25rem;
}

.size197 {
  font-size: 12.3125rem;
}

.size198 {
  font-size: 12.375rem;
}

.size199 {
  font-size: 12.4375rem;
}

.size200 {
  font-size: 12.5rem;
}

/* WIDTH en % */
.w1 {
  width: 1% !important;
}

.w2 {
  width: 2% !important;
}

.w3 {
  width: 3% !important;
}

.w4 {
  width: 4% !important;
}

.w5 {
  width: 5% !important;
}

.w6 {
  width: 6% !important;
}

.w7 {
  width: 7% !important;
}

.w8 {
  width: 8% !important;
}

.w9 {
  width: 9% !important;
}

.w10 {
  width: 10% !important;
}

.w11 {
  width: 11% !important;
}

.w12 {
  width: 12% !important;
}

.w13 {
  width: 13% !important;
}

.w14 {
  width: 14% !important;
}

.w15 {
  width: 15% !important;
}

.w16 {
  width: 16% !important;
}

.w17 {
  width: 17% !important;
}

.w18 {
  width: 18% !important;
}

.w19 {
  width: 19% !important;
}

.w20 {
  width: 20% !important;
}

.w21 {
  width: 21% !important;
}

.w22 {
  width: 22% !important;
}

.w23 {
  width: 23% !important;
}

.w24 {
  width: 24% !important;
}

.w25 {
  width: 25% !important;
}

.w26 {
  width: 26% !important;
}

.w27 {
  width: 27% !important;
}

.w28 {
  width: 28% !important;
}

.w29 {
  width: 29% !important;
}

.w30 {
  width: 30% !important;
}

.w31 {
  width: 31% !important;
}

.w32 {
  width: 32% !important;
}

.w33 {
  width: 33% !important;
}

.w34 {
  width: 34% !important;
}

.w35 {
  width: 35% !important;
}

.w36 {
  width: 36% !important;
}

.w37 {
  width: 37% !important;
}

.w38 {
  width: 38% !important;
}

.w39 {
  width: 39% !important;
}

.w40 {
  width: 40% !important;
}

.w41 {
  width: 41% !important;
}

.w42 {
  width: 42% !important;
}

.w43 {
  width: 43% !important;
}

.w44 {
  width: 44% !important;
}

.w45 {
  width: 45% !important;
}

.w46 {
  width: 46% !important;
}

.w47 {
  width: 47% !important;
}

.w48 {
  width: 48% !important;
}

.w49 {
  width: 49% !important;
}

.w50 {
  width: 50% !important;
}

.w51 {
  width: 51% !important;
}

.w52 {
  width: 52% !important;
}

.w53 {
  width: 53% !important;
}

.w54 {
  width: 54% !important;
}

.w55 {
  width: 55% !important;
}

.w56 {
  width: 56% !important;
}

.w57 {
  width: 57% !important;
}

.w58 {
  width: 58% !important;
}

.w59 {
  width: 59% !important;
}

.w60 {
  width: 60% !important;
}

.w61 {
  width: 61% !important;
}

.w62 {
  width: 62% !important;
}

.w63 {
  width: 63% !important;
}

.w64 {
  width: 64% !important;
}

.w65 {
  width: 65% !important;
}

.w66 {
  width: 66% !important;
}

.w67 {
  width: 67% !important;
}

.w68 {
  width: 68% !important;
}

.w69 {
  width: 69% !important;
}

.w70 {
  width: 70% !important;
}

.w71 {
  width: 71% !important;
}

.w72 {
  width: 72% !important;
}

.w73 {
  width: 73% !important;
}

.w74 {
  width: 74% !important;
}

.w75 {
  width: 75% !important;
}

.w76 {
  width: 76% !important;
}

.w77 {
  width: 77% !important;
}

.w78 {
  width: 78% !important;
}

.w79 {
  width: 79% !important;
}

.w80 {
  width: 80% !important;
}

.w81 {
  width: 81% !important;
}

.w82 {
  width: 82% !important;
}

.w83 {
  width: 83% !important;
}

.w84 {
  width: 84% !important;
}

.w85 {
  width: 85% !important;
}

.w86 {
  width: 86% !important;
}

.w87 {
  width: 87% !important;
}

.w88 {
  width: 88% !important;
}

.w89 {
  width: 89% !important;
}

.w90 {
  width: 90% !important;
}

.w91 {
  width: 91% !important;
}

.w92 {
  width: 92% !important;
}

.w93 {
  width: 93% !important;
}

.w94 {
  width: 94% !important;
}

.w95 {
  width: 95% !important;
}

.w96 {
  width: 96% !important;
}

.w97 {
  width: 97% !important;
}

.w98 {
  width: 98% !important;
}

.w99 {
  width: 99% !important;
}

.w100 {
  width: 100% !important;
}

.w101 {
  width: 101% !important;
}

/* MARGIN en rem */
.mt0 {
  margin-top: 0rem;
}

.mr0 {
  margin-right: 0rem;
}

.mb0 {
  margin-bottom: 0rem;
}

.ml0 {
  margin-left: 0rem;
}

.mt1 {
  margin-top: 0.0625rem;
}

.mr1 {
  margin-right: 0.0625rem;
}

.mb1 {
  margin-bottom: 0.0625rem;
}

.ml1 {
  margin-left: 0.0625rem;
}

.mt2 {
  margin-top: 0.125rem;
}

.mr2 {
  margin-right: 0.125rem;
}

.mb2 {
  margin-bottom: 0.125rem;
}

.ml2 {
  margin-left: 0.125rem;
}

.mt3 {
  margin-top: 0.1875rem;
}

.mr3 {
  margin-right: 0.1875rem;
}

.mb3 {
  margin-bottom: 0.1875rem;
}

.ml3 {
  margin-left: 0.1875rem;
}

.mt4 {
  margin-top: 0.25rem;
}

.mr4 {
  margin-right: 0.25rem;
}

.mb4 {
  margin-bottom: 0.25rem;
}

.ml4 {
  margin-left: 0.25rem;
}

.mt5 {
  margin-top: 0.3125rem;
}

.mr5 {
  margin-right: 0.3125rem;
}

.mb5 {
  margin-bottom: 0.3125rem;
}

.ml5 {
  margin-left: 0.3125rem;
}

.mt6 {
  margin-top: 0.375rem;
}

.mr6 {
  margin-right: 0.375rem;
}

.mb6 {
  margin-bottom: 0.375rem;
}

.ml6 {
  margin-left: 0.375rem;
}

.mt7 {
  margin-top: 0.4375rem;
}

.mr7 {
  margin-right: 0.4375rem;
}

.mb7 {
  margin-bottom: 0.4375rem;
}

.ml7 {
  margin-left: 0.4375rem;
}

.mt8 {
  margin-top: 0.5rem;
}

.mr8 {
  margin-right: 0.5rem;
}

.mb8 {
  margin-bottom: 0.5rem;
}

.ml8 {
  margin-left: 0.5rem;
}

.mt9 {
  margin-top: 0.5625rem;
}

.mr9 {
  margin-right: 0.5625rem;
}

.mb9 {
  margin-bottom: 0.5625rem;
}

.ml9 {
  margin-left: 0.5625rem;
}

.mt10 {
  margin-top: 0.625rem;
}

.mr10 {
  margin-right: 0.625rem;
}

.mb10 {
  margin-bottom: 0.625rem;
}

.ml10 {
  margin-left: 0.625rem;
}

.mt11 {
  margin-top: 0.6875rem;
}

.mr11 {
  margin-right: 0.6875rem;
}

.mb11 {
  margin-bottom: 0.6875rem;
}

.ml11 {
  margin-left: 0.6875rem;
}

.mt12 {
  margin-top: 0.75rem;
}

.mr12 {
  margin-right: 0.75rem;
}

.mb12 {
  margin-bottom: 0.75rem;
}

.ml12 {
  margin-left: 0.75rem;
}

.mt13 {
  margin-top: 0.8125rem;
}

.mr13 {
  margin-right: 0.8125rem;
}

.mb13 {
  margin-bottom: 0.8125rem;
}

.ml13 {
  margin-left: 0.8125rem;
}

.mt14 {
  margin-top: 0.875rem;
}

.mr14 {
  margin-right: 0.875rem;
}

.mb14 {
  margin-bottom: 0.875rem;
}

.ml14 {
  margin-left: 0.875rem;
}

.mt15 {
  margin-top: 0.9375rem;
}

.mr15 {
  margin-right: 0.9375rem;
}

.mb15 {
  margin-bottom: 0.9375rem;
}

.ml15 {
  margin-left: 0.9375rem;
}

.mt16 {
  margin-top: 1rem;
}

.mr16 {
  margin-right: 1rem;
}

.mb16 {
  margin-bottom: 1rem;
}

.ml16 {
  margin-left: 1rem;
}

.mt17 {
  margin-top: 1.0625rem;
}

.mr17 {
  margin-right: 1.0625rem;
}

.mb17 {
  margin-bottom: 1.0625rem;
}

.ml17 {
  margin-left: 1.0625rem;
}

.mt18 {
  margin-top: 1.125rem;
}

.mr18 {
  margin-right: 1.125rem;
}

.mb18 {
  margin-bottom: 1.125rem;
}

.ml18 {
  margin-left: 1.125rem;
}

.mt19 {
  margin-top: 1.1875rem;
}

.mr19 {
  margin-right: 1.1875rem;
}

.mb19 {
  margin-bottom: 1.1875rem;
}

.ml19 {
  margin-left: 1.1875rem;
}

.mt20 {
  margin-top: 1.25rem;
}

.mr20 {
  margin-right: 1.25rem;
}

.mb20 {
  margin-bottom: 1.25rem;
}

.ml20 {
  margin-left: 1.25rem;
}

.mt21 {
  margin-top: 1.3125rem;
}

.mr21 {
  margin-right: 1.3125rem;
}

.mb21 {
  margin-bottom: 1.3125rem;
}

.ml21 {
  margin-left: 1.3125rem;
}

.mt22 {
  margin-top: 1.375rem;
}

.mr22 {
  margin-right: 1.375rem;
}

.mb22 {
  margin-bottom: 1.375rem;
}

.ml22 {
  margin-left: 1.375rem;
}

.mt23 {
  margin-top: 1.4375rem;
}

.mr23 {
  margin-right: 1.4375rem;
}

.mb23 {
  margin-bottom: 1.4375rem;
}

.ml23 {
  margin-left: 1.4375rem;
}

.mt24 {
  margin-top: 1.5rem;
}

.mr24 {
  margin-right: 1.5rem;
}

.mb24 {
  margin-bottom: 1.5rem;
}

.ml24 {
  margin-left: 1.5rem;
}

.mt25 {
  margin-top: 1.5625rem;
}

.mr25 {
  margin-right: 1.5625rem;
}

.mb25 {
  margin-bottom: 1.5625rem;
}

.ml25 {
  margin-left: 1.5625rem;
}

.mt26 {
  margin-top: 1.625rem;
}

.mr26 {
  margin-right: 1.625rem;
}

.mb26 {
  margin-bottom: 1.625rem;
}

.ml26 {
  margin-left: 1.625rem;
}

.mt27 {
  margin-top: 1.6875rem;
}

.mr27 {
  margin-right: 1.6875rem;
}

.mb27 {
  margin-bottom: 1.6875rem;
}

.ml27 {
  margin-left: 1.6875rem;
}

.mt28 {
  margin-top: 1.75rem;
}

.mr28 {
  margin-right: 1.75rem;
}

.mb28 {
  margin-bottom: 1.75rem;
}

.ml28 {
  margin-left: 1.75rem;
}

.mt29 {
  margin-top: 1.8125rem;
}

.mr29 {
  margin-right: 1.8125rem;
}

.mb29 {
  margin-bottom: 1.8125rem;
}

.ml29 {
  margin-left: 1.8125rem;
}

.mt30 {
  margin-top: 1.875rem;
}

.mr30 {
  margin-right: 1.875rem;
}

.mb30 {
  margin-bottom: 1.875rem;
}

.ml30 {
  margin-left: 1.875rem;
}

.mt31 {
  margin-top: 1.9375rem;
}

.mr31 {
  margin-right: 1.9375rem;
}

.mb31 {
  margin-bottom: 1.9375rem;
}

.ml31 {
  margin-left: 1.9375rem;
}

.mt32 {
  margin-top: 2rem;
}

.mr32 {
  margin-right: 2rem;
}

.mb32 {
  margin-bottom: 2rem;
}

.ml32 {
  margin-left: 2rem;
}

.mt33 {
  margin-top: 2.0625rem;
}

.mr33 {
  margin-right: 2.0625rem;
}

.mb33 {
  margin-bottom: 2.0625rem;
}

.ml33 {
  margin-left: 2.0625rem;
}

.mt34 {
  margin-top: 2.125rem;
}

.mr34 {
  margin-right: 2.125rem;
}

.mb34 {
  margin-bottom: 2.125rem;
}

.ml34 {
  margin-left: 2.125rem;
}

.mt35 {
  margin-top: 2.1875rem;
}

.mr35 {
  margin-right: 2.1875rem;
}

.mb35 {
  margin-bottom: 2.1875rem;
}

.ml35 {
  margin-left: 2.1875rem;
}

.mt36 {
  margin-top: 2.25rem;
}

.mr36 {
  margin-right: 2.25rem;
}

.mb36 {
  margin-bottom: 2.25rem;
}

.ml36 {
  margin-left: 2.25rem;
}

.mt37 {
  margin-top: 2.3125rem;
}

.mr37 {
  margin-right: 2.3125rem;
}

.mb37 {
  margin-bottom: 2.3125rem;
}

.ml37 {
  margin-left: 2.3125rem;
}

.mt38 {
  margin-top: 2.375rem;
}

.mr38 {
  margin-right: 2.375rem;
}

.mb38 {
  margin-bottom: 2.375rem;
}

.ml38 {
  margin-left: 2.375rem;
}

.mt39 {
  margin-top: 2.4375rem;
}

.mr39 {
  margin-right: 2.4375rem;
}

.mb39 {
  margin-bottom: 2.4375rem;
}

.ml39 {
  margin-left: 2.4375rem;
}

.mt40 {
  margin-top: 2.5rem;
}

.mr40 {
  margin-right: 2.5rem;
}

.mb40 {
  margin-bottom: 2.5rem;
}

.ml40 {
  margin-left: 2.5rem;
}

.mt41 {
  margin-top: 2.5625rem;
}

.mr41 {
  margin-right: 2.5625rem;
}

.mb41 {
  margin-bottom: 2.5625rem;
}

.ml41 {
  margin-left: 2.5625rem;
}

.mt42 {
  margin-top: 2.625rem;
}

.mr42 {
  margin-right: 2.625rem;
}

.mb42 {
  margin-bottom: 2.625rem;
}

.ml42 {
  margin-left: 2.625rem;
}

.mt43 {
  margin-top: 2.6875rem;
}

.mr43 {
  margin-right: 2.6875rem;
}

.mb43 {
  margin-bottom: 2.6875rem;
}

.ml43 {
  margin-left: 2.6875rem;
}

.mt44 {
  margin-top: 2.75rem;
}

.mr44 {
  margin-right: 2.75rem;
}

.mb44 {
  margin-bottom: 2.75rem;
}

.ml44 {
  margin-left: 2.75rem;
}

.mt45 {
  margin-top: 2.8125rem;
}

.mr45 {
  margin-right: 2.8125rem;
}

.mb45 {
  margin-bottom: 2.8125rem;
}

.ml45 {
  margin-left: 2.8125rem;
}

.mt46 {
  margin-top: 2.875rem;
}

.mr46 {
  margin-right: 2.875rem;
}

.mb46 {
  margin-bottom: 2.875rem;
}

.ml46 {
  margin-left: 2.875rem;
}

.mt47 {
  margin-top: 2.9375rem;
}

.mr47 {
  margin-right: 2.9375rem;
}

.mb47 {
  margin-bottom: 2.9375rem;
}

.ml47 {
  margin-left: 2.9375rem;
}

.mt48 {
  margin-top: 3rem;
}

.mr48 {
  margin-right: 3rem;
}

.mb48 {
  margin-bottom: 3rem;
}

.ml48 {
  margin-left: 3rem;
}

.mt49 {
  margin-top: 3.0625rem;
}

.mr49 {
  margin-right: 3.0625rem;
}

.mb49 {
  margin-bottom: 3.0625rem;
}

.ml49 {
  margin-left: 3.0625rem;
}

.mt50 {
  margin-top: 3.125rem;
}

.mr50 {
  margin-right: 3.125rem;
}

.mb50 {
  margin-bottom: 3.125rem;
}

.ml50 {
  margin-left: 3.125rem;
}

.mt51 {
  margin-top: 3.1875rem;
}

.mr51 {
  margin-right: 3.1875rem;
}

.mb51 {
  margin-bottom: 3.1875rem;
}

.ml51 {
  margin-left: 3.1875rem;
}

.mt52 {
  margin-top: 3.25rem;
}

.mr52 {
  margin-right: 3.25rem;
}

.mb52 {
  margin-bottom: 3.25rem;
}

.ml52 {
  margin-left: 3.25rem;
}

.mt53 {
  margin-top: 3.3125rem;
}

.mr53 {
  margin-right: 3.3125rem;
}

.mb53 {
  margin-bottom: 3.3125rem;
}

.ml53 {
  margin-left: 3.3125rem;
}

.mt54 {
  margin-top: 3.375rem;
}

.mr54 {
  margin-right: 3.375rem;
}

.mb54 {
  margin-bottom: 3.375rem;
}

.ml54 {
  margin-left: 3.375rem;
}

.mt55 {
  margin-top: 3.4375rem;
}

.mr55 {
  margin-right: 3.4375rem;
}

.mb55 {
  margin-bottom: 3.4375rem;
}

.ml55 {
  margin-left: 3.4375rem;
}

.mt56 {
  margin-top: 3.5rem;
}

.mr56 {
  margin-right: 3.5rem;
}

.mb56 {
  margin-bottom: 3.5rem;
}

.ml56 {
  margin-left: 3.5rem;
}

.mt57 {
  margin-top: 3.5625rem;
}

.mr57 {
  margin-right: 3.5625rem;
}

.mb57 {
  margin-bottom: 3.5625rem;
}

.ml57 {
  margin-left: 3.5625rem;
}

.mt58 {
  margin-top: 3.625rem;
}

.mr58 {
  margin-right: 3.625rem;
}

.mb58 {
  margin-bottom: 3.625rem;
}

.ml58 {
  margin-left: 3.625rem;
}

.mt59 {
  margin-top: 3.6875rem;
}

.mr59 {
  margin-right: 3.6875rem;
}

.mb59 {
  margin-bottom: 3.6875rem;
}

.ml59 {
  margin-left: 3.6875rem;
}

.mt60 {
  margin-top: 3.75rem;
}

.mr60 {
  margin-right: 3.75rem;
}

.mb60 {
  margin-bottom: 3.75rem;
}

.ml60 {
  margin-left: 3.75rem;
}

.mt61 {
  margin-top: 3.8125rem;
}

.mr61 {
  margin-right: 3.8125rem;
}

.mb61 {
  margin-bottom: 3.8125rem;
}

.ml61 {
  margin-left: 3.8125rem;
}

.mt62 {
  margin-top: 3.875rem;
}

.mr62 {
  margin-right: 3.875rem;
}

.mb62 {
  margin-bottom: 3.875rem;
}

.ml62 {
  margin-left: 3.875rem;
}

.mt63 {
  margin-top: 3.9375rem;
}

.mr63 {
  margin-right: 3.9375rem;
}

.mb63 {
  margin-bottom: 3.9375rem;
}

.ml63 {
  margin-left: 3.9375rem;
}

.mt64 {
  margin-top: 4rem;
}

.mr64 {
  margin-right: 4rem;
}

.mb64 {
  margin-bottom: 4rem;
}

.ml64 {
  margin-left: 4rem;
}

.mt65 {
  margin-top: 4.0625rem;
}

.mr65 {
  margin-right: 4.0625rem;
}

.mb65 {
  margin-bottom: 4.0625rem;
}

.ml65 {
  margin-left: 4.0625rem;
}

.mt66 {
  margin-top: 4.125rem;
}

.mr66 {
  margin-right: 4.125rem;
}

.mb66 {
  margin-bottom: 4.125rem;
}

.ml66 {
  margin-left: 4.125rem;
}

.mt67 {
  margin-top: 4.1875rem;
}

.mr67 {
  margin-right: 4.1875rem;
}

.mb67 {
  margin-bottom: 4.1875rem;
}

.ml67 {
  margin-left: 4.1875rem;
}

.mt68 {
  margin-top: 4.25rem;
}

.mr68 {
  margin-right: 4.25rem;
}

.mb68 {
  margin-bottom: 4.25rem;
}

.ml68 {
  margin-left: 4.25rem;
}

.mt69 {
  margin-top: 4.3125rem;
}

.mr69 {
  margin-right: 4.3125rem;
}

.mb69 {
  margin-bottom: 4.3125rem;
}

.ml69 {
  margin-left: 4.3125rem;
}

.mt70 {
  margin-top: 4.375rem;
}

.mr70 {
  margin-right: 4.375rem;
}

.mb70 {
  margin-bottom: 4.375rem;
}

.ml70 {
  margin-left: 4.375rem;
}

.mt71 {
  margin-top: 4.4375rem;
}

.mr71 {
  margin-right: 4.4375rem;
}

.mb71 {
  margin-bottom: 4.4375rem;
}

.ml71 {
  margin-left: 4.4375rem;
}

.mt72 {
  margin-top: 4.5rem;
}

.mr72 {
  margin-right: 4.5rem;
}

.mb72 {
  margin-bottom: 4.5rem;
}

.ml72 {
  margin-left: 4.5rem;
}

.mt73 {
  margin-top: 4.5625rem;
}

.mr73 {
  margin-right: 4.5625rem;
}

.mb73 {
  margin-bottom: 4.5625rem;
}

.ml73 {
  margin-left: 4.5625rem;
}

.mt74 {
  margin-top: 4.625rem;
}

.mr74 {
  margin-right: 4.625rem;
}

.mb74 {
  margin-bottom: 4.625rem;
}

.ml74 {
  margin-left: 4.625rem;
}

.mt75 {
  margin-top: 4.6875rem;
}

.mr75 {
  margin-right: 4.6875rem;
}

.mb75 {
  margin-bottom: 4.6875rem;
}

.ml75 {
  margin-left: 4.6875rem;
}

.mt76 {
  margin-top: 4.75rem;
}

.mr76 {
  margin-right: 4.75rem;
}

.mb76 {
  margin-bottom: 4.75rem;
}

.ml76 {
  margin-left: 4.75rem;
}

.mt77 {
  margin-top: 4.8125rem;
}

.mr77 {
  margin-right: 4.8125rem;
}

.mb77 {
  margin-bottom: 4.8125rem;
}

.ml77 {
  margin-left: 4.8125rem;
}

.mt78 {
  margin-top: 4.875rem;
}

.mr78 {
  margin-right: 4.875rem;
}

.mb78 {
  margin-bottom: 4.875rem;
}

.ml78 {
  margin-left: 4.875rem;
}

.mt79 {
  margin-top: 4.9375rem;
}

.mr79 {
  margin-right: 4.9375rem;
}

.mb79 {
  margin-bottom: 4.9375rem;
}

.ml79 {
  margin-left: 4.9375rem;
}

.mt80 {
  margin-top: 5rem;
}

.mr80 {
  margin-right: 5rem;
}

.mb80 {
  margin-bottom: 5rem;
}

.ml80 {
  margin-left: 5rem;
}

.mt81 {
  margin-top: 5.0625rem;
}

.mr81 {
  margin-right: 5.0625rem;
}

.mb81 {
  margin-bottom: 5.0625rem;
}

.ml81 {
  margin-left: 5.0625rem;
}

.mt82 {
  margin-top: 5.125rem;
}

.mr82 {
  margin-right: 5.125rem;
}

.mb82 {
  margin-bottom: 5.125rem;
}

.ml82 {
  margin-left: 5.125rem;
}

.mt83 {
  margin-top: 5.1875rem;
}

.mr83 {
  margin-right: 5.1875rem;
}

.mb83 {
  margin-bottom: 5.1875rem;
}

.ml83 {
  margin-left: 5.1875rem;
}

.mt84 {
  margin-top: 5.25rem;
}

.mr84 {
  margin-right: 5.25rem;
}

.mb84 {
  margin-bottom: 5.25rem;
}

.ml84 {
  margin-left: 5.25rem;
}

.mt85 {
  margin-top: 5.3125rem;
}

.mr85 {
  margin-right: 5.3125rem;
}

.mb85 {
  margin-bottom: 5.3125rem;
}

.ml85 {
  margin-left: 5.3125rem;
}

.mt86 {
  margin-top: 5.375rem;
}

.mr86 {
  margin-right: 5.375rem;
}

.mb86 {
  margin-bottom: 5.375rem;
}

.ml86 {
  margin-left: 5.375rem;
}

.mt87 {
  margin-top: 5.4375rem;
}

.mr87 {
  margin-right: 5.4375rem;
}

.mb87 {
  margin-bottom: 5.4375rem;
}

.ml87 {
  margin-left: 5.4375rem;
}

.mt88 {
  margin-top: 5.5rem;
}

.mr88 {
  margin-right: 5.5rem;
}

.mb88 {
  margin-bottom: 5.5rem;
}

.ml88 {
  margin-left: 5.5rem;
}

.mt89 {
  margin-top: 5.5625rem;
}

.mr89 {
  margin-right: 5.5625rem;
}

.mb89 {
  margin-bottom: 5.5625rem;
}

.ml89 {
  margin-left: 5.5625rem;
}

.mt90 {
  margin-top: 5.625rem;
}

.mr90 {
  margin-right: 5.625rem;
}

.mb90 {
  margin-bottom: 5.625rem;
}

.ml90 {
  margin-left: 5.625rem;
}

.mt91 {
  margin-top: 5.6875rem;
}

.mr91 {
  margin-right: 5.6875rem;
}

.mb91 {
  margin-bottom: 5.6875rem;
}

.ml91 {
  margin-left: 5.6875rem;
}

.mt92 {
  margin-top: 5.75rem;
}

.mr92 {
  margin-right: 5.75rem;
}

.mb92 {
  margin-bottom: 5.75rem;
}

.ml92 {
  margin-left: 5.75rem;
}

.mt93 {
  margin-top: 5.8125rem;
}

.mr93 {
  margin-right: 5.8125rem;
}

.mb93 {
  margin-bottom: 5.8125rem;
}

.ml93 {
  margin-left: 5.8125rem;
}

.mt94 {
  margin-top: 5.875rem;
}

.mr94 {
  margin-right: 5.875rem;
}

.mb94 {
  margin-bottom: 5.875rem;
}

.ml94 {
  margin-left: 5.875rem;
}

.mt95 {
  margin-top: 5.9375rem;
}

.mr95 {
  margin-right: 5.9375rem;
}

.mb95 {
  margin-bottom: 5.9375rem;
}

.ml95 {
  margin-left: 5.9375rem;
}

.mt96 {
  margin-top: 6rem;
}

.mr96 {
  margin-right: 6rem;
}

.mb96 {
  margin-bottom: 6rem;
}

.ml96 {
  margin-left: 6rem;
}

.mt97 {
  margin-top: 6.0625rem;
}

.mr97 {
  margin-right: 6.0625rem;
}

.mb97 {
  margin-bottom: 6.0625rem;
}

.ml97 {
  margin-left: 6.0625rem;
}

.mt98 {
  margin-top: 6.125rem;
}

.mr98 {
  margin-right: 6.125rem;
}

.mb98 {
  margin-bottom: 6.125rem;
}

.ml98 {
  margin-left: 6.125rem;
}

.mt99 {
  margin-top: 6.1875rem;
}

.mr99 {
  margin-right: 6.1875rem;
}

.mb99 {
  margin-bottom: 6.1875rem;
}

.ml99 {
  margin-left: 6.1875rem;
}

.mt100 {
  margin-top: 6.25rem;
}

.mr100 {
  margin-right: 6.25rem;
}

.mb100 {
  margin-bottom: 6.25rem;
}

.ml100 {
  margin-left: 6.25rem;
}

.mt101 {
  margin-top: 6.3125rem;
}

.mr101 {
  margin-right: 6.3125rem;
}

.mb101 {
  margin-bottom: 6.3125rem;
}

.ml101 {
  margin-left: 6.3125rem;
}

.mt102 {
  margin-top: 6.375rem;
}

.mr102 {
  margin-right: 6.375rem;
}

.mb102 {
  margin-bottom: 6.375rem;
}

.ml102 {
  margin-left: 6.375rem;
}

.mt103 {
  margin-top: 6.4375rem;
}

.mr103 {
  margin-right: 6.4375rem;
}

.mb103 {
  margin-bottom: 6.4375rem;
}

.ml103 {
  margin-left: 6.4375rem;
}

.mt104 {
  margin-top: 6.5rem;
}

.mr104 {
  margin-right: 6.5rem;
}

.mb104 {
  margin-bottom: 6.5rem;
}

.ml104 {
  margin-left: 6.5rem;
}

.mt105 {
  margin-top: 6.5625rem;
}

.mr105 {
  margin-right: 6.5625rem;
}

.mb105 {
  margin-bottom: 6.5625rem;
}

.ml105 {
  margin-left: 6.5625rem;
}

.mt106 {
  margin-top: 6.625rem;
}

.mr106 {
  margin-right: 6.625rem;
}

.mb106 {
  margin-bottom: 6.625rem;
}

.ml106 {
  margin-left: 6.625rem;
}

.mt107 {
  margin-top: 6.6875rem;
}

.mr107 {
  margin-right: 6.6875rem;
}

.mb107 {
  margin-bottom: 6.6875rem;
}

.ml107 {
  margin-left: 6.6875rem;
}

.mt108 {
  margin-top: 6.75rem;
}

.mr108 {
  margin-right: 6.75rem;
}

.mb108 {
  margin-bottom: 6.75rem;
}

.ml108 {
  margin-left: 6.75rem;
}

.mt109 {
  margin-top: 6.8125rem;
}

.mr109 {
  margin-right: 6.8125rem;
}

.mb109 {
  margin-bottom: 6.8125rem;
}

.ml109 {
  margin-left: 6.8125rem;
}

.mt110 {
  margin-top: 6.875rem;
}

.mr110 {
  margin-right: 6.875rem;
}

.mb110 {
  margin-bottom: 6.875rem;
}

.ml110 {
  margin-left: 6.875rem;
}

.mt111 {
  margin-top: 6.9375rem;
}

.mr111 {
  margin-right: 6.9375rem;
}

.mb111 {
  margin-bottom: 6.9375rem;
}

.ml111 {
  margin-left: 6.9375rem;
}

.mt112 {
  margin-top: 7rem;
}

.mr112 {
  margin-right: 7rem;
}

.mb112 {
  margin-bottom: 7rem;
}

.ml112 {
  margin-left: 7rem;
}

.mt113 {
  margin-top: 7.0625rem;
}

.mr113 {
  margin-right: 7.0625rem;
}

.mb113 {
  margin-bottom: 7.0625rem;
}

.ml113 {
  margin-left: 7.0625rem;
}

.mt114 {
  margin-top: 7.125rem;
}

.mr114 {
  margin-right: 7.125rem;
}

.mb114 {
  margin-bottom: 7.125rem;
}

.ml114 {
  margin-left: 7.125rem;
}

.mt115 {
  margin-top: 7.1875rem;
}

.mr115 {
  margin-right: 7.1875rem;
}

.mb115 {
  margin-bottom: 7.1875rem;
}

.ml115 {
  margin-left: 7.1875rem;
}

.mt116 {
  margin-top: 7.25rem;
}

.mr116 {
  margin-right: 7.25rem;
}

.mb116 {
  margin-bottom: 7.25rem;
}

.ml116 {
  margin-left: 7.25rem;
}

.mt117 {
  margin-top: 7.3125rem;
}

.mr117 {
  margin-right: 7.3125rem;
}

.mb117 {
  margin-bottom: 7.3125rem;
}

.ml117 {
  margin-left: 7.3125rem;
}

.mt118 {
  margin-top: 7.375rem;
}

.mr118 {
  margin-right: 7.375rem;
}

.mb118 {
  margin-bottom: 7.375rem;
}

.ml118 {
  margin-left: 7.375rem;
}

.mt119 {
  margin-top: 7.4375rem;
}

.mr119 {
  margin-right: 7.4375rem;
}

.mb119 {
  margin-bottom: 7.4375rem;
}

.ml119 {
  margin-left: 7.4375rem;
}

.mt120 {
  margin-top: 7.5rem;
}

.mr120 {
  margin-right: 7.5rem;
}

.mb120 {
  margin-bottom: 7.5rem;
}

.ml120 {
  margin-left: 7.5rem;
}

.mt121 {
  margin-top: 7.5625rem;
}

.mr121 {
  margin-right: 7.5625rem;
}

.mb121 {
  margin-bottom: 7.5625rem;
}

.ml121 {
  margin-left: 7.5625rem;
}

.mt122 {
  margin-top: 7.625rem;
}

.mr122 {
  margin-right: 7.625rem;
}

.mb122 {
  margin-bottom: 7.625rem;
}

.ml122 {
  margin-left: 7.625rem;
}

.mt123 {
  margin-top: 7.6875rem;
}

.mr123 {
  margin-right: 7.6875rem;
}

.mb123 {
  margin-bottom: 7.6875rem;
}

.ml123 {
  margin-left: 7.6875rem;
}

.mt124 {
  margin-top: 7.75rem;
}

.mr124 {
  margin-right: 7.75rem;
}

.mb124 {
  margin-bottom: 7.75rem;
}

.ml124 {
  margin-left: 7.75rem;
}

.mt125 {
  margin-top: 7.8125rem;
}

.mr125 {
  margin-right: 7.8125rem;
}

.mb125 {
  margin-bottom: 7.8125rem;
}

.ml125 {
  margin-left: 7.8125rem;
}

.mt126 {
  margin-top: 7.875rem;
}

.mr126 {
  margin-right: 7.875rem;
}

.mb126 {
  margin-bottom: 7.875rem;
}

.ml126 {
  margin-left: 7.875rem;
}

.mt127 {
  margin-top: 7.9375rem;
}

.mr127 {
  margin-right: 7.9375rem;
}

.mb127 {
  margin-bottom: 7.9375rem;
}

.ml127 {
  margin-left: 7.9375rem;
}

.mt128 {
  margin-top: 8rem;
}

.mr128 {
  margin-right: 8rem;
}

.mb128 {
  margin-bottom: 8rem;
}

.ml128 {
  margin-left: 8rem;
}

.mt129 {
  margin-top: 8.0625rem;
}

.mr129 {
  margin-right: 8.0625rem;
}

.mb129 {
  margin-bottom: 8.0625rem;
}

.ml129 {
  margin-left: 8.0625rem;
}

.mt130 {
  margin-top: 8.125rem;
}

.mr130 {
  margin-right: 8.125rem;
}

.mb130 {
  margin-bottom: 8.125rem;
}

.ml130 {
  margin-left: 8.125rem;
}

.mt131 {
  margin-top: 8.1875rem;
}

.mr131 {
  margin-right: 8.1875rem;
}

.mb131 {
  margin-bottom: 8.1875rem;
}

.ml131 {
  margin-left: 8.1875rem;
}

.mt132 {
  margin-top: 8.25rem;
}

.mr132 {
  margin-right: 8.25rem;
}

.mb132 {
  margin-bottom: 8.25rem;
}

.ml132 {
  margin-left: 8.25rem;
}

.mt133 {
  margin-top: 8.3125rem;
}

.mr133 {
  margin-right: 8.3125rem;
}

.mb133 {
  margin-bottom: 8.3125rem;
}

.ml133 {
  margin-left: 8.3125rem;
}

.mt134 {
  margin-top: 8.375rem;
}

.mr134 {
  margin-right: 8.375rem;
}

.mb134 {
  margin-bottom: 8.375rem;
}

.ml134 {
  margin-left: 8.375rem;
}

.mt135 {
  margin-top: 8.4375rem;
}

.mr135 {
  margin-right: 8.4375rem;
}

.mb135 {
  margin-bottom: 8.4375rem;
}

.ml135 {
  margin-left: 8.4375rem;
}

.mt136 {
  margin-top: 8.5rem;
}

.mr136 {
  margin-right: 8.5rem;
}

.mb136 {
  margin-bottom: 8.5rem;
}

.ml136 {
  margin-left: 8.5rem;
}

.mt137 {
  margin-top: 8.5625rem;
}

.mr137 {
  margin-right: 8.5625rem;
}

.mb137 {
  margin-bottom: 8.5625rem;
}

.ml137 {
  margin-left: 8.5625rem;
}

.mt138 {
  margin-top: 8.625rem;
}

.mr138 {
  margin-right: 8.625rem;
}

.mb138 {
  margin-bottom: 8.625rem;
}

.ml138 {
  margin-left: 8.625rem;
}

.mt139 {
  margin-top: 8.6875rem;
}

.mr139 {
  margin-right: 8.6875rem;
}

.mb139 {
  margin-bottom: 8.6875rem;
}

.ml139 {
  margin-left: 8.6875rem;
}

.mt140 {
  margin-top: 8.75rem;
}

.mr140 {
  margin-right: 8.75rem;
}

.mb140 {
  margin-bottom: 8.75rem;
}

.ml140 {
  margin-left: 8.75rem;
}

.mt141 {
  margin-top: 8.8125rem;
}

.mr141 {
  margin-right: 8.8125rem;
}

.mb141 {
  margin-bottom: 8.8125rem;
}

.ml141 {
  margin-left: 8.8125rem;
}

.mt142 {
  margin-top: 8.875rem;
}

.mr142 {
  margin-right: 8.875rem;
}

.mb142 {
  margin-bottom: 8.875rem;
}

.ml142 {
  margin-left: 8.875rem;
}

.mt143 {
  margin-top: 8.9375rem;
}

.mr143 {
  margin-right: 8.9375rem;
}

.mb143 {
  margin-bottom: 8.9375rem;
}

.ml143 {
  margin-left: 8.9375rem;
}

.mt144 {
  margin-top: 9rem;
}

.mr144 {
  margin-right: 9rem;
}

.mb144 {
  margin-bottom: 9rem;
}

.ml144 {
  margin-left: 9rem;
}

.mt145 {
  margin-top: 9.0625rem;
}

.mr145 {
  margin-right: 9.0625rem;
}

.mb145 {
  margin-bottom: 9.0625rem;
}

.ml145 {
  margin-left: 9.0625rem;
}

.mt146 {
  margin-top: 9.125rem;
}

.mr146 {
  margin-right: 9.125rem;
}

.mb146 {
  margin-bottom: 9.125rem;
}

.ml146 {
  margin-left: 9.125rem;
}

.mt147 {
  margin-top: 9.1875rem;
}

.mr147 {
  margin-right: 9.1875rem;
}

.mb147 {
  margin-bottom: 9.1875rem;
}

.ml147 {
  margin-left: 9.1875rem;
}

.mt148 {
  margin-top: 9.25rem;
}

.mr148 {
  margin-right: 9.25rem;
}

.mb148 {
  margin-bottom: 9.25rem;
}

.ml148 {
  margin-left: 9.25rem;
}

.mt149 {
  margin-top: 9.3125rem;
}

.mr149 {
  margin-right: 9.3125rem;
}

.mb149 {
  margin-bottom: 9.3125rem;
}

.ml149 {
  margin-left: 9.3125rem;
}

.mt150 {
  margin-top: 9.375rem;
}

.mr150 {
  margin-right: 9.375rem;
}

.mb150 {
  margin-bottom: 9.375rem;
}

.ml150 {
  margin-left: 9.375rem;
}

.mt151 {
  margin-top: 9.4375rem;
}

.mr151 {
  margin-right: 9.4375rem;
}

.mb151 {
  margin-bottom: 9.4375rem;
}

.ml151 {
  margin-left: 9.4375rem;
}

.mt152 {
  margin-top: 9.5rem;
}

.mr152 {
  margin-right: 9.5rem;
}

.mb152 {
  margin-bottom: 9.5rem;
}

.ml152 {
  margin-left: 9.5rem;
}

.mt153 {
  margin-top: 9.5625rem;
}

.mr153 {
  margin-right: 9.5625rem;
}

.mb153 {
  margin-bottom: 9.5625rem;
}

.ml153 {
  margin-left: 9.5625rem;
}

.mt154 {
  margin-top: 9.625rem;
}

.mr154 {
  margin-right: 9.625rem;
}

.mb154 {
  margin-bottom: 9.625rem;
}

.ml154 {
  margin-left: 9.625rem;
}

.mt155 {
  margin-top: 9.6875rem;
}

.mr155 {
  margin-right: 9.6875rem;
}

.mb155 {
  margin-bottom: 9.6875rem;
}

.ml155 {
  margin-left: 9.6875rem;
}

.mt156 {
  margin-top: 9.75rem;
}

.mr156 {
  margin-right: 9.75rem;
}

.mb156 {
  margin-bottom: 9.75rem;
}

.ml156 {
  margin-left: 9.75rem;
}

.mt157 {
  margin-top: 9.8125rem;
}

.mr157 {
  margin-right: 9.8125rem;
}

.mb157 {
  margin-bottom: 9.8125rem;
}

.ml157 {
  margin-left: 9.8125rem;
}

.mt158 {
  margin-top: 9.875rem;
}

.mr158 {
  margin-right: 9.875rem;
}

.mb158 {
  margin-bottom: 9.875rem;
}

.ml158 {
  margin-left: 9.875rem;
}

.mt159 {
  margin-top: 9.9375rem;
}

.mr159 {
  margin-right: 9.9375rem;
}

.mb159 {
  margin-bottom: 9.9375rem;
}

.ml159 {
  margin-left: 9.9375rem;
}

.mt160 {
  margin-top: 10rem;
}

.mr160 {
  margin-right: 10rem;
}

.mb160 {
  margin-bottom: 10rem;
}

.ml160 {
  margin-left: 10rem;
}

.mt161 {
  margin-top: 10.0625rem;
}

.mr161 {
  margin-right: 10.0625rem;
}

.mb161 {
  margin-bottom: 10.0625rem;
}

.ml161 {
  margin-left: 10.0625rem;
}

.mt162 {
  margin-top: 10.125rem;
}

.mr162 {
  margin-right: 10.125rem;
}

.mb162 {
  margin-bottom: 10.125rem;
}

.ml162 {
  margin-left: 10.125rem;
}

.mt163 {
  margin-top: 10.1875rem;
}

.mr163 {
  margin-right: 10.1875rem;
}

.mb163 {
  margin-bottom: 10.1875rem;
}

.ml163 {
  margin-left: 10.1875rem;
}

.mt164 {
  margin-top: 10.25rem;
}

.mr164 {
  margin-right: 10.25rem;
}

.mb164 {
  margin-bottom: 10.25rem;
}

.ml164 {
  margin-left: 10.25rem;
}

.mt165 {
  margin-top: 10.3125rem;
}

.mr165 {
  margin-right: 10.3125rem;
}

.mb165 {
  margin-bottom: 10.3125rem;
}

.ml165 {
  margin-left: 10.3125rem;
}

.mt166 {
  margin-top: 10.375rem;
}

.mr166 {
  margin-right: 10.375rem;
}

.mb166 {
  margin-bottom: 10.375rem;
}

.ml166 {
  margin-left: 10.375rem;
}

.mt167 {
  margin-top: 10.4375rem;
}

.mr167 {
  margin-right: 10.4375rem;
}

.mb167 {
  margin-bottom: 10.4375rem;
}

.ml167 {
  margin-left: 10.4375rem;
}

.mt168 {
  margin-top: 10.5rem;
}

.mr168 {
  margin-right: 10.5rem;
}

.mb168 {
  margin-bottom: 10.5rem;
}

.ml168 {
  margin-left: 10.5rem;
}

.mt169 {
  margin-top: 10.5625rem;
}

.mr169 {
  margin-right: 10.5625rem;
}

.mb169 {
  margin-bottom: 10.5625rem;
}

.ml169 {
  margin-left: 10.5625rem;
}

.mt170 {
  margin-top: 10.625rem;
}

.mr170 {
  margin-right: 10.625rem;
}

.mb170 {
  margin-bottom: 10.625rem;
}

.ml170 {
  margin-left: 10.625rem;
}

.mt171 {
  margin-top: 10.6875rem;
}

.mr171 {
  margin-right: 10.6875rem;
}

.mb171 {
  margin-bottom: 10.6875rem;
}

.ml171 {
  margin-left: 10.6875rem;
}

.mt172 {
  margin-top: 10.75rem;
}

.mr172 {
  margin-right: 10.75rem;
}

.mb172 {
  margin-bottom: 10.75rem;
}

.ml172 {
  margin-left: 10.75rem;
}

.mt173 {
  margin-top: 10.8125rem;
}

.mr173 {
  margin-right: 10.8125rem;
}

.mb173 {
  margin-bottom: 10.8125rem;
}

.ml173 {
  margin-left: 10.8125rem;
}

.mt174 {
  margin-top: 10.875rem;
}

.mr174 {
  margin-right: 10.875rem;
}

.mb174 {
  margin-bottom: 10.875rem;
}

.ml174 {
  margin-left: 10.875rem;
}

.mt175 {
  margin-top: 10.9375rem;
}

.mr175 {
  margin-right: 10.9375rem;
}

.mb175 {
  margin-bottom: 10.9375rem;
}

.ml175 {
  margin-left: 10.9375rem;
}

.mt176 {
  margin-top: 11rem;
}

.mr176 {
  margin-right: 11rem;
}

.mb176 {
  margin-bottom: 11rem;
}

.ml176 {
  margin-left: 11rem;
}

.mt177 {
  margin-top: 11.0625rem;
}

.mr177 {
  margin-right: 11.0625rem;
}

.mb177 {
  margin-bottom: 11.0625rem;
}

.ml177 {
  margin-left: 11.0625rem;
}

.mt178 {
  margin-top: 11.125rem;
}

.mr178 {
  margin-right: 11.125rem;
}

.mb178 {
  margin-bottom: 11.125rem;
}

.ml178 {
  margin-left: 11.125rem;
}

.mt179 {
  margin-top: 11.1875rem;
}

.mr179 {
  margin-right: 11.1875rem;
}

.mb179 {
  margin-bottom: 11.1875rem;
}

.ml179 {
  margin-left: 11.1875rem;
}

.mt180 {
  margin-top: 11.25rem;
}

.mr180 {
  margin-right: 11.25rem;
}

.mb180 {
  margin-bottom: 11.25rem;
}

.ml180 {
  margin-left: 11.25rem;
}

.mt181 {
  margin-top: 11.3125rem;
}

.mr181 {
  margin-right: 11.3125rem;
}

.mb181 {
  margin-bottom: 11.3125rem;
}

.ml181 {
  margin-left: 11.3125rem;
}

.mt182 {
  margin-top: 11.375rem;
}

.mr182 {
  margin-right: 11.375rem;
}

.mb182 {
  margin-bottom: 11.375rem;
}

.ml182 {
  margin-left: 11.375rem;
}

.mt183 {
  margin-top: 11.4375rem;
}

.mr183 {
  margin-right: 11.4375rem;
}

.mb183 {
  margin-bottom: 11.4375rem;
}

.ml183 {
  margin-left: 11.4375rem;
}

.mt184 {
  margin-top: 11.5rem;
}

.mr184 {
  margin-right: 11.5rem;
}

.mb184 {
  margin-bottom: 11.5rem;
}

.ml184 {
  margin-left: 11.5rem;
}

.mt185 {
  margin-top: 11.5625rem;
}

.mr185 {
  margin-right: 11.5625rem;
}

.mb185 {
  margin-bottom: 11.5625rem;
}

.ml185 {
  margin-left: 11.5625rem;
}

.mt186 {
  margin-top: 11.625rem;
}

.mr186 {
  margin-right: 11.625rem;
}

.mb186 {
  margin-bottom: 11.625rem;
}

.ml186 {
  margin-left: 11.625rem;
}

.mt187 {
  margin-top: 11.6875rem;
}

.mr187 {
  margin-right: 11.6875rem;
}

.mb187 {
  margin-bottom: 11.6875rem;
}

.ml187 {
  margin-left: 11.6875rem;
}

.mt188 {
  margin-top: 11.75rem;
}

.mr188 {
  margin-right: 11.75rem;
}

.mb188 {
  margin-bottom: 11.75rem;
}

.ml188 {
  margin-left: 11.75rem;
}

.mt189 {
  margin-top: 11.8125rem;
}

.mr189 {
  margin-right: 11.8125rem;
}

.mb189 {
  margin-bottom: 11.8125rem;
}

.ml189 {
  margin-left: 11.8125rem;
}

.mt190 {
  margin-top: 11.875rem;
}

.mr190 {
  margin-right: 11.875rem;
}

.mb190 {
  margin-bottom: 11.875rem;
}

.ml190 {
  margin-left: 11.875rem;
}

.mt191 {
  margin-top: 11.9375rem;
}

.mr191 {
  margin-right: 11.9375rem;
}

.mb191 {
  margin-bottom: 11.9375rem;
}

.ml191 {
  margin-left: 11.9375rem;
}

.mt192 {
  margin-top: 12rem;
}

.mr192 {
  margin-right: 12rem;
}

.mb192 {
  margin-bottom: 12rem;
}

.ml192 {
  margin-left: 12rem;
}

.mt193 {
  margin-top: 12.0625rem;
}

.mr193 {
  margin-right: 12.0625rem;
}

.mb193 {
  margin-bottom: 12.0625rem;
}

.ml193 {
  margin-left: 12.0625rem;
}

.mt194 {
  margin-top: 12.125rem;
}

.mr194 {
  margin-right: 12.125rem;
}

.mb194 {
  margin-bottom: 12.125rem;
}

.ml194 {
  margin-left: 12.125rem;
}

.mt195 {
  margin-top: 12.1875rem;
}

.mr195 {
  margin-right: 12.1875rem;
}

.mb195 {
  margin-bottom: 12.1875rem;
}

.ml195 {
  margin-left: 12.1875rem;
}

.mt196 {
  margin-top: 12.25rem;
}

.mr196 {
  margin-right: 12.25rem;
}

.mb196 {
  margin-bottom: 12.25rem;
}

.ml196 {
  margin-left: 12.25rem;
}

.mt197 {
  margin-top: 12.3125rem;
}

.mr197 {
  margin-right: 12.3125rem;
}

.mb197 {
  margin-bottom: 12.3125rem;
}

.ml197 {
  margin-left: 12.3125rem;
}

.mt198 {
  margin-top: 12.375rem;
}

.mr198 {
  margin-right: 12.375rem;
}

.mb198 {
  margin-bottom: 12.375rem;
}

.ml198 {
  margin-left: 12.375rem;
}

.mt199 {
  margin-top: 12.4375rem;
}

.mr199 {
  margin-right: 12.4375rem;
}

.mb199 {
  margin-bottom: 12.4375rem;
}

.ml199 {
  margin-left: 12.4375rem;
}

.mt200 {
  margin-top: 12.5rem;
}

.mr200 {
  margin-right: 12.5rem;
}

.mb200 {
  margin-bottom: 12.5rem;
}

.ml200 {
  margin-left: 12.5rem;
}

.mt201 {
  margin-top: 12.5625rem;
}

.mr201 {
  margin-right: 12.5625rem;
}

.mb201 {
  margin-bottom: 12.5625rem;
}

.ml201 {
  margin-left: 12.5625rem;
}

/* PADDING en rem */
.pt0 {
  padding-top: 0rem;
}

.pr0 {
  padding-right: 0rem;
}

.pb0 {
  padding-bottom: 0rem;
}

.pl0 {
  padding-left: 0rem;
}

.pt1 {
  padding-top: 0.0625rem;
}

.pr1 {
  padding-right: 0.0625rem;
}

.pb1 {
  padding-bottom: 0.0625rem;
}

.pl1 {
  padding-left: 0.0625rem;
}

.pt2 {
  padding-top: 0.125rem;
}

.pr2 {
  padding-right: 0.125rem;
}

.pb2 {
  padding-bottom: 0.125rem;
}

.pl2 {
  padding-left: 0.125rem;
}

.pt3 {
  padding-top: 0.1875rem;
}

.pr3 {
  padding-right: 0.1875rem;
}

.pb3 {
  padding-bottom: 0.1875rem;
}

.pl3 {
  padding-left: 0.1875rem;
}

.pt4 {
  padding-top: 0.25rem;
}

.pr4 {
  padding-right: 0.25rem;
}

.pb4 {
  padding-bottom: 0.25rem;
}

.pl4 {
  padding-left: 0.25rem;
}

.pt5 {
  padding-top: 0.3125rem;
}

.pr5 {
  padding-right: 0.3125rem;
}

.pb5 {
  padding-bottom: 0.3125rem;
}

.pl5 {
  padding-left: 0.3125rem;
}

.pt6 {
  padding-top: 0.375rem;
}

.pr6 {
  padding-right: 0.375rem;
}

.pb6 {
  padding-bottom: 0.375rem;
}

.pl6 {
  padding-left: 0.375rem;
}

.pt7 {
  padding-top: 0.4375rem;
}

.pr7 {
  padding-right: 0.4375rem;
}

.pb7 {
  padding-bottom: 0.4375rem;
}

.pl7 {
  padding-left: 0.4375rem;
}

.pt8 {
  padding-top: 0.5rem;
}

.pr8 {
  padding-right: 0.5rem;
}

.pb8 {
  padding-bottom: 0.5rem;
}

.pl8 {
  padding-left: 0.5rem;
}

.pt9 {
  padding-top: 0.5625rem;
}

.pr9 {
  padding-right: 0.5625rem;
}

.pb9 {
  padding-bottom: 0.5625rem;
}

.pl9 {
  padding-left: 0.5625rem;
}

.pt10 {
  padding-top: 0.625rem;
}

.pr10 {
  padding-right: 0.625rem;
}

.pb10 {
  padding-bottom: 0.625rem;
}

.pl10 {
  padding-left: 0.625rem;
}

.pt11 {
  padding-top: 0.6875rem;
}

.pr11 {
  padding-right: 0.6875rem;
}

.pb11 {
  padding-bottom: 0.6875rem;
}

.pl11 {
  padding-left: 0.6875rem;
}

.pt12 {
  padding-top: 0.75rem;
}

.pr12 {
  padding-right: 0.75rem;
}

.pb12 {
  padding-bottom: 0.75rem;
}

.pl12 {
  padding-left: 0.75rem;
}

.pt13 {
  padding-top: 0.8125rem;
}

.pr13 {
  padding-right: 0.8125rem;
}

.pb13 {
  padding-bottom: 0.8125rem;
}

.pl13 {
  padding-left: 0.8125rem;
}

.pt14 {
  padding-top: 0.875rem;
}

.pr14 {
  padding-right: 0.875rem;
}

.pb14 {
  padding-bottom: 0.875rem;
}

.pl14 {
  padding-left: 0.875rem;
}

.pt15 {
  padding-top: 0.9375rem;
}

.pr15 {
  padding-right: 0.9375rem;
}

.pb15 {
  padding-bottom: 0.9375rem;
}

.pl15 {
  padding-left: 0.9375rem;
}

.pt16 {
  padding-top: 1rem;
}

.pr16 {
  padding-right: 1rem;
}

.pb16 {
  padding-bottom: 1rem;
}

.pl16 {
  padding-left: 1rem;
}

.pt17 {
  padding-top: 1.0625rem;
}

.pr17 {
  padding-right: 1.0625rem;
}

.pb17 {
  padding-bottom: 1.0625rem;
}

.pl17 {
  padding-left: 1.0625rem;
}

.pt18 {
  padding-top: 1.125rem;
}

.pr18 {
  padding-right: 1.125rem;
}

.pb18 {
  padding-bottom: 1.125rem;
}

.pl18 {
  padding-left: 1.125rem;
}

.pt19 {
  padding-top: 1.1875rem;
}

.pr19 {
  padding-right: 1.1875rem;
}

.pb19 {
  padding-bottom: 1.1875rem;
}

.pl19 {
  padding-left: 1.1875rem;
}

.pt20 {
  padding-top: 1.25rem;
}

.pr20 {
  padding-right: 1.25rem;
}

.pb20 {
  padding-bottom: 1.25rem;
}

.pl20 {
  padding-left: 1.25rem;
}

.pt21 {
  padding-top: 1.3125rem;
}

.pr21 {
  padding-right: 1.3125rem;
}

.pb21 {
  padding-bottom: 1.3125rem;
}

.pl21 {
  padding-left: 1.3125rem;
}

.pt22 {
  padding-top: 1.375rem;
}

.pr22 {
  padding-right: 1.375rem;
}

.pb22 {
  padding-bottom: 1.375rem;
}

.pl22 {
  padding-left: 1.375rem;
}

.pt23 {
  padding-top: 1.4375rem;
}

.pr23 {
  padding-right: 1.4375rem;
}

.pb23 {
  padding-bottom: 1.4375rem;
}

.pl23 {
  padding-left: 1.4375rem;
}

.pt24 {
  padding-top: 1.5rem;
}

.pr24 {
  padding-right: 1.5rem;
}

.pb24 {
  padding-bottom: 1.5rem;
}

.pl24 {
  padding-left: 1.5rem;
}

.pt25 {
  padding-top: 1.5625rem;
}

.pr25 {
  padding-right: 1.5625rem;
}

.pb25 {
  padding-bottom: 1.5625rem;
}

.pl25 {
  padding-left: 1.5625rem;
}

.pt26 {
  padding-top: 1.625rem;
}

.pr26 {
  padding-right: 1.625rem;
}

.pb26 {
  padding-bottom: 1.625rem;
}

.pl26 {
  padding-left: 1.625rem;
}

.pt27 {
  padding-top: 1.6875rem;
}

.pr27 {
  padding-right: 1.6875rem;
}

.pb27 {
  padding-bottom: 1.6875rem;
}

.pl27 {
  padding-left: 1.6875rem;
}

.pt28 {
  padding-top: 1.75rem;
}

.pr28 {
  padding-right: 1.75rem;
}

.pb28 {
  padding-bottom: 1.75rem;
}

.pl28 {
  padding-left: 1.75rem;
}

.pt29 {
  padding-top: 1.8125rem;
}

.pr29 {
  padding-right: 1.8125rem;
}

.pb29 {
  padding-bottom: 1.8125rem;
}

.pl29 {
  padding-left: 1.8125rem;
}

.pt30 {
  padding-top: 1.875rem;
}

.pr30 {
  padding-right: 1.875rem;
}

.pb30 {
  padding-bottom: 1.875rem;
}

.pl30 {
  padding-left: 1.875rem;
}

.pt31 {
  padding-top: 1.9375rem;
}

.pr31 {
  padding-right: 1.9375rem;
}

.pb31 {
  padding-bottom: 1.9375rem;
}

.pl31 {
  padding-left: 1.9375rem;
}

.pt32 {
  padding-top: 2rem;
}

.pr32 {
  padding-right: 2rem;
}

.pb32 {
  padding-bottom: 2rem;
}

.pl32 {
  padding-left: 2rem;
}

.pt33 {
  padding-top: 2.0625rem;
}

.pr33 {
  padding-right: 2.0625rem;
}

.pb33 {
  padding-bottom: 2.0625rem;
}

.pl33 {
  padding-left: 2.0625rem;
}

.pt34 {
  padding-top: 2.125rem;
}

.pr34 {
  padding-right: 2.125rem;
}

.pb34 {
  padding-bottom: 2.125rem;
}

.pl34 {
  padding-left: 2.125rem;
}

.pt35 {
  padding-top: 2.1875rem;
}

.pr35 {
  padding-right: 2.1875rem;
}

.pb35 {
  padding-bottom: 2.1875rem;
}

.pl35 {
  padding-left: 2.1875rem;
}

.pt36 {
  padding-top: 2.25rem;
}

.pr36 {
  padding-right: 2.25rem;
}

.pb36 {
  padding-bottom: 2.25rem;
}

.pl36 {
  padding-left: 2.25rem;
}

.pt37 {
  padding-top: 2.3125rem;
}

.pr37 {
  padding-right: 2.3125rem;
}

.pb37 {
  padding-bottom: 2.3125rem;
}

.pl37 {
  padding-left: 2.3125rem;
}

.pt38 {
  padding-top: 2.375rem;
}

.pr38 {
  padding-right: 2.375rem;
}

.pb38 {
  padding-bottom: 2.375rem;
}

.pl38 {
  padding-left: 2.375rem;
}

.pt39 {
  padding-top: 2.4375rem;
}

.pr39 {
  padding-right: 2.4375rem;
}

.pb39 {
  padding-bottom: 2.4375rem;
}

.pl39 {
  padding-left: 2.4375rem;
}

.pt40 {
  padding-top: 2.5rem;
}

.pr40 {
  padding-right: 2.5rem;
}

.pb40 {
  padding-bottom: 2.5rem;
}

.pl40 {
  padding-left: 2.5rem;
}

.pt41 {
  padding-top: 2.5625rem;
}

.pr41 {
  padding-right: 2.5625rem;
}

.pb41 {
  padding-bottom: 2.5625rem;
}

.pl41 {
  padding-left: 2.5625rem;
}

.pt42 {
  padding-top: 2.625rem;
}

.pr42 {
  padding-right: 2.625rem;
}

.pb42 {
  padding-bottom: 2.625rem;
}

.pl42 {
  padding-left: 2.625rem;
}

.pt43 {
  padding-top: 2.6875rem;
}

.pr43 {
  padding-right: 2.6875rem;
}

.pb43 {
  padding-bottom: 2.6875rem;
}

.pl43 {
  padding-left: 2.6875rem;
}

.pt44 {
  padding-top: 2.75rem;
}

.pr44 {
  padding-right: 2.75rem;
}

.pb44 {
  padding-bottom: 2.75rem;
}

.pl44 {
  padding-left: 2.75rem;
}

.pt45 {
  padding-top: 2.8125rem;
}

.pr45 {
  padding-right: 2.8125rem;
}

.pb45 {
  padding-bottom: 2.8125rem;
}

.pl45 {
  padding-left: 2.8125rem;
}

.pt46 {
  padding-top: 2.875rem;
}

.pr46 {
  padding-right: 2.875rem;
}

.pb46 {
  padding-bottom: 2.875rem;
}

.pl46 {
  padding-left: 2.875rem;
}

.pt47 {
  padding-top: 2.9375rem;
}

.pr47 {
  padding-right: 2.9375rem;
}

.pb47 {
  padding-bottom: 2.9375rem;
}

.pl47 {
  padding-left: 2.9375rem;
}

.pt48 {
  padding-top: 3rem;
}

.pr48 {
  padding-right: 3rem;
}

.pb48 {
  padding-bottom: 3rem;
}

.pl48 {
  padding-left: 3rem;
}

.pt49 {
  padding-top: 3.0625rem;
}

.pr49 {
  padding-right: 3.0625rem;
}

.pb49 {
  padding-bottom: 3.0625rem;
}

.pl49 {
  padding-left: 3.0625rem;
}

.pt50 {
  padding-top: 3.125rem;
}

.pr50 {
  padding-right: 3.125rem;
}

.pb50 {
  padding-bottom: 3.125rem;
}

.pl50 {
  padding-left: 3.125rem;
}

.pt51 {
  padding-top: 3.1875rem;
}

.pr51 {
  padding-right: 3.1875rem;
}

.pb51 {
  padding-bottom: 3.1875rem;
}

.pl51 {
  padding-left: 3.1875rem;
}

.pt52 {
  padding-top: 3.25rem;
}

.pr52 {
  padding-right: 3.25rem;
}

.pb52 {
  padding-bottom: 3.25rem;
}

.pl52 {
  padding-left: 3.25rem;
}

.pt53 {
  padding-top: 3.3125rem;
}

.pr53 {
  padding-right: 3.3125rem;
}

.pb53 {
  padding-bottom: 3.3125rem;
}

.pl53 {
  padding-left: 3.3125rem;
}

.pt54 {
  padding-top: 3.375rem;
}

.pr54 {
  padding-right: 3.375rem;
}

.pb54 {
  padding-bottom: 3.375rem;
}

.pl54 {
  padding-left: 3.375rem;
}

.pt55 {
  padding-top: 3.4375rem;
}

.pr55 {
  padding-right: 3.4375rem;
}

.pb55 {
  padding-bottom: 3.4375rem;
}

.pl55 {
  padding-left: 3.4375rem;
}

.pt56 {
  padding-top: 3.5rem;
}

.pr56 {
  padding-right: 3.5rem;
}

.pb56 {
  padding-bottom: 3.5rem;
}

.pl56 {
  padding-left: 3.5rem;
}

.pt57 {
  padding-top: 3.5625rem;
}

.pr57 {
  padding-right: 3.5625rem;
}

.pb57 {
  padding-bottom: 3.5625rem;
}

.pl57 {
  padding-left: 3.5625rem;
}

.pt58 {
  padding-top: 3.625rem;
}

.pr58 {
  padding-right: 3.625rem;
}

.pb58 {
  padding-bottom: 3.625rem;
}

.pl58 {
  padding-left: 3.625rem;
}

.pt59 {
  padding-top: 3.6875rem;
}

.pr59 {
  padding-right: 3.6875rem;
}

.pb59 {
  padding-bottom: 3.6875rem;
}

.pl59 {
  padding-left: 3.6875rem;
}

.pt60 {
  padding-top: 3.75rem;
}

.pr60 {
  padding-right: 3.75rem;
}

.pb60 {
  padding-bottom: 3.75rem;
}

.pl60 {
  padding-left: 3.75rem;
}

.pt61 {
  padding-top: 3.8125rem;
}

.pr61 {
  padding-right: 3.8125rem;
}

.pb61 {
  padding-bottom: 3.8125rem;
}

.pl61 {
  padding-left: 3.8125rem;
}

.pt62 {
  padding-top: 3.875rem;
}

.pr62 {
  padding-right: 3.875rem;
}

.pb62 {
  padding-bottom: 3.875rem;
}

.pl62 {
  padding-left: 3.875rem;
}

.pt63 {
  padding-top: 3.9375rem;
}

.pr63 {
  padding-right: 3.9375rem;
}

.pb63 {
  padding-bottom: 3.9375rem;
}

.pl63 {
  padding-left: 3.9375rem;
}

.pt64 {
  padding-top: 4rem;
}

.pr64 {
  padding-right: 4rem;
}

.pb64 {
  padding-bottom: 4rem;
}

.pl64 {
  padding-left: 4rem;
}

.pt65 {
  padding-top: 4.0625rem;
}

.pr65 {
  padding-right: 4.0625rem;
}

.pb65 {
  padding-bottom: 4.0625rem;
}

.pl65 {
  padding-left: 4.0625rem;
}

.pt66 {
  padding-top: 4.125rem;
}

.pr66 {
  padding-right: 4.125rem;
}

.pb66 {
  padding-bottom: 4.125rem;
}

.pl66 {
  padding-left: 4.125rem;
}

.pt67 {
  padding-top: 4.1875rem;
}

.pr67 {
  padding-right: 4.1875rem;
}

.pb67 {
  padding-bottom: 4.1875rem;
}

.pl67 {
  padding-left: 4.1875rem;
}

.pt68 {
  padding-top: 4.25rem;
}

.pr68 {
  padding-right: 4.25rem;
}

.pb68 {
  padding-bottom: 4.25rem;
}

.pl68 {
  padding-left: 4.25rem;
}

.pt69 {
  padding-top: 4.3125rem;
}

.pr69 {
  padding-right: 4.3125rem;
}

.pb69 {
  padding-bottom: 4.3125rem;
}

.pl69 {
  padding-left: 4.3125rem;
}

.pt70 {
  padding-top: 4.375rem;
}

.pr70 {
  padding-right: 4.375rem;
}

.pb70 {
  padding-bottom: 4.375rem;
}

.pl70 {
  padding-left: 4.375rem;
}

.pt71 {
  padding-top: 4.4375rem;
}

.pr71 {
  padding-right: 4.4375rem;
}

.pb71 {
  padding-bottom: 4.4375rem;
}

.pl71 {
  padding-left: 4.4375rem;
}

.pt72 {
  padding-top: 4.5rem;
}

.pr72 {
  padding-right: 4.5rem;
}

.pb72 {
  padding-bottom: 4.5rem;
}

.pl72 {
  padding-left: 4.5rem;
}

.pt73 {
  padding-top: 4.5625rem;
}

.pr73 {
  padding-right: 4.5625rem;
}

.pb73 {
  padding-bottom: 4.5625rem;
}

.pl73 {
  padding-left: 4.5625rem;
}

.pt74 {
  padding-top: 4.625rem;
}

.pr74 {
  padding-right: 4.625rem;
}

.pb74 {
  padding-bottom: 4.625rem;
}

.pl74 {
  padding-left: 4.625rem;
}

.pt75 {
  padding-top: 4.6875rem;
}

.pr75 {
  padding-right: 4.6875rem;
}

.pb75 {
  padding-bottom: 4.6875rem;
}

.pl75 {
  padding-left: 4.6875rem;
}

.pt76 {
  padding-top: 4.75rem;
}

.pr76 {
  padding-right: 4.75rem;
}

.pb76 {
  padding-bottom: 4.75rem;
}

.pl76 {
  padding-left: 4.75rem;
}

.pt77 {
  padding-top: 4.8125rem;
}

.pr77 {
  padding-right: 4.8125rem;
}

.pb77 {
  padding-bottom: 4.8125rem;
}

.pl77 {
  padding-left: 4.8125rem;
}

.pt78 {
  padding-top: 4.875rem;
}

.pr78 {
  padding-right: 4.875rem;
}

.pb78 {
  padding-bottom: 4.875rem;
}

.pl78 {
  padding-left: 4.875rem;
}

.pt79 {
  padding-top: 4.9375rem;
}

.pr79 {
  padding-right: 4.9375rem;
}

.pb79 {
  padding-bottom: 4.9375rem;
}

.pl79 {
  padding-left: 4.9375rem;
}

.pt80 {
  padding-top: 5rem;
}

.pr80 {
  padding-right: 5rem;
}

.pb80 {
  padding-bottom: 5rem;
}

.pl80 {
  padding-left: 5rem;
}

.pt81 {
  padding-top: 5.0625rem;
}

.pr81 {
  padding-right: 5.0625rem;
}

.pb81 {
  padding-bottom: 5.0625rem;
}

.pl81 {
  padding-left: 5.0625rem;
}

.pt82 {
  padding-top: 5.125rem;
}

.pr82 {
  padding-right: 5.125rem;
}

.pb82 {
  padding-bottom: 5.125rem;
}

.pl82 {
  padding-left: 5.125rem;
}

.pt83 {
  padding-top: 5.1875rem;
}

.pr83 {
  padding-right: 5.1875rem;
}

.pb83 {
  padding-bottom: 5.1875rem;
}

.pl83 {
  padding-left: 5.1875rem;
}

.pt84 {
  padding-top: 5.25rem;
}

.pr84 {
  padding-right: 5.25rem;
}

.pb84 {
  padding-bottom: 5.25rem;
}

.pl84 {
  padding-left: 5.25rem;
}

.pt85 {
  padding-top: 5.3125rem;
}

.pr85 {
  padding-right: 5.3125rem;
}

.pb85 {
  padding-bottom: 5.3125rem;
}

.pl85 {
  padding-left: 5.3125rem;
}

.pt86 {
  padding-top: 5.375rem;
}

.pr86 {
  padding-right: 5.375rem;
}

.pb86 {
  padding-bottom: 5.375rem;
}

.pl86 {
  padding-left: 5.375rem;
}

.pt87 {
  padding-top: 5.4375rem;
}

.pr87 {
  padding-right: 5.4375rem;
}

.pb87 {
  padding-bottom: 5.4375rem;
}

.pl87 {
  padding-left: 5.4375rem;
}

.pt88 {
  padding-top: 5.5rem;
}

.pr88 {
  padding-right: 5.5rem;
}

.pb88 {
  padding-bottom: 5.5rem;
}

.pl88 {
  padding-left: 5.5rem;
}

.pt89 {
  padding-top: 5.5625rem;
}

.pr89 {
  padding-right: 5.5625rem;
}

.pb89 {
  padding-bottom: 5.5625rem;
}

.pl89 {
  padding-left: 5.5625rem;
}

.pt90 {
  padding-top: 5.625rem;
}

.pr90 {
  padding-right: 5.625rem;
}

.pb90 {
  padding-bottom: 5.625rem;
}

.pl90 {
  padding-left: 5.625rem;
}

.pt91 {
  padding-top: 5.6875rem;
}

.pr91 {
  padding-right: 5.6875rem;
}

.pb91 {
  padding-bottom: 5.6875rem;
}

.pl91 {
  padding-left: 5.6875rem;
}

.pt92 {
  padding-top: 5.75rem;
}

.pr92 {
  padding-right: 5.75rem;
}

.pb92 {
  padding-bottom: 5.75rem;
}

.pl92 {
  padding-left: 5.75rem;
}

.pt93 {
  padding-top: 5.8125rem;
}

.pr93 {
  padding-right: 5.8125rem;
}

.pb93 {
  padding-bottom: 5.8125rem;
}

.pl93 {
  padding-left: 5.8125rem;
}

.pt94 {
  padding-top: 5.875rem;
}

.pr94 {
  padding-right: 5.875rem;
}

.pb94 {
  padding-bottom: 5.875rem;
}

.pl94 {
  padding-left: 5.875rem;
}

.pt95 {
  padding-top: 5.9375rem;
}

.pr95 {
  padding-right: 5.9375rem;
}

.pb95 {
  padding-bottom: 5.9375rem;
}

.pl95 {
  padding-left: 5.9375rem;
}

.pt96 {
  padding-top: 6rem;
}

.pr96 {
  padding-right: 6rem;
}

.pb96 {
  padding-bottom: 6rem;
}

.pl96 {
  padding-left: 6rem;
}

.pt97 {
  padding-top: 6.0625rem;
}

.pr97 {
  padding-right: 6.0625rem;
}

.pb97 {
  padding-bottom: 6.0625rem;
}

.pl97 {
  padding-left: 6.0625rem;
}

.pt98 {
  padding-top: 6.125rem;
}

.pr98 {
  padding-right: 6.125rem;
}

.pb98 {
  padding-bottom: 6.125rem;
}

.pl98 {
  padding-left: 6.125rem;
}

.pt99 {
  padding-top: 6.1875rem;
}

.pr99 {
  padding-right: 6.1875rem;
}

.pb99 {
  padding-bottom: 6.1875rem;
}

.pl99 {
  padding-left: 6.1875rem;
}

.pt100 {
  padding-top: 6.25rem;
}

.pr100 {
  padding-right: 6.25rem;
}

.pb100 {
  padding-bottom: 6.25rem;
}

.pl100 {
  padding-left: 6.25rem;
}

.pt101 {
  padding-top: 6.3125rem;
}

.pr101 {
  padding-right: 6.3125rem;
}

.pb101 {
  padding-bottom: 6.3125rem;
}

.pl101 {
  padding-left: 6.3125rem;
}

.pt102 {
  padding-top: 6.375rem;
}

.pr102 {
  padding-right: 6.375rem;
}

.pb102 {
  padding-bottom: 6.375rem;
}

.pl102 {
  padding-left: 6.375rem;
}

.pt103 {
  padding-top: 6.4375rem;
}

.pr103 {
  padding-right: 6.4375rem;
}

.pb103 {
  padding-bottom: 6.4375rem;
}

.pl103 {
  padding-left: 6.4375rem;
}

.pt104 {
  padding-top: 6.5rem;
}

.pr104 {
  padding-right: 6.5rem;
}

.pb104 {
  padding-bottom: 6.5rem;
}

.pl104 {
  padding-left: 6.5rem;
}

.pt105 {
  padding-top: 6.5625rem;
}

.pr105 {
  padding-right: 6.5625rem;
}

.pb105 {
  padding-bottom: 6.5625rem;
}

.pl105 {
  padding-left: 6.5625rem;
}

.pt106 {
  padding-top: 6.625rem;
}

.pr106 {
  padding-right: 6.625rem;
}

.pb106 {
  padding-bottom: 6.625rem;
}

.pl106 {
  padding-left: 6.625rem;
}

.pt107 {
  padding-top: 6.6875rem;
}

.pr107 {
  padding-right: 6.6875rem;
}

.pb107 {
  padding-bottom: 6.6875rem;
}

.pl107 {
  padding-left: 6.6875rem;
}

.pt108 {
  padding-top: 6.75rem;
}

.pr108 {
  padding-right: 6.75rem;
}

.pb108 {
  padding-bottom: 6.75rem;
}

.pl108 {
  padding-left: 6.75rem;
}

.pt109 {
  padding-top: 6.8125rem;
}

.pr109 {
  padding-right: 6.8125rem;
}

.pb109 {
  padding-bottom: 6.8125rem;
}

.pl109 {
  padding-left: 6.8125rem;
}

.pt110 {
  padding-top: 6.875rem;
}

.pr110 {
  padding-right: 6.875rem;
}

.pb110 {
  padding-bottom: 6.875rem;
}

.pl110 {
  padding-left: 6.875rem;
}

.pt111 {
  padding-top: 6.9375rem;
}

.pr111 {
  padding-right: 6.9375rem;
}

.pb111 {
  padding-bottom: 6.9375rem;
}

.pl111 {
  padding-left: 6.9375rem;
}

.pt112 {
  padding-top: 7rem;
}

.pr112 {
  padding-right: 7rem;
}

.pb112 {
  padding-bottom: 7rem;
}

.pl112 {
  padding-left: 7rem;
}

.pt113 {
  padding-top: 7.0625rem;
}

.pr113 {
  padding-right: 7.0625rem;
}

.pb113 {
  padding-bottom: 7.0625rem;
}

.pl113 {
  padding-left: 7.0625rem;
}

.pt114 {
  padding-top: 7.125rem;
}

.pr114 {
  padding-right: 7.125rem;
}

.pb114 {
  padding-bottom: 7.125rem;
}

.pl114 {
  padding-left: 7.125rem;
}

.pt115 {
  padding-top: 7.1875rem;
}

.pr115 {
  padding-right: 7.1875rem;
}

.pb115 {
  padding-bottom: 7.1875rem;
}

.pl115 {
  padding-left: 7.1875rem;
}

.pt116 {
  padding-top: 7.25rem;
}

.pr116 {
  padding-right: 7.25rem;
}

.pb116 {
  padding-bottom: 7.25rem;
}

.pl116 {
  padding-left: 7.25rem;
}

.pt117 {
  padding-top: 7.3125rem;
}

.pr117 {
  padding-right: 7.3125rem;
}

.pb117 {
  padding-bottom: 7.3125rem;
}

.pl117 {
  padding-left: 7.3125rem;
}

.pt118 {
  padding-top: 7.375rem;
}

.pr118 {
  padding-right: 7.375rem;
}

.pb118 {
  padding-bottom: 7.375rem;
}

.pl118 {
  padding-left: 7.375rem;
}

.pt119 {
  padding-top: 7.4375rem;
}

.pr119 {
  padding-right: 7.4375rem;
}

.pb119 {
  padding-bottom: 7.4375rem;
}

.pl119 {
  padding-left: 7.4375rem;
}

.pt120 {
  padding-top: 7.5rem;
}

.pr120 {
  padding-right: 7.5rem;
}

.pb120 {
  padding-bottom: 7.5rem;
}

.pl120 {
  padding-left: 7.5rem;
}

.pt121 {
  padding-top: 7.5625rem;
}

.pr121 {
  padding-right: 7.5625rem;
}

.pb121 {
  padding-bottom: 7.5625rem;
}

.pl121 {
  padding-left: 7.5625rem;
}

.pt122 {
  padding-top: 7.625rem;
}

.pr122 {
  padding-right: 7.625rem;
}

.pb122 {
  padding-bottom: 7.625rem;
}

.pl122 {
  padding-left: 7.625rem;
}

.pt123 {
  padding-top: 7.6875rem;
}

.pr123 {
  padding-right: 7.6875rem;
}

.pb123 {
  padding-bottom: 7.6875rem;
}

.pl123 {
  padding-left: 7.6875rem;
}

.pt124 {
  padding-top: 7.75rem;
}

.pr124 {
  padding-right: 7.75rem;
}

.pb124 {
  padding-bottom: 7.75rem;
}

.pl124 {
  padding-left: 7.75rem;
}

.pt125 {
  padding-top: 7.8125rem;
}

.pr125 {
  padding-right: 7.8125rem;
}

.pb125 {
  padding-bottom: 7.8125rem;
}

.pl125 {
  padding-left: 7.8125rem;
}

.pt126 {
  padding-top: 7.875rem;
}

.pr126 {
  padding-right: 7.875rem;
}

.pb126 {
  padding-bottom: 7.875rem;
}

.pl126 {
  padding-left: 7.875rem;
}

.pt127 {
  padding-top: 7.9375rem;
}

.pr127 {
  padding-right: 7.9375rem;
}

.pb127 {
  padding-bottom: 7.9375rem;
}

.pl127 {
  padding-left: 7.9375rem;
}

.pt128 {
  padding-top: 8rem;
}

.pr128 {
  padding-right: 8rem;
}

.pb128 {
  padding-bottom: 8rem;
}

.pl128 {
  padding-left: 8rem;
}

.pt129 {
  padding-top: 8.0625rem;
}

.pr129 {
  padding-right: 8.0625rem;
}

.pb129 {
  padding-bottom: 8.0625rem;
}

.pl129 {
  padding-left: 8.0625rem;
}

.pt130 {
  padding-top: 8.125rem;
}

.pr130 {
  padding-right: 8.125rem;
}

.pb130 {
  padding-bottom: 8.125rem;
}

.pl130 {
  padding-left: 8.125rem;
}

.pt131 {
  padding-top: 8.1875rem;
}

.pr131 {
  padding-right: 8.1875rem;
}

.pb131 {
  padding-bottom: 8.1875rem;
}

.pl131 {
  padding-left: 8.1875rem;
}

.pt132 {
  padding-top: 8.25rem;
}

.pr132 {
  padding-right: 8.25rem;
}

.pb132 {
  padding-bottom: 8.25rem;
}

.pl132 {
  padding-left: 8.25rem;
}

.pt133 {
  padding-top: 8.3125rem;
}

.pr133 {
  padding-right: 8.3125rem;
}

.pb133 {
  padding-bottom: 8.3125rem;
}

.pl133 {
  padding-left: 8.3125rem;
}

.pt134 {
  padding-top: 8.375rem;
}

.pr134 {
  padding-right: 8.375rem;
}

.pb134 {
  padding-bottom: 8.375rem;
}

.pl134 {
  padding-left: 8.375rem;
}

.pt135 {
  padding-top: 8.4375rem;
}

.pr135 {
  padding-right: 8.4375rem;
}

.pb135 {
  padding-bottom: 8.4375rem;
}

.pl135 {
  padding-left: 8.4375rem;
}

.pt136 {
  padding-top: 8.5rem;
}

.pr136 {
  padding-right: 8.5rem;
}

.pb136 {
  padding-bottom: 8.5rem;
}

.pl136 {
  padding-left: 8.5rem;
}

.pt137 {
  padding-top: 8.5625rem;
}

.pr137 {
  padding-right: 8.5625rem;
}

.pb137 {
  padding-bottom: 8.5625rem;
}

.pl137 {
  padding-left: 8.5625rem;
}

.pt138 {
  padding-top: 8.625rem;
}

.pr138 {
  padding-right: 8.625rem;
}

.pb138 {
  padding-bottom: 8.625rem;
}

.pl138 {
  padding-left: 8.625rem;
}

.pt139 {
  padding-top: 8.6875rem;
}

.pr139 {
  padding-right: 8.6875rem;
}

.pb139 {
  padding-bottom: 8.6875rem;
}

.pl139 {
  padding-left: 8.6875rem;
}

.pt140 {
  padding-top: 8.75rem;
}

.pr140 {
  padding-right: 8.75rem;
}

.pb140 {
  padding-bottom: 8.75rem;
}

.pl140 {
  padding-left: 8.75rem;
}

.pt141 {
  padding-top: 8.8125rem;
}

.pr141 {
  padding-right: 8.8125rem;
}

.pb141 {
  padding-bottom: 8.8125rem;
}

.pl141 {
  padding-left: 8.8125rem;
}

.pt142 {
  padding-top: 8.875rem;
}

.pr142 {
  padding-right: 8.875rem;
}

.pb142 {
  padding-bottom: 8.875rem;
}

.pl142 {
  padding-left: 8.875rem;
}

.pt143 {
  padding-top: 8.9375rem;
}

.pr143 {
  padding-right: 8.9375rem;
}

.pb143 {
  padding-bottom: 8.9375rem;
}

.pl143 {
  padding-left: 8.9375rem;
}

.pt144 {
  padding-top: 9rem;
}

.pr144 {
  padding-right: 9rem;
}

.pb144 {
  padding-bottom: 9rem;
}

.pl144 {
  padding-left: 9rem;
}

.pt145 {
  padding-top: 9.0625rem;
}

.pr145 {
  padding-right: 9.0625rem;
}

.pb145 {
  padding-bottom: 9.0625rem;
}

.pl145 {
  padding-left: 9.0625rem;
}

.pt146 {
  padding-top: 9.125rem;
}

.pr146 {
  padding-right: 9.125rem;
}

.pb146 {
  padding-bottom: 9.125rem;
}

.pl146 {
  padding-left: 9.125rem;
}

.pt147 {
  padding-top: 9.1875rem;
}

.pr147 {
  padding-right: 9.1875rem;
}

.pb147 {
  padding-bottom: 9.1875rem;
}

.pl147 {
  padding-left: 9.1875rem;
}

.pt148 {
  padding-top: 9.25rem;
}

.pr148 {
  padding-right: 9.25rem;
}

.pb148 {
  padding-bottom: 9.25rem;
}

.pl148 {
  padding-left: 9.25rem;
}

.pt149 {
  padding-top: 9.3125rem;
}

.pr149 {
  padding-right: 9.3125rem;
}

.pb149 {
  padding-bottom: 9.3125rem;
}

.pl149 {
  padding-left: 9.3125rem;
}

.pt150 {
  padding-top: 9.375rem;
}

.pr150 {
  padding-right: 9.375rem;
}

.pb150 {
  padding-bottom: 9.375rem;
}

.pl150 {
  padding-left: 9.375rem;
}

.pt151 {
  padding-top: 9.4375rem;
}

.pr151 {
  padding-right: 9.4375rem;
}

.pb151 {
  padding-bottom: 9.4375rem;
}

.pl151 {
  padding-left: 9.4375rem;
}

.pt152 {
  padding-top: 9.5rem;
}

.pr152 {
  padding-right: 9.5rem;
}

.pb152 {
  padding-bottom: 9.5rem;
}

.pl152 {
  padding-left: 9.5rem;
}

.pt153 {
  padding-top: 9.5625rem;
}

.pr153 {
  padding-right: 9.5625rem;
}

.pb153 {
  padding-bottom: 9.5625rem;
}

.pl153 {
  padding-left: 9.5625rem;
}

.pt154 {
  padding-top: 9.625rem;
}

.pr154 {
  padding-right: 9.625rem;
}

.pb154 {
  padding-bottom: 9.625rem;
}

.pl154 {
  padding-left: 9.625rem;
}

.pt155 {
  padding-top: 9.6875rem;
}

.pr155 {
  padding-right: 9.6875rem;
}

.pb155 {
  padding-bottom: 9.6875rem;
}

.pl155 {
  padding-left: 9.6875rem;
}

.pt156 {
  padding-top: 9.75rem;
}

.pr156 {
  padding-right: 9.75rem;
}

.pb156 {
  padding-bottom: 9.75rem;
}

.pl156 {
  padding-left: 9.75rem;
}

.pt157 {
  padding-top: 9.8125rem;
}

.pr157 {
  padding-right: 9.8125rem;
}

.pb157 {
  padding-bottom: 9.8125rem;
}

.pl157 {
  padding-left: 9.8125rem;
}

.pt158 {
  padding-top: 9.875rem;
}

.pr158 {
  padding-right: 9.875rem;
}

.pb158 {
  padding-bottom: 9.875rem;
}

.pl158 {
  padding-left: 9.875rem;
}

.pt159 {
  padding-top: 9.9375rem;
}

.pr159 {
  padding-right: 9.9375rem;
}

.pb159 {
  padding-bottom: 9.9375rem;
}

.pl159 {
  padding-left: 9.9375rem;
}

.pt160 {
  padding-top: 10rem;
}

.pr160 {
  padding-right: 10rem;
}

.pb160 {
  padding-bottom: 10rem;
}

.pl160 {
  padding-left: 10rem;
}

.pt161 {
  padding-top: 10.0625rem;
}

.pr161 {
  padding-right: 10.0625rem;
}

.pb161 {
  padding-bottom: 10.0625rem;
}

.pl161 {
  padding-left: 10.0625rem;
}

.pt162 {
  padding-top: 10.125rem;
}

.pr162 {
  padding-right: 10.125rem;
}

.pb162 {
  padding-bottom: 10.125rem;
}

.pl162 {
  padding-left: 10.125rem;
}

.pt163 {
  padding-top: 10.1875rem;
}

.pr163 {
  padding-right: 10.1875rem;
}

.pb163 {
  padding-bottom: 10.1875rem;
}

.pl163 {
  padding-left: 10.1875rem;
}

.pt164 {
  padding-top: 10.25rem;
}

.pr164 {
  padding-right: 10.25rem;
}

.pb164 {
  padding-bottom: 10.25rem;
}

.pl164 {
  padding-left: 10.25rem;
}

.pt165 {
  padding-top: 10.3125rem;
}

.pr165 {
  padding-right: 10.3125rem;
}

.pb165 {
  padding-bottom: 10.3125rem;
}

.pl165 {
  padding-left: 10.3125rem;
}

.pt166 {
  padding-top: 10.375rem;
}

.pr166 {
  padding-right: 10.375rem;
}

.pb166 {
  padding-bottom: 10.375rem;
}

.pl166 {
  padding-left: 10.375rem;
}

.pt167 {
  padding-top: 10.4375rem;
}

.pr167 {
  padding-right: 10.4375rem;
}

.pb167 {
  padding-bottom: 10.4375rem;
}

.pl167 {
  padding-left: 10.4375rem;
}

.pt168 {
  padding-top: 10.5rem;
}

.pr168 {
  padding-right: 10.5rem;
}

.pb168 {
  padding-bottom: 10.5rem;
}

.pl168 {
  padding-left: 10.5rem;
}

.pt169 {
  padding-top: 10.5625rem;
}

.pr169 {
  padding-right: 10.5625rem;
}

.pb169 {
  padding-bottom: 10.5625rem;
}

.pl169 {
  padding-left: 10.5625rem;
}

.pt170 {
  padding-top: 10.625rem;
}

.pr170 {
  padding-right: 10.625rem;
}

.pb170 {
  padding-bottom: 10.625rem;
}

.pl170 {
  padding-left: 10.625rem;
}

.pt171 {
  padding-top: 10.6875rem;
}

.pr171 {
  padding-right: 10.6875rem;
}

.pb171 {
  padding-bottom: 10.6875rem;
}

.pl171 {
  padding-left: 10.6875rem;
}

.pt172 {
  padding-top: 10.75rem;
}

.pr172 {
  padding-right: 10.75rem;
}

.pb172 {
  padding-bottom: 10.75rem;
}

.pl172 {
  padding-left: 10.75rem;
}

.pt173 {
  padding-top: 10.8125rem;
}

.pr173 {
  padding-right: 10.8125rem;
}

.pb173 {
  padding-bottom: 10.8125rem;
}

.pl173 {
  padding-left: 10.8125rem;
}

.pt174 {
  padding-top: 10.875rem;
}

.pr174 {
  padding-right: 10.875rem;
}

.pb174 {
  padding-bottom: 10.875rem;
}

.pl174 {
  padding-left: 10.875rem;
}

.pt175 {
  padding-top: 10.9375rem;
}

.pr175 {
  padding-right: 10.9375rem;
}

.pb175 {
  padding-bottom: 10.9375rem;
}

.pl175 {
  padding-left: 10.9375rem;
}

.pt176 {
  padding-top: 11rem;
}

.pr176 {
  padding-right: 11rem;
}

.pb176 {
  padding-bottom: 11rem;
}

.pl176 {
  padding-left: 11rem;
}

.pt177 {
  padding-top: 11.0625rem;
}

.pr177 {
  padding-right: 11.0625rem;
}

.pb177 {
  padding-bottom: 11.0625rem;
}

.pl177 {
  padding-left: 11.0625rem;
}

.pt178 {
  padding-top: 11.125rem;
}

.pr178 {
  padding-right: 11.125rem;
}

.pb178 {
  padding-bottom: 11.125rem;
}

.pl178 {
  padding-left: 11.125rem;
}

.pt179 {
  padding-top: 11.1875rem;
}

.pr179 {
  padding-right: 11.1875rem;
}

.pb179 {
  padding-bottom: 11.1875rem;
}

.pl179 {
  padding-left: 11.1875rem;
}

.pt180 {
  padding-top: 11.25rem;
}

.pr180 {
  padding-right: 11.25rem;
}

.pb180 {
  padding-bottom: 11.25rem;
}

.pl180 {
  padding-left: 11.25rem;
}

.pt181 {
  padding-top: 11.3125rem;
}

.pr181 {
  padding-right: 11.3125rem;
}

.pb181 {
  padding-bottom: 11.3125rem;
}

.pl181 {
  padding-left: 11.3125rem;
}

.pt182 {
  padding-top: 11.375rem;
}

.pr182 {
  padding-right: 11.375rem;
}

.pb182 {
  padding-bottom: 11.375rem;
}

.pl182 {
  padding-left: 11.375rem;
}

.pt183 {
  padding-top: 11.4375rem;
}

.pr183 {
  padding-right: 11.4375rem;
}

.pb183 {
  padding-bottom: 11.4375rem;
}

.pl183 {
  padding-left: 11.4375rem;
}

.pt184 {
  padding-top: 11.5rem;
}

.pr184 {
  padding-right: 11.5rem;
}

.pb184 {
  padding-bottom: 11.5rem;
}

.pl184 {
  padding-left: 11.5rem;
}

.pt185 {
  padding-top: 11.5625rem;
}

.pr185 {
  padding-right: 11.5625rem;
}

.pb185 {
  padding-bottom: 11.5625rem;
}

.pl185 {
  padding-left: 11.5625rem;
}

.pt186 {
  padding-top: 11.625rem;
}

.pr186 {
  padding-right: 11.625rem;
}

.pb186 {
  padding-bottom: 11.625rem;
}

.pl186 {
  padding-left: 11.625rem;
}

.pt187 {
  padding-top: 11.6875rem;
}

.pr187 {
  padding-right: 11.6875rem;
}

.pb187 {
  padding-bottom: 11.6875rem;
}

.pl187 {
  padding-left: 11.6875rem;
}

.pt188 {
  padding-top: 11.75rem;
}

.pr188 {
  padding-right: 11.75rem;
}

.pb188 {
  padding-bottom: 11.75rem;
}

.pl188 {
  padding-left: 11.75rem;
}

.pt189 {
  padding-top: 11.8125rem;
}

.pr189 {
  padding-right: 11.8125rem;
}

.pb189 {
  padding-bottom: 11.8125rem;
}

.pl189 {
  padding-left: 11.8125rem;
}

.pt190 {
  padding-top: 11.875rem;
}

.pr190 {
  padding-right: 11.875rem;
}

.pb190 {
  padding-bottom: 11.875rem;
}

.pl190 {
  padding-left: 11.875rem;
}

.pt191 {
  padding-top: 11.9375rem;
}

.pr191 {
  padding-right: 11.9375rem;
}

.pb191 {
  padding-bottom: 11.9375rem;
}

.pl191 {
  padding-left: 11.9375rem;
}

.pt192 {
  padding-top: 12rem;
}

.pr192 {
  padding-right: 12rem;
}

.pb192 {
  padding-bottom: 12rem;
}

.pl192 {
  padding-left: 12rem;
}

.pt193 {
  padding-top: 12.0625rem;
}

.pr193 {
  padding-right: 12.0625rem;
}

.pb193 {
  padding-bottom: 12.0625rem;
}

.pl193 {
  padding-left: 12.0625rem;
}

.pt194 {
  padding-top: 12.125rem;
}

.pr194 {
  padding-right: 12.125rem;
}

.pb194 {
  padding-bottom: 12.125rem;
}

.pl194 {
  padding-left: 12.125rem;
}

.pt195 {
  padding-top: 12.1875rem;
}

.pr195 {
  padding-right: 12.1875rem;
}

.pb195 {
  padding-bottom: 12.1875rem;
}

.pl195 {
  padding-left: 12.1875rem;
}

.pt196 {
  padding-top: 12.25rem;
}

.pr196 {
  padding-right: 12.25rem;
}

.pb196 {
  padding-bottom: 12.25rem;
}

.pl196 {
  padding-left: 12.25rem;
}

.pt197 {
  padding-top: 12.3125rem;
}

.pr197 {
  padding-right: 12.3125rem;
}

.pb197 {
  padding-bottom: 12.3125rem;
}

.pl197 {
  padding-left: 12.3125rem;
}

.pt198 {
  padding-top: 12.375rem;
}

.pr198 {
  padding-right: 12.375rem;
}

.pb198 {
  padding-bottom: 12.375rem;
}

.pl198 {
  padding-left: 12.375rem;
}

.pt199 {
  padding-top: 12.4375rem;
}

.pr199 {
  padding-right: 12.4375rem;
}

.pb199 {
  padding-bottom: 12.4375rem;
}

.pl199 {
  padding-left: 12.4375rem;
}

.pt200 {
  padding-top: 12.5rem;
}

.pr200 {
  padding-right: 12.5rem;
}

.pb200 {
  padding-bottom: 12.5rem;
}

.pl200 {
  padding-left: 12.5rem;
}

.pt201 {
  padding-top: 12.5625rem;
}

.pr201 {
  padding-right: 12.5625rem;
}

.pb201 {
  padding-bottom: 12.5625rem;
}

.pl201 {
  padding-left: 12.5625rem;
}

/* RESPONSIVE FONT SIZE en rem */
@media (max-width: 1400px) {
  .size-xl-1 {
    font-size: 0.0625rem;
  }
  .size-xl-2 {
    font-size: 0.125rem;
  }
  .size-xl-3 {
    font-size: 0.1875rem;
  }
  .size-xl-4 {
    font-size: 0.25rem;
  }
  .size-xl-5 {
    font-size: 0.3125rem;
  }
  .size-xl-6 {
    font-size: 0.375rem;
  }
  .size-xl-7 {
    font-size: 0.4375rem;
  }
  .size-xl-8 {
    font-size: 0.5rem;
  }
  .size-xl-9 {
    font-size: 0.5625rem;
  }
  .size-xl-10 {
    font-size: 0.625rem;
  }
  .size-xl-11 {
    font-size: 0.6875rem;
  }
  .size-xl-12 {
    font-size: 0.75rem;
  }
  .size-xl-13 {
    font-size: 0.8125rem;
  }
  .size-xl-14 {
    font-size: 0.875rem;
  }
  .size-xl-15 {
    font-size: 0.9375rem;
  }
  .size-xl-16 {
    font-size: 1rem;
  }
  .size-xl-17 {
    font-size: 1.0625rem;
  }
  .size-xl-18 {
    font-size: 1.125rem;
  }
  .size-xl-19 {
    font-size: 1.1875rem;
  }
  .size-xl-20 {
    font-size: 1.25rem;
  }
  .size-xl-21 {
    font-size: 1.3125rem;
  }
  .size-xl-22 {
    font-size: 1.375rem;
  }
  .size-xl-23 {
    font-size: 1.4375rem;
  }
  .size-xl-24 {
    font-size: 1.5rem;
  }
  .size-xl-25 {
    font-size: 1.5625rem;
  }
  .size-xl-26 {
    font-size: 1.625rem;
  }
  .size-xl-27 {
    font-size: 1.6875rem;
  }
  .size-xl-28 {
    font-size: 1.75rem;
  }
  .size-xl-29 {
    font-size: 1.8125rem;
  }
  .size-xl-30 {
    font-size: 1.875rem;
  }
  .size-xl-31 {
    font-size: 1.9375rem;
  }
  .size-xl-32 {
    font-size: 2rem;
  }
  .size-xl-33 {
    font-size: 2.0625rem;
  }
  .size-xl-34 {
    font-size: 2.125rem;
  }
  .size-xl-35 {
    font-size: 2.1875rem;
  }
  .size-xl-36 {
    font-size: 2.25rem;
  }
  .size-xl-37 {
    font-size: 2.3125rem;
  }
  .size-xl-38 {
    font-size: 2.375rem;
  }
  .size-xl-39 {
    font-size: 2.4375rem;
  }
  .size-xl-40 {
    font-size: 2.5rem;
  }
  .size-xl-41 {
    font-size: 2.5625rem;
  }
  .size-xl-42 {
    font-size: 2.625rem;
  }
  .size-xl-43 {
    font-size: 2.6875rem;
  }
  .size-xl-44 {
    font-size: 2.75rem;
  }
  .size-xl-45 {
    font-size: 2.8125rem;
  }
  .size-xl-46 {
    font-size: 2.875rem;
  }
  .size-xl-47 {
    font-size: 2.9375rem;
  }
  .size-xl-48 {
    font-size: 3rem;
  }
  .size-xl-49 {
    font-size: 3.0625rem;
  }
  .size-xl-50 {
    font-size: 3.125rem;
  }
  .size-xl-51 {
    font-size: 3.1875rem;
  }
  .size-xl-52 {
    font-size: 3.25rem;
  }
  .size-xl-53 {
    font-size: 3.3125rem;
  }
  .size-xl-54 {
    font-size: 3.375rem;
  }
  .size-xl-55 {
    font-size: 3.4375rem;
  }
  .size-xl-56 {
    font-size: 3.5rem;
  }
  .size-xl-57 {
    font-size: 3.5625rem;
  }
  .size-xl-58 {
    font-size: 3.625rem;
  }
  .size-xl-59 {
    font-size: 3.6875rem;
  }
  .size-xl-60 {
    font-size: 3.75rem;
  }
  .size-xl-61 {
    font-size: 3.8125rem;
  }
  .size-xl-62 {
    font-size: 3.875rem;
  }
  .size-xl-63 {
    font-size: 3.9375rem;
  }
  .size-xl-64 {
    font-size: 4rem;
  }
  .size-xl-65 {
    font-size: 4.0625rem;
  }
  .size-xl-66 {
    font-size: 4.125rem;
  }
  .size-xl-67 {
    font-size: 4.1875rem;
  }
  .size-xl-68 {
    font-size: 4.25rem;
  }
  .size-xl-69 {
    font-size: 4.3125rem;
  }
  .size-xl-70 {
    font-size: 4.375rem;
  }
  .size-xl-71 {
    font-size: 4.4375rem;
  }
  .size-xl-72 {
    font-size: 4.5rem;
  }
  .size-xl-73 {
    font-size: 4.5625rem;
  }
  .size-xl-74 {
    font-size: 4.625rem;
  }
  .size-xl-75 {
    font-size: 4.6875rem;
  }
  .size-xl-76 {
    font-size: 4.75rem;
  }
  .size-xl-77 {
    font-size: 4.8125rem;
  }
  .size-xl-78 {
    font-size: 4.875rem;
  }
  .size-xl-79 {
    font-size: 4.9375rem;
  }
  .size-xl-80 {
    font-size: 5rem;
  }
  .size-xl-81 {
    font-size: 5.0625rem;
  }
  .size-xl-82 {
    font-size: 5.125rem;
  }
  .size-xl-83 {
    font-size: 5.1875rem;
  }
  .size-xl-84 {
    font-size: 5.25rem;
  }
  .size-xl-85 {
    font-size: 5.3125rem;
  }
  .size-xl-86 {
    font-size: 5.375rem;
  }
  .size-xl-87 {
    font-size: 5.4375rem;
  }
  .size-xl-88 {
    font-size: 5.5rem;
  }
  .size-xl-89 {
    font-size: 5.5625rem;
  }
  .size-xl-90 {
    font-size: 5.625rem;
  }
  .size-xl-91 {
    font-size: 5.6875rem;
  }
  .size-xl-92 {
    font-size: 5.75rem;
  }
  .size-xl-93 {
    font-size: 5.8125rem;
  }
  .size-xl-94 {
    font-size: 5.875rem;
  }
  .size-xl-95 {
    font-size: 5.9375rem;
  }
  .size-xl-96 {
    font-size: 6rem;
  }
  .size-xl-97 {
    font-size: 6.0625rem;
  }
  .size-xl-98 {
    font-size: 6.125rem;
  }
  .size-xl-99 {
    font-size: 6.1875rem;
  }
  .size-xl-100 {
    font-size: 6.25rem;
  }
}
@media (max-width: 1200px) {
  .size-lg-1 {
    font-size: 0.0625rem;
  }
  .size-lg-2 {
    font-size: 0.125rem;
  }
  .size-lg-3 {
    font-size: 0.1875rem;
  }
  .size-lg-4 {
    font-size: 0.25rem;
  }
  .size-lg-5 {
    font-size: 0.3125rem;
  }
  .size-lg-6 {
    font-size: 0.375rem;
  }
  .size-lg-7 {
    font-size: 0.4375rem;
  }
  .size-lg-8 {
    font-size: 0.5rem;
  }
  .size-lg-9 {
    font-size: 0.5625rem;
  }
  .size-lg-10 {
    font-size: 0.625rem;
  }
  .size-lg-11 {
    font-size: 0.6875rem;
  }
  .size-lg-12 {
    font-size: 0.75rem;
  }
  .size-lg-13 {
    font-size: 0.8125rem;
  }
  .size-lg-14 {
    font-size: 0.875rem;
  }
  .size-lg-15 {
    font-size: 0.9375rem;
  }
  .size-lg-16 {
    font-size: 1rem;
  }
  .size-lg-17 {
    font-size: 1.0625rem;
  }
  .size-lg-18 {
    font-size: 1.125rem;
  }
  .size-lg-19 {
    font-size: 1.1875rem;
  }
  .size-lg-20 {
    font-size: 1.25rem;
  }
  .size-lg-21 {
    font-size: 1.3125rem;
  }
  .size-lg-22 {
    font-size: 1.375rem;
  }
  .size-lg-23 {
    font-size: 1.4375rem;
  }
  .size-lg-24 {
    font-size: 1.5rem;
  }
  .size-lg-25 {
    font-size: 1.5625rem;
  }
  .size-lg-26 {
    font-size: 1.625rem;
  }
  .size-lg-27 {
    font-size: 1.6875rem;
  }
  .size-lg-28 {
    font-size: 1.75rem;
  }
  .size-lg-29 {
    font-size: 1.8125rem;
  }
  .size-lg-30 {
    font-size: 1.875rem;
  }
  .size-lg-31 {
    font-size: 1.9375rem;
  }
  .size-lg-32 {
    font-size: 2rem;
  }
  .size-lg-33 {
    font-size: 2.0625rem;
  }
  .size-lg-34 {
    font-size: 2.125rem;
  }
  .size-lg-35 {
    font-size: 2.1875rem;
  }
  .size-lg-36 {
    font-size: 2.25rem;
  }
  .size-lg-37 {
    font-size: 2.3125rem;
  }
  .size-lg-38 {
    font-size: 2.375rem;
  }
  .size-lg-39 {
    font-size: 2.4375rem;
  }
  .size-lg-40 {
    font-size: 2.5rem;
  }
  .size-lg-41 {
    font-size: 2.5625rem;
  }
  .size-lg-42 {
    font-size: 2.625rem;
  }
  .size-lg-43 {
    font-size: 2.6875rem;
  }
  .size-lg-44 {
    font-size: 2.75rem;
  }
  .size-lg-45 {
    font-size: 2.8125rem;
  }
  .size-lg-46 {
    font-size: 2.875rem;
  }
  .size-lg-47 {
    font-size: 2.9375rem;
  }
  .size-lg-48 {
    font-size: 3rem;
  }
  .size-lg-49 {
    font-size: 3.0625rem;
  }
  .size-lg-50 {
    font-size: 3.125rem;
  }
  .size-lg-51 {
    font-size: 3.1875rem;
  }
  .size-lg-52 {
    font-size: 3.25rem;
  }
  .size-lg-53 {
    font-size: 3.3125rem;
  }
  .size-lg-54 {
    font-size: 3.375rem;
  }
  .size-lg-55 {
    font-size: 3.4375rem;
  }
  .size-lg-56 {
    font-size: 3.5rem;
  }
  .size-lg-57 {
    font-size: 3.5625rem;
  }
  .size-lg-58 {
    font-size: 3.625rem;
  }
  .size-lg-59 {
    font-size: 3.6875rem;
  }
  .size-lg-60 {
    font-size: 3.75rem;
  }
  .size-lg-61 {
    font-size: 3.8125rem;
  }
  .size-lg-62 {
    font-size: 3.875rem;
  }
  .size-lg-63 {
    font-size: 3.9375rem;
  }
  .size-lg-64 {
    font-size: 4rem;
  }
  .size-lg-65 {
    font-size: 4.0625rem;
  }
  .size-lg-66 {
    font-size: 4.125rem;
  }
  .size-lg-67 {
    font-size: 4.1875rem;
  }
  .size-lg-68 {
    font-size: 4.25rem;
  }
  .size-lg-69 {
    font-size: 4.3125rem;
  }
  .size-lg-70 {
    font-size: 4.375rem;
  }
  .size-lg-71 {
    font-size: 4.4375rem;
  }
  .size-lg-72 {
    font-size: 4.5rem;
  }
  .size-lg-73 {
    font-size: 4.5625rem;
  }
  .size-lg-74 {
    font-size: 4.625rem;
  }
  .size-lg-75 {
    font-size: 4.6875rem;
  }
  .size-lg-76 {
    font-size: 4.75rem;
  }
  .size-lg-77 {
    font-size: 4.8125rem;
  }
  .size-lg-78 {
    font-size: 4.875rem;
  }
  .size-lg-79 {
    font-size: 4.9375rem;
  }
  .size-lg-80 {
    font-size: 5rem;
  }
  .size-lg-81 {
    font-size: 5.0625rem;
  }
  .size-lg-82 {
    font-size: 5.125rem;
  }
  .size-lg-83 {
    font-size: 5.1875rem;
  }
  .size-lg-84 {
    font-size: 5.25rem;
  }
  .size-lg-85 {
    font-size: 5.3125rem;
  }
  .size-lg-86 {
    font-size: 5.375rem;
  }
  .size-lg-87 {
    font-size: 5.4375rem;
  }
  .size-lg-88 {
    font-size: 5.5rem;
  }
  .size-lg-89 {
    font-size: 5.5625rem;
  }
  .size-lg-90 {
    font-size: 5.625rem;
  }
  .size-lg-91 {
    font-size: 5.6875rem;
  }
  .size-lg-92 {
    font-size: 5.75rem;
  }
  .size-lg-93 {
    font-size: 5.8125rem;
  }
  .size-lg-94 {
    font-size: 5.875rem;
  }
  .size-lg-95 {
    font-size: 5.9375rem;
  }
  .size-lg-96 {
    font-size: 6rem;
  }
  .size-lg-97 {
    font-size: 6.0625rem;
  }
  .size-lg-98 {
    font-size: 6.125rem;
  }
  .size-lg-99 {
    font-size: 6.1875rem;
  }
  .size-lg-100 {
    font-size: 6.25rem;
  }
}
@media (max-width: 992px) {
  .size-md-1 {
    font-size: 0.0625rem;
  }
  .size-md-2 {
    font-size: 0.125rem;
  }
  .size-md-3 {
    font-size: 0.1875rem;
  }
  .size-md-4 {
    font-size: 0.25rem;
  }
  .size-md-5 {
    font-size: 0.3125rem;
  }
  .size-md-6 {
    font-size: 0.375rem;
  }
  .size-md-7 {
    font-size: 0.4375rem;
  }
  .size-md-8 {
    font-size: 0.5rem;
  }
  .size-md-9 {
    font-size: 0.5625rem;
  }
  .size-md-10 {
    font-size: 0.625rem;
  }
  .size-md-11 {
    font-size: 0.6875rem;
  }
  .size-md-12 {
    font-size: 0.75rem;
  }
  .size-md-13 {
    font-size: 0.8125rem;
  }
  .size-md-14 {
    font-size: 0.875rem;
  }
  .size-md-15 {
    font-size: 0.9375rem;
  }
  .size-md-16 {
    font-size: 1rem;
  }
  .size-md-17 {
    font-size: 1.0625rem;
  }
  .size-md-18 {
    font-size: 1.125rem;
  }
  .size-md-19 {
    font-size: 1.1875rem;
  }
  .size-md-20 {
    font-size: 1.25rem;
  }
  .size-md-21 {
    font-size: 1.3125rem;
  }
  .size-md-22 {
    font-size: 1.375rem;
  }
  .size-md-23 {
    font-size: 1.4375rem;
  }
  .size-md-24 {
    font-size: 1.5rem;
  }
  .size-md-25 {
    font-size: 1.5625rem;
  }
  .size-md-26 {
    font-size: 1.625rem;
  }
  .size-md-27 {
    font-size: 1.6875rem;
  }
  .size-md-28 {
    font-size: 1.75rem;
  }
  .size-md-29 {
    font-size: 1.8125rem;
  }
  .size-md-30 {
    font-size: 1.875rem;
  }
  .size-md-31 {
    font-size: 1.9375rem;
  }
  .size-md-32 {
    font-size: 2rem;
  }
  .size-md-33 {
    font-size: 2.0625rem;
  }
  .size-md-34 {
    font-size: 2.125rem;
  }
  .size-md-35 {
    font-size: 2.1875rem;
  }
  .size-md-36 {
    font-size: 2.25rem;
  }
  .size-md-37 {
    font-size: 2.3125rem;
  }
  .size-md-38 {
    font-size: 2.375rem;
  }
  .size-md-39 {
    font-size: 2.4375rem;
  }
  .size-md-40 {
    font-size: 2.5rem;
  }
  .size-md-41 {
    font-size: 2.5625rem;
  }
  .size-md-42 {
    font-size: 2.625rem;
  }
  .size-md-43 {
    font-size: 2.6875rem;
  }
  .size-md-44 {
    font-size: 2.75rem;
  }
  .size-md-45 {
    font-size: 2.8125rem;
  }
  .size-md-46 {
    font-size: 2.875rem;
  }
  .size-md-47 {
    font-size: 2.9375rem;
  }
  .size-md-48 {
    font-size: 3rem;
  }
  .size-md-49 {
    font-size: 3.0625rem;
  }
  .size-md-50 {
    font-size: 3.125rem;
  }
  .size-md-51 {
    font-size: 3.1875rem;
  }
  .size-md-52 {
    font-size: 3.25rem;
  }
  .size-md-53 {
    font-size: 3.3125rem;
  }
  .size-md-54 {
    font-size: 3.375rem;
  }
  .size-md-55 {
    font-size: 3.4375rem;
  }
  .size-md-56 {
    font-size: 3.5rem;
  }
  .size-md-57 {
    font-size: 3.5625rem;
  }
  .size-md-58 {
    font-size: 3.625rem;
  }
  .size-md-59 {
    font-size: 3.6875rem;
  }
  .size-md-60 {
    font-size: 3.75rem;
  }
  .size-md-61 {
    font-size: 3.8125rem;
  }
  .size-md-62 {
    font-size: 3.875rem;
  }
  .size-md-63 {
    font-size: 3.9375rem;
  }
  .size-md-64 {
    font-size: 4rem;
  }
  .size-md-65 {
    font-size: 4.0625rem;
  }
  .size-md-66 {
    font-size: 4.125rem;
  }
  .size-md-67 {
    font-size: 4.1875rem;
  }
  .size-md-68 {
    font-size: 4.25rem;
  }
  .size-md-69 {
    font-size: 4.3125rem;
  }
  .size-md-70 {
    font-size: 4.375rem;
  }
  .size-md-71 {
    font-size: 4.4375rem;
  }
  .size-md-72 {
    font-size: 4.5rem;
  }
  .size-md-73 {
    font-size: 4.5625rem;
  }
  .size-md-74 {
    font-size: 4.625rem;
  }
  .size-md-75 {
    font-size: 4.6875rem;
  }
  .size-md-76 {
    font-size: 4.75rem;
  }
  .size-md-77 {
    font-size: 4.8125rem;
  }
  .size-md-78 {
    font-size: 4.875rem;
  }
  .size-md-79 {
    font-size: 4.9375rem;
  }
  .size-md-80 {
    font-size: 5rem;
  }
  .size-md-81 {
    font-size: 5.0625rem;
  }
  .size-md-82 {
    font-size: 5.125rem;
  }
  .size-md-83 {
    font-size: 5.1875rem;
  }
  .size-md-84 {
    font-size: 5.25rem;
  }
  .size-md-85 {
    font-size: 5.3125rem;
  }
  .size-md-86 {
    font-size: 5.375rem;
  }
  .size-md-87 {
    font-size: 5.4375rem;
  }
  .size-md-88 {
    font-size: 5.5rem;
  }
  .size-md-89 {
    font-size: 5.5625rem;
  }
  .size-md-90 {
    font-size: 5.625rem;
  }
  .size-md-91 {
    font-size: 5.6875rem;
  }
  .size-md-92 {
    font-size: 5.75rem;
  }
  .size-md-93 {
    font-size: 5.8125rem;
  }
  .size-md-94 {
    font-size: 5.875rem;
  }
  .size-md-95 {
    font-size: 5.9375rem;
  }
  .size-md-96 {
    font-size: 6rem;
  }
  .size-md-97 {
    font-size: 6.0625rem;
  }
  .size-md-98 {
    font-size: 6.125rem;
  }
  .size-md-99 {
    font-size: 6.1875rem;
  }
  .size-md-100 {
    font-size: 6.25rem;
  }
}
@media (max-width: 767px) {
  .size-xs-1 {
    font-size: 0.0625rem;
  }
  .size-xs-2 {
    font-size: 0.125rem;
  }
  .size-xs-3 {
    font-size: 0.1875rem;
  }
  .size-xs-4 {
    font-size: 0.25rem;
  }
  .size-xs-5 {
    font-size: 0.3125rem;
  }
  .size-xs-6 {
    font-size: 0.375rem;
  }
  .size-xs-7 {
    font-size: 0.4375rem;
  }
  .size-xs-8 {
    font-size: 0.5rem;
  }
  .size-xs-9 {
    font-size: 0.5625rem;
  }
  .size-xs-10 {
    font-size: 0.625rem;
  }
  .size-xs-11 {
    font-size: 0.6875rem;
  }
  .size-xs-12 {
    font-size: 0.75rem;
  }
  .size-xs-13 {
    font-size: 0.8125rem;
  }
  .size-xs-14 {
    font-size: 0.875rem;
  }
  .size-xs-15 {
    font-size: 0.9375rem;
  }
  .size-xs-16 {
    font-size: 1rem;
  }
  .size-xs-17 {
    font-size: 1.0625rem;
  }
  .size-xs-18 {
    font-size: 1.125rem;
  }
  .size-xs-19 {
    font-size: 1.1875rem;
  }
  .size-xs-20 {
    font-size: 1.25rem;
  }
  .size-xs-21 {
    font-size: 1.3125rem;
  }
  .size-xs-22 {
    font-size: 1.375rem;
  }
  .size-xs-23 {
    font-size: 1.4375rem;
  }
  .size-xs-24 {
    font-size: 1.5rem;
  }
  .size-xs-25 {
    font-size: 1.5625rem;
  }
  .size-xs-26 {
    font-size: 1.625rem;
  }
  .size-xs-27 {
    font-size: 1.6875rem;
  }
  .size-xs-28 {
    font-size: 1.75rem;
  }
  .size-xs-29 {
    font-size: 1.8125rem;
  }
  .size-xs-30 {
    font-size: 1.875rem;
  }
  .size-xs-31 {
    font-size: 1.9375rem;
  }
  .size-xs-32 {
    font-size: 2rem;
  }
  .size-xs-33 {
    font-size: 2.0625rem;
  }
  .size-xs-34 {
    font-size: 2.125rem;
  }
  .size-xs-35 {
    font-size: 2.1875rem;
  }
  .size-xs-36 {
    font-size: 2.25rem;
  }
  .size-xs-37 {
    font-size: 2.3125rem;
  }
  .size-xs-38 {
    font-size: 2.375rem;
  }
  .size-xs-39 {
    font-size: 2.4375rem;
  }
  .size-xs-40 {
    font-size: 2.5rem;
  }
  .size-xs-41 {
    font-size: 2.5625rem;
  }
  .size-xs-42 {
    font-size: 2.625rem;
  }
  .size-xs-43 {
    font-size: 2.6875rem;
  }
  .size-xs-44 {
    font-size: 2.75rem;
  }
  .size-xs-45 {
    font-size: 2.8125rem;
  }
  .size-xs-46 {
    font-size: 2.875rem;
  }
  .size-xs-47 {
    font-size: 2.9375rem;
  }
  .size-xs-48 {
    font-size: 3rem;
  }
  .size-xs-49 {
    font-size: 3.0625rem;
  }
  .size-xs-50 {
    font-size: 3.125rem;
  }
  .size-xs-51 {
    font-size: 3.1875rem;
  }
  .size-xs-52 {
    font-size: 3.25rem;
  }
  .size-xs-53 {
    font-size: 3.3125rem;
  }
  .size-xs-54 {
    font-size: 3.375rem;
  }
  .size-xs-55 {
    font-size: 3.4375rem;
  }
  .size-xs-56 {
    font-size: 3.5rem;
  }
  .size-xs-57 {
    font-size: 3.5625rem;
  }
  .size-xs-58 {
    font-size: 3.625rem;
  }
  .size-xs-59 {
    font-size: 3.6875rem;
  }
  .size-xs-60 {
    font-size: 3.75rem;
  }
  .size-xs-61 {
    font-size: 3.8125rem;
  }
  .size-xs-62 {
    font-size: 3.875rem;
  }
  .size-xs-63 {
    font-size: 3.9375rem;
  }
  .size-xs-64 {
    font-size: 4rem;
  }
  .size-xs-65 {
    font-size: 4.0625rem;
  }
  .size-xs-66 {
    font-size: 4.125rem;
  }
  .size-xs-67 {
    font-size: 4.1875rem;
  }
  .size-xs-68 {
    font-size: 4.25rem;
  }
  .size-xs-69 {
    font-size: 4.3125rem;
  }
  .size-xs-70 {
    font-size: 4.375rem;
  }
  .size-xs-71 {
    font-size: 4.4375rem;
  }
  .size-xs-72 {
    font-size: 4.5rem;
  }
  .size-xs-73 {
    font-size: 4.5625rem;
  }
  .size-xs-74 {
    font-size: 4.625rem;
  }
  .size-xs-75 {
    font-size: 4.6875rem;
  }
  .size-xs-76 {
    font-size: 4.75rem;
  }
  .size-xs-77 {
    font-size: 4.8125rem;
  }
  .size-xs-78 {
    font-size: 4.875rem;
  }
  .size-xs-79 {
    font-size: 4.9375rem;
  }
  .size-xs-80 {
    font-size: 5rem;
  }
  .size-xs-81 {
    font-size: 5.0625rem;
  }
  .size-xs-82 {
    font-size: 5.125rem;
  }
  .size-xs-83 {
    font-size: 5.1875rem;
  }
  .size-xs-84 {
    font-size: 5.25rem;
  }
  .size-xs-85 {
    font-size: 5.3125rem;
  }
  .size-xs-86 {
    font-size: 5.375rem;
  }
  .size-xs-87 {
    font-size: 5.4375rem;
  }
  .size-xs-88 {
    font-size: 5.5rem;
  }
  .size-xs-89 {
    font-size: 5.5625rem;
  }
  .size-xs-90 {
    font-size: 5.625rem;
  }
  .size-xs-91 {
    font-size: 5.6875rem;
  }
  .size-xs-92 {
    font-size: 5.75rem;
  }
  .size-xs-93 {
    font-size: 5.8125rem;
  }
  .size-xs-94 {
    font-size: 5.875rem;
  }
  .size-xs-95 {
    font-size: 5.9375rem;
  }
  .size-xs-96 {
    font-size: 6rem;
  }
  .size-xs-97 {
    font-size: 6.0625rem;
  }
  .size-xs-98 {
    font-size: 6.125rem;
  }
  .size-xs-99 {
    font-size: 6.1875rem;
  }
  .size-xs-100 {
    font-size: 6.25rem;
  }
}
@media (max-width: 991.98px) {
  html {
    overflow-x: hidden;
  }
}
