body {
  margin: 0;
  overflow-x: hidden;
}

ul {
  margin: 0 !important;
}

@font-face {
  font-family: "Dear Script";
  src: url("../fonts/Dear Script (Demo_Font).otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
  color: #000000;
}

.h100p {
  height: 100%;
}

.pointer {
  cursor: pointer;
}

.home-banner__titulo-script {
  font-family: "Dear Script", cursive;
  color: #FF8900;
  font-weight: 400;
  font-style: normal;
  text-transform: lowercase;
  letter-spacing: 0;
  display: inline-block;
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 0.9;
  vertical-align: middle;
  margin-left: 0.08em;
}

#header {
  height: 100px;
  background: #ffffff;
  z-index: 1200;
  box-shadow: 0 2px 12px rgba(16, 24, 40, 0.06);
}

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

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

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo {
  height: 62px;
  width: auto;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
  margin-left: auto;
  margin-right: clamp(16px, 2vw, 40px);
}

.site-header__link {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.site-header__link:hover, .site-header__link.active {
  color: #FF8900;
  text-decoration: none;
}

.site-header__marca {
  text-transform: uppercase;
}

.site-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  width: 182px;
  height: 60px;
  padding: 0 28px;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  border: none;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-header__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.site-header__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 137, 0, 0.25);
}
.site-header__btn.active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}

#navbar_header .navbar-toggler {
  border: none;
  padding: 0;
  box-shadow: none;
  margin-left: auto;
}

.icono-menu-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 30px;
  height: 30px;
}

.icono-menu-mobile span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: background-color 0.3s ease;
}

#menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  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.35);
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0s;
}
#menu-mobile > div:first-child {
  flex-basis: 25%;
  height: 100vh;
}
#menu-mobile > div:nth-child(2) {
  flex-basis: 75%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  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 {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.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: #000000;
}
.close-menu-mobile::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-menu-mobile::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 992px) {
  .site-header__nav {
    display: flex;
    justify-content: space-around;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  #navbar_header .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #header {
    height: 90px;
  }
  .site-header__logo {
    height: 58px;
  }
  #menu-mobile > div:first-child {
    flex-basis: 20%;
  }
  #menu-mobile > div:nth-child(2) {
    flex-basis: 80%;
    align-items: flex-start;
    border-radius: 24px 0 0 24px;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .site-header__mobile-panel {
    position: relative;
    min-height: 100%;
    padding: 76px 24px 32px 20%;
  }
  .site-header__mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    height: 80%;
  }
  .site-header__link--mobile {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.04em;
    padding: 14px 0;
    border-bottom: none;
  }
  .site-header__link--mobile:hover, .site-header__link--mobile.active {
    color: #FF8900;
    text-decoration: none;
  }
  .site-header__link--mobile-legal {
    padding-top: 0;
  }
  .site-header__btn--mobile-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 182px;
    height: 52px;
    margin: 6px 0 10px;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.06em;
    color: #ffffff;
    background-color: #FF8900;
    border-radius: 999px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .site-header__btn--mobile-nav:hover, .site-header__btn--mobile-nav.active {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
  }
  .site-header__mobile-social {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
    padding-top: 48px;
  }
  .site-header__mobile-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    transition: opacity 0.25s ease;
  }
  .site-header__mobile-social-link:hover {
    opacity: 0.85;
  }
  .site-header__mobile-social-icon {
    display: block;
    width: 26px;
    height: auto;
  }
  .site-header__mobile-social-icon--instagram {
    width: 32px;
  }
  .close-menu-mobile {
    top: 28px;
    right: 28px;
  }
}
@media (max-width: 767.98px) {
  #header {
    height: 75px;
  }
  #navbar_header {
    padding: 0 5%;
  }
  .site-header__logo {
    height: 48px;
  }
  .site-header__mobile-panel {
    padding: 76px 24px 32px 20%;
  }
  .site-header__link--mobile {
    font-size: 14px;
    padding: 12px 0;
  }
  .site-header__btn--mobile-nav {
    min-width: 168px;
    height: 48px;
    font-size: 13px;
  }
  .site-header__mobile-social {
    padding-top: 40px;
  }
}
.home-banner,
.proyectos-banner,
.oportunidades-banner,
.somos-banner,
.legal-banner {
  --banner-height: 82vh;
}

.home-banner__inner,
.proyectos-banner__inner,
.oportunidades-banner__inner,
.somos-banner__inner,
.legal-banner__inner {
  height: var(--banner-height);
  min-height: var(--banner-height);
}

@media (max-width: 1199.98px) {
  .home-banner,
  .proyectos-banner,
  .oportunidades-banner,
  .somos-banner,
  .legal-banner {
    --banner-height: 72vh;
  }
}
@media (max-width: 991.98px) {
  .home-banner,
  .proyectos-banner,
  .oportunidades-banner,
  .somos-banner,
  .legal-banner {
    --banner-height: 64vh;
  }
}
@media (max-width: 767.98px) {
  .home-banner,
  .proyectos-banner,
  .somos-banner,
  .legal-banner {
    --banner-height: 560px;
  }
  .oportunidades-banner {
    --banner-height: min(92vh, 640px);
  }
}
.home-heading {
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-heading__linea {
  display: block;
  font-size: clamp(20px, 2.15vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #000000;
  text-wrap: nowrap;
}

.home-heading__script {
  display: block;
  font-family: "Dear Script", cursive;
  color: #FF8900;
  font-size: clamp(52px, 5.8vw, 62px);
  font-weight: 400;
  line-height: 0.88;
  margin-top: -6px;
  text-transform: none;
  text-wrap: nowrap;
}

.home-seccion-header {
  margin-bottom: 48px;
}

.home-seccion-header__cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .home-heading__linea {
    font-size: clamp(20px, 4vw, 26px);
  }
  .home-heading__script {
    font-size: clamp(36px, 8vw, 52px);
    margin-top: -8px;
  }
  .home-seccion-header {
    margin-bottom: 36px;
  }
  .home-seccion-header__cta {
    justify-content: flex-start;
    margin-top: 24px;
  }
}
@media (max-width: 767.98px) {
  .home-heading__linea {
    font-size: clamp(18px, 5vw, 22px);
  }
  .home-heading__script {
    font-size: clamp(32px, 10vw, 44px);
    margin-top: -6px;
  }
  .home-seccion-header {
    margin-bottom: 28px;
  }
  .home-seccion-header__cta {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}
.site-footer {
  height: 420px;
  background-color: #ffffff;
  color: #000000;
}

.site-footer__row--main {
  height: 75%;
}

.site-footer__row--legal {
  height: 25%;
}

.site-footer__main-fluid,
.site-footer__legal-fluid {
  height: 100%;
  padding: 0;
}

.site-footer__main-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-footer__main-grid {
  width: 100%;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.site-footer__logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  margin-bottom: 28px;
}
.site-footer__logo-link:hover {
  opacity: 0.92;
}

.site-footer__logo {
  height: 72px;
  width: auto;
}

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

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

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

.site-footer__cols {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

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

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.site-footer__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #000000;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__link:hover {
  color: #FF8900;
  text-decoration: none;
}
.site-footer__link--naranja {
  color: #FF8900;
}
.site-footer__link--naranja:hover {
  color: #000000;
  opacity: 0.85;
}

.site-footer__texto {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #000000;
}

.site-footer__legal-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 16px;
}

.site-footer__copyright {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #9d9d9d;
}

.site-footer__legal-texto {
  margin: 0;
  max-width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #9d9d9d;
}

.site-whatsapp-float {
  position: fixed;
  right: clamp(14px, 1.8vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 999px;
  background-color: #24d366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.22);
  overflow: hidden;
  transition: width 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.site-whatsapp-float.is-footer-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
}

.site-whatsapp-float__label {
  flex: 1 1 auto;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(8px);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: max-width 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.site-whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.site-whatsapp-float__icon-svg {
  width: 24px;
  height: 24px;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .site-whatsapp-float:hover, .site-whatsapp-float:focus-visible {
    width: 170px;
    justify-content: space-between;
    padding: 6px 8px 6px 14px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.25);
    transform: translateY(-1px);
  }
  .site-whatsapp-float:hover .site-whatsapp-float__label,
  .site-whatsapp-float:focus-visible .site-whatsapp-float__label {
    max-width: 170px;
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1199.98px) {
  .site-whatsapp-float {
    --wsp-float-header: 100px;
    --wsp-float-banner-mt: 80px;
    --wsp-float-banner-h: 72vh;
    right: 16px;
    bottom: max(24px, 100vh - var(--wsp-float-header) - var(--wsp-float-banner-mt) - var(--wsp-float-banner-h) - 16px + env(safe-area-inset-bottom, 0px));
  }
  body[data-page=contacto] .site-whatsapp-float {
    bottom: max(24px, 120px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 991.98px) {
  .site-footer {
    height: auto;
  }
  .site-footer__row--main,
  .site-footer__row--legal {
    height: auto;
  }
  .site-footer__main-fluid,
  .site-footer__legal-fluid {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer__main-inner {
    display: block;
    height: auto;
    padding: 40px 0 28px;
  }
  .site-footer__main-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .site-footer__brand {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 28px;
  }
  .site-footer__logo-link {
    margin-bottom: 0;
  }
  .site-footer__logo {
    height: 64px;
  }
  .site-footer__social {
    margin-top: 0;
    gap: 14px;
  }
  .site-footer__cols {
    width: 100%;
  }
  .site-footer__cols-inner {
    flex-direction: column;
    width: 100%;
  }
  .site-footer__cols-inner > .site-footer__col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .site-footer__cols-inner > .site-footer__col--contacto {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .site-footer__list {
    gap: 14px;
  }
  .site-footer__link,
  .site-footer__texto {
    font-size: 15px;
    line-height: 1.4;
  }
  .site-footer__legal-inner {
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 28px 0 36px;
  }
  .site-footer__copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6b6b6b;
  }
  .site-footer__copyright-line--break {
    display: block;
  }
  .site-footer__legal-texto {
    max-width: 320px;
    font-size: 12px;
    line-height: 1.55;
    color: #9d9d9d;
  }
  .site-whatsapp-float {
    display: inline-flex;
    --wsp-float-header: 90px;
    --wsp-float-banner-mt: 75px;
    --wsp-float-banner-h: 64vh;
    right: 12px;
    bottom: max(20px, 100vh - var(--wsp-float-header) - var(--wsp-float-banner-mt) - var(--wsp-float-banner-h) - 12px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    padding: 5px;
  }
  .site-whatsapp-float:hover, .site-whatsapp-float:active, .site-whatsapp-float:focus, .site-whatsapp-float:focus-visible {
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 5px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.22);
    transform: none;
  }
  .site-whatsapp-float:hover .site-whatsapp-float__label, .site-whatsapp-float:active .site-whatsapp-float__label, .site-whatsapp-float:focus .site-whatsapp-float__label, .site-whatsapp-float:focus-visible .site-whatsapp-float__label {
    max-width: 0;
    opacity: 0;
    transform: translateX(8px);
  }
  body[data-page=contacto] .site-whatsapp-float {
    bottom: max(20px, 100px + env(safe-area-inset-bottom, 0px));
  }
  .site-whatsapp-float__label {
    font-size: 9px;
  }
  .site-whatsapp-float__icon {
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 992px) {
  .site-footer__copyright-line--break {
    display: inline;
  }
  .site-footer__copyright-line--break::before {
    content: " ";
  }
}
@media (max-width: 767.98px) {
  .site-footer__link,
  .site-footer__texto {
    font-size: 14px;
  }
  .site-footer__copyright {
    font-size: 13px;
  }
  .site-footer__legal-texto {
    font-size: 11px;
  }
  .site-whatsapp-float {
    display: inline-flex;
    --wsp-float-header: 75px;
    --wsp-float-banner-mt: 80px;
    --wsp-float-banner-h: 560px;
    right: 10px;
    bottom: max(20px, 100vh - var(--wsp-float-header) - var(--wsp-float-banner-mt) - var(--wsp-float-banner-h) - 12px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    padding: 5px;
  }
  .site-whatsapp-float:hover, .site-whatsapp-float:active, .site-whatsapp-float:focus, .site-whatsapp-float:focus-visible {
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 5px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.22);
    transform: none;
  }
  .site-whatsapp-float:hover .site-whatsapp-float__label, .site-whatsapp-float:active .site-whatsapp-float__label, .site-whatsapp-float:focus .site-whatsapp-float__label, .site-whatsapp-float:focus-visible .site-whatsapp-float__label {
    max-width: 0;
    opacity: 0;
    transform: translateX(8px);
  }
  body[data-page=oportunidades] .site-whatsapp-float {
    --wsp-float-banner-h: min(92vh, 640px);
  }
  body[data-page=contacto] .site-whatsapp-float {
    bottom: max(20px, 88px + env(safe-area-inset-bottom, 0px));
  }
}
.home-banner {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

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

.home-banner__carousel {
  height: var(--banner-height);
  min-height: var(--banner-height);
}
.home-banner__carousel .owl-stage-outer,
.home-banner__carousel .owl-stage,
.home-banner__carousel .owl-item,
.home-banner__carousel .item {
  height: 100%;
}

.home-banner__slide {
  position: relative;
  width: 100%;
  height: var(--banner-height);
  min-height: var(--banner-height);
  overflow: hidden;
}

.home-banner__video,
.home-banner__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-banner__picture {
  display: block;
}

.home-banner__video,
.home-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner__slide:has(.home-banner__picture)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
  z-index: 1;
}

.home-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px 40px 40px;
}

.home-banner__content {
  max-width: fit-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-banner__titulo {
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 20px;
  display: flex;
}

.home-banner__descripcion {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: unset;
}

.home-banner__tagline {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 32px;
}

.home-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 60px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: absolute;
  bottom: 18vh;
  left: 50%;
  transform: translateX(-50%);
}
.home-banner__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.home-banner__btn:active {
  transform: translateX(-50%) translateY(0);
}

.home-banner__steps {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-banner__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-banner__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.55);
  margin: 6px 0;
}

.home-banner__step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.home-banner__step.is-active .home-banner__step-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FF8900;
  color: #ffffff;
}

.home-proyectos {
  padding: 80px 0 90px;
  overflow: hidden;
}

.home-proyectos__intro-inner {
  width: 60%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 6%;
}

.home-proyectos__viva {
  font-family: "Dear Script", cursive;
  color: #FF8900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  margin: 0 0 8px;
}

.home-proyectos__titulo {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  color: #000000;
  text-transform: lowercase;
  line-height: 1.25;
  margin: 0 0 24px;
}

.home-proyectos__titulo-script {
  font-family: "Dear Script", cursive;
  color: #FF8900;
  text-transform: none;
}

.home-proyectos__descripcion {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin: 5% 0 32px;
  max-width: 440px;
}

.home-proyectos__descripcion-texto,
.home-proyectos__descripcion-cierre {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.home-proyectos__descripcion-cierre {
  margin-top: 1.65em;
}

.home-proyectos__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 52px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 5%;
  margin-bottom: 7%;
}
.home-proyectos__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.home-proyectos__btn:active {
  transform: translateY(0);
}

.home-proyectos__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.home-proyectos__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-proyectos__nav-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
.home-proyectos__nav-btn:hover {
  transform: scale(1.05);
}
.home-proyectos__nav-btn:active {
  transform: scale(0.98);
}

.home-proyectos__galeria {
  padding: 0 0 0 2%;
  overflow: visible;
  position: relative;
}

.home-proyectos__carousel .owl-stage-outer {
  overflow: visible;
}

.home-proyectos__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4.8/5;
  max-height: 770px;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08), 0 1px 4px rgba(16, 24, 40, 0.04);
}

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

.home-proyectos__card-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #d9d9d9;
}

.home-proyectos__card--proximamente .home-proyectos__card-badge {
  height: auto;
}

.home-proyectos__card-logo {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  background-color: #ffffff;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-proyectos__card-logo-img {
  width: auto;
  height: 180px;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.home-proyectos__card-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: #FF8900;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top-right-radius: 16px;
  min-height: 109px;
  height: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 10%;
  padding-right: 10%;
  width: fit-content;
  min-width: 280px;
}

.home-proyectos__card-badge-line {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.home-proyectos__card-badge-precio {
  display: block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.home-financiamiento {
  padding: 80px 0 90px;
}

.home-financiamiento__intro {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin: 0;
}

.home-financiamiento__intro-col {
  display: flex;
  align-items: center;
}

.home-financiamiento__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.home-financiamiento__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 36px 20px 32px;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease;
  height: 100%;
  min-height: 360px;
}

.home-financiamiento__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 140px;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.home-financiamiento__heading-inner {
  width: 70%;
  margin-right: 0;
  margin-left: auto;
}

.home-financiamiento__intro-inner {
  width: 70%;
  margin-right: auto;
  margin-left: 0;
}

.home-financiamiento__card-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.home-financiamiento__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  display: block;
  transition: opacity 0.35s ease;
}

.home-financiamiento__icon--naranjo {
  opacity: 0;
}

.home-financiamiento__icon--gris {
  opacity: 1;
}

.home-financiamiento__card-titulo {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #9d9d9d;
  transition: color 0.35s ease;
}

.home-financiamiento__card-texto {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  width: 100%;
  flex: 1 1 auto;
  min-height: 7.75em;
  color: #9d9d9d;
  transition: color 0.35s ease;
}

.home-financiamiento__card.active {
  background-color: #FF8900;
}
.home-financiamiento__card.active .home-financiamiento__icon--gris {
  opacity: 0;
}
.home-financiamiento__card.active .home-financiamiento__icon--naranjo {
  opacity: 1;
}
.home-financiamiento__card.active .home-financiamiento__card-titulo,
.home-financiamiento__card.active .home-financiamiento__card-texto {
  color: #ffffff;
}

.home-financiamiento__cta-row {
  margin-top: 70px;
}

.home-financiamiento__btn-mas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 60px;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #000000;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-financiamiento__btn-mas:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.home-financiamiento__btn-mas:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-elegirnos {
  padding: 0;
  overflow: visible;
  background-color: #ffffff;
}
.home-elegirnos.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.home-elegirnos__row {
  --elegirnos-media-height: 980px;
  position: relative;
  width: 100%;
  height: var(--elegirnos-media-height);
}

.home-elegirnos__content {
  --elegirnos-pad-x: clamp(29px, 5.8vw, 116px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: visible;
  padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) var(--elegirnos-pad-x);
  background-color: #ffffff;
  height: 100%;
}

.home-elegirnos__stats {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 22%;
  width: 160%;
  margin-left: calc(-1 * var(--elegirnos-pad-x));
  margin-bottom: clamp(28px, 3.2vw, 40px);
  padding: clamp(22px, 2.4vw, 32px) clamp(48px, 5vw, 80px) clamp(22px, 2.4vw, 32px) var(--elegirnos-pad-x);
  background-color: #FF8900;
  border-radius: 0 35px 35px 0;
  height: 180px;
}

.home-elegirnos__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  color: #ffffff;
}

.home-elegirnos__stat-num {
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.home-elegirnos__stat-text {
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: lowercase;
}

.home-elegirnos__descripcion {
  max-width: 400px;
  margin: 0 0 clamp(32px, 3.5vw, 44px);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
}

.home-elegirnos__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 180px;
  height: 60px;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #000000;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-elegirnos__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.home-elegirnos__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-elegirnos__media {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 66%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 100%, 15% 100%, 0 0);
  pointer-events: none;
}

.home-elegirnos__carousel {
  width: 100%;
  height: 100%;
  min-height: var(--elegirnos-media-height);
  pointer-events: auto;
}
.home-elegirnos__carousel .owl-stage-outer,
.home-elegirnos__carousel .owl-stage,
.home-elegirnos__carousel .owl-item,
.home-elegirnos__carousel .item {
  height: var(--elegirnos-media-height);
}
.home-elegirnos__carousel .home-elegirnos__img {
  width: 100%;
  height: var(--elegirnos-media-height);
  min-height: var(--elegirnos-media-height);
  max-width: none;
  object-fit: cover;
  object-position: 70% 0;
  display: block;
}

.home-elegirnos__badge {
  position: absolute;
  left: 73%;
  bottom: 10%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 12px 30px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
  width: fit-content;
}

.home-elegirnos__badge-titulo {
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-elegirnos__badge-detalle {
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: none;
}

.home-elegirnos-mobile {
  --elegirnos-mobile-carousel-height: 380px;
}

.home-elegirnos-mobile__inner {
  padding: 40px 20px 48px;
}

.home-elegirnos-mobile__heading {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-elegirnos-mobile__stats {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 28px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  height: auto;
  min-height: 0;
  padding: 24px 20px;
  border-radius: 16px;
}

.home-elegirnos-mobile__carousel .owl-stage-outer {
  overflow: hidden;
  height: var(--elegirnos-mobile-carousel-height);
}
.home-elegirnos-mobile__carousel .owl-stage,
.home-elegirnos-mobile__carousel .owl-item,
.home-elegirnos-mobile__carousel .item {
  height: var(--elegirnos-mobile-carousel-height);
}

.home-elegirnos-mobile__img {
  width: 100%;
  height: var(--elegirnos-mobile-carousel-height);
  min-height: var(--elegirnos-mobile-carousel-height);
  max-height: var(--elegirnos-mobile-carousel-height);
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-elegirnos-mobile__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 0 4px;
}

.home-elegirnos-mobile__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-elegirnos-mobile__nav-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
.home-elegirnos-mobile__nav-btn:hover {
  transform: scale(1.05);
}
.home-elegirnos-mobile__nav-btn:active {
  transform: scale(0.98);
}

.home-elegirnos-mobile__info {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.home-elegirnos-mobile__info-titulo {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.home-elegirnos-mobile__info-detalle {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #000000;
}

.home-elegirnos-mobile__descripcion {
  margin: 28px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #6b6b6b;
}

.home-vivana {
  --vivana-banner-height: clamp(340px, 34vw, 720px);
  --vivana-panel-width: 675px;
  --vivana-panel-height: 720px;
  --vivana-panel-overlap: clamp(56px, 7vw, 110px);
  --vivana-panel-slope: 13%;
  padding: 100px 0 100px;
  background-color: rgba(255, 137, 0, 0.062745098);
}

.home-vivana__banner {
  position: relative;
  width: 100%;
  min-height: var(--vivana-banner-height);
  border-radius: 24px;
  overflow: hidden;
  background-color: #e5e5e5;
  max-height: 980px;
}

.home-vivana__layout {
  min-height: inherit;
}

.home-vivana__media {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: var(--vivana-banner-height);
}

.home-vivana__img,
.home-vivana__video {
  display: block;
  width: 100%;
  min-height: var(--vivana-banner-height);
  max-height: 720px;
  object-fit: cover;
  object-position: left center;
}

.site-footer__cols-inner {
  width: 100%;
}

.home-vivana__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: var(--vivana-panel-width);
  aspect-ratio: 675/720;
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 3.5vw, 56px);
  color: #ffffff;
  pointer-events: none;
  overflow: visible;
  background-color: transparent;
}
.home-vivana__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000;
  pointer-events: none;
}

@media (min-width: 992px) {
  .home-vivana__layout {
    min-height: var(--vivana-banner-height);
  }
  .home-vivana__media-col,
  .home-vivana__panel-col {
    min-height: var(--vivana-banner-height);
  }
  .home-vivana__media-col {
    position: relative;
    z-index: 1;
  }
  .home-vivana__panel-col {
    position: relative;
    z-index: 2;
  }
  .home-vivana__media {
    height: 100%;
    min-height: 100%;
  }
  .home-vivana__img,
  .home-vivana__video {
    min-height: 100%;
    max-height: none;
    height: 100%;
  }
  .home-vivana__panel {
    position: absolute;
    top: 0;
    right: 0;
    left: calc(-1 * var(--vivana-panel-overlap));
    width: auto;
    height: 100%;
    max-width: none;
    aspect-ratio: unset;
  }
  .home-vivana__panel::before {
    -webkit-clip-path: polygon(var(--vivana-panel-slope) 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(var(--vivana-panel-slope) 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .home-vivana__media-col {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .home-vivana__panel-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 1400px) {
  .home-vivana__media-col {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .home-vivana__panel-col {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}
.home-vivana__panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}

.home-vivana__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  pointer-events: auto;
}

.home-vivana__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.home-vivana__content-inner {
  --vivana-inner-script-pull: 0.433;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10%;
  padding-left: 10%;
  line-height: 1;
}
.home-vivana__content-inner .home-vivana__eyebrow {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 4px;
}
.home-vivana__content-inner .home-vivana__titulo {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  line-height: 0.9;
  margin-bottom: 0;
  white-space: nowrap;
}
.home-vivana__content-inner .home-vivana__titulo-linea {
  font-size: clamp(36px, 3.65vw, 50px);
  line-height: 0.9;
}
.home-vivana__content-inner .home-vivana__titulo-linea-script {
  font-size: clamp(36px, 3.65vw, 50px);
  font-weight: 400;
  line-height: 0.95;
}
.home-vivana__content-inner .home-vivana__titulo-script {
  font-size: clamp(84px, 7.5vw, 126px);
  margin-top: calc(var(--vivana-inner-script-pull) * -1em);
}
@media (max-width: 767.98px) {
  .home-vivana__content-inner .home-vivana__eyebrow {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .home-vivana__content-inner .home-vivana__titulo-linea,
  .home-vivana__content-inner .home-vivana__titulo-linea-script {
    font-size: 44px;
  }
  .home-vivana__content-inner .home-vivana__titulo-script {
    font-size: 84px;
    margin-top: -27px;
  }
}

.home-vivana__titulo {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 0 0 18px;
  line-height: 1;
}

.home-vivana__titulo-linea {
  flex-shrink: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.home-vivana__titulo-script {
  flex-shrink: 0;
  font-family: "Dear Script", cursive;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 400;
  line-height: 1;
  color: #FF8900;
  text-transform: lowercase;
}

.home-vivana__texto {
  margin: 0 0 28px 14%;
  max-width: 360px;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
}

.home-vivana__btn-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
}

.home-vivana__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 60px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-left: 14%;
}
.home-vivana__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.home-vivana__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 137, 0, 0.25);
}

.home-blog {
  padding: 80px 0 90px;
  background-color: #ffffff;
  height: 1065px;
}

.home-blog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 242px;
  height: 60px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #000000;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-blog__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.home-blog__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-blog__cards {
  --blog-card-max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2%, 3vw, 5%);
  width: 100%;
}

.home-blog__card {
  width: 100%;
  max-width: var(--blog-card-max-width);
  height: 100%;
  min-width: 0;
  justify-self: center;
  cursor: pointer;
}

.home-blog__card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  max-width: 465px;
}
.home-blog__card-link:hover {
  text-decoration: none;
  color: inherit;
}

.home-blog__card-content {
  padding: 20px;
}

.home-blog__card-media {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 16px;
}

.home-blog__card-img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #d9d9d9;
}

.home-blog__card-fecha {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d9d9d;
  margin-bottom: 10px;
}

.home-blog__card-titulo {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #000000;
  margin: 0;
  transition: color 0.35s ease;
}

.home-blog__card-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-blog__card-extra-inner {
  overflow: hidden;
}

.home-blog__card-texto {
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-blog__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  min-width: 160px;
  height: 48px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

@media (max-width: 1899.98px) {
  .home-proyectos__intro-inner {
    width: 70%;
  }
  .home-banner__btn {
    bottom: 15vh;
  }
}
@media (max-width: 1699.98px) {
  .home-proyectos__intro-inner {
    width: 80%;
  }
  .home-banner__btn {
    bottom: 12vh;
  }
}
@media (max-width: 1599.98px) {
  .home-financiamiento__intro-inner {
    margin-left: 10%;
  }
  .ajuste-1500-no-ver {
    display: none !important;
  }
  .home-elegirnos__row {
    --elegirnos-media-height: 940px;
    height: 940px;
  }
  .home-elegirnos__carousel {
    min-height: 940px;
  }
  .home-elegirnos__carousel .owl-stage-outer,
  .home-elegirnos__carousel .owl-stage,
  .home-elegirnos__carousel .owl-item,
  .home-elegirnos__carousel .item {
    height: 940px;
  }
  .home-elegirnos__carousel .home-elegirnos__img {
    height: 940px;
    min-height: 940px;
  }
}
@media (max-width: 1499.98px) and (min-width: 1400px) {
  .home-proyectos__intro-inner {
    width: 90%;
  }
  .home-elegirnos__content {
    padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 3.5%;
  }
  .home-vivana {
    --vivana-panel-overlap: clamp(80px, 10vw, 150px);
  }
}
@media (max-width: 1499.98px) {
  .home-proyectos__intro-inner {
    width: 90%;
  }
  .home-elegirnos__content {
    padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 3.5%;
  }
}
@media (max-width: 1399.98px) {
  .home-blog__btn {
    font-size: 14px;
  }
  .home-blog__card-fecha {
    font-size: 14px;
  }
  .home-blog__card-titulo {
    font-size: 14px;
  }
  .home-blog__card-texto {
    font-size: 14px;
  }
  .home-vivana__banner {
    max-height: 700px;
  }
  .home-vivana {
    --vivana-panel-overlap: clamp(88px, 11vw, 165px);
    --vivana-panel-slope: 11%;
  }
  .home-elegirnos__row {
    --elegirnos-media-height: 900px;
    height: 900px;
  }
  .home-elegirnos__carousel {
    min-height: 900px;
  }
  .home-elegirnos__carousel .owl-stage-outer,
  .home-elegirnos__carousel .owl-stage,
  .home-elegirnos__carousel .owl-item,
  .home-elegirnos__carousel .item {
    height: 900px;
  }
  .home-elegirnos__carousel .home-elegirnos__img {
    height: 900px;
    min-height: 900px;
  }
  .home-elegirnos__content {
    padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 2.5%;
  }
  #header {
    height: 80px;
  }
  .site-header__logo {
    height: 52px;
  }
  .site-header__btn {
    width: 162px;
    height: 50px;
    font-size: 14px;
  }
  #banner {
    margin-top: 80px;
  }
  .home-banner__content {
    margin-top: -70px;
  }
  .home-financiamiento__card-texto {
    font-size: 14px;
    min-height: 8em;
  }
}
@media (max-width: 1299.98px) {
  .home-banner__titulo {
    font-size: clamp(28px, 3.5vw, 55px);
  }
  .home-banner__titulo-script {
    font-size: clamp(35px, 6.5vw, 65px);
  }
  .home-banner__btn {
    min-width: 220px;
    height: 50px;
  }
  .home-banner__descripcion {
    font-size: 18px;
  }
  .home-banner__tagline {
    font-size: 20px;
  }
  .home-elegirnos__stats {
    height: 150px;
  }
  .home-elegirnos__row {
    --elegirnos-media-height: 860px;
    height: 860px;
  }
  .home-elegirnos__carousel {
    min-height: 860px;
  }
  .home-elegirnos__carousel .owl-stage-outer,
  .home-elegirnos__carousel .owl-stage,
  .home-elegirnos__carousel .owl-item,
  .home-elegirnos__carousel .item {
    height: 860px;
  }
  .home-elegirnos__carousel .home-elegirnos__img {
    height: 860px;
    min-height: 860px;
  }
  .home-banner__content {
    margin-top: -50px;
  }
  .home-elegirnos__content {
    padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 1.5%;
  }
}
@media (max-width: 1249.98px) {
  .home-elegirnos__content {
    padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 1%;
  }
  .home-heading__script {
    font-size: 55px;
  }
}
@media (max-width: 1199.98px) {
  .home-banner__overlay {
    padding: 32px 64px 32px 24px;
  }
  /*  .home-financiamiento__cards {
     grid-template-columns: repeat(2, 1fr);
     gap: 14px;
   }

  .home-financiamiento__heading-inner,
   .home-financiamiento__intro-inner {
     width: 100%;
     margin-left: auto;
     margin-right: auto;
   }  

   .home-financiamiento__intro-col {
     margin-top: 24px;
   }*/
  .home-financiamiento__card {
    height: 100%;
    min-height: 320px;
  }
  .home-financiamiento__card-texto {
    min-height: 7.5em;
  }
  .home-elegirnos__row {
    --elegirnos-media-height: 820px;
    height: 820px;
  }
  .home-elegirnos__carousel {
    min-height: 820px;
  }
  .home-elegirnos__carousel .owl-stage-outer,
  .home-elegirnos__carousel .owl-stage,
  .home-elegirnos__carousel .owl-item,
  .home-elegirnos__carousel .item {
    height: 820px;
  }
  .home-elegirnos__carousel .home-elegirnos__img {
    height: 820px;
    min-height: 820px;
  }
  .home-elegirnos__media {
    width: 55%;
  }
  .home-elegirnos__stats {
    width: min(680px, 100% + 22vw);
  }
  .home-elegirnos__content {
    padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 4%;
  }
  .home-blog {
    background-color: #ffffff;
    height: 1065px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-footer__main-fluid,
  .site-footer__legal-fluid {
    height: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .home-vivana {
    --vivana-panel-overlap: clamp(96px, 12vw, 180px);
    --vivana-panel-slope: 10%;
  }
}
@media (min-width: 992px) {
  .home-proyectos__intro {
    padding: 0 6% 0 5%;
  }
  .home-proyectos__galeria {
    padding-right: 0;
    margin-right: -5%;
  }
  .home-proyectos__carousel .owl-dots {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .home-banner__btn {
    bottom: 120px;
  }
  .home-proyectos {
    padding: 56px 0 72px;
    overflow: visible;
  }
  .home-proyectos__intro-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
  }
  .home-proyectos__intro {
    padding: 0 6% 32px;
    text-align: center;
  }
  .home-proyectos__titulo,
  .home-proyectos__descripcion {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .home-proyectos__descripcion {
    margin-top: 16px;
  }
  .home-proyectos__nav {
    justify-content: center;
    display: none;
  }
  .home-proyectos__galeria {
    padding: 0 6%;
    overflow: visible;
  }
  .home-proyectos__carousel {
    position: relative;
    padding-bottom: 36px;
    overflow: visible;
  }
  .home-proyectos__carousel > .owl-dots {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
  }
  .home-proyectos__carousel > .owl-dots > .owl-dot > span {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #9D9D9D;
    border: 2px solid #9D9D9D;
  }
  .home-proyectos__carousel > .owl-dots > .owl-dot.active > span {
    background-color: #FF8900;
    border: 2px solid #FF8900;
  }
  .home-financiamiento__heading-inner {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .home-financiamiento__intro-inner {
    margin-left: auto;
  }
  .home-proyectos__card {
    max-height: unset;
  }
  .home-proyectos__card-logo-img {
    height: 100px;
    max-width: 120px;
  }
  .home-proyectos__card-badge {
    min-width: 240px;
    height: 96px;
  }
  .home-proyectos__card-badge-line {
    font-size: 14px;
  }
  .home-proyectos__card-badge-precio {
    font-size: 16px;
  }
  .home-financiamiento {
    padding: 64px 0 72px;
  }
  .home-financiamiento__heading {
    text-align: center;
  }
  .home-financiamiento__heading .home-heading {
    align-items: center;
  }
  .home-financiamiento__intro-col {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
  }
  .home-financiamiento__intro {
    font-size: 14px;
  }
  .home-financiamiento__carousel {
    position: relative;
    padding-bottom: 36px;
    overflow: visible;
  }
  .home-financiamiento__carousel .owl-stage-outer {
    overflow: visible;
  }
  .home-financiamiento__carousel > .owl-dots {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
  }
  .home-financiamiento__carousel > .owl-dots > .owl-dot > span {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #9D9D9D;
    border: 2px solid #9D9D9D;
  }
  .home-financiamiento__carousel > .owl-dots > .owl-dot.active > span {
    background-color: #FF8900;
    border: 2px solid #FF8900;
  }
  .home-financiamiento__card--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 320px;
    padding: 40px 24px 36px;
    border-radius: 16px;
    background-color: #FF8900;
    cursor: default;
    height: auto;
  }
  .home-financiamiento__card--mobile .home-financiamiento__card-top {
    min-height: 132px;
    margin-bottom: 12px;
  }
  .home-financiamiento__card--mobile .home-financiamiento__icon--gris {
    opacity: 0;
  }
  .home-financiamiento__card--mobile .home-financiamiento__icon--naranjo {
    opacity: 1;
  }
  .home-financiamiento__card--mobile .home-financiamiento__card-titulo {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
  }
  .home-financiamiento__card--mobile .home-financiamiento__card-texto {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
    max-width: 300px;
    color: #ffffff;
  }
  .home-financiamiento__cta-row {
    margin-top: 32px;
    display: none;
  }
  .home-blog {
    height: auto;
  }
  .home-blog .home-seccion-header {
    text-align: center;
  }
  .home-blog .home-seccion-header .home-heading {
    align-items: center;
  }
  .home-blog__carousel {
    position: relative;
    padding-bottom: 36px;
    overflow: visible;
    margin-top: 8px;
  }
  .home-blog__carousel .owl-stage-outer {
    overflow: visible;
  }
  .home-blog__carousel > .owl-dots {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
  }
  .home-blog__carousel > .owl-dots > .owl-dot > span {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #9D9D9D;
    border: 2px solid #9D9D9D;
  }
  .home-blog__carousel > .owl-dots > .owl-dot.active > span {
    background-color: #FF8900;
    border: 2px solid #FF8900;
  }
  .home-blog__carousel .home-blog__card-link {
    max-width: none;
  }
  .home-blog__carousel .home-blog__card-img {
    height: auto;
    min-height: 200px;
    max-height: 260px;
    aspect-ratio: 4/3;
  }
  .home-blog__carousel .home-blog__card-content {
    padding: 16px 4px 0;
  }
  .home-blog__carousel .home-blog__card-titulo {
    color: #FF8900;
  }
  .home-blog__carousel .home-blog__card-extra {
    display: none;
  }
  .home-elegirnos-mobile__stats .home-elegirnos__stat-num {
    font-size: 40px;
  }
  .home-elegirnos-mobile {
    --elegirnos-mobile-carousel-height: 380px;
  }
  .home-elegirnos-mobile__carousel .owl-stage-outer,
  .home-elegirnos-mobile__carousel .owl-stage,
  .home-elegirnos-mobile__carousel .owl-item,
  .home-elegirnos-mobile__carousel .item {
    height: 380px;
  }
  .home-elegirnos-mobile__img {
    height: 380px;
    min-height: 380px;
    max-height: 380px;
  }
  .home-vivana {
    --vivana-banner-height: auto;
    padding: 64px 0 72px;
  }
  .home-vivana__banner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 20px;
  }
  .home-vivana__layout {
    flex-direction: column;
    min-height: 0;
  }
  .home-vivana__media-col,
  .home-vivana__panel-col {
    min-height: 0;
  }
  .home-vivana__media {
    min-height: 0;
  }
  .home-vivana__img,
  .home-vivana__video {
    min-height: 280px;
    max-height: 360px;
    height: auto;
    object-position: center;
  }
  .home-vivana__panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: auto;
    min-height: 320px;
    padding: 40px 24px 44px;
    overflow: hidden;
  }
  .home-vivana__panel::before {
    display: none;
  }
  .home-vivana__panel-bg {
    inset: 0;
    object-fit: cover;
    object-position: top center;
    width: 100%;
  }
  .home-vivana__content-inner {
    --vivana-inner-script-pull: 0.433;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10%;
    padding-left: unset;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
    width: fit-content;
  }
  .home-vivana__texto {
    margin: 0 auto 28px auto;
    max-width: 360px;
    font-size: clamp(14px, 1.15vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    text-align: left;
  }
  .home-vivana__btn {
    margin-left: auto;
    margin-right: auto;
  }
  .home-vivana__texto {
    margin-bottom: 24px;
  }
  .home-blog {
    height: auto;
  }
  .home-blog .home-blog {
    padding: 64px max(12px, 1.5vw) 72px;
    height: auto;
  }
  .home-blog__btn {
    font-size: 14px;
  }
  .home-blog__card-fecha {
    font-size: 13px;
  }
  .home-blog__card-titulo {
    font-size: 14px;
  }
  .home-blog__card-texto {
    font-size: 13px;
  }
  .home-blog__card-btn {
    font-size: 11px;
    min-width: 140px;
    height: 44px;
  }
  .home-elegirnos__stats {
    margin-left: auto;
    margin-right: auto;
  }
  .home-blog__btn.pc {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .home-banner__overlay {
    padding: 24px 56px 24px 20px;
  }
  .home-banner__titulo {
    font-size: clamp(26px, 7.5vw, 36px);
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-banner__titulo-script {
    font-size: clamp(32px, 9vw, 44px);
  }
  .home-banner__descripcion {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .home-banner__tagline {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .home-banner__btn {
    min-width: 180px;
    height: 48px;
    font-size: 12px;
    bottom: 80px;
  }
  .home-banner__steps {
    right: 16px;
  }
  .home-banner__step-btn {
    font-size: 13px;
  }
  .home-banner__step.is-active .home-banner__step-btn {
    width: 32px;
    height: 32px;
  }
  .home-banner__step:not(:last-child)::after {
    height: 22px;
  }
  .home-proyectos {
    padding: 48px 0 56px;
    margin-top: 100px;
  }
  .home-proyectos__intro-inner {
    padding: 0;
  }
  .home-proyectos__viva {
    font-size: clamp(44px, 12vw, 64px);
  }
  .home-proyectos__titulo {
    font-size: clamp(20px, 5.5vw, 26px);
  }
  .home-proyectos__descripcion {
    font-size: 14px;
    margin-top: 12px;
  }
  .home-proyectos__btn {
    min-width: 310px;
    height: 60px;
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 20px;
  }
  .home-proyectos__card {
    aspect-ratio: 1;
    max-height: 420px;
  }
  .home-proyectos__card-logo-img {
    height: 72px;
    max-width: 90px;
  }
  .home-proyectos__card-badge {
    min-width: 200px;
    height: 84px;
    padding-left: 8%;
    padding-right: 8%;
  }
  .home-proyectos__card-badge-line {
    font-size: 12px;
  }
  .home-proyectos__card-badge-precio {
    font-size: 14px;
  }
  .home-financiamiento {
    padding: 48px 0 56px;
  }
  .home-financiamiento__intro {
    font-size: 13px;
    line-height: 1.6;
  }
  .home-financiamiento__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-financiamiento__card {
    min-height: 350px;
    height: 100%;
    padding: 28px 20px 24px;
  }
  .home-financiamiento__card-texto {
    font-size: 13px;
    min-height: 7.5em;
  }
  .home-financiamiento__card-titulo {
    font-size: 16px;
  }
  .home-financiamiento__cta-row {
    margin-top: 28px;
  }
  .home-financiamiento__btn-mas {
    min-width: 180px;
    height: 48px;
    font-size: 11px;
  }
  .home-elegirnos-mobile__inner {
    padding: 36px 16px 44px;
  }
  .home-elegirnos-mobile__stats {
    gap: 12px;
    padding: 22px 16px;
    border-radius: 16px;
    width: 95%;
    height: 90px;
    margin-bottom: -15px;
  }
  .home-elegirnos-mobile__stats .home-elegirnos__stat-num {
    font-size: 36px;
  }
  .home-elegirnos-mobile__stats .home-elegirnos__stat-text {
    font-size: 12px;
  }
  .home-blog__btn.mobile.conocenos {
    width: 180px;
    height: 60px;
  }
  .home-elegirnos-mobile {
    --elegirnos-mobile-carousel-height: 340px;
  }
  .home-elegirnos-mobile__carousel .owl-stage-outer,
  .home-elegirnos-mobile__carousel .owl-stage,
  .home-elegirnos-mobile__carousel .owl-item,
  .home-elegirnos-mobile__carousel .item {
    height: 340px;
  }
  .home-elegirnos-mobile__img {
    height: 340px;
    min-height: 340px;
    max-height: 340px;
  }
  .home-elegirnos-mobile__info-titulo,
  .home-elegirnos-mobile__info-detalle {
    font-size: 16px;
  }
  .home-elegirnos-mobile__nav-btn {
    width: 44px;
    height: 44px;
  }
  .home-vivana {
    padding: 48px 0 56px;
  }
  .home-vivana__banner {
    border-radius: 16px;
  }
  .home-vivana__img,
  .home-vivana__video {
    min-height: 240px;
    max-height: 300px;
  }
  .home-vivana__panel {
    padding: 32px 20px 36px;
  }
  .home-vivana__eyebrow {
    font-size: 11px;
  }
  .home-vivana__titulo-linea {
    font-size: clamp(24px, 7vw, 32px);
  }
  .home-vivana__titulo-script {
    font-size: clamp(36px, 10vw, 48px);
  }
  .home-vivana__texto {
    font-size: 16px;
    margin-bottom: 22px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .home-vivana__btn {
    min-width: 280px;
    height: 60px;
    font-size: 16px;
  }
  .home-blog {
    height: auto;
  }
  .home-blog__carousel .home-blog__card-img {
    min-height: 180px;
    max-height: 220px;
  }
  .home-blog__carousel .home-blog__card-fecha {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .home-blog__carousel .home-blog__card-titulo {
    font-size: 16px;
  }
  .home-blog__btn {
    width: 242px;
    max-width: 100%;
    font-size: 16px;
  }
  .home-blog__card-media {
    border-radius: 10px 10px 0 0;
    margin-bottom: 14px;
  }
  .home-blog__card-fecha {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .home-blog__card-titulo {
    font-size: 14px;
  }
  .home-blog__card-texto {
    font-size: 13px;
  }
  #banner {
    display: none;
  }
}
@media (hover: hover) {
  .home-blog__card:hover .home-blog__card-titulo {
    color: #FF8900;
  }
  .home-blog__card:hover .home-blog__card-extra {
    grid-template-rows: 1fr;
  }
  .home-blog__card:hover .home-blog__card-texto {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  }
  .home-blog__card:hover .home-blog__card-btn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.16s, transform 0.4s ease 0.16s;
  }
}
.proyectos-banner {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.proyectos-banner.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyectos-banner__inner {
  position: relative;
  width: 100%;
  background-image: url("../images/proyectos/proyectos_banner_desk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.proyectos-banner__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  pointer-events: none;
  z-index: 1;
}

.proyectos-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px 40px 40px;
}

.proyectos-banner__content {
  max-width: 100%;
  text-align: center;
}

.proyectos-banner__titulo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 clamp(8px, 1.2vw, 16px);
  margin: 0 0 clamp(12px, 1.8vw, 20px);
  line-height: 1.1;
}

.proyectos-banner__titulo-linea {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  white-space: nowrap;
}

.proyectos-banner__titulo-script {
  font-family: "Dear Script", cursive;
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: none;
  white-space: nowrap;
}

.proyectos-banner__subtitulo {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.proyectos-detalle {
  padding: 0;
  overflow: visible;
  background-color: #ffffff;
}
.proyectos-detalle.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.proyectos-detalle__row {
  --proyectos-detalle-media-height: 980px;
  position: relative;
  width: 100%;
  height: var(--proyectos-detalle-media-height);
}

.proyectos-detalle__content {
  --proyectos-detalle-pad-x: clamp(24px, 11vw, 240px);
  --proyectos-detalle-pad-right: var(--proyectos-detalle-pad-x);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: visible;
  padding: clamp(59px, 6.85vw, 105px) clamp(16px, 2vw, 24px) clamp(56px, 6.5vw, 100px) 0;
  background-color: #ffffff;
  height: 100%;
}

.proyectos-detalle__ubicacion,
.proyectos-detalle__titulo-grupo {
  padding-left: var(--proyectos-detalle-pad-x);
}

.proyectos-detalle__ubicacion {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(12px, 1.5vw, 20px);
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.proyectos-detalle__ubicacion-icon {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  display: block;
}

.proyectos-detalle__titulo-grupo {
  --proyectos-detalle-titulo-size: clamp(20px, calc(8px + 1.77vw), 42px);
  --proyectos-detalle-script-size: clamp(24px, calc(10px + 2.35vw), 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  line-height: 1;
}

.proyectos-detalle__titulo {
  margin: 0;
  font-size: var(--proyectos-detalle-titulo-size);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FF8900;
}

.proyectos-detalle__subtitulo-script {
  margin: -0.12em 0 0;
  font-family: "Dear Script", cursive;
  font-size: var(--proyectos-detalle-script-size);
  font-weight: 400;
  line-height: 0.85;
  color: #000000;
  text-transform: lowercase;
}

.proyectos-detalle__stats {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 135%;
  margin-left: 0;
  margin-bottom: clamp(28px, 3.2vw, 40px);
  padding: clamp(22px, 2.4vw, 32px) clamp(48px, 5vw, 80px) clamp(22px, 2.4vw, 32px) var(--proyectos-detalle-pad-x);
  background-color: #FF8900;
  border-radius: 0 35px 35px 0;
  min-height: 120px;
  color: #ffffff;
  box-sizing: border-box;
}

.proyectos-detalle__stats-linea {
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proyectos-detalle__stats-precio {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proyectos-detalle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 220px;
  height: 60px;
  margin-left: var(--proyectos-detalle-pad-x);
  padding: 0 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proyectos-detalle__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.proyectos-detalle__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 137, 0, 0.25);
}

.proyectos-detalle__media {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 66%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 100%, 15% 100%, 0 0);
  pointer-events: none;
}

.proyectos-detalle__media-carousel {
  width: 100%;
  height: 100%;
  min-height: var(--proyectos-detalle-media-height);
  pointer-events: auto;
}
.proyectos-detalle__media-carousel .owl-stage-outer,
.proyectos-detalle__media-carousel .owl-stage,
.proyectos-detalle__media-carousel .owl-item,
.proyectos-detalle__media-carousel .item {
  height: var(--proyectos-detalle-media-height);
}

.proyectos-detalle__media-img {
  width: 100%;
  height: var(--proyectos-detalle-media-height);
  min-height: var(--proyectos-detalle-media-height);
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.proyectos-detalle__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(160px, 20vw, 280px);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: contain;
}

.proyectos-detalle--media-left .proyectos-detalle__content {
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}
.proyectos-detalle--media-left .proyectos-detalle__ubicacion,
.proyectos-detalle--media-left .proyectos-detalle__titulo-grupo {
  padding-left: 0;
  padding-right: var(--proyectos-detalle-pad-right);
  margin-left: auto;
  align-self: flex-end;
}
.proyectos-detalle--media-left .proyectos-detalle__titulo-grupo {
  align-items: flex-end;
}
.proyectos-detalle--media-left .proyectos-detalle__btn {
  margin-left: auto;
  margin-right: var(--proyectos-detalle-pad-right);
  align-self: flex-end;
}
.proyectos-detalle--media-left .proyectos-detalle__media {
  left: 0;
  right: auto;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.proyectos-detalle--media-left .proyectos-detalle__stats {
  align-self: flex-end;
  width: 133%;
  margin-left: -8%;
  margin-right: 0;
  padding: clamp(22px, 2.4vw, 32px) var(--proyectos-detalle-pad-right) clamp(22px, 2.4vw, 32px) clamp(48px, 5vw, 80px);
  border-radius: 35px 0 0 35px;
  align-items: flex-end;
  text-align: right;
}

.proyectos-detalle__content--pad-santa-elena {
  --proyectos-detalle-pad-right: 25%;
}

.proyectos-detalle-mobile {
  --proyectos-detalle-mobile-media-height: 380px;
}

.proyectos-detalle-mobile__inner {
  padding: 40px 20px 48px;
}

.proyectos-detalle-mobile__head {
  margin-bottom: 8px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.proyectos-detalle-mobile .proyectos-detalle__stats {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -28px;
  padding: 20px 24px;
  border-radius: 16px;
  min-height: 0;
  align-items: center;
  text-align: center;
  z-index: 3;
  position: relative;
}
.proyectos-detalle-mobile .proyectos-detalle__stats-linea,
.proyectos-detalle-mobile .proyectos-detalle__stats-precio {
  width: 100%;
  text-align: center;
}

.proyectos-detalle-mobile__media {
  position: relative;
  z-index: 1;
  margin-top: 0;
  border-radius: 20px;
  overflow: hidden;
  min-height: var(--proyectos-detalle-mobile-media-height);
}
.proyectos-detalle-mobile__media .proyectos-detalle-mobile__media-carousel {
  width: 100%;
  height: var(--proyectos-detalle-mobile-media-height);
  min-height: var(--proyectos-detalle-mobile-media-height);
  pointer-events: auto;
}
.proyectos-detalle-mobile__media .proyectos-detalle-mobile__media-carousel .owl-stage-outer {
  overflow: hidden;
  height: var(--proyectos-detalle-mobile-media-height);
}
.proyectos-detalle-mobile__media .proyectos-detalle-mobile__media-carousel .owl-stage,
.proyectos-detalle-mobile__media .proyectos-detalle-mobile__media-carousel .owl-item,
.proyectos-detalle-mobile__media .proyectos-detalle-mobile__media-carousel .item {
  height: var(--proyectos-detalle-mobile-media-height);
}
.proyectos-detalle-mobile__media .proyectos-detalle__media-img {
  width: 100%;
  height: var(--proyectos-detalle-mobile-media-height);
  min-height: var(--proyectos-detalle-mobile-media-height);
  max-height: var(--proyectos-detalle-mobile-media-height);
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.proyectos-detalle-mobile__media .proyectos-detalle__logo {
  width: clamp(140px, 42vw, 220px);
}
.proyectos-detalle-mobile__media .proyectos-detalle__btn--mobile {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  transform: translateX(-50%);
  align-self: auto;
  min-width: min(280px, 100% - 40px);
  height: 52px;
  font-size: 13px;
  pointer-events: auto;
}

@media (min-width: 1400px) {
  .proyectos-banner__subtitulo {
    font-size: clamp(16px, 1.8vw, 22px);
  }
  .proyectos-detalle__ubicacion {
    font-size: clamp(16px, 1.1vw, 18px);
  }
  .proyectos-detalle__stats-linea {
    font-size: clamp(16px, 1.15vw, 18px);
  }
  .proyectos-detalle__btn {
    font-size: 16px;
  }
}
@media (max-width: 1899px) {
  .proyectos-detalle--media-left .proyectos-detalle__stats {
    width: 131%;
    margin-left: -8%;
  }
}
@media (max-width: 1599.98px) {
  .proyectos-detalle__row {
    --proyectos-detalle-media-height: 940px;
    height: 940px;
  }
  .proyectos-detalle__media-carousel {
    min-height: 940px;
  }
  .proyectos-detalle__media-carousel .owl-stage-outer,
  .proyectos-detalle__media-carousel .owl-stage,
  .proyectos-detalle__media-carousel .owl-item,
  .proyectos-detalle__media-carousel .item {
    height: 940px;
  }
  .proyectos-detalle__media-img {
    height: 940px;
    min-height: 940px;
  }
  .proyectos-detalle__content {
    --proyectos-detalle-pad-x: clamp(24px, 10vw, 200px);
  }
}
@media (max-width: 1399.98px) {
  .proyectos-detalle__row {
    --proyectos-detalle-media-height: 900px;
    height: 900px;
  }
  .proyectos-detalle__media-carousel {
    min-height: 900px;
  }
  .proyectos-detalle__media-carousel .owl-stage-outer,
  .proyectos-detalle__media-carousel .owl-stage,
  .proyectos-detalle__media-carousel .owl-item,
  .proyectos-detalle__media-carousel .item {
    height: 900px;
  }
  .proyectos-detalle__media-img {
    height: 900px;
    min-height: 900px;
  }
  .proyectos-detalle__content {
    --proyectos-detalle-pad-x: clamp(24px, 9vw, 180px);
  }
  #proyectosBanner {
    margin-top: 80px;
  }
}
@media (max-width: 1299.98px) {
  .proyectos-detalle__row {
    --proyectos-detalle-media-height: 860px;
    height: 860px;
  }
  .proyectos-detalle__media-carousel {
    min-height: 860px;
  }
  .proyectos-detalle__media-carousel .owl-stage-outer,
  .proyectos-detalle__media-carousel .owl-stage,
  .proyectos-detalle__media-carousel .owl-item,
  .proyectos-detalle__media-carousel .item {
    height: 860px;
  }
  .proyectos-detalle__media-img {
    height: 860px;
    min-height: 860px;
  }
  .proyectos-detalle__stats {
    min-height: 110px;
  }
  .proyectos-detalle__content {
    --proyectos-detalle-pad-x: clamp(20px, 8vw, 150px);
  }
}
@media (max-width: 1249.98px) {
  .proyectos-detalle__content {
    --proyectos-detalle-pad-x: clamp(20px, 7.5vw, 130px);
  }
}
@media (max-width: 1199.98px) {
  .proyectos-banner__overlay {
    padding: 32px 64px 32px 24px;
  }
  .proyectos-detalle__row {
    --proyectos-detalle-media-height: 820px;
    height: 820px;
  }
  .proyectos-detalle__media-carousel {
    min-height: 820px;
  }
  .proyectos-detalle__media-carousel .owl-stage-outer,
  .proyectos-detalle__media-carousel .owl-stage,
  .proyectos-detalle__media-carousel .owl-item,
  .proyectos-detalle__media-carousel .item {
    height: 820px;
  }
  .proyectos-detalle__media-img {
    height: 820px;
    min-height: 820px;
  }
  .proyectos-detalle__media {
    width: 55%;
  }
  /* .proyectos-detalle--media-right .proyectos-detalle__stats {
     width: min(680px, calc(100% + 22vw));
   }

   .proyectos-detalle--media-left .proyectos-detalle__stats {
     width: min(680px, 135%);
     margin-left: auto;
   }  */
  .proyectos-detalle__content {
    --proyectos-detalle-pad-x: clamp(20px, 7vw, 120px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .proyectos-detalle__content {
    --proyectos-detalle-pad-x: clamp(20px, 6vw, 96px);
  }
}
@media (max-width: 991.98px) {
  .proyectos-banner__inner {
    background-image: url("../images/proyectos/proyectos_banner_mobile.jpg");
  }
  .proyectos-banner__titulo-linea {
    font-size: clamp(20px, 4vw, 26px);
  }
  .proyectos-banner__titulo-script {
    font-size: clamp(36px, 8vw, 52px);
  }
  .proyectos-banner__subtitulo {
    font-size: clamp(14px, 3.2vw, 18px);
  }
  .proyectos-detalle__titulo-grupo {
    --proyectos-detalle-titulo-size: clamp(22px, calc(14px + 4.2vw), 30px);
    --proyectos-detalle-script-size: clamp(32px, calc(18px + 5.5vw), 48px);
  }
  .proyectos-detalle-mobile {
    --proyectos-detalle-mobile-media-height: 340px;
  }
  .proyectos-detalle--media-left .proyectos-detalle__titulo-grupo {
    align-items: flex-start;
  }
  .proyectos-detalle--media-left .proyectos-detalle__stats {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  .proyectos-banner__overlay {
    padding: 24px 20px;
  }
  .proyectos-banner__titulo-linea {
    font-size: clamp(26px, 7.5vw, 36px);
  }
  .proyectos-banner__titulo-script {
    font-size: clamp(32px, 9vw, 44px);
  }
  .proyectos-banner__subtitulo {
    font-size: 14px;
  }
  .proyectos-detalle-mobile__inner {
    padding: 32px 16px 40px;
  }
  .proyectos-detalle-mobile {
    --proyectos-detalle-mobile-media-height: 300px;
  }
  .proyectos-detalle__btn--mobile {
    bottom: 20px;
    height: 48px;
    font-size: 12px;
  }
  .proyectos-detalle-mobile__media-carousel {
    width: 100%;
    height: 610px !important;
    min-height: 610px !important;
    pointer-events: auto;
  }
  .proyectos-detalle-mobile__media-carousel .owl-stage-outer {
    overflow: hidden;
    height: 610px !important;
  }
  .proyectos-detalle-mobile__media-carousel .owl-stage,
  .proyectos-detalle-mobile__media-carousel .owl-item,
  .proyectos-detalle-mobile__media-carousel .item {
    height: 610px !important;
  }
  .proyectos-detalle__media-img {
    height: 610px !important;
    min-height: 610px !important;
  }
}
.proyecto-interior-banner {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  --banner-height: 82vh;
}
.proyecto-interior-banner.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyecto-interior-banner__inner {
  position: relative;
  width: 100%;
  height: var(--banner-height);
  min-height: var(--banner-height);
  background-image: var(--proyecto-interior-banner-desk);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.proyecto-interior-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.proyecto-interior-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
}

.proyecto-interior-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.proyecto-interior-banner__logo {
  position: relative;
  z-index: 3;
  width: clamp(160px, 22vw, 260px);
  height: auto;
}

.proyecto-interior-banner__btn {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(240px, 32vw, 320px);
  height: clamp(48px, 5vw, 56px);
  margin-top: clamp(20px, 14vw, 50px);
  padding: 0 clamp(32px, 4vw, 48px);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proyecto-interior-banner__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.proyecto-interior-banner__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 137, 0, 0.25);
}

.proyecto-interior-banner__btn--sticky {
  display: none;
}

.proyecto-interior-ventas {
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 72px);
  background-color: #ffffff;
}

.proyecto-interior-ventas__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
}

.proyecto-interior-ventas__brand {
  flex: 0 0 auto;
  text-align: left;
  margin-bottom: 15px;
}

.proyecto-interior-ventas__titulo {
  margin: 0 0 clamp(4px, 0.6vw, 8px);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.proyecto-interior-ventas__entrega {
  margin: 0;
  font-family: "Dear Script", cursive;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: lowercase;
}

.proyecto-interior-ventas__contactos {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(32px, 4.5vw, 64px);
  min-width: 0;
}

.proyecto-interior-ventas__phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 2.8vw, 40px);
}

.proyecto-interior-ventas__item {
  display: inline-flex;
  align-items: flex-start;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.proyecto-interior-ventas__item--sala {
  flex: 1 1 220px;
  max-width: 360px;
}

.proyecto-interior-ventas__icon {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  margin-top: 0;
}

.proyecto-interior-ventas__texto {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.45;
  color: #000000;
}

.proyecto-interior-ventas__label {
  font-weight: 600;
}

.proyecto-interior-ventas__link,
.proyecto-interior-ventas__link-tel {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.proyecto-interior-ventas__link:hover,
.proyecto-interior-ventas__link-tel:hover {
  color: #FF8900;
  text-decoration: none;
}

.proyecto-interior-ventas__link {
  color: #FF8900;
  font-weight: 600;
}
.proyecto-interior-ventas__link:hover {
  color: #d67300;
}

.proyecto-interior-depto {
  padding: 0;
  overflow: hidden;
}
.proyecto-interior-depto.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyecto-interior-depto__row {
  --proyecto-interior-depto-media-height: clamp(560px, 52vw, 920px);
  position: relative;
  width: 100%;
  min-height: var(--proyecto-interior-depto-media-height);
}

.proyecto-interior-depto__media {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 70%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.proyecto-interior-depto__media-carousel {
  width: 100%;
  height: 100%;
  min-height: var(--proyecto-interior-depto-media-height);
}
.proyecto-interior-depto__media-carousel .owl-stage-outer,
.proyecto-interior-depto__media-carousel .owl-stage,
.proyecto-interior-depto__media-carousel .owl-item,
.proyecto-interior-depto__media-carousel .item {
  height: var(--proyecto-interior-depto-media-height);
}
.proyecto-interior-depto__media-carousel .owl-dots {
  display: none;
}

.proyecto-interior-depto__media-img {
  width: 100%;
  height: var(--proyecto-interior-depto-media-height);
  min-height: var(--proyecto-interior-depto-media-height);
  object-fit: cover;
  object-position: center;
  display: block;
}

.proyecto-interior-depto__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.proyecto-interior-depto__nav img {
  width: clamp(40px, 4vw, 52px);
  height: auto;
  display: block;
}
.proyecto-interior-depto__nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.proyecto-interior-depto__nav--prev {
  left: clamp(16px, 2.2vw, 36px);
}

.proyecto-interior-depto__nav--next {
  right: 10%;
}

.proyecto-interior-depto__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: space-evenly;
  width: 30%;
  min-width: 300px;
  max-width: 100%;
  min-height: var(--proyecto-interior-depto-media-height);
  margin-left: auto;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 2.8vw, 40px);
  text-align: center;
  background-color: #ffffff;
}

.proyecto-interior-depto__titulo-grupo {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  width: 100%;
  margin: 0 0 clamp(16px, 2vw, 24px);
  line-height: 1;
  margin-bottom: 0;
}

.proyecto-interior-depto__titulo {
  margin: 0;
  font-size: clamp(22px, 8px + 1.77vw, 42px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.proyecto-interior-depto__subtitulo-script {
  margin: -0.1em 0 0;
  font-family: "Dear Script", cursive;
  font-size: clamp(28px, 10px + 2.35vw, 58px);
  font-weight: 400;
  line-height: 0.85;
  color: #FF8900;
  text-transform: lowercase;
}

.proyecto-interior-depto__descripcion {
  text-align: left;
  max-width: 100%;
  margin: 0 0 clamp(20px, 2.4vw, 28px);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.55;
  color: #8a8a8a;
}

.proyecto-interior-depto__datos {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: clamp(6px, 0.8vw, 10px);
  width: 100%;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.proyecto-interior-depto__datos-linea {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FF8900;
  margin-bottom: 20px;
}

.proyecto-interior-depto__datos-metraje {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 30px;
}

.proyecto-interior-depto__datos-precio {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FF8900;
  margin-bottom: 40px;
}

.proyecto-interior-depto__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(200px, 22vw, 260px);
  height: clamp(48px, 5vw, 56px);
  padding: 0 clamp(28px, 3vw, 40px);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #000000;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proyecto-interior-depto__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.proyecto-interior-depto-mobile {
  background-color: #ffffff;
}

.proyecto-interior-depto-mobile__inner {
  display: flex;
  flex-direction: column;
}

.proyecto-interior-depto-mobile__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 8vw, 56px) clamp(20px, 5vw, 32px) clamp(28px, 5vw, 40px);
  text-align: center;
}

.proyecto-interior-depto-mobile__media {
  --proyecto-interior-depto-mobile-height: clamp(280px, 55vw, 420px);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.proyecto-interior-depto-mobile__media-carousel {
  position: relative;
  width: 100%;
  height: var(--proyecto-interior-depto-mobile-height);
  min-height: var(--proyecto-interior-depto-mobile-height);
}
.proyecto-interior-depto-mobile__media-carousel .owl-stage-outer,
.proyecto-interior-depto-mobile__media-carousel .owl-stage,
.proyecto-interior-depto-mobile__media-carousel .owl-item,
.proyecto-interior-depto-mobile__media-carousel .item {
  height: var(--proyecto-interior-depto-mobile-height);
}

.proyecto-interior-depto-mobile__media .proyecto-interior-depto__media-img {
  height: var(--proyecto-interior-depto-mobile-height);
  min-height: var(--proyecto-interior-depto-mobile-height);
}

.proyecto-interior-beneficios {
  padding: clamp(48px, 6vw, 72px) 0;
  background-color: #faf6f0;
}
.proyecto-interior-beneficios.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyecto-interior-beneficios__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(36px, 6vw, 48px);
}

.proyecto-interior-beneficios__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  text-align: center;
}

.proyecto-interior-beneficios__icon {
  width: clamp(52px, 8vw, 60px);
  height: auto;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.proyecto-interior-beneficios__etiqueta {
  margin: 0 0 clamp(4px, 0.6vw, 8px);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c5c5c;
}

.proyecto-interior-beneficios__titulo {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF8900;
}

.proyecto-interior-plantas {
  padding: clamp(48px, 6vw, 72px) 0;
  background-color: #ffffff;
}
.proyecto-interior-plantas.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyecto-interior-plantas__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(24px, 3vw, 32px);
  text-align: center;
}

.proyecto-interior-plantas__titulo-grupo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.proyecto-interior-plantas__titulo {
  margin: 0;
  font-size: clamp(22px, 8px + 1.77vw, 42px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.proyecto-interior-plantas__subtitulo-script {
  margin: -0.05em 0 0;
  font-family: "Dear Script", cursive;
  font-size: clamp(28px, 10px + 2.35vw, 58px);
  font-weight: 400;
  line-height: 0.85;
  color: #FF8900;
  text-transform: lowercase;
}

.proyecto-interior-plantas__filtros {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
}

.proyecto-interior-plantas__filtro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 14vw, 180px);
  height: clamp(40px, 4vw, 48px);
  padding: 0 clamp(16px, 2vw, 28px);
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.proyecto-interior-plantas__filtro-btn--activo {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.proyecto-interior-plantas__filtros-mobile {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.proyecto-interior-plantas__select {
  width: 100%;
  height: clamp(48px, 5vw, 56px);
  padding: 0 clamp(44px, 5vw, 52px) 0 clamp(20px, 3vw, 28px);
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 600;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 999px;
  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='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
  cursor: pointer;
}

.proyecto-interior-plantas__body {
  --proyecto-interior-plantas-gap: clamp(28px, 4vw, 48px);
  row-gap: var(--proyecto-interior-plantas-gap);
}

.proyecto-interior-plantas__visor {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 42vw, 420px);
  margin-bottom: clamp(16px, 2vw, 24px);
  background-color: #fff;
}

.proyecto-interior-plantas__zoom {
  position: absolute;
  top: clamp(12px, 1.5vw, 16px);
  right: clamp(12px, 1.5vw, 16px);
  z-index: 2;
  display: flex;
  line-height: 0;
  transition: transform 0.25s ease;
}
.proyecto-interior-plantas__zoom:hover {
  transform: scale(1.05);
}

.proyecto-interior-plantas__imagen-principal {
  width: 100%;
  height: auto;
  max-height: clamp(280px, 48vw, 520px);
  object-fit: contain;
  display: block;
}

.proyecto-interior-plantas__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
}

.proyecto-interior-plantas__thumbs-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.proyecto-interior-plantas__thumbs-nav:hover {
  opacity: 1;
}

.proyecto-interior-plantas__thumbs {
  flex: 1;
  overflow: hidden;
}

.proyecto-interior-plantas__thumb {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
.proyecto-interior-plantas__thumb img {
  width: 100%;
  height: clamp(64px, 10vw, 88px);
  object-fit: cover;
  display: block;
}
.proyecto-interior-plantas__thumb--activo, .proyecto-interior-plantas__thumb:hover {
  opacity: 1;
  border-color: #FF8900;
}

.proyecto-interior-plantas__col-detalle {
  display: flex;
  flex-direction: column;
}

.proyecto-interior-plantas__item {
  display: none;
}
.proyecto-interior-plantas__item--activo {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.proyecto-interior-plantas__item-thumbs {
  display: none;
}

.proyecto-interior-plantas__depto-label {
  margin: 0 0 4px;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 600;
  color: #FF8900;
}

.proyecto-interior-plantas__depto-titulo {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  font-size: clamp(20px, 14px + 1.2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FF8900;
}

.proyecto-interior-plantas__specs {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.proyecto-interior-plantas__fila {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(14px, 2vw, 18px) 0;
  border-bottom: 1px solid #e8e8e8;
}
.proyecto-interior-plantas__fila:first-child {
  border-top: 1px solid #FF8900;
}

.proyecto-interior-plantas__fila--dorms {
  justify-content: space-between;
}

.proyecto-interior-plantas__fila--superficies {
  align-items: flex-start;
}

.proyecto-interior-plantas__fila-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.proyecto-interior-plantas__superficies {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
}

.proyecto-interior-plantas__campo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.proyecto-interior-plantas__campo.superficies {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}

.proyecto-interior-plantas__campo-label {
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  color: #5c5c5c;
}

.proyecto-interior-plantas__campo-valor {
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  color: #000000;
}

.proyecto-interior-plantas__orientacion {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.proyecto-interior-plantas__btn-cotizar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(48px, 5vw, 56px);
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding: 0;
  border: 0;
  cursor: pointer;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proyecto-interior-plantas__btn-cotizar:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}
.proyecto-interior-plantas__btn-cotizar:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 137, 0, 0.25);
}

.proyecto-interior-plantas__paginacion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  margin-top: 20px;
}

.proyecto-interior-plantas__paginacion-btn {
  display: flex;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.proyecto-interior-plantas__paginacion-btn img {
  width: clamp(36px, 4vw, 44px);
  height: auto;
}
.proyecto-interior-plantas__paginacion-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.proyecto-interior-plantas__paginacion-texto {
  min-width: 48px;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 600;
  text-align: center;
  color: #000000;
}

.proyecto-interior-ubicacion {
  padding: clamp(48px, 6vw, 72px) 0;
  background-color: #ffffff;
}
.proyecto-interior-ubicacion.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyecto-interior-ubicacion__titulo-grupo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 5px;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.proyecto-interior-ubicacion__titulo {
  margin: 0;
  font-size: clamp(22px, 8px + 1.77vw, 42px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.proyecto-interior-ubicacion__subtitulo-script {
  margin: -0.05em 0 0;
  font-family: "Dear Script", cursive;
  font-size: clamp(28px, 10px + 2.35vw, 58px);
  font-weight: 400;
  line-height: 0.85;
  color: #FF8900;
  text-transform: lowercase;
}

.proyecto-interior-ubicacion__media-wrap {
  position: relative;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.proyecto-interior-ubicacion__media {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 1.5vw, 20px);
  background-color: #e8e8e8;
  height: 670px;
}
.proyecto-interior-ubicacion__media--placeholder {
  background-color: #ececec;
}

.proyecto-interior-ubicacion__imagen {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(220px, 42vw, 480px);
  object-fit: cover;
}

.proyecto-interior-ubicacion__video {
  display: none;
  width: 100%;
  height: auto;
  min-height: clamp(220px, 42vw, 480px);
  object-fit: cover;
  vertical-align: top;
}

.proyecto-interior-ubicacion__media--video .proyecto-interior-ubicacion__imagen {
  display: none;
}
.proyecto-interior-ubicacion__media--video .proyecto-interior-ubicacion__video {
  display: block;
}

.proyecto-interior-ubicacion__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 42vw, 480px);
  border: 0;
  vertical-align: top;
}

.proyecto-interior-ubicacion__barra {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 32px);
  background-color: #FF8900;
  border-radius: clamp(12px, 1.5vw, 20px);
  transform: translate(-50%, 50%);
  box-shadow: 0 8px 24px rgba(255, 137, 0, 0.25);
  gap: 3vw;
  height: 120px;
}

.proyecto-interior-ubicacion__punto {
  display: none;
  flex: 1 1 0;
  align-items: flex-start;
  gap: clamp(10px, 1.2vw, 14px);
  min-width: 0;
  padding: 0 clamp(8px, 1vw, 12px);
  color: #ffffff;
  text-align: left;
  text-wrap: nowrap;
}
.proyecto-interior-ubicacion__punto--activo {
  display: flex;
}

.proyecto-interior-ubicacion__punto-icon {
  flex-shrink: 0;
  width: clamp(28px, 3vw, 32px);
  height: auto;
}

.proyecto-interior-ubicacion__punto-texto {
  min-width: 0;
}

.proyecto-interior-ubicacion__punto-minutos {
  margin: 0 0 2px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.proyecto-interior-ubicacion__punto-lugar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  min-height: 2.5em;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}

.proyecto-interior-ubicacion__punto-lugar-line {
  display: block;
  min-height: 1.25em;
}

.proyecto-interior-ubicacion__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: clamp(48px, 8vw, 64px) 0 clamp(20px, 3vw, 28px);
}

.proyecto-interior-ubicacion__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.proyecto-interior-ubicacion__dot--activo {
  background-color: #FF8900;
  transform: scale(1.15);
}

.proyecto-interior-ubicacion__pie {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  text-align: center;
}

.proyecto-interior-ubicacion__descripcion {
  margin: 0;
  max-width: 420px;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  line-height: 1.45;
  color: #5c5c5c;
}

.proyecto-interior-ubicacion__sala {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 600;
  line-height: 1.3;
}

.proyecto-interior-ubicacion__sala-icon {
  flex-shrink: 0;
  width: 18px;
  height: auto;
}

.proyecto-interior-ubicacion__sala-link {
  color: #FF8900;
  text-decoration: none;
}
.proyecto-interior-ubicacion__sala-link:hover {
  color: #d67300;
  text-decoration: underline;
}

.proyecto-interior-ec {
  padding: 0;
  background-color: #ffffff;
}
.proyecto-interior-ec.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.proyecto-interior-ec__carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.proyecto-interior-ec__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px clamp(20px, 2.5vw, 28px) clamp(14px, 2vw, 20px) clamp(20px, 2.5vw, 28px);
  background-color: rgba(255, 137, 0, 0.8);
  border-radius: 0 0 clamp(16px, 2vw, 24px) 0;
  color: #ffffff;
  line-height: 5px;
  pointer-events: none;
  width: 16%;
  height: 17.5%;
  padding-left: 3%;
}

.proyecto-interior-ec__badge-titulo {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proyecto-interior-ec__badge-script {
  margin-top: 2px;
  font-family: "Dear Script", cursive;
  font-size: clamp(25px, 3.2vw, 55px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: lowercase;
}

.proyecto-interior-ec__badge-mobile {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proyecto-interior-ec__carousel {
  --proyecto-interior-ec-height: clamp(280px, 56vw, 640px);
  --proyecto-interior-ec-radius: 20px;
  overflow: hidden;
  border-radius: var(--proyecto-interior-ec-radius);
}
.proyecto-interior-ec__carousel .owl-stage-outer {
  overflow: hidden;
  border-radius: var(--proyecto-interior-ec-radius);
}
.proyecto-interior-ec__carousel .owl-stage-outer,
.proyecto-interior-ec__carousel .owl-stage,
.proyecto-interior-ec__carousel .owl-item,
.proyecto-interior-ec__carousel .item {
  height: var(--proyecto-interior-ec-height);
}
.proyecto-interior-ec__carousel .owl-item,
.proyecto-interior-ec__carousel .item.proyecto-interior-ec__slide {
  overflow: hidden;
  border-radius: var(--proyecto-interior-ec-radius);
}

.proyecto-interior-ec__slide,
.proyecto-interior-ec__slide-media {
  height: 100%;
}

.proyecto-interior-ec__slide-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--proyecto-interior-ec-radius, 20px);
  background-color: #ececec;
}

.proyecto-interior-ec__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--proyecto-interior-ec-radius, 20px);
}

.proyecto-interior-ec__overlay {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vw, 32px);
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: clamp(220px, 32vw, 320px);
  padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 36px);
  border-radius: 999px;
  background-color: rgba(50, 50, 50, 0.48);
  transform: translateX(-50%);
  text-align: center;
}

.proyecto-interior-ec__overlay-titulo {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
}

.proyecto-interior-ec__overlay-subtitulo {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
}

.proyecto-interior-ec__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.proyecto-interior-ec__nav:hover {
  opacity: 0.9;
  transform: translateY(calc(-50% - 1px));
}
.proyecto-interior-ec__nav--prev {
  left: clamp(12px, 2vw, 24px);
}
.proyecto-interior-ec__nav--next {
  right: clamp(12px, 2vw, 24px);
}
.proyecto-interior-ec__nav img {
  width: clamp(40px, 4vw, 52px);
  height: auto;
}

.proyecto-interior-ec__mobile-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(20px, 4vw, 28px) clamp(16px, 4vw, 24px);
  background-color: #ffffff;
}

.proyecto-interior-ec__mobile-texto {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.proyecto-interior-ec__mobile-panel .proyecto-interior-ec__overlay-titulo,
.proyecto-interior-ec__mobile-panel .proyecto-interior-ec__overlay-subtitulo {
  color: #000000;
}

.proyecto-interior-ec__mobile-panel .proyecto-interior-ec__overlay-titulo {
  font-weight: 700;
}

.proyecto-interior-ec__mobile-panel .proyecto-interior-ec__overlay-subtitulo {
  font-weight: 500;
  color: #5c5c5c;
}

.proyecto-interior-ec__mobile-nav {
  flex-shrink: 0;
  display: flex;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.proyecto-interior-ec__mobile-nav img {
  width: 40px;
  height: auto;
}

@media (min-width: 992px) {
  .proyecto-interior-ventas__item {
    flex-shrink: 0;
    max-width: none;
  }
  .proyecto-interior-ventas__item--sala {
    flex: 0 0 auto;
    max-width: none;
  }
  .proyecto-interior-ventas__texto,
  .proyecto-interior-ventas__label,
  .proyecto-interior-ventas__link,
  .proyecto-interior-ventas__link-tel {
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .proyecto-interior-beneficios__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(24px, 3vw, 40px);
  }
  .proyecto-interior-beneficios__item {
    flex: 1 1 0;
    max-width: none;
  }
  .proyecto-interior-plantas__filtro-btn,
  .proyecto-interior-plantas__select,
  .proyecto-interior-plantas__depto-label,
  .proyecto-interior-plantas__campo-label,
  .proyecto-interior-plantas__campo-valor,
  .proyecto-interior-plantas__btn-cotizar,
  .proyecto-interior-plantas__paginacion-texto {
    font-size: clamp(16px, 1.1vw, 18px);
  }
  .proyecto-interior-plantas__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
  }
  .proyecto-interior-plantas__titulo-grupo {
    align-items: flex-start;
  }
  .proyecto-interior-plantas__filtros {
    justify-content: flex-end;
  }
  .proyecto-interior-plantas__col-detalle {
    padding-left: clamp(24px, 3vw, 40px);
  }
  .proyecto-interior-plantas__fila--dorms .proyecto-interior-plantas__campo {
    flex: 0 0 auto;
    min-width: 40%;
  }
  .proyecto-interior-ubicacion__titulo-grupo {
    align-items: center;
  }
  .proyecto-interior-ubicacion__media-wrap {
    margin-bottom: clamp(56px, 5vw, 72px);
  }
  .proyecto-interior-ubicacion__barra {
    width: fit-content;
  }
  .proyecto-interior-ubicacion__punto {
    display: flex;
  }
  .proyecto-interior-ubicacion__punto--activo {
    display: flex;
  }
  .proyecto-interior-ubicacion__punto-minutos {
    font-size: clamp(16px, 1.2vw, 20px);
  }
  .proyecto-interior-ubicacion__punto-lugar,
  .proyecto-interior-ubicacion__punto-lugar-line,
  .proyecto-interior-ubicacion__descripcion,
  .proyecto-interior-ubicacion__sala {
    font-size: clamp(16px, 1.1vw, 18px);
  }
  .proyecto-interior-ubicacion__pie {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .proyecto-interior-ubicacion__descripcion {
    max-width: none;
    margin: 0;
  }
  .proyecto-interior-ubicacion__sala {
    justify-content: flex-end;
    flex-shrink: 0;
    margin: 0;
    text-align: right;
    white-space: nowrap;
  }
  .proyecto-interior-ubicacion__sala-link {
    white-space: nowrap;
  }
  .proyecto-interior-ec__carousel {
    --proyecto-interior-ec-height: 980px;
  }
  .proyecto-interior-ec__overlay-titulo {
    font-size: clamp(16px, 1.2vw, 18px);
  }
  .proyecto-interior-ec__overlay-subtitulo {
    font-size: clamp(16px, 1.1vw, 18px);
  }
  .proyecto-interior-ec__badge-titulo {
    font-size: clamp(26px, 1.4vw, 37px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .proyecto-interior-depto__media {
    width: 56%;
  }
}
@media (max-width: 1499.98px) {
  .proyecto-interior-ventas__phones {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .proyecto-interior-plantas__header {
    gap: 5px;
  }
  .proyecto-interior-plantas__item--activo {
    width: 90%;
  }
}
@media (max-width: 1399.98px) {
  .proyecto-interior-depto__row {
    --proyecto-interior-depto-media-height: clamp(520px, 50vw, 820px);
  }
  #proyectoInteriorBanner {
    margin-top: 80px;
  }
  .proyecto-interior-ubicacion__barra {
    gap: 2vw;
  }
  .proyecto-interior-plantas__item--activo {
    width: 95%;
  }
}
@media (max-width: 1249.98px) {
  .proyecto-interior-ec__badge {
    padding-left: 2%;
  }
}
@media (max-width: 1199.98px) {
  .proyecto-interior-banner {
    --banner-height: 72vh;
  }
  .proyecto-interior-depto__row {
    --proyecto-interior-depto-media-height: clamp(480px, 48vw, 760px);
  }
  .proyecto-interior-depto__content {
    width: 42%;
    min-width: 280px;
  }
  .proyecto-interior-ventas {
    padding: clamp(40px, 5vw, 64px) 24px clamp(48px, 6vw, 72px);
    background-color: #ffffff;
  }
  .proyecto-interior-plantas.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
  .proyecto-interior-ec__badge {
    width: 17%;
  }
}
@media (max-width: 1024.98px) {
  .proyecto-interior-ec__badge {
    padding-left: 1%;
  }
}
@media (max-width: 991.98px) {
  body[data-page=proyecto-interior] {
    --proyecto-interior-cta-sticky-h: clamp(55px, 14vw, 60px);
    --pi-font-body: clamp(16px, 4.2vw, 18px);
    --pi-font-ui: clamp(14px, 3.6vw, 16px);
    --pi-font-title: clamp(24px, 5.8vw, 36px);
    --pi-font-script: clamp(44px, 9vw, 48px);
    --pi-font-display: clamp(22px, 5.5vw, 32px);
    padding-bottom: var(--proyecto-interior-cta-sticky-h);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ventas__titulo,
  body[data-page=proyecto-interior] .proyecto-interior-depto__titulo,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__titulo,
  body[data-page=proyecto-interior] .proyecto-interior-ubicacion__titulo {
    font-size: var(--pi-font-title);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ventas__entrega,
  body[data-page=proyecto-interior] .proyecto-interior-depto__subtitulo-script,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__subtitulo-script,
  body[data-page=proyecto-interior] .proyecto-interior-ubicacion__subtitulo-script {
    font-size: var(--pi-font-script);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ventas__texto,
  body[data-page=proyecto-interior] .proyecto-interior-ventas__label,
  body[data-page=proyecto-interior] .proyecto-interior-ventas__link,
  body[data-page=proyecto-interior] .proyecto-interior-ventas__link-tel,
  body[data-page=proyecto-interior] .proyecto-interior-depto__descripcion,
  body[data-page=proyecto-interior] .proyecto-interior-depto__datos-linea,
  body[data-page=proyecto-interior] .proyecto-interior-depto__datos-metraje,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__depto-label,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__campo-label,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__campo-valor,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__paginacion-texto,
  body[data-page=proyecto-interior] .proyecto-interior-ubicacion__punto-minutos,
  body[data-page=proyecto-interior] .proyecto-interior-ubicacion__punto-lugar,
  body[data-page=proyecto-interior] .proyecto-interior-ubicacion__descripcion,
  body[data-page=proyecto-interior] .proyecto-interior-ubicacion__sala,
  body[data-page=proyecto-interior] .proyecto-interior-ec__overlay-titulo,
  body[data-page=proyecto-interior] .proyecto-interior-ec__overlay-subtitulo,
  body[data-page=proyecto-interior] .proyecto-interior-ec__mobile-panel .proyecto-interior-ec__overlay-titulo,
  body[data-page=proyecto-interior] .proyecto-interior-ec__mobile-panel .proyecto-interior-ec__overlay-subtitulo {
    font-size: var(--pi-font-body);
  }
  body[data-page=proyecto-interior] .proyecto-interior-depto__datos-precio {
    font-size: var(--pi-font-display);
  }
  body[data-page=proyecto-interior] .proyecto-interior-depto__btn,
  body[data-page=proyecto-interior] .proyecto-interior-banner__btn--sticky,
  body[data-page=proyecto-interior] .proyecto-interior-beneficios__etiqueta,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__filtro-btn,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__select,
  body[data-page=proyecto-interior] .proyecto-interior-plantas__btn-cotizar,
  body[data-page=proyecto-interior] .proyecto-interior-ec__badge-mobile {
    font-size: var(--pi-font-ui);
  }
  body[data-page=proyecto-interior] .proyecto-interior-beneficios__titulo {
    font-size: var(--pi-font-body);
  }
  body[data-page=proyecto-interior] .proyecto-interior-plantas__depto-titulo {
    font-size: clamp(20px, 5.5vw, 28px);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ec__badge-titulo {
    font-size: clamp(16px, 4vw, 20px);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ec__badge-script {
    font-size: clamp(28px, 8vw, 40px);
  }
  body[data-page=proyecto-interior] .home-vivana__eyebrow {
    font-size: var(--pi-font-ui);
  }
  body[data-page=proyecto-interior] .home-vivana__texto {
    font-size: var(--pi-font-body);
  }
  .proyecto-interior-banner {
    --banner-height: 64vh;
  }
  .proyecto-interior-banner__inner {
    background-image: var(--proyecto-interior-banner-mobile, var(--proyecto-interior-banner-desk));
  }
  .proyecto-interior-banner__content .proyecto-interior-banner__btn {
    display: none;
  }
  .proyecto-interior-banner__btn--sticky {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: var(--proyecto-interior-cta-sticky-h);
    margin: 0;
    padding: 0 clamp(16px, 5vw, 24px);
    font-size: var(--pi-font-ui);
    letter-spacing: 0.06em;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -4px 20px rgba(16, 24, 40, 0.12);
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .proyecto-interior-banner__btn--sticky.is-footer-visible {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }
  .proyecto-interior-ventas__row {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 40px);
  }
  .proyecto-interior-ventas__brand {
    flex: 0 0 auto;
    text-align: center;
  }
  .proyecto-interior-ventas__contactos {
    flex: 0 0 100%;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 36px);
  }
  .proyecto-interior-ventas__item,
  .proyecto-interior-ventas__item--sala,
  .proyecto-interior-ventas__item--email {
    flex: 0 0 auto;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
  .proyecto-interior-ventas__item--sala {
    order: 1;
  }
  .proyecto-interior-ventas__item--email {
    order: 3;
    align-items: center;
  }
  .proyecto-interior-ventas__phones {
    order: 2;
    justify-content: center;
    width: 100%;
    gap: clamp(24px, 8vw, 48px);
  }
  .proyecto-interior-ventas__texto,
  .proyecto-interior-ventas__label,
  .proyecto-interior-ventas__link,
  .proyecto-interior-ventas__link-tel {
    white-space: normal;
    text-wrap: wrap;
  }
  .proyecto-interior-ventas__texto {
    text-align: center;
  }
  .proyecto-interior-ventas__entrega {
    font-size: var(--pi-font-script);
  }
  .proyecto-interior-plantas__col-detalle {
    margin-top: clamp(8px, 2vw, 16px);
  }
  .proyecto-interior-plantas__superficies {
    flex-direction: row;
    gap: 5%;
  }
  .proyecto-interior-depto__titulo-grupo {
    align-items: center;
    margin-bottom: 35px;
  }
  .proyecto-interior-depto__datos {
    align-items: center;
  }
  #proyectoInteriorDeptoCarouselMobile > .owl-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(16px, 4vw, 24px);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin: 0;
    line-height: 0;
    transform: translateX(-50%);
  }
  #proyectoInteriorDeptoCarouselMobile > .owl-dots > .owl-dot > span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
    transition: background-color 0.25s ease, transform 0.25s ease;
  }
  #proyectoInteriorDeptoCarouselMobile > .owl-dots > .owl-dot.active > span,
  #proyectoInteriorDeptoCarouselMobile > .owl-dots > .owl-dot:hover > span {
    background-color: #FF8900;
    transform: scale(1.05);
  }
  .proyecto-interior-ubicacion__dots {
    margin: 45px auto;
  }
  .proyecto-interior-ec__badge {
    padding-left: 2.5%;
  }
  .proyecto-interior-ec__badge {
    padding: 25px clamp(20px, 2.5vw, 28px) clamp(14px, 2vw, 20px) clamp(20px, 2.5vw, 28px);
    line-height: 20px;
    padding-left: 3%;
  }
  .proyecto-interior-ventas__texto-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
  }
}
@media (max-width: 767.98px) {
  .proyecto-interior-banner {
    --banner-height: 560px;
  }
  .proyecto-interior-ec__carousel-wrap {
    border-radius: 0;
  }
  .proyecto-interior-ec__carousel {
    --proyecto-interior-ec-radius: 0;
    border-radius: 0;
  }
  .proyecto-interior-ec__carousel .owl-stage-outer,
  .proyecto-interior-ec__carousel .owl-item,
  .proyecto-interior-ec__carousel .item.proyecto-interior-ec__slide {
    border-radius: 0;
  }
  .proyecto-interior-ec__carousel .owl-stage-outer,
  .proyecto-interior-ec__carousel .owl-stage,
  .proyecto-interior-ec__carousel .owl-item,
  .proyecto-interior-ec__carousel .item {
    height: 480px;
  }
  .proyecto-interior-ec__slide-media,
  .proyecto-interior-ec__slide-img {
    border-radius: 0;
  }
  .proyecto-interior-ec__overlay {
    border-radius: 0;
  }
  .proyecto-interior-ec__badge {
    width: 27%;
    border-radius: 0;
    border-bottom-right-radius: clamp(16px, 2vw, 24px);
  }
  .proyecto-interior-plantas__fila--dorms {
    gap: 2%;
  }
  .proyecto-interior-plantas__fila--dorms .proyecto-interior-plantas__campo {
    width: 48%;
  }
  .proyecto-interior-plantas__btn-cotizar {
    height: 60px;
  }
  .proyecto-interior-ventas__icon {
    margin-right: 5px;
  }
}
@media (max-width: 384.98px) {
  body[data-page=proyecto-interior] {
    --pi-font-body: clamp(16px, 4.19vw, 18px);
    --pi-font-ui: clamp(14px, 3.72vw, 16px);
    --pi-font-title: clamp(24px, 5.81vw, 36px);
    --pi-font-script: clamp(28px, 10.23vw, 44px);
    --pi-font-display: clamp(20px, 5.58vw, 32px);
  }
  body[data-page=proyecto-interior] .proyecto-interior-plantas__depto-titulo {
    font-size: clamp(18px, 5.5vw, 28px);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ec__badge-titulo {
    font-size: clamp(14px, 4vw, 20px);
  }
  body[data-page=proyecto-interior] .proyecto-interior-ec__badge-script {
    font-size: clamp(24px, 8vw, 40px);
  }
}
@media (max-width: 349.98px) {
  body[data-page=proyecto-interior] .proyecto-interior-ventas__phones {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  body[data-page=proyecto-interior] .proyecto-interior-ventas__phones .proyecto-interior-ventas__item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  body[data-page=proyecto-interior] .proyecto-interior-depto__descripcion br {
    display: none;
  }
  body[data-page=proyecto-interior] .proyecto-interior-depto__descripcion {
    text-align: center;
  }
  body[data-page=proyecto-interior] .proyecto-interior-ec__badge {
    width: 31%;
    border-radius: 0;
    border-bottom-right-radius: clamp(16px, 2vw, 24px);
  }
  body[data-page=proyecto-interior] .home-vivana__btn-row {
    justify-content: center;
    width: 100%;
  }
  body[data-page=proyecto-interior] .home-vivana__btn {
    min-width: 0;
    width: 85%;
    max-width: 85%;
    font-size: 14px;
  }
}
.oportunidades-banner {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.oportunidades-banner.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.oportunidades-banner__inner {
  position: relative;
  width: 100%;
  background-image: url("../images/oportunidades/banner/oportunidades_banner_desk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oportunidades-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.oportunidades-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
  width: 100%;
}

.oportunidades-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 14px);
  width: 100%;
  text-align: center;
}

.oportunidades-banner__titulo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 clamp(8px, 1.2vw, 16px);
  margin: 0;
  line-height: 1.05;
}

.oportunidades-banner__titulo-linea {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.oportunidades-banner__titulo-script {
  font-family: "Dear Script", cursive;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: lowercase;
  white-space: nowrap;
}

.oportunidades-banner__subtitulo {
  margin: clamp(4px, 0.8vw, 8px) 0 0;
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #ffffff;
}

@media (max-width: 1339.98px) {
  #oportunidadesBanner {
    margin-top: 80px;
  }
}
@media (max-width: 991.98px) {
  .oportunidades-banner__inner {
    background-image: url("../images/oportunidades/banner/mobile/oportunidades_banner_mobile.jpg");
  }
  .oportunidades-banner__titulo {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .oportunidades-banner__titulo-linea {
    font-size: clamp(22px, 5.5vw, 30px);
    white-space: normal;
  }
  .oportunidades-banner__titulo-script {
    font-size: clamp(44px, 11vw, 64px);
    margin-top: -0.05em;
    white-space: normal;
  }
  .oportunidades-banner__subtitulo {
    font-size: clamp(14px, 3.6vw, 17px);
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .oportunidades-banner__inner {
    background-position: center 30%;
  }
  .oportunidades-banner__overlay {
    padding: 24px 20px;
  }
  .oportunidades-banner__titulo-linea {
    font-size: clamp(24px, 7vw, 32px);
  }
  .oportunidades-banner__titulo-script {
    font-size: clamp(40px, 12vw, 56px);
  }
  .oportunidades-banner__subtitulo {
    max-width: 300px;
    font-size: 14px;
  }
}
.oportunidades-intro {
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 40px);
  background-color: #ffffff;
}
.oportunidades-intro.container-fluid {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.oportunidades-intro__head {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 32px);
}

.oportunidades-intro__heading {
  margin: 0;
}

.oportunidades-intro__filtros-mobile {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.oportunidades-filtros {
  --op-filtros-count: 4;
  --op-filtros-index: 0;
  --op-filtros-pad: 5px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  padding: var(--op-filtros-pad);
  border-radius: 999px;
  background-color: #fff3e6;
}

.oportunidades-filtros__pildora {
  position: absolute;
  top: var(--op-filtros-pad);
  bottom: var(--op-filtros-pad);
  left: calc(var(--op-filtros-pad) + (100% - var(--op-filtros-pad) * 2) * var(--op-filtros-index) / var(--op-filtros-count));
  z-index: 1;
  width: calc((100% - var(--op-filtros-pad) * 2) / var(--op-filtros-count));
  border-radius: 999px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.08);
  transition: left 0.3s ease;
  pointer-events: none;
}

.oportunidades-filtros__btn {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 8px;
  border: none;
  background: transparent;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}
.oportunidades-filtros__btn--activo {
  color: #FF8900;
}

.oportunidades-filtros__select {
  width: 100%;
  height: clamp(48px, 12vw, 56px);
  padding: 0 clamp(44px, 5vw, 52px) 0 clamp(20px, 5vw, 28px);
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 999px;
  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='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .oportunidades-intro__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 3vw, 48px);
  }
  .oportunidades-intro__heading {
    flex: 1 1 auto;
    min-width: 0;
  }
  .oportunidades-intro__filtros {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    min-width: 650px;
  }
}
.oportunidades-listado {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(56px, 7vw, 80px);
  background-color: #ffffff;
  box-shadow: 0 6px 18px -10px rgba(16, 24, 40, 0.04), 0 14px 32px -18px rgba(16, 24, 40, 0.06);
}
.oportunidades-listado.container-fluid {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.oportunidades-listado__pool {
  display: none;
}

.oportunidades-listado__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (min-width: 991.98px) {
  .oportunidades-listado__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.oportunidades-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
}

.oportunidades-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.oportunidades-card__badge {
  position: absolute;
  top: 15%;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px clamp(16px, 2vw, 22px) 10px clamp(18px, 2.2vw, 24px);
  border-radius: 12px 0 0 12px;
  background-color: #FF8900;
  color: #ffffff;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.oportunidades-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px 16px 18px;
  transition: background-color 0.25s ease;
}

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

.oportunidades-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-align: center;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

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

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

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

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

.oportunidades-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;
}

.oportunidades-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;
}

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

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

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

.oportunidades-card:hover .oportunidades-card__edificio,
.oportunidades-card:hover .oportunidades-card__depto,
.oportunidades-card:hover .oportunidades-card__ubicacion {
  color: #FF8900;
}

.oportunidades-card:hover .oportunidades-card__body {
  background-color: #fff3e6;
}

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

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

.oportunidades-card:hover .oportunidades-card__btn--reserva {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.oportunidades-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-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.oportunidades-card__btn--reserva {
  height: 50px;
  border: 1px solid #FF8900;
  background-color: transparent;
  color: #FF8900;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
}
.oportunidades-card__btn--reserva:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.oportunidades-card__btn--info {
  display: none;
  border: none;
  background-color: #FF8900;
  color: #ffffff;
}
.oportunidades-card__btn--info:hover {
  background-color: #e07b00;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .oportunidades-intro__heading {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .oportunidades-intro__heading .home-heading__linea {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .oportunidades-intro__heading .home-heading__script {
    font-size: clamp(40px, 11vw, 56px);
  }
  .oportunidades-card__btn--reserva {
    display: none;
  }
  .oportunidades-card__btn--info {
    display: flex;
  }
  .oportunidades-card__btn {
    font-size: 14px;
  }
  .oportunidades-card__footer {
    grid-template-columns: 1fr auto;
    grid-template-areas: "ubicacion ahora" "antes ahora";
    gap: 6px 10px;
  }
  .oportunidades-card__ahora-wrap {
    text-align: right;
  }
  .oportunidades-card__ubicacion {
    font-size: 14px;
  }
  .oportunidades-card__antes {
    font-size: 14px;
  }
  .oportunidades-card__ahora {
    font-size: 18px;
  }
}
.somos-banner {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.somos-banner.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.somos-banner__inner {
  position: relative;
  width: 100%;
  background-image: url("../images/somos/banner/somos_banner_desk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.somos-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.somos-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
  width: 100%;
}

.somos-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 18px);
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.somos-banner__titulo {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 clamp(10px, 1.4vw, 18px);
  margin: 0;
  line-height: 1.05;
}

.somos-banner__titulo-linea {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.somos-banner__titulo-script {
  font-family: "Dear Script", cursive;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: capitalize;
  white-space: nowrap;
}

.somos-marca {
  text-transform: none;
}

.somos-banner__subtitulo {
  margin: 0;
  max-width: 640px;
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.somos-elegir {
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
  background-color: #ffffff;
}
.somos-elegir.container-fluid {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.somos-elegir__heading {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 clamp(28px, 4vw, 40px);
  line-height: 1.1;
  max-width: 100%;
}

.somos-elegir__heading-linea {
  font-size: clamp(20px, 2.15vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.15;
}

.somos-elegir__heading-script {
  font-family: "Dear Script", cursive;
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  margin-top: clamp(4px, 0.6vw, 10px);
  color: #FF8900;
  text-transform: lowercase;
}
.somos-elegir__heading-script .somos-marca {
  font-size: 0.78em;
  vertical-align: baseline;
}
.somos-elegir__heading-script .somos-elegir__heading-cap {
  text-transform: none;
}

.somos-elegir__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.somos-elegir__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 441px;
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  color: #ffffff;
  background-color: #FF8900;
  border-radius: 24px;
}

.somos-elegir__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
  width: 100%;
  text-align: center;
}

.somos-elegir__card-num-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 clamp(6px, 0.8vw, 10px);
  margin: 0;
  line-height: 1;
}

.somos-elegir__card-num {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.somos-elegir__card-num-suffix {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.somos-elegir__card-script {
  margin: 0;
  font-family: "Dear Script", cursive;
  font-size: clamp(33px, 3.2vw, 45px);
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.somos-elegir__card-texto {
  margin: clamp(8px, 1vw, 12px) 0 0;
  max-width: 240px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.45;
}

.somos-proyectos {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 5vw, 56px) 0 clamp(56px, 7vw, 80px);
  background-color: #ffffff;
  box-shadow: 0 6px 18px -10px rgba(16, 24, 40, 0.04), 0 14px 32px -18px rgba(16, 24, 40, 0.06);
}
.somos-proyectos.container-fluid {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.somos-proyectos__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0 clamp(32px, 4vw, 48px);
  line-height: 1.1;
  text-align: center;
}

.somos-proyectos__heading-linea {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}

.somos-proyectos__heading-script {
  font-family: "Dear Script", cursive;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: lowercase;
}

.somos-proyectos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
}

.somos-proyectos__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.8vw, 20px);
  text-decoration: none;
  color: inherit;
}

a.somos-proyectos__card {
  transition: transform 0.25s ease;
}
a.somos-proyectos__card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.somos-proyectos__media {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.somos-proyectos__img {
  display: block;
  width: auto;
  height: 461px;
  object-fit: cover;
}

.somos-proyectos__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
}

.somos-proyectos__titulo {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FF8900;
}

.somos-proyectos__detalle {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}

@media (max-width: 1339.98px) {
  #somosBanner {
    margin-top: 80px;
  }
}
@media (max-width: 1199.98px) {
  .somos-elegir__heading-linea {
    font-size: clamp(18px, 2vw, 26px);
  }
  .somos-elegir__heading-script {
    font-size: clamp(38px, 3.6vw, 48px);
    margin-top: clamp(4px, 0.5vw, 8px);
  }
  .somos-elegir__heading-script .somos-marca {
    font-size: 0.8em;
  }
}
@media (max-width: 991.98px) {
  .somos-banner__inner {
    background-image: url("../images/somos/banner/mobile/somos_banner_mobile.jpg");
  }
  .somos-banner__titulo {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .somos-banner__titulo-linea {
    font-size: clamp(22px, 5.5vw, 30px);
    white-space: normal;
  }
  .somos-banner__titulo-script {
    font-size: clamp(44px, 11vw, 64px);
    margin-top: -0.05em;
    white-space: normal;
  }
  .somos-banner__subtitulo {
    font-size: clamp(14px, 3.6vw, 17px);
    line-height: 1.5;
  }
  .somos-elegir__heading {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
  .somos-elegir__heading-linea {
    font-size: clamp(18px, 4.2vw, 24px);
  }
  .somos-elegir__heading-script {
    margin-top: clamp(2px, 0.8vw, 6px);
    font-size: clamp(32px, 7.5vw, 42px);
  }
  .somos-elegir__heading-script .somos-marca {
    font-size: 0.82em;
  }
  .somos-elegir__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin: 0 auto;
  }
  .somos-elegir__card {
    min-height: 220px;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .somos-elegir__card-num {
    font-size: clamp(44px, 12vw, 56px);
  }
  .somos-elegir__card-num-suffix {
    font-size: clamp(16px, 4.5vw, 20px);
  }
  .somos-elegir__card-script {
    font-size: clamp(26px, 7vw, 34px);
  }
  .somos-elegir__card-texto {
    max-width: 280px;
    font-size: 14px;
  }
  .somos-proyectos__heading-linea {
    font-size: clamp(20px, 5vw, 26px);
  }
  .somos-proyectos__heading-script {
    margin-top: -0.05em;
    font-size: clamp(40px, 11vw, 56px);
  }
  .somos-proyectos__grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 36px);
    max-width: 400px;
    margin: 0 auto;
  }
  .somos-proyectos__media {
    border-radius: 14px;
  }
  .somos-proyectos__titulo {
    font-size: clamp(15px, 4vw, 17px);
  }
  .somos-proyectos__detalle {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .somos-proyectos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .somos-banner__inner {
    background-position: center 35%;
  }
  .somos-banner__overlay {
    padding: 24px 20px;
  }
  .somos-banner__titulo-linea {
    font-size: clamp(24px, 7vw, 32px);
  }
  .somos-banner__titulo-script {
    font-size: clamp(40px, 12vw, 56px);
  }
  .somos-banner__subtitulo {
    max-width: 100%;
    font-size: 14px;
  }
  .somos-elegir__heading-linea {
    font-size: clamp(16px, 4.8vw, 22px);
  }
  .somos-elegir__heading-script {
    font-size: clamp(28px, 9vw, 36px);
    margin-top: 4px;
  }
  .somos-elegir__heading-script .somos-marca {
    font-size: 0.85em;
  }
  .somos-elegir__card-num-suffix {
    font-size: clamp(14px, 4.5vw, 20px);
  }
  .somos-elegir__card-texto {
    font-size: 14px;
  }
  .somos-elegir__grid {
    max-width: 100%;
  }
  .somos-proyectos__heading-linea {
    font-size: clamp(14px, 5vw, 26px);
  }
  .somos-proyectos__titulo {
    font-size: clamp(14px, 4vw, 17px);
  }
  .somos-proyectos__detalle {
    font-size: 14px;
  }
  .somos-proyectos__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.legal-banner {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.legal-banner.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.legal-banner__inner {
  position: relative;
  width: 100%;
  background-image: url("../images/legal/banner/legal_banner_desk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.legal-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.legal-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
  width: 100%;
}

.legal-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.legal-banner__titulo {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 clamp(10px, 1.4vw, 18px);
  margin: 0;
  line-height: 1.05;
}

.legal-banner__titulo-linea {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.legal-banner__titulo-script {
  font-family: "Dear Script", cursive;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: capitalize;
  white-space: nowrap;
}

@media (max-width: 1339.98px) {
  #legalBanner {
    margin-top: 80px;
  }
}
@media (max-width: 991.98px) {
  .legal-banner__inner {
    background-image: url("../images/legal/banner/mobile/legal_banner_mobile.jpg");
  }
  .legal-banner__titulo {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .legal-banner__titulo-linea {
    font-size: clamp(22px, 5.5vw, 30px);
    white-space: normal;
  }
  .legal-banner__titulo-script {
    font-size: clamp(44px, 11vw, 64px);
    margin-top: -0.05em;
    white-space: normal;
  }
}
.legal-prevencion {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
  background-color: #ffffff;
  box-shadow: 0 6px 18px -10px rgba(16, 24, 40, 0.04), 0 14px 32px -18px rgba(16, 24, 40, 0.06);
}
.legal-prevencion.container-fluid {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.legal-prevencion__layout {
  --bs-gutter-x: clamp(24px, 3vw, 40px);
  --bs-gutter-y: clamp(28px, 4vw, 40px);
  align-items: flex-start;
}

.legal-prevencion__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  line-height: 1.05;
}

.legal-prevencion__heading-linea {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.legal-prevencion__heading-script {
  margin-top: -0.08em;
  font-family: "Dear Script", cursive;
  font-size: clamp(48px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: lowercase;
}

.legal-prevencion__texto {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
}

.legal-prevencion__parrafo {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: #333333;
}

.legal-prevencion__acciones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.4vw, 16px);
  width: 100%;
}

.legal-prevencion__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  min-height: 52px;
  padding: 14px 20px;
  font-size: clamp(11px, 0.85vw, 12px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.legal-prevencion__btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.legal-prevencion__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.legal-prevencion__btn--negro {
  background-color: #000000;
}

.legal-prevencion__btn--naranja {
  background-color: #FF8900;
  box-shadow: 0 4px 14px rgba(255, 137, 0, 0.25);
}
.legal-prevencion__btn--naranja:hover {
  box-shadow: 0 6px 18px rgba(255, 137, 0, 0.35);
}

.legal-prevencion__btn-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.legal-prevencion__btn-icon-svg {
  display: block;
  width: 22px;
  height: 22px;
}

.legal-prevencion__btn-texto {
  flex: 1 1 auto;
  max-width: 18em;
}

@media (max-width: 991.98px) {
  .legal-prevencion__heading {
    align-items: center;
    text-align: center;
  }
  .legal-prevencion__heading-linea {
    font-size: clamp(20px, 5vw, 26px);
  }
  .legal-prevencion__heading-script {
    font-size: clamp(40px, 11vw, 56px);
  }
  .legal-prevencion__texto {
    max-width: 640px;
    margin: 0 auto;
  }
  .legal-prevencion__parrafo {
    text-align: left;
  }
  .legal-prevencion__acciones {
    max-width: 420px;
    margin: 0 auto;
  }
  .legal-prevencion__btn {
    min-height: 56px;
    padding: 16px 24px;
    font-size: clamp(11px, 2.8vw, 12px);
  }
}
@media (max-width: 767.98px) {
  .legal-banner__inner {
    background-position: center 35%;
  }
  .legal-banner__overlay {
    padding: 24px 20px;
  }
  .legal-banner__titulo-linea {
    font-size: clamp(24px, 7vw, 32px);
  }
  .legal-banner__titulo-script {
    font-size: clamp(40px, 12vw, 56px);
  }
  .legal-prevencion__heading-linea {
    font-size: clamp(16px, 5vw, 26px);
  }
  .legal-prevencion__parrafo {
    font-size: 16px;
  }
  .legal-prevencion__heading-script {
    font-size: clamp(45px, 11vw, 56px);
  }
  .legal-prevencion__btn {
    min-height: 58px;
    font-size: 14px;
  }
  .legal-prevencion__acciones {
    max-width: none;
  }
  .legal-prevencion__btn-texto {
    max-width: none;
  }
}
.contacto-main {
  background-color: #ffffff;
}

.contacto {
  position: relative;
  z-index: 1;
  padding: 0;
  background-color: #ffffff;
  box-shadow: 0 6px 18px -10px rgba(16, 24, 40, 0.04), 0 14px 32px -18px rgba(16, 24, 40, 0.06);
}
.contacto.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

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

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

.contacto__form-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 42px) clamp(56px, 7vw, 64px);
}

.contacto__titulo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
}

.contacto__titulo-linea {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.contacto__titulo-script {
  margin-top: -0.08em;
  font-family: "Dear Script", cursive;
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.9;
  color: #FF8900;
  text-transform: lowercase;
}

.contacto__form {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 18px);
}

.contacto__field {
  width: 100%;
}

.contacto__input {
  width: 100%;
  height: 52px;
  padding: 0 clamp(16px, 2vw, 20px);
  border: 1px solid #ececec;
  border-radius: 999px;
  background-color: #ffffff;
  color: #FF8900;
  font-size: clamp(14px, 1.05vw, 15px);
  font-weight: 500;
  outline: none;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.contacto__input::placeholder {
  color: #9a9a9a;
  opacity: 1;
}
.contacto__input:focus {
  border-color: #FF8900;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08), 0 0 0 3px rgba(255, 137, 0, 0.12);
}

.contacto__textarea {
  height: clamp(140px, 18vw, 180px);
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 2vw, 20px);
  border-radius: 20px;
  resize: none;
  line-height: 1.5;
}

.contacto__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: clamp(6px, 1vw, 10px);
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background-color: #000000;
  color: #ffffff;
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contacto__btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.contacto__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.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__form-wrap {
    padding-top: clamp(32px, 4vw, 48px);
    padding-bottom: clamp(32px, 4vw, 48px);
  }
}
@media (max-width: 991.98px) {
  .contacto {
    margin-top: 75px;
  }
  .contacto__row {
    min-height: auto;
  }
  .contacto__titulo {
    align-items: center;
    text-align: center;
  }
  .contacto__titulo-linea {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .contacto__titulo-script {
    font-size: clamp(40px, 11vw, 56px);
  }
  .contacto__form-wrap {
    max-width: 420px;
    padding: clamp(40px, 8vw, 60px) clamp(16px, 5vw, 24px) clamp(32px, 6vw, 48px);
  }
  .contacto__mapa {
    min-height: clamp(420px, 65vw, 680px);
  }
}
@media (max-width: 767.98px) {
  .contacto__titulo-linea {
    font-size: clamp(14px, 5vw, 26px);
  }
  .contacto__input,
  .contacto__textarea,
  .contacto__btn {
    font-size: 14px;
  }
  .contacto__form-wrap {
    width: 100%;
    max-width: none;
    padding-left: clamp(16px, 5vw, 20px);
    padding-right: clamp(16px, 5vw, 20px);
  }
  .contacto__mapa {
    min-height: 680px;
  }
}
/* BG COLORES */
.bg-blanco {
  background-color: #ffffff;
}

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

.bg-gris {
  background-color: #333333;
}

.bg-naranja {
  background-color: #FF8900;
}

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

.negro {
  color: #000000;
}

.gris {
  color: #333333;
}

.naranja {
  color: #FF8900;
}

.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;
}

.lh-1 {
  line-height: 1px;
}

.lh-2 {
  line-height: 2px;
}

.lh-3 {
  line-height: 3px;
}

.lh-4 {
  line-height: 4px;
}

.lh-5 {
  line-height: 5px;
}

.lh-6 {
  line-height: 6px;
}

.lh-7 {
  line-height: 7px;
}

.lh-8 {
  line-height: 8px;
}

.lh-9 {
  line-height: 9px;
}

.lh-10 {
  line-height: 10px;
}

.lh-11 {
  line-height: 11px;
}

.lh-12 {
  line-height: 12px;
}

.lh-13 {
  line-height: 13px;
}

.lh-14 {
  line-height: 14px;
}

.lh-15 {
  line-height: 15px;
}

.lh-16 {
  line-height: 16px;
}

.lh-17 {
  line-height: 17px;
}

.lh-18 {
  line-height: 18px;
}

.lh-19 {
  line-height: 19px;
}

.lh-20 {
  line-height: 20px;
}

.lh-21 {
  line-height: 21px;
}

.lh-22 {
  line-height: 22px;
}

.lh-23 {
  line-height: 23px;
}

.lh-24 {
  line-height: 24px;
}

.lh-25 {
  line-height: 25px;
}

.lh-26 {
  line-height: 26px;
}

.lh-27 {
  line-height: 27px;
}

.lh-28 {
  line-height: 28px;
}

.lh-29 {
  line-height: 29px;
}

.lh-30 {
  line-height: 30px;
}

.lh-31 {
  line-height: 31px;
}

.lh-32 {
  line-height: 32px;
}

.lh-33 {
  line-height: 33px;
}

.lh-34 {
  line-height: 34px;
}

.lh-35 {
  line-height: 35px;
}

.lh-36 {
  line-height: 36px;
}

.lh-37 {
  line-height: 37px;
}

.lh-38 {
  line-height: 38px;
}

.lh-39 {
  line-height: 39px;
}

.lh-40 {
  line-height: 40px;
}

.lh-41 {
  line-height: 41px;
}

.lh-42 {
  line-height: 42px;
}

.lh-43 {
  line-height: 43px;
}

.lh-44 {
  line-height: 44px;
}

.lh-45 {
  line-height: 45px;
}

.lh-46 {
  line-height: 46px;
}

.lh-47 {
  line-height: 47px;
}

.lh-48 {
  line-height: 48px;
}

.lh-49 {
  line-height: 49px;
}

.lh-50 {
  line-height: 50px;
}

.lh-51 {
  line-height: 51px;
}

.lh-52 {
  line-height: 52px;
}

.lh-53 {
  line-height: 53px;
}

.lh-54 {
  line-height: 54px;
}

.lh-55 {
  line-height: 55px;
}

.lh-56 {
  line-height: 56px;
}

.lh-57 {
  line-height: 57px;
}

.lh-58 {
  line-height: 58px;
}

.lh-59 {
  line-height: 59px;
}

.lh-60 {
  line-height: 60px;
}

.lh-61 {
  line-height: 61px;
}

.lh-62 {
  line-height: 62px;
}

.lh-63 {
  line-height: 63px;
}

.lh-64 {
  line-height: 64px;
}

.lh-65 {
  line-height: 65px;
}

.lh-66 {
  line-height: 66px;
}

.lh-67 {
  line-height: 67px;
}

.lh-68 {
  line-height: 68px;
}

.lh-69 {
  line-height: 69px;
}

.lh-70 {
  line-height: 70px;
}

.lh-71 {
  line-height: 71px;
}

.lh-72 {
  line-height: 72px;
}

.lh-73 {
  line-height: 73px;
}

.lh-74 {
  line-height: 74px;
}

.lh-75 {
  line-height: 75px;
}

.lh-76 {
  line-height: 76px;
}

.lh-77 {
  line-height: 77px;
}

.lh-78 {
  line-height: 78px;
}

.lh-79 {
  line-height: 79px;
}

.lh-80 {
  line-height: 80px;
}

.lh-81 {
  line-height: 81px;
}

.lh-82 {
  line-height: 82px;
}

.lh-83 {
  line-height: 83px;
}

.lh-84 {
  line-height: 84px;
}

.lh-85 {
  line-height: 85px;
}

.lh-86 {
  line-height: 86px;
}

.lh-87 {
  line-height: 87px;
}

.lh-88 {
  line-height: 88px;
}

.lh-89 {
  line-height: 89px;
}

.lh-90 {
  line-height: 90px;
}

.lh-91 {
  line-height: 91px;
}

.lh-92 {
  line-height: 92px;
}

.lh-93 {
  line-height: 93px;
}

.lh-94 {
  line-height: 94px;
}

.lh-95 {
  line-height: 95px;
}

.lh-96 {
  line-height: 96px;
}

.lh-97 {
  line-height: 97px;
}

.lh-98 {
  line-height: 98px;
}

.lh-99 {
  line-height: 99px;
}

.lh-100 {
  line-height: 100px;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.ls-4 {
  letter-spacing: 4px;
}

.ls-5 {
  letter-spacing: 5px;
}

.ls-6 {
  letter-spacing: 6px;
}

.ls-7 {
  letter-spacing: 7px;
}

.ls-8 {
  letter-spacing: 8px;
}

.ls-9 {
  letter-spacing: 9px;
}

.ls-10 {
  letter-spacing: 10px;
}

.ls-11 {
  letter-spacing: 11px;
}

.ls-12 {
  letter-spacing: 12px;
}

.ls-13 {
  letter-spacing: 13px;
}

.ls-14 {
  letter-spacing: 14px;
}

.ls-15 {
  letter-spacing: 15px;
}

.ls-16 {
  letter-spacing: 16px;
}

.ls-17 {
  letter-spacing: 17px;
}

.ls-18 {
  letter-spacing: 18px;
}

.ls-19 {
  letter-spacing: 19px;
}

.ls-20 {
  letter-spacing: 20px;
}

.ls-21 {
  letter-spacing: 21px;
}

.ls-22 {
  letter-spacing: 22px;
}

.ls-23 {
  letter-spacing: 23px;
}

.ls-24 {
  letter-spacing: 24px;
}

.ls-25 {
  letter-spacing: 25px;
}

.ls-26 {
  letter-spacing: 26px;
}

.ls-27 {
  letter-spacing: 27px;
}

.ls-28 {
  letter-spacing: 28px;
}

.ls-29 {
  letter-spacing: 29px;
}

.ls-30 {
  letter-spacing: 30px;
}

.ls-31 {
  letter-spacing: 31px;
}

.ls-32 {
  letter-spacing: 32px;
}

.ls-33 {
  letter-spacing: 33px;
}

.ls-34 {
  letter-spacing: 34px;
}

.ls-35 {
  letter-spacing: 35px;
}

.ls-36 {
  letter-spacing: 36px;
}

.ls-37 {
  letter-spacing: 37px;
}

.ls-38 {
  letter-spacing: 38px;
}

.ls-39 {
  letter-spacing: 39px;
}

.ls-40 {
  letter-spacing: 40px;
}

.ls-41 {
  letter-spacing: 41px;
}

.ls-42 {
  letter-spacing: 42px;
}

.ls-43 {
  letter-spacing: 43px;
}

.ls-44 {
  letter-spacing: 44px;
}

.ls-45 {
  letter-spacing: 45px;
}

.ls-46 {
  letter-spacing: 46px;
}

.ls-47 {
  letter-spacing: 47px;
}

.ls-48 {
  letter-spacing: 48px;
}

.ls-49 {
  letter-spacing: 49px;
}

.ls-50 {
  letter-spacing: 50px;
}

.ls-51 {
  letter-spacing: 51px;
}

.ls-52 {
  letter-spacing: 52px;
}

.ls-53 {
  letter-spacing: 53px;
}

.ls-54 {
  letter-spacing: 54px;
}

.ls-55 {
  letter-spacing: 55px;
}

.ls-56 {
  letter-spacing: 56px;
}

.ls-57 {
  letter-spacing: 57px;
}

.ls-58 {
  letter-spacing: 58px;
}

.ls-59 {
  letter-spacing: 59px;
}

.ls-60 {
  letter-spacing: 60px;
}

.ls-61 {
  letter-spacing: 61px;
}

.ls-62 {
  letter-spacing: 62px;
}

.ls-63 {
  letter-spacing: 63px;
}

.ls-64 {
  letter-spacing: 64px;
}

.ls-65 {
  letter-spacing: 65px;
}

.ls-66 {
  letter-spacing: 66px;
}

.ls-67 {
  letter-spacing: 67px;
}

.ls-68 {
  letter-spacing: 68px;
}

.ls-69 {
  letter-spacing: 69px;
}

.ls-70 {
  letter-spacing: 70px;
}

.ls-71 {
  letter-spacing: 71px;
}

.ls-72 {
  letter-spacing: 72px;
}

.ls-73 {
  letter-spacing: 73px;
}

.ls-74 {
  letter-spacing: 74px;
}

.ls-75 {
  letter-spacing: 75px;
}

.ls-76 {
  letter-spacing: 76px;
}

.ls-77 {
  letter-spacing: 77px;
}

.ls-78 {
  letter-spacing: 78px;
}

.ls-79 {
  letter-spacing: 79px;
}

.ls-80 {
  letter-spacing: 80px;
}

.ls-81 {
  letter-spacing: 81px;
}

.ls-82 {
  letter-spacing: 82px;
}

.ls-83 {
  letter-spacing: 83px;
}

.ls-84 {
  letter-spacing: 84px;
}

.ls-85 {
  letter-spacing: 85px;
}

.ls-86 {
  letter-spacing: 86px;
}

.ls-87 {
  letter-spacing: 87px;
}

.ls-88 {
  letter-spacing: 88px;
}

.ls-89 {
  letter-spacing: 89px;
}

.ls-90 {
  letter-spacing: 90px;
}

.ls-91 {
  letter-spacing: 91px;
}

.ls-92 {
  letter-spacing: 92px;
}

.ls-93 {
  letter-spacing: 93px;
}

.ls-94 {
  letter-spacing: 94px;
}

.ls-95 {
  letter-spacing: 95px;
}

.ls-96 {
  letter-spacing: 96px;
}

.ls-97 {
  letter-spacing: 97px;
}

.ls-98 {
  letter-spacing: 98px;
}

.ls-99 {
  letter-spacing: 99px;
}

.ls-100 {
  letter-spacing: 100px;
}

/* WITDH 5% */
.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;
}

.size0 {
  font-size: 0px;
}

.size1 {
  font-size: 1px;
}

.size2 {
  font-size: 2px;
}

.size3 {
  font-size: 3px;
}

.size4 {
  font-size: 4px;
}

.size5 {
  font-size: 5px;
}

.size6 {
  font-size: 6px;
}

.size7 {
  font-size: 7px;
}

.size8 {
  font-size: 8px;
}

.size9 {
  font-size: 9px;
}

.size10 {
  font-size: 10px;
}

.size11 {
  font-size: 11px;
}

.size12 {
  font-size: 12px;
}

.size13 {
  font-size: 13px;
}

.size14 {
  font-size: 14px;
}

.size15 {
  font-size: 15px;
}

.size16 {
  font-size: 16px;
}

.size17 {
  font-size: 17px;
}

.size18 {
  font-size: 18px;
}

.size19 {
  font-size: 19px;
}

.size20 {
  font-size: 20px;
}

.size21 {
  font-size: 21px;
}

.size22 {
  font-size: 22px;
}

.size23 {
  font-size: 23px;
}

.size24 {
  font-size: 24px;
}

.size25 {
  font-size: 25px;
}

.size26 {
  font-size: 26px;
}

.size27 {
  font-size: 27px;
}

.size28 {
  font-size: 28px;
}

.size29 {
  font-size: 29px;
}

.size30 {
  font-size: 30px;
}

.size31 {
  font-size: 31px;
}

.size32 {
  font-size: 32px;
}

.size33 {
  font-size: 33px;
}

.size34 {
  font-size: 34px;
}

.size35 {
  font-size: 35px;
}

.size36 {
  font-size: 36px;
}

.size37 {
  font-size: 37px;
}

.size38 {
  font-size: 38px;
}

.size39 {
  font-size: 39px;
}

.size40 {
  font-size: 40px;
}

.size41 {
  font-size: 41px;
}

.size42 {
  font-size: 42px;
}

.size43 {
  font-size: 43px;
}

.size44 {
  font-size: 44px;
}

.size45 {
  font-size: 45px;
}

.size46 {
  font-size: 46px;
}

.size47 {
  font-size: 47px;
}

.size48 {
  font-size: 48px;
}

.size49 {
  font-size: 49px;
}

.size50 {
  font-size: 50px;
}

.size51 {
  font-size: 51px;
}

.size52 {
  font-size: 52px;
}

.size53 {
  font-size: 53px;
}

.size54 {
  font-size: 54px;
}

.size55 {
  font-size: 55px;
}

.size56 {
  font-size: 56px;
}

.size57 {
  font-size: 57px;
}

.size58 {
  font-size: 58px;
}

.size59 {
  font-size: 59px;
}

.size60 {
  font-size: 60px;
}

.size61 {
  font-size: 61px;
}

.size62 {
  font-size: 62px;
}

.size63 {
  font-size: 63px;
}

.size64 {
  font-size: 64px;
}

.size65 {
  font-size: 65px;
}

.size66 {
  font-size: 66px;
}

.size67 {
  font-size: 67px;
}

.size68 {
  font-size: 68px;
}

.size69 {
  font-size: 69px;
}

.size70 {
  font-size: 70px;
}

.size71 {
  font-size: 71px;
}

.size72 {
  font-size: 72px;
}

.size73 {
  font-size: 73px;
}

.size74 {
  font-size: 74px;
}

.size75 {
  font-size: 75px;
}

.size76 {
  font-size: 76px;
}

.size77 {
  font-size: 77px;
}

.size78 {
  font-size: 78px;
}

.size79 {
  font-size: 79px;
}

.size80 {
  font-size: 80px;
}

.size81 {
  font-size: 81px;
}

.size82 {
  font-size: 82px;
}

.size83 {
  font-size: 83px;
}

.size84 {
  font-size: 84px;
}

.size85 {
  font-size: 85px;
}

.size86 {
  font-size: 86px;
}

.size87 {
  font-size: 87px;
}

.size88 {
  font-size: 88px;
}

.size89 {
  font-size: 89px;
}

.size90 {
  font-size: 90px;
}

.size91 {
  font-size: 91px;
}

.size92 {
  font-size: 92px;
}

.size93 {
  font-size: 93px;
}

.size94 {
  font-size: 94px;
}

.size95 {
  font-size: 95px;
}

.size96 {
  font-size: 96px;
}

.size97 {
  font-size: 97px;
}

.size98 {
  font-size: 98px;
}

.size99 {
  font-size: 99px;
}

.size100 {
  font-size: 100px;
}

.size101 {
  font-size: 101px;
}

.size102 {
  font-size: 102px;
}

.size103 {
  font-size: 103px;
}

.size104 {
  font-size: 104px;
}

.size105 {
  font-size: 105px;
}

.size106 {
  font-size: 106px;
}

.size107 {
  font-size: 107px;
}

.size108 {
  font-size: 108px;
}

.size109 {
  font-size: 109px;
}

.size110 {
  font-size: 110px;
}

.size111 {
  font-size: 111px;
}

.size112 {
  font-size: 112px;
}

.size113 {
  font-size: 113px;
}

.size114 {
  font-size: 114px;
}

.size115 {
  font-size: 115px;
}

.size116 {
  font-size: 116px;
}

.size117 {
  font-size: 117px;
}

.size118 {
  font-size: 118px;
}

.size119 {
  font-size: 119px;
}

.size120 {
  font-size: 120px;
}

.size121 {
  font-size: 121px;
}

.size122 {
  font-size: 122px;
}

.size123 {
  font-size: 123px;
}

.size124 {
  font-size: 124px;
}

.size125 {
  font-size: 125px;
}

.size126 {
  font-size: 126px;
}

.size127 {
  font-size: 127px;
}

.size128 {
  font-size: 128px;
}

.size129 {
  font-size: 129px;
}

.size130 {
  font-size: 130px;
}

.size131 {
  font-size: 131px;
}

.size132 {
  font-size: 132px;
}

.size133 {
  font-size: 133px;
}

.size134 {
  font-size: 134px;
}

.size135 {
  font-size: 135px;
}

.size136 {
  font-size: 136px;
}

.size137 {
  font-size: 137px;
}

.size138 {
  font-size: 138px;
}

.size139 {
  font-size: 139px;
}

.size140 {
  font-size: 140px;
}

.size141 {
  font-size: 141px;
}

.size142 {
  font-size: 142px;
}

.size143 {
  font-size: 143px;
}

.size144 {
  font-size: 144px;
}

.size145 {
  font-size: 145px;
}

.size146 {
  font-size: 146px;
}

.size147 {
  font-size: 147px;
}

.size148 {
  font-size: 148px;
}

.size149 {
  font-size: 149px;
}

.size150 {
  font-size: 150px;
}

.size151 {
  font-size: 151px;
}

.size152 {
  font-size: 152px;
}

.size153 {
  font-size: 153px;
}

.size154 {
  font-size: 154px;
}

.size155 {
  font-size: 155px;
}

.size156 {
  font-size: 156px;
}

.size157 {
  font-size: 157px;
}

.size158 {
  font-size: 158px;
}

.size159 {
  font-size: 159px;
}

.size160 {
  font-size: 160px;
}

.size161 {
  font-size: 161px;
}

.size162 {
  font-size: 162px;
}

.size163 {
  font-size: 163px;
}

.size164 {
  font-size: 164px;
}

.size165 {
  font-size: 165px;
}

.size166 {
  font-size: 166px;
}

.size167 {
  font-size: 167px;
}

.size168 {
  font-size: 168px;
}

.size169 {
  font-size: 169px;
}

.size170 {
  font-size: 170px;
}

.size171 {
  font-size: 171px;
}

.size172 {
  font-size: 172px;
}

.size173 {
  font-size: 173px;
}

.size174 {
  font-size: 174px;
}

.size175 {
  font-size: 175px;
}

.size176 {
  font-size: 176px;
}

.size177 {
  font-size: 177px;
}

.size178 {
  font-size: 178px;
}

.size179 {
  font-size: 179px;
}

.size180 {
  font-size: 180px;
}

.size181 {
  font-size: 181px;
}

.size182 {
  font-size: 182px;
}

.size183 {
  font-size: 183px;
}

.size184 {
  font-size: 184px;
}

.size185 {
  font-size: 185px;
}

.size186 {
  font-size: 186px;
}

.size187 {
  font-size: 187px;
}

.size188 {
  font-size: 188px;
}

.size189 {
  font-size: 189px;
}

.size190 {
  font-size: 190px;
}

.size191 {
  font-size: 191px;
}

.size192 {
  font-size: 192px;
}

.size193 {
  font-size: 193px;
}

.size194 {
  font-size: 194px;
}

.size195 {
  font-size: 195px;
}

.size196 {
  font-size: 196px;
}

.size197 {
  font-size: 197px;
}

.size198 {
  font-size: 198px;
}

.size199 {
  font-size: 199px;
}

.size200 {
  font-size: 200px;
}

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

.mr0 {
  margin-right: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mt1 {
  margin-top: 1px;
}

.mr1 {
  margin-right: 1px;
}

.mb1 {
  margin-bottom: 1px;
}

.ml1 {
  margin-left: 1px;
}

.mt2 {
  margin-top: 2px;
}

.mr2 {
  margin-right: 2px;
}

.mb2 {
  margin-bottom: 2px;
}

.ml2 {
  margin-left: 2px;
}

.mt3 {
  margin-top: 3px;
}

.mr3 {
  margin-right: 3px;
}

.mb3 {
  margin-bottom: 3px;
}

.ml3 {
  margin-left: 3px;
}

.mt4 {
  margin-top: 4px;
}

.mr4 {
  margin-right: 4px;
}

.mb4 {
  margin-bottom: 4px;
}

.ml4 {
  margin-left: 4px;
}

.mt5 {
  margin-top: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mt6 {
  margin-top: 6px;
}

.mr6 {
  margin-right: 6px;
}

.mb6 {
  margin-bottom: 6px;
}

.ml6 {
  margin-left: 6px;
}

.mt7 {
  margin-top: 7px;
}

.mr7 {
  margin-right: 7px;
}

.mb7 {
  margin-bottom: 7px;
}

.ml7 {
  margin-left: 7px;
}

.mt8 {
  margin-top: 8px;
}

.mr8 {
  margin-right: 8px;
}

.mb8 {
  margin-bottom: 8px;
}

.ml8 {
  margin-left: 8px;
}

.mt9 {
  margin-top: 9px;
}

.mr9 {
  margin-right: 9px;
}

.mb9 {
  margin-bottom: 9px;
}

.ml9 {
  margin-left: 9px;
}

.mt10 {
  margin-top: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mt11 {
  margin-top: 11px;
}

.mr11 {
  margin-right: 11px;
}

.mb11 {
  margin-bottom: 11px;
}

.ml11 {
  margin-left: 11px;
}

.mt12 {
  margin-top: 12px;
}

.mr12 {
  margin-right: 12px;
}

.mb12 {
  margin-bottom: 12px;
}

.ml12 {
  margin-left: 12px;
}

.mt13 {
  margin-top: 13px;
}

.mr13 {
  margin-right: 13px;
}

.mb13 {
  margin-bottom: 13px;
}

.ml13 {
  margin-left: 13px;
}

.mt14 {
  margin-top: 14px;
}

.mr14 {
  margin-right: 14px;
}

.mb14 {
  margin-bottom: 14px;
}

.ml14 {
  margin-left: 14px;
}

.mt15 {
  margin-top: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mt16 {
  margin-top: 16px;
}

.mr16 {
  margin-right: 16px;
}

.mb16 {
  margin-bottom: 16px;
}

.ml16 {
  margin-left: 16px;
}

.mt17 {
  margin-top: 17px;
}

.mr17 {
  margin-right: 17px;
}

.mb17 {
  margin-bottom: 17px;
}

.ml17 {
  margin-left: 17px;
}

.mt18 {
  margin-top: 18px;
}

.mr18 {
  margin-right: 18px;
}

.mb18 {
  margin-bottom: 18px;
}

.ml18 {
  margin-left: 18px;
}

.mt19 {
  margin-top: 19px;
}

.mr19 {
  margin-right: 19px;
}

.mb19 {
  margin-bottom: 19px;
}

.ml19 {
  margin-left: 19px;
}

.mt20 {
  margin-top: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mt21 {
  margin-top: 21px;
}

.mr21 {
  margin-right: 21px;
}

.mb21 {
  margin-bottom: 21px;
}

.ml21 {
  margin-left: 21px;
}

.mt22 {
  margin-top: 22px;
}

.mr22 {
  margin-right: 22px;
}

.mb22 {
  margin-bottom: 22px;
}

.ml22 {
  margin-left: 22px;
}

.mt23 {
  margin-top: 23px;
}

.mr23 {
  margin-right: 23px;
}

.mb23 {
  margin-bottom: 23px;
}

.ml23 {
  margin-left: 23px;
}

.mt24 {
  margin-top: 24px;
}

.mr24 {
  margin-right: 24px;
}

.mb24 {
  margin-bottom: 24px;
}

.ml24 {
  margin-left: 24px;
}

.mt25 {
  margin-top: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mt26 {
  margin-top: 26px;
}

.mr26 {
  margin-right: 26px;
}

.mb26 {
  margin-bottom: 26px;
}

.ml26 {
  margin-left: 26px;
}

.mt27 {
  margin-top: 27px;
}

.mr27 {
  margin-right: 27px;
}

.mb27 {
  margin-bottom: 27px;
}

.ml27 {
  margin-left: 27px;
}

.mt28 {
  margin-top: 28px;
}

.mr28 {
  margin-right: 28px;
}

.mb28 {
  margin-bottom: 28px;
}

.ml28 {
  margin-left: 28px;
}

.mt29 {
  margin-top: 29px;
}

.mr29 {
  margin-right: 29px;
}

.mb29 {
  margin-bottom: 29px;
}

.ml29 {
  margin-left: 29px;
}

.mt30 {
  margin-top: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mt31 {
  margin-top: 31px;
}

.mr31 {
  margin-right: 31px;
}

.mb31 {
  margin-bottom: 31px;
}

.ml31 {
  margin-left: 31px;
}

.mt32 {
  margin-top: 32px;
}

.mr32 {
  margin-right: 32px;
}

.mb32 {
  margin-bottom: 32px;
}

.ml32 {
  margin-left: 32px;
}

.mt33 {
  margin-top: 33px;
}

.mr33 {
  margin-right: 33px;
}

.mb33 {
  margin-bottom: 33px;
}

.ml33 {
  margin-left: 33px;
}

.mt34 {
  margin-top: 34px;
}

.mr34 {
  margin-right: 34px;
}

.mb34 {
  margin-bottom: 34px;
}

.ml34 {
  margin-left: 34px;
}

.mt35 {
  margin-top: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mt36 {
  margin-top: 36px;
}

.mr36 {
  margin-right: 36px;
}

.mb36 {
  margin-bottom: 36px;
}

.ml36 {
  margin-left: 36px;
}

.mt37 {
  margin-top: 37px;
}

.mr37 {
  margin-right: 37px;
}

.mb37 {
  margin-bottom: 37px;
}

.ml37 {
  margin-left: 37px;
}

.mt38 {
  margin-top: 38px;
}

.mr38 {
  margin-right: 38px;
}

.mb38 {
  margin-bottom: 38px;
}

.ml38 {
  margin-left: 38px;
}

.mt39 {
  margin-top: 39px;
}

.mr39 {
  margin-right: 39px;
}

.mb39 {
  margin-bottom: 39px;
}

.ml39 {
  margin-left: 39px;
}

.mt40 {
  margin-top: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mt41 {
  margin-top: 41px;
}

.mr41 {
  margin-right: 41px;
}

.mb41 {
  margin-bottom: 41px;
}

.ml41 {
  margin-left: 41px;
}

.mt42 {
  margin-top: 42px;
}

.mr42 {
  margin-right: 42px;
}

.mb42 {
  margin-bottom: 42px;
}

.ml42 {
  margin-left: 42px;
}

.mt43 {
  margin-top: 43px;
}

.mr43 {
  margin-right: 43px;
}

.mb43 {
  margin-bottom: 43px;
}

.ml43 {
  margin-left: 43px;
}

.mt44 {
  margin-top: 44px;
}

.mr44 {
  margin-right: 44px;
}

.mb44 {
  margin-bottom: 44px;
}

.ml44 {
  margin-left: 44px;
}

.mt45 {
  margin-top: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mt46 {
  margin-top: 46px;
}

.mr46 {
  margin-right: 46px;
}

.mb46 {
  margin-bottom: 46px;
}

.ml46 {
  margin-left: 46px;
}

.mt47 {
  margin-top: 47px;
}

.mr47 {
  margin-right: 47px;
}

.mb47 {
  margin-bottom: 47px;
}

.ml47 {
  margin-left: 47px;
}

.mt48 {
  margin-top: 48px;
}

.mr48 {
  margin-right: 48px;
}

.mb48 {
  margin-bottom: 48px;
}

.ml48 {
  margin-left: 48px;
}

.mt49 {
  margin-top: 49px;
}

.mr49 {
  margin-right: 49px;
}

.mb49 {
  margin-bottom: 49px;
}

.ml49 {
  margin-left: 49px;
}

.mt50 {
  margin-top: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mt51 {
  margin-top: 51px;
}

.mr51 {
  margin-right: 51px;
}

.mb51 {
  margin-bottom: 51px;
}

.ml51 {
  margin-left: 51px;
}

.mt52 {
  margin-top: 52px;
}

.mr52 {
  margin-right: 52px;
}

.mb52 {
  margin-bottom: 52px;
}

.ml52 {
  margin-left: 52px;
}

.mt53 {
  margin-top: 53px;
}

.mr53 {
  margin-right: 53px;
}

.mb53 {
  margin-bottom: 53px;
}

.ml53 {
  margin-left: 53px;
}

.mt54 {
  margin-top: 54px;
}

.mr54 {
  margin-right: 54px;
}

.mb54 {
  margin-bottom: 54px;
}

.ml54 {
  margin-left: 54px;
}

.mt55 {
  margin-top: 55px;
}

.mr55 {
  margin-right: 55px;
}

.mb55 {
  margin-bottom: 55px;
}

.ml55 {
  margin-left: 55px;
}

.mt56 {
  margin-top: 56px;
}

.mr56 {
  margin-right: 56px;
}

.mb56 {
  margin-bottom: 56px;
}

.ml56 {
  margin-left: 56px;
}

.mt57 {
  margin-top: 57px;
}

.mr57 {
  margin-right: 57px;
}

.mb57 {
  margin-bottom: 57px;
}

.ml57 {
  margin-left: 57px;
}

.mt58 {
  margin-top: 58px;
}

.mr58 {
  margin-right: 58px;
}

.mb58 {
  margin-bottom: 58px;
}

.ml58 {
  margin-left: 58px;
}

.mt59 {
  margin-top: 59px;
}

.mr59 {
  margin-right: 59px;
}

.mb59 {
  margin-bottom: 59px;
}

.ml59 {
  margin-left: 59px;
}

.mt60 {
  margin-top: 60px;
}

.mr60 {
  margin-right: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.ml60 {
  margin-left: 60px;
}

.mt61 {
  margin-top: 61px;
}

.mr61 {
  margin-right: 61px;
}

.mb61 {
  margin-bottom: 61px;
}

.ml61 {
  margin-left: 61px;
}

.mt62 {
  margin-top: 62px;
}

.mr62 {
  margin-right: 62px;
}

.mb62 {
  margin-bottom: 62px;
}

.ml62 {
  margin-left: 62px;
}

.mt63 {
  margin-top: 63px;
}

.mr63 {
  margin-right: 63px;
}

.mb63 {
  margin-bottom: 63px;
}

.ml63 {
  margin-left: 63px;
}

.mt64 {
  margin-top: 64px;
}

.mr64 {
  margin-right: 64px;
}

.mb64 {
  margin-bottom: 64px;
}

.ml64 {
  margin-left: 64px;
}

.mt65 {
  margin-top: 65px;
}

.mr65 {
  margin-right: 65px;
}

.mb65 {
  margin-bottom: 65px;
}

.ml65 {
  margin-left: 65px;
}

.mt66 {
  margin-top: 66px;
}

.mr66 {
  margin-right: 66px;
}

.mb66 {
  margin-bottom: 66px;
}

.ml66 {
  margin-left: 66px;
}

.mt67 {
  margin-top: 67px;
}

.mr67 {
  margin-right: 67px;
}

.mb67 {
  margin-bottom: 67px;
}

.ml67 {
  margin-left: 67px;
}

.mt68 {
  margin-top: 68px;
}

.mr68 {
  margin-right: 68px;
}

.mb68 {
  margin-bottom: 68px;
}

.ml68 {
  margin-left: 68px;
}

.mt69 {
  margin-top: 69px;
}

.mr69 {
  margin-right: 69px;
}

.mb69 {
  margin-bottom: 69px;
}

.ml69 {
  margin-left: 69px;
}

.mt70 {
  margin-top: 70px;
}

.mr70 {
  margin-right: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.ml70 {
  margin-left: 70px;
}

.mt71 {
  margin-top: 71px;
}

.mr71 {
  margin-right: 71px;
}

.mb71 {
  margin-bottom: 71px;
}

.ml71 {
  margin-left: 71px;
}

.mt72 {
  margin-top: 72px;
}

.mr72 {
  margin-right: 72px;
}

.mb72 {
  margin-bottom: 72px;
}

.ml72 {
  margin-left: 72px;
}

.mt73 {
  margin-top: 73px;
}

.mr73 {
  margin-right: 73px;
}

.mb73 {
  margin-bottom: 73px;
}

.ml73 {
  margin-left: 73px;
}

.mt74 {
  margin-top: 74px;
}

.mr74 {
  margin-right: 74px;
}

.mb74 {
  margin-bottom: 74px;
}

.ml74 {
  margin-left: 74px;
}

.mt75 {
  margin-top: 75px;
}

.mr75 {
  margin-right: 75px;
}

.mb75 {
  margin-bottom: 75px;
}

.ml75 {
  margin-left: 75px;
}

.mt76 {
  margin-top: 76px;
}

.mr76 {
  margin-right: 76px;
}

.mb76 {
  margin-bottom: 76px;
}

.ml76 {
  margin-left: 76px;
}

.mt77 {
  margin-top: 77px;
}

.mr77 {
  margin-right: 77px;
}

.mb77 {
  margin-bottom: 77px;
}

.ml77 {
  margin-left: 77px;
}

.mt78 {
  margin-top: 78px;
}

.mr78 {
  margin-right: 78px;
}

.mb78 {
  margin-bottom: 78px;
}

.ml78 {
  margin-left: 78px;
}

.mt79 {
  margin-top: 79px;
}

.mr79 {
  margin-right: 79px;
}

.mb79 {
  margin-bottom: 79px;
}

.ml79 {
  margin-left: 79px;
}

.mt80 {
  margin-top: 80px;
}

.mr80 {
  margin-right: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.ml80 {
  margin-left: 80px;
}

.mt81 {
  margin-top: 81px;
}

.mr81 {
  margin-right: 81px;
}

.mb81 {
  margin-bottom: 81px;
}

.ml81 {
  margin-left: 81px;
}

.mt82 {
  margin-top: 82px;
}

.mr82 {
  margin-right: 82px;
}

.mb82 {
  margin-bottom: 82px;
}

.ml82 {
  margin-left: 82px;
}

.mt83 {
  margin-top: 83px;
}

.mr83 {
  margin-right: 83px;
}

.mb83 {
  margin-bottom: 83px;
}

.ml83 {
  margin-left: 83px;
}

.mt84 {
  margin-top: 84px;
}

.mr84 {
  margin-right: 84px;
}

.mb84 {
  margin-bottom: 84px;
}

.ml84 {
  margin-left: 84px;
}

.mt85 {
  margin-top: 85px;
}

.mr85 {
  margin-right: 85px;
}

.mb85 {
  margin-bottom: 85px;
}

.ml85 {
  margin-left: 85px;
}

.mt86 {
  margin-top: 86px;
}

.mr86 {
  margin-right: 86px;
}

.mb86 {
  margin-bottom: 86px;
}

.ml86 {
  margin-left: 86px;
}

.mt87 {
  margin-top: 87px;
}

.mr87 {
  margin-right: 87px;
}

.mb87 {
  margin-bottom: 87px;
}

.ml87 {
  margin-left: 87px;
}

.mt88 {
  margin-top: 88px;
}

.mr88 {
  margin-right: 88px;
}

.mb88 {
  margin-bottom: 88px;
}

.ml88 {
  margin-left: 88px;
}

.mt89 {
  margin-top: 89px;
}

.mr89 {
  margin-right: 89px;
}

.mb89 {
  margin-bottom: 89px;
}

.ml89 {
  margin-left: 89px;
}

.mt90 {
  margin-top: 90px;
}

.mr90 {
  margin-right: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.ml90 {
  margin-left: 90px;
}

.mt91 {
  margin-top: 91px;
}

.mr91 {
  margin-right: 91px;
}

.mb91 {
  margin-bottom: 91px;
}

.ml91 {
  margin-left: 91px;
}

.mt92 {
  margin-top: 92px;
}

.mr92 {
  margin-right: 92px;
}

.mb92 {
  margin-bottom: 92px;
}

.ml92 {
  margin-left: 92px;
}

.mt93 {
  margin-top: 93px;
}

.mr93 {
  margin-right: 93px;
}

.mb93 {
  margin-bottom: 93px;
}

.ml93 {
  margin-left: 93px;
}

.mt94 {
  margin-top: 94px;
}

.mr94 {
  margin-right: 94px;
}

.mb94 {
  margin-bottom: 94px;
}

.ml94 {
  margin-left: 94px;
}

.mt95 {
  margin-top: 95px;
}

.mr95 {
  margin-right: 95px;
}

.mb95 {
  margin-bottom: 95px;
}

.ml95 {
  margin-left: 95px;
}

.mt96 {
  margin-top: 96px;
}

.mr96 {
  margin-right: 96px;
}

.mb96 {
  margin-bottom: 96px;
}

.ml96 {
  margin-left: 96px;
}

.mt97 {
  margin-top: 97px;
}

.mr97 {
  margin-right: 97px;
}

.mb97 {
  margin-bottom: 97px;
}

.ml97 {
  margin-left: 97px;
}

.mt98 {
  margin-top: 98px;
}

.mr98 {
  margin-right: 98px;
}

.mb98 {
  margin-bottom: 98px;
}

.ml98 {
  margin-left: 98px;
}

.mt99 {
  margin-top: 99px;
}

.mr99 {
  margin-right: 99px;
}

.mb99 {
  margin-bottom: 99px;
}

.ml99 {
  margin-left: 99px;
}

.mt100 {
  margin-top: 100px;
}

.mr100 {
  margin-right: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml100 {
  margin-left: 100px;
}

.mt101 {
  margin-top: 101px;
}

.mr101 {
  margin-right: 101px;
}

.mb101 {
  margin-bottom: 101px;
}

.ml101 {
  margin-left: 101px;
}

.mt102 {
  margin-top: 102px;
}

.mr102 {
  margin-right: 102px;
}

.mb102 {
  margin-bottom: 102px;
}

.ml102 {
  margin-left: 102px;
}

.mt103 {
  margin-top: 103px;
}

.mr103 {
  margin-right: 103px;
}

.mb103 {
  margin-bottom: 103px;
}

.ml103 {
  margin-left: 103px;
}

.mt104 {
  margin-top: 104px;
}

.mr104 {
  margin-right: 104px;
}

.mb104 {
  margin-bottom: 104px;
}

.ml104 {
  margin-left: 104px;
}

.mt105 {
  margin-top: 105px;
}

.mr105 {
  margin-right: 105px;
}

.mb105 {
  margin-bottom: 105px;
}

.ml105 {
  margin-left: 105px;
}

.mt106 {
  margin-top: 106px;
}

.mr106 {
  margin-right: 106px;
}

.mb106 {
  margin-bottom: 106px;
}

.ml106 {
  margin-left: 106px;
}

.mt107 {
  margin-top: 107px;
}

.mr107 {
  margin-right: 107px;
}

.mb107 {
  margin-bottom: 107px;
}

.ml107 {
  margin-left: 107px;
}

.mt108 {
  margin-top: 108px;
}

.mr108 {
  margin-right: 108px;
}

.mb108 {
  margin-bottom: 108px;
}

.ml108 {
  margin-left: 108px;
}

.mt109 {
  margin-top: 109px;
}

.mr109 {
  margin-right: 109px;
}

.mb109 {
  margin-bottom: 109px;
}

.ml109 {
  margin-left: 109px;
}

.mt110 {
  margin-top: 110px;
}

.mr110 {
  margin-right: 110px;
}

.mb110 {
  margin-bottom: 110px;
}

.ml110 {
  margin-left: 110px;
}

.mt111 {
  margin-top: 111px;
}

.mr111 {
  margin-right: 111px;
}

.mb111 {
  margin-bottom: 111px;
}

.ml111 {
  margin-left: 111px;
}

.mt112 {
  margin-top: 112px;
}

.mr112 {
  margin-right: 112px;
}

.mb112 {
  margin-bottom: 112px;
}

.ml112 {
  margin-left: 112px;
}

.mt113 {
  margin-top: 113px;
}

.mr113 {
  margin-right: 113px;
}

.mb113 {
  margin-bottom: 113px;
}

.ml113 {
  margin-left: 113px;
}

.mt114 {
  margin-top: 114px;
}

.mr114 {
  margin-right: 114px;
}

.mb114 {
  margin-bottom: 114px;
}

.ml114 {
  margin-left: 114px;
}

.mt115 {
  margin-top: 115px;
}

.mr115 {
  margin-right: 115px;
}

.mb115 {
  margin-bottom: 115px;
}

.ml115 {
  margin-left: 115px;
}

.mt116 {
  margin-top: 116px;
}

.mr116 {
  margin-right: 116px;
}

.mb116 {
  margin-bottom: 116px;
}

.ml116 {
  margin-left: 116px;
}

.mt117 {
  margin-top: 117px;
}

.mr117 {
  margin-right: 117px;
}

.mb117 {
  margin-bottom: 117px;
}

.ml117 {
  margin-left: 117px;
}

.mt118 {
  margin-top: 118px;
}

.mr118 {
  margin-right: 118px;
}

.mb118 {
  margin-bottom: 118px;
}

.ml118 {
  margin-left: 118px;
}

.mt119 {
  margin-top: 119px;
}

.mr119 {
  margin-right: 119px;
}

.mb119 {
  margin-bottom: 119px;
}

.ml119 {
  margin-left: 119px;
}

.mt120 {
  margin-top: 120px;
}

.mr120 {
  margin-right: 120px;
}

.mb120 {
  margin-bottom: 120px;
}

.ml120 {
  margin-left: 120px;
}

.mt121 {
  margin-top: 121px;
}

.mr121 {
  margin-right: 121px;
}

.mb121 {
  margin-bottom: 121px;
}

.ml121 {
  margin-left: 121px;
}

.mt122 {
  margin-top: 122px;
}

.mr122 {
  margin-right: 122px;
}

.mb122 {
  margin-bottom: 122px;
}

.ml122 {
  margin-left: 122px;
}

.mt123 {
  margin-top: 123px;
}

.mr123 {
  margin-right: 123px;
}

.mb123 {
  margin-bottom: 123px;
}

.ml123 {
  margin-left: 123px;
}

.mt124 {
  margin-top: 124px;
}

.mr124 {
  margin-right: 124px;
}

.mb124 {
  margin-bottom: 124px;
}

.ml124 {
  margin-left: 124px;
}

.mt125 {
  margin-top: 125px;
}

.mr125 {
  margin-right: 125px;
}

.mb125 {
  margin-bottom: 125px;
}

.ml125 {
  margin-left: 125px;
}

.mt126 {
  margin-top: 126px;
}

.mr126 {
  margin-right: 126px;
}

.mb126 {
  margin-bottom: 126px;
}

.ml126 {
  margin-left: 126px;
}

.mt127 {
  margin-top: 127px;
}

.mr127 {
  margin-right: 127px;
}

.mb127 {
  margin-bottom: 127px;
}

.ml127 {
  margin-left: 127px;
}

.mt128 {
  margin-top: 128px;
}

.mr128 {
  margin-right: 128px;
}

.mb128 {
  margin-bottom: 128px;
}

.ml128 {
  margin-left: 128px;
}

.mt129 {
  margin-top: 129px;
}

.mr129 {
  margin-right: 129px;
}

.mb129 {
  margin-bottom: 129px;
}

.ml129 {
  margin-left: 129px;
}

.mt130 {
  margin-top: 130px;
}

.mr130 {
  margin-right: 130px;
}

.mb130 {
  margin-bottom: 130px;
}

.ml130 {
  margin-left: 130px;
}

.mt131 {
  margin-top: 131px;
}

.mr131 {
  margin-right: 131px;
}

.mb131 {
  margin-bottom: 131px;
}

.ml131 {
  margin-left: 131px;
}

.mt132 {
  margin-top: 132px;
}

.mr132 {
  margin-right: 132px;
}

.mb132 {
  margin-bottom: 132px;
}

.ml132 {
  margin-left: 132px;
}

.mt133 {
  margin-top: 133px;
}

.mr133 {
  margin-right: 133px;
}

.mb133 {
  margin-bottom: 133px;
}

.ml133 {
  margin-left: 133px;
}

.mt134 {
  margin-top: 134px;
}

.mr134 {
  margin-right: 134px;
}

.mb134 {
  margin-bottom: 134px;
}

.ml134 {
  margin-left: 134px;
}

.mt135 {
  margin-top: 135px;
}

.mr135 {
  margin-right: 135px;
}

.mb135 {
  margin-bottom: 135px;
}

.ml135 {
  margin-left: 135px;
}

.mt136 {
  margin-top: 136px;
}

.mr136 {
  margin-right: 136px;
}

.mb136 {
  margin-bottom: 136px;
}

.ml136 {
  margin-left: 136px;
}

.mt137 {
  margin-top: 137px;
}

.mr137 {
  margin-right: 137px;
}

.mb137 {
  margin-bottom: 137px;
}

.ml137 {
  margin-left: 137px;
}

.mt138 {
  margin-top: 138px;
}

.mr138 {
  margin-right: 138px;
}

.mb138 {
  margin-bottom: 138px;
}

.ml138 {
  margin-left: 138px;
}

.mt139 {
  margin-top: 139px;
}

.mr139 {
  margin-right: 139px;
}

.mb139 {
  margin-bottom: 139px;
}

.ml139 {
  margin-left: 139px;
}

.mt140 {
  margin-top: 140px;
}

.mr140 {
  margin-right: 140px;
}

.mb140 {
  margin-bottom: 140px;
}

.ml140 {
  margin-left: 140px;
}

.mt141 {
  margin-top: 141px;
}

.mr141 {
  margin-right: 141px;
}

.mb141 {
  margin-bottom: 141px;
}

.ml141 {
  margin-left: 141px;
}

.mt142 {
  margin-top: 142px;
}

.mr142 {
  margin-right: 142px;
}

.mb142 {
  margin-bottom: 142px;
}

.ml142 {
  margin-left: 142px;
}

.mt143 {
  margin-top: 143px;
}

.mr143 {
  margin-right: 143px;
}

.mb143 {
  margin-bottom: 143px;
}

.ml143 {
  margin-left: 143px;
}

.mt144 {
  margin-top: 144px;
}

.mr144 {
  margin-right: 144px;
}

.mb144 {
  margin-bottom: 144px;
}

.ml144 {
  margin-left: 144px;
}

.mt145 {
  margin-top: 145px;
}

.mr145 {
  margin-right: 145px;
}

.mb145 {
  margin-bottom: 145px;
}

.ml145 {
  margin-left: 145px;
}

.mt146 {
  margin-top: 146px;
}

.mr146 {
  margin-right: 146px;
}

.mb146 {
  margin-bottom: 146px;
}

.ml146 {
  margin-left: 146px;
}

.mt147 {
  margin-top: 147px;
}

.mr147 {
  margin-right: 147px;
}

.mb147 {
  margin-bottom: 147px;
}

.ml147 {
  margin-left: 147px;
}

.mt148 {
  margin-top: 148px;
}

.mr148 {
  margin-right: 148px;
}

.mb148 {
  margin-bottom: 148px;
}

.ml148 {
  margin-left: 148px;
}

.mt149 {
  margin-top: 149px;
}

.mr149 {
  margin-right: 149px;
}

.mb149 {
  margin-bottom: 149px;
}

.ml149 {
  margin-left: 149px;
}

.mt150 {
  margin-top: 150px;
}

.mr150 {
  margin-right: 150px;
}

.mb150 {
  margin-bottom: 150px;
}

.ml150 {
  margin-left: 150px;
}

.mt151 {
  margin-top: 151px;
}

.mr151 {
  margin-right: 151px;
}

.mb151 {
  margin-bottom: 151px;
}

.ml151 {
  margin-left: 151px;
}

.mt152 {
  margin-top: 152px;
}

.mr152 {
  margin-right: 152px;
}

.mb152 {
  margin-bottom: 152px;
}

.ml152 {
  margin-left: 152px;
}

.mt153 {
  margin-top: 153px;
}

.mr153 {
  margin-right: 153px;
}

.mb153 {
  margin-bottom: 153px;
}

.ml153 {
  margin-left: 153px;
}

.mt154 {
  margin-top: 154px;
}

.mr154 {
  margin-right: 154px;
}

.mb154 {
  margin-bottom: 154px;
}

.ml154 {
  margin-left: 154px;
}

.mt155 {
  margin-top: 155px;
}

.mr155 {
  margin-right: 155px;
}

.mb155 {
  margin-bottom: 155px;
}

.ml155 {
  margin-left: 155px;
}

.mt156 {
  margin-top: 156px;
}

.mr156 {
  margin-right: 156px;
}

.mb156 {
  margin-bottom: 156px;
}

.ml156 {
  margin-left: 156px;
}

.mt157 {
  margin-top: 157px;
}

.mr157 {
  margin-right: 157px;
}

.mb157 {
  margin-bottom: 157px;
}

.ml157 {
  margin-left: 157px;
}

.mt158 {
  margin-top: 158px;
}

.mr158 {
  margin-right: 158px;
}

.mb158 {
  margin-bottom: 158px;
}

.ml158 {
  margin-left: 158px;
}

.mt159 {
  margin-top: 159px;
}

.mr159 {
  margin-right: 159px;
}

.mb159 {
  margin-bottom: 159px;
}

.ml159 {
  margin-left: 159px;
}

.mt160 {
  margin-top: 160px;
}

.mr160 {
  margin-right: 160px;
}

.mb160 {
  margin-bottom: 160px;
}

.ml160 {
  margin-left: 160px;
}

.mt161 {
  margin-top: 161px;
}

.mr161 {
  margin-right: 161px;
}

.mb161 {
  margin-bottom: 161px;
}

.ml161 {
  margin-left: 161px;
}

.mt162 {
  margin-top: 162px;
}

.mr162 {
  margin-right: 162px;
}

.mb162 {
  margin-bottom: 162px;
}

.ml162 {
  margin-left: 162px;
}

.mt163 {
  margin-top: 163px;
}

.mr163 {
  margin-right: 163px;
}

.mb163 {
  margin-bottom: 163px;
}

.ml163 {
  margin-left: 163px;
}

.mt164 {
  margin-top: 164px;
}

.mr164 {
  margin-right: 164px;
}

.mb164 {
  margin-bottom: 164px;
}

.ml164 {
  margin-left: 164px;
}

.mt165 {
  margin-top: 165px;
}

.mr165 {
  margin-right: 165px;
}

.mb165 {
  margin-bottom: 165px;
}

.ml165 {
  margin-left: 165px;
}

.mt166 {
  margin-top: 166px;
}

.mr166 {
  margin-right: 166px;
}

.mb166 {
  margin-bottom: 166px;
}

.ml166 {
  margin-left: 166px;
}

.mt167 {
  margin-top: 167px;
}

.mr167 {
  margin-right: 167px;
}

.mb167 {
  margin-bottom: 167px;
}

.ml167 {
  margin-left: 167px;
}

.mt168 {
  margin-top: 168px;
}

.mr168 {
  margin-right: 168px;
}

.mb168 {
  margin-bottom: 168px;
}

.ml168 {
  margin-left: 168px;
}

.mt169 {
  margin-top: 169px;
}

.mr169 {
  margin-right: 169px;
}

.mb169 {
  margin-bottom: 169px;
}

.ml169 {
  margin-left: 169px;
}

.mt170 {
  margin-top: 170px;
}

.mr170 {
  margin-right: 170px;
}

.mb170 {
  margin-bottom: 170px;
}

.ml170 {
  margin-left: 170px;
}

.mt171 {
  margin-top: 171px;
}

.mr171 {
  margin-right: 171px;
}

.mb171 {
  margin-bottom: 171px;
}

.ml171 {
  margin-left: 171px;
}

.mt172 {
  margin-top: 172px;
}

.mr172 {
  margin-right: 172px;
}

.mb172 {
  margin-bottom: 172px;
}

.ml172 {
  margin-left: 172px;
}

.mt173 {
  margin-top: 173px;
}

.mr173 {
  margin-right: 173px;
}

.mb173 {
  margin-bottom: 173px;
}

.ml173 {
  margin-left: 173px;
}

.mt174 {
  margin-top: 174px;
}

.mr174 {
  margin-right: 174px;
}

.mb174 {
  margin-bottom: 174px;
}

.ml174 {
  margin-left: 174px;
}

.mt175 {
  margin-top: 175px;
}

.mr175 {
  margin-right: 175px;
}

.mb175 {
  margin-bottom: 175px;
}

.ml175 {
  margin-left: 175px;
}

.mt176 {
  margin-top: 176px;
}

.mr176 {
  margin-right: 176px;
}

.mb176 {
  margin-bottom: 176px;
}

.ml176 {
  margin-left: 176px;
}

.mt177 {
  margin-top: 177px;
}

.mr177 {
  margin-right: 177px;
}

.mb177 {
  margin-bottom: 177px;
}

.ml177 {
  margin-left: 177px;
}

.mt178 {
  margin-top: 178px;
}

.mr178 {
  margin-right: 178px;
}

.mb178 {
  margin-bottom: 178px;
}

.ml178 {
  margin-left: 178px;
}

.mt179 {
  margin-top: 179px;
}

.mr179 {
  margin-right: 179px;
}

.mb179 {
  margin-bottom: 179px;
}

.ml179 {
  margin-left: 179px;
}

.mt180 {
  margin-top: 180px;
}

.mr180 {
  margin-right: 180px;
}

.mb180 {
  margin-bottom: 180px;
}

.ml180 {
  margin-left: 180px;
}

.mt181 {
  margin-top: 181px;
}

.mr181 {
  margin-right: 181px;
}

.mb181 {
  margin-bottom: 181px;
}

.ml181 {
  margin-left: 181px;
}

.mt182 {
  margin-top: 182px;
}

.mr182 {
  margin-right: 182px;
}

.mb182 {
  margin-bottom: 182px;
}

.ml182 {
  margin-left: 182px;
}

.mt183 {
  margin-top: 183px;
}

.mr183 {
  margin-right: 183px;
}

.mb183 {
  margin-bottom: 183px;
}

.ml183 {
  margin-left: 183px;
}

.mt184 {
  margin-top: 184px;
}

.mr184 {
  margin-right: 184px;
}

.mb184 {
  margin-bottom: 184px;
}

.ml184 {
  margin-left: 184px;
}

.mt185 {
  margin-top: 185px;
}

.mr185 {
  margin-right: 185px;
}

.mb185 {
  margin-bottom: 185px;
}

.ml185 {
  margin-left: 185px;
}

.mt186 {
  margin-top: 186px;
}

.mr186 {
  margin-right: 186px;
}

.mb186 {
  margin-bottom: 186px;
}

.ml186 {
  margin-left: 186px;
}

.mt187 {
  margin-top: 187px;
}

.mr187 {
  margin-right: 187px;
}

.mb187 {
  margin-bottom: 187px;
}

.ml187 {
  margin-left: 187px;
}

.mt188 {
  margin-top: 188px;
}

.mr188 {
  margin-right: 188px;
}

.mb188 {
  margin-bottom: 188px;
}

.ml188 {
  margin-left: 188px;
}

.mt189 {
  margin-top: 189px;
}

.mr189 {
  margin-right: 189px;
}

.mb189 {
  margin-bottom: 189px;
}

.ml189 {
  margin-left: 189px;
}

.mt190 {
  margin-top: 190px;
}

.mr190 {
  margin-right: 190px;
}

.mb190 {
  margin-bottom: 190px;
}

.ml190 {
  margin-left: 190px;
}

.mt191 {
  margin-top: 191px;
}

.mr191 {
  margin-right: 191px;
}

.mb191 {
  margin-bottom: 191px;
}

.ml191 {
  margin-left: 191px;
}

.mt192 {
  margin-top: 192px;
}

.mr192 {
  margin-right: 192px;
}

.mb192 {
  margin-bottom: 192px;
}

.ml192 {
  margin-left: 192px;
}

.mt193 {
  margin-top: 193px;
}

.mr193 {
  margin-right: 193px;
}

.mb193 {
  margin-bottom: 193px;
}

.ml193 {
  margin-left: 193px;
}

.mt194 {
  margin-top: 194px;
}

.mr194 {
  margin-right: 194px;
}

.mb194 {
  margin-bottom: 194px;
}

.ml194 {
  margin-left: 194px;
}

.mt195 {
  margin-top: 195px;
}

.mr195 {
  margin-right: 195px;
}

.mb195 {
  margin-bottom: 195px;
}

.ml195 {
  margin-left: 195px;
}

.mt196 {
  margin-top: 196px;
}

.mr196 {
  margin-right: 196px;
}

.mb196 {
  margin-bottom: 196px;
}

.ml196 {
  margin-left: 196px;
}

.mt197 {
  margin-top: 197px;
}

.mr197 {
  margin-right: 197px;
}

.mb197 {
  margin-bottom: 197px;
}

.ml197 {
  margin-left: 197px;
}

.mt198 {
  margin-top: 198px;
}

.mr198 {
  margin-right: 198px;
}

.mb198 {
  margin-bottom: 198px;
}

.ml198 {
  margin-left: 198px;
}

.mt199 {
  margin-top: 199px;
}

.mr199 {
  margin-right: 199px;
}

.mb199 {
  margin-bottom: 199px;
}

.ml199 {
  margin-left: 199px;
}

.mt200 {
  margin-top: 200px;
}

.mr200 {
  margin-right: 200px;
}

.mb200 {
  margin-bottom: 200px;
}

.ml200 {
  margin-left: 200px;
}

/* PADING */
.pt0 {
  padding-top: 0px;
}

.pr0 {
  padding-right: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pt1 {
  padding-top: 1px;
}

.pr1 {
  padding-right: 1px;
}

.pb1 {
  padding-bottom: 1px;
}

.pl1 {
  padding-left: 1px;
}

.pt2 {
  padding-top: 2px;
}

.pr2 {
  padding-right: 2px;
}

.pb2 {
  padding-bottom: 2px;
}

.pl2 {
  padding-left: 2px;
}

.pt3 {
  padding-top: 3px;
}

.pr3 {
  padding-right: 3px;
}

.pb3 {
  padding-bottom: 3px;
}

.pl3 {
  padding-left: 3px;
}

.pt4 {
  padding-top: 4px;
}

.pr4 {
  padding-right: 4px;
}

.pb4 {
  padding-bottom: 4px;
}

.pl4 {
  padding-left: 4px;
}

.pt5 {
  padding-top: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pt6 {
  padding-top: 6px;
}

.pr6 {
  padding-right: 6px;
}

.pb6 {
  padding-bottom: 6px;
}

.pl6 {
  padding-left: 6px;
}

.pt7 {
  padding-top: 7px;
}

.pr7 {
  padding-right: 7px;
}

.pb7 {
  padding-bottom: 7px;
}

.pl7 {
  padding-left: 7px;
}

.pt8 {
  padding-top: 8px;
}

.pr8 {
  padding-right: 8px;
}

.pb8 {
  padding-bottom: 8px;
}

.pl8 {
  padding-left: 8px;
}

.pt9 {
  padding-top: 9px;
}

.pr9 {
  padding-right: 9px;
}

.pb9 {
  padding-bottom: 9px;
}

.pl9 {
  padding-left: 9px;
}

.pt10 {
  padding-top: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pt11 {
  padding-top: 11px;
}

.pr11 {
  padding-right: 11px;
}

.pb11 {
  padding-bottom: 11px;
}

.pl11 {
  padding-left: 11px;
}

.pt12 {
  padding-top: 12px;
}

.pr12 {
  padding-right: 12px;
}

.pb12 {
  padding-bottom: 12px;
}

.pl12 {
  padding-left: 12px;
}

.pt13 {
  padding-top: 13px;
}

.pr13 {
  padding-right: 13px;
}

.pb13 {
  padding-bottom: 13px;
}

.pl13 {
  padding-left: 13px;
}

.pt14 {
  padding-top: 14px;
}

.pr14 {
  padding-right: 14px;
}

.pb14 {
  padding-bottom: 14px;
}

.pl14 {
  padding-left: 14px;
}

.pt15 {
  padding-top: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pt16 {
  padding-top: 16px;
}

.pr16 {
  padding-right: 16px;
}

.pb16 {
  padding-bottom: 16px;
}

.pl16 {
  padding-left: 16px;
}

.pt17 {
  padding-top: 17px;
}

.pr17 {
  padding-right: 17px;
}

.pb17 {
  padding-bottom: 17px;
}

.pl17 {
  padding-left: 17px;
}

.pt18 {
  padding-top: 18px;
}

.pr18 {
  padding-right: 18px;
}

.pb18 {
  padding-bottom: 18px;
}

.pl18 {
  padding-left: 18px;
}

.pt19 {
  padding-top: 19px;
}

.pr19 {
  padding-right: 19px;
}

.pb19 {
  padding-bottom: 19px;
}

.pl19 {
  padding-left: 19px;
}

.pt20 {
  padding-top: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pt21 {
  padding-top: 21px;
}

.pr21 {
  padding-right: 21px;
}

.pb21 {
  padding-bottom: 21px;
}

.pl21 {
  padding-left: 21px;
}

.pt22 {
  padding-top: 22px;
}

.pr22 {
  padding-right: 22px;
}

.pb22 {
  padding-bottom: 22px;
}

.pl22 {
  padding-left: 22px;
}

.pt23 {
  padding-top: 23px;
}

.pr23 {
  padding-right: 23px;
}

.pb23 {
  padding-bottom: 23px;
}

.pl23 {
  padding-left: 23px;
}

.pt24 {
  padding-top: 24px;
}

.pr24 {
  padding-right: 24px;
}

.pb24 {
  padding-bottom: 24px;
}

.pl24 {
  padding-left: 24px;
}

.pt25 {
  padding-top: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pt26 {
  padding-top: 26px;
}

.pr26 {
  padding-right: 26px;
}

.pb26 {
  padding-bottom: 26px;
}

.pl26 {
  padding-left: 26px;
}

.pt27 {
  padding-top: 27px;
}

.pr27 {
  padding-right: 27px;
}

.pb27 {
  padding-bottom: 27px;
}

.pl27 {
  padding-left: 27px;
}

.pt28 {
  padding-top: 28px;
}

.pr28 {
  padding-right: 28px;
}

.pb28 {
  padding-bottom: 28px;
}

.pl28 {
  padding-left: 28px;
}

.pt29 {
  padding-top: 29px;
}

.pr29 {
  padding-right: 29px;
}

.pb29 {
  padding-bottom: 29px;
}

.pl29 {
  padding-left: 29px;
}

.pt30 {
  padding-top: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pt31 {
  padding-top: 31px;
}

.pr31 {
  padding-right: 31px;
}

.pb31 {
  padding-bottom: 31px;
}

.pl31 {
  padding-left: 31px;
}

.pt32 {
  padding-top: 32px;
}

.pr32 {
  padding-right: 32px;
}

.pb32 {
  padding-bottom: 32px;
}

.pl32 {
  padding-left: 32px;
}

.pt33 {
  padding-top: 33px;
}

.pr33 {
  padding-right: 33px;
}

.pb33 {
  padding-bottom: 33px;
}

.pl33 {
  padding-left: 33px;
}

.pt34 {
  padding-top: 34px;
}

.pr34 {
  padding-right: 34px;
}

.pb34 {
  padding-bottom: 34px;
}

.pl34 {
  padding-left: 34px;
}

.pt35 {
  padding-top: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pt36 {
  padding-top: 36px;
}

.pr36 {
  padding-right: 36px;
}

.pb36 {
  padding-bottom: 36px;
}

.pl36 {
  padding-left: 36px;
}

.pt37 {
  padding-top: 37px;
}

.pr37 {
  padding-right: 37px;
}

.pb37 {
  padding-bottom: 37px;
}

.pl37 {
  padding-left: 37px;
}

.pt38 {
  padding-top: 38px;
}

.pr38 {
  padding-right: 38px;
}

.pb38 {
  padding-bottom: 38px;
}

.pl38 {
  padding-left: 38px;
}

.pt39 {
  padding-top: 39px;
}

.pr39 {
  padding-right: 39px;
}

.pb39 {
  padding-bottom: 39px;
}

.pl39 {
  padding-left: 39px;
}

.pt40 {
  padding-top: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pt41 {
  padding-top: 41px;
}

.pr41 {
  padding-right: 41px;
}

.pb41 {
  padding-bottom: 41px;
}

.pl41 {
  padding-left: 41px;
}

.pt42 {
  padding-top: 42px;
}

.pr42 {
  padding-right: 42px;
}

.pb42 {
  padding-bottom: 42px;
}

.pl42 {
  padding-left: 42px;
}

.pt43 {
  padding-top: 43px;
}

.pr43 {
  padding-right: 43px;
}

.pb43 {
  padding-bottom: 43px;
}

.pl43 {
  padding-left: 43px;
}

.pt44 {
  padding-top: 44px;
}

.pr44 {
  padding-right: 44px;
}

.pb44 {
  padding-bottom: 44px;
}

.pl44 {
  padding-left: 44px;
}

.pt45 {
  padding-top: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pt46 {
  padding-top: 46px;
}

.pr46 {
  padding-right: 46px;
}

.pb46 {
  padding-bottom: 46px;
}

.pl46 {
  padding-left: 46px;
}

.pt47 {
  padding-top: 47px;
}

.pr47 {
  padding-right: 47px;
}

.pb47 {
  padding-bottom: 47px;
}

.pl47 {
  padding-left: 47px;
}

.pt48 {
  padding-top: 48px;
}

.pr48 {
  padding-right: 48px;
}

.pb48 {
  padding-bottom: 48px;
}

.pl48 {
  padding-left: 48px;
}

.pt49 {
  padding-top: 49px;
}

.pr49 {
  padding-right: 49px;
}

.pb49 {
  padding-bottom: 49px;
}

.pl49 {
  padding-left: 49px;
}

.pt50 {
  padding-top: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pt51 {
  padding-top: 51px;
}

.pr51 {
  padding-right: 51px;
}

.pb51 {
  padding-bottom: 51px;
}

.pl51 {
  padding-left: 51px;
}

.pt52 {
  padding-top: 52px;
}

.pr52 {
  padding-right: 52px;
}

.pb52 {
  padding-bottom: 52px;
}

.pl52 {
  padding-left: 52px;
}

.pt53 {
  padding-top: 53px;
}

.pr53 {
  padding-right: 53px;
}

.pb53 {
  padding-bottom: 53px;
}

.pl53 {
  padding-left: 53px;
}

.pt54 {
  padding-top: 54px;
}

.pr54 {
  padding-right: 54px;
}

.pb54 {
  padding-bottom: 54px;
}

.pl54 {
  padding-left: 54px;
}

.pt55 {
  padding-top: 55px;
}

.pr55 {
  padding-right: 55px;
}

.pb55 {
  padding-bottom: 55px;
}

.pl55 {
  padding-left: 55px;
}

.pt56 {
  padding-top: 56px;
}

.pr56 {
  padding-right: 56px;
}

.pb56 {
  padding-bottom: 56px;
}

.pl56 {
  padding-left: 56px;
}

.pt57 {
  padding-top: 57px;
}

.pr57 {
  padding-right: 57px;
}

.pb57 {
  padding-bottom: 57px;
}

.pl57 {
  padding-left: 57px;
}

.pt58 {
  padding-top: 58px;
}

.pr58 {
  padding-right: 58px;
}

.pb58 {
  padding-bottom: 58px;
}

.pl58 {
  padding-left: 58px;
}

.pt59 {
  padding-top: 59px;
}

.pr59 {
  padding-right: 59px;
}

.pb59 {
  padding-bottom: 59px;
}

.pl59 {
  padding-left: 59px;
}

.pt60 {
  padding-top: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pl60 {
  padding-left: 60px;
}

.pt61 {
  padding-top: 61px;
}

.pr61 {
  padding-right: 61px;
}

.pb61 {
  padding-bottom: 61px;
}

.pl61 {
  padding-left: 61px;
}

.pt62 {
  padding-top: 62px;
}

.pr62 {
  padding-right: 62px;
}

.pb62 {
  padding-bottom: 62px;
}

.pl62 {
  padding-left: 62px;
}

.pt63 {
  padding-top: 63px;
}

.pr63 {
  padding-right: 63px;
}

.pb63 {
  padding-bottom: 63px;
}

.pl63 {
  padding-left: 63px;
}

.pt64 {
  padding-top: 64px;
}

.pr64 {
  padding-right: 64px;
}

.pb64 {
  padding-bottom: 64px;
}

.pl64 {
  padding-left: 64px;
}

.pt65 {
  padding-top: 65px;
}

.pr65 {
  padding-right: 65px;
}

.pb65 {
  padding-bottom: 65px;
}

.pl65 {
  padding-left: 65px;
}

.pt66 {
  padding-top: 66px;
}

.pr66 {
  padding-right: 66px;
}

.pb66 {
  padding-bottom: 66px;
}

.pl66 {
  padding-left: 66px;
}

.pt67 {
  padding-top: 67px;
}

.pr67 {
  padding-right: 67px;
}

.pb67 {
  padding-bottom: 67px;
}

.pl67 {
  padding-left: 67px;
}

.pt68 {
  padding-top: 68px;
}

.pr68 {
  padding-right: 68px;
}

.pb68 {
  padding-bottom: 68px;
}

.pl68 {
  padding-left: 68px;
}

.pt69 {
  padding-top: 69px;
}

.pr69 {
  padding-right: 69px;
}

.pb69 {
  padding-bottom: 69px;
}

.pl69 {
  padding-left: 69px;
}

.pt70 {
  padding-top: 70px;
}

.pr70 {
  padding-right: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.pl70 {
  padding-left: 70px;
}

.pt71 {
  padding-top: 71px;
}

.pr71 {
  padding-right: 71px;
}

.pb71 {
  padding-bottom: 71px;
}

.pl71 {
  padding-left: 71px;
}

.pt72 {
  padding-top: 72px;
}

.pr72 {
  padding-right: 72px;
}

.pb72 {
  padding-bottom: 72px;
}

.pl72 {
  padding-left: 72px;
}

.pt73 {
  padding-top: 73px;
}

.pr73 {
  padding-right: 73px;
}

.pb73 {
  padding-bottom: 73px;
}

.pl73 {
  padding-left: 73px;
}

.pt74 {
  padding-top: 74px;
}

.pr74 {
  padding-right: 74px;
}

.pb74 {
  padding-bottom: 74px;
}

.pl74 {
  padding-left: 74px;
}

.pt75 {
  padding-top: 75px;
}

.pr75 {
  padding-right: 75px;
}

.pb75 {
  padding-bottom: 75px;
}

.pl75 {
  padding-left: 75px;
}

.pt76 {
  padding-top: 76px;
}

.pr76 {
  padding-right: 76px;
}

.pb76 {
  padding-bottom: 76px;
}

.pl76 {
  padding-left: 76px;
}

.pt77 {
  padding-top: 77px;
}

.pr77 {
  padding-right: 77px;
}

.pb77 {
  padding-bottom: 77px;
}

.pl77 {
  padding-left: 77px;
}

.pt78 {
  padding-top: 78px;
}

.pr78 {
  padding-right: 78px;
}

.pb78 {
  padding-bottom: 78px;
}

.pl78 {
  padding-left: 78px;
}

.pt79 {
  padding-top: 79px;
}

.pr79 {
  padding-right: 79px;
}

.pb79 {
  padding-bottom: 79px;
}

.pl79 {
  padding-left: 79px;
}

.pt80 {
  padding-top: 80px;
}

.pr80 {
  padding-right: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.pl80 {
  padding-left: 80px;
}

.pt81 {
  padding-top: 81px;
}

.pr81 {
  padding-right: 81px;
}

.pb81 {
  padding-bottom: 81px;
}

.pl81 {
  padding-left: 81px;
}

.pt82 {
  padding-top: 82px;
}

.pr82 {
  padding-right: 82px;
}

.pb82 {
  padding-bottom: 82px;
}

.pl82 {
  padding-left: 82px;
}

.pt83 {
  padding-top: 83px;
}

.pr83 {
  padding-right: 83px;
}

.pb83 {
  padding-bottom: 83px;
}

.pl83 {
  padding-left: 83px;
}

.pt84 {
  padding-top: 84px;
}

.pr84 {
  padding-right: 84px;
}

.pb84 {
  padding-bottom: 84px;
}

.pl84 {
  padding-left: 84px;
}

.pt85 {
  padding-top: 85px;
}

.pr85 {
  padding-right: 85px;
}

.pb85 {
  padding-bottom: 85px;
}

.pl85 {
  padding-left: 85px;
}

.pt86 {
  padding-top: 86px;
}

.pr86 {
  padding-right: 86px;
}

.pb86 {
  padding-bottom: 86px;
}

.pl86 {
  padding-left: 86px;
}

.pt87 {
  padding-top: 87px;
}

.pr87 {
  padding-right: 87px;
}

.pb87 {
  padding-bottom: 87px;
}

.pl87 {
  padding-left: 87px;
}

.pt88 {
  padding-top: 88px;
}

.pr88 {
  padding-right: 88px;
}

.pb88 {
  padding-bottom: 88px;
}

.pl88 {
  padding-left: 88px;
}

.pt89 {
  padding-top: 89px;
}

.pr89 {
  padding-right: 89px;
}

.pb89 {
  padding-bottom: 89px;
}

.pl89 {
  padding-left: 89px;
}

.pt90 {
  padding-top: 90px;
}

.pr90 {
  padding-right: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.pl90 {
  padding-left: 90px;
}

.pt91 {
  padding-top: 91px;
}

.pr91 {
  padding-right: 91px;
}

.pb91 {
  padding-bottom: 91px;
}

.pl91 {
  padding-left: 91px;
}

.pt92 {
  padding-top: 92px;
}

.pr92 {
  padding-right: 92px;
}

.pb92 {
  padding-bottom: 92px;
}

.pl92 {
  padding-left: 92px;
}

.pt93 {
  padding-top: 93px;
}

.pr93 {
  padding-right: 93px;
}

.pb93 {
  padding-bottom: 93px;
}

.pl93 {
  padding-left: 93px;
}

.pt94 {
  padding-top: 94px;
}

.pr94 {
  padding-right: 94px;
}

.pb94 {
  padding-bottom: 94px;
}

.pl94 {
  padding-left: 94px;
}

.pt95 {
  padding-top: 95px;
}

.pr95 {
  padding-right: 95px;
}

.pb95 {
  padding-bottom: 95px;
}

.pl95 {
  padding-left: 95px;
}

.pt96 {
  padding-top: 96px;
}

.pr96 {
  padding-right: 96px;
}

.pb96 {
  padding-bottom: 96px;
}

.pl96 {
  padding-left: 96px;
}

.pt97 {
  padding-top: 97px;
}

.pr97 {
  padding-right: 97px;
}

.pb97 {
  padding-bottom: 97px;
}

.pl97 {
  padding-left: 97px;
}

.pt98 {
  padding-top: 98px;
}

.pr98 {
  padding-right: 98px;
}

.pb98 {
  padding-bottom: 98px;
}

.pl98 {
  padding-left: 98px;
}

.pt99 {
  padding-top: 99px;
}

.pr99 {
  padding-right: 99px;
}

.pb99 {
  padding-bottom: 99px;
}

.pl99 {
  padding-left: 99px;
}

.pt100 {
  padding-top: 100px;
}

.pr100 {
  padding-right: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.pl100 {
  padding-left: 100px;
}

.pt101 {
  padding-top: 101px;
}

.pr101 {
  padding-right: 101px;
}

.pb101 {
  padding-bottom: 101px;
}

.pl101 {
  padding-left: 101px;
}

.pt102 {
  padding-top: 102px;
}

.pr102 {
  padding-right: 102px;
}

.pb102 {
  padding-bottom: 102px;
}

.pl102 {
  padding-left: 102px;
}

.pt103 {
  padding-top: 103px;
}

.pr103 {
  padding-right: 103px;
}

.pb103 {
  padding-bottom: 103px;
}

.pl103 {
  padding-left: 103px;
}

.pt104 {
  padding-top: 104px;
}

.pr104 {
  padding-right: 104px;
}

.pb104 {
  padding-bottom: 104px;
}

.pl104 {
  padding-left: 104px;
}

.pt105 {
  padding-top: 105px;
}

.pr105 {
  padding-right: 105px;
}

.pb105 {
  padding-bottom: 105px;
}

.pl105 {
  padding-left: 105px;
}

.pt106 {
  padding-top: 106px;
}

.pr106 {
  padding-right: 106px;
}

.pb106 {
  padding-bottom: 106px;
}

.pl106 {
  padding-left: 106px;
}

.pt107 {
  padding-top: 107px;
}

.pr107 {
  padding-right: 107px;
}

.pb107 {
  padding-bottom: 107px;
}

.pl107 {
  padding-left: 107px;
}

.pt108 {
  padding-top: 108px;
}

.pr108 {
  padding-right: 108px;
}

.pb108 {
  padding-bottom: 108px;
}

.pl108 {
  padding-left: 108px;
}

.pt109 {
  padding-top: 109px;
}

.pr109 {
  padding-right: 109px;
}

.pb109 {
  padding-bottom: 109px;
}

.pl109 {
  padding-left: 109px;
}

.pt110 {
  padding-top: 110px;
}

.pr110 {
  padding-right: 110px;
}

.pb110 {
  padding-bottom: 110px;
}

.pl110 {
  padding-left: 110px;
}

.pt111 {
  padding-top: 111px;
}

.pr111 {
  padding-right: 111px;
}

.pb111 {
  padding-bottom: 111px;
}

.pl111 {
  padding-left: 111px;
}

.pt112 {
  padding-top: 112px;
}

.pr112 {
  padding-right: 112px;
}

.pb112 {
  padding-bottom: 112px;
}

.pl112 {
  padding-left: 112px;
}

.pt113 {
  padding-top: 113px;
}

.pr113 {
  padding-right: 113px;
}

.pb113 {
  padding-bottom: 113px;
}

.pl113 {
  padding-left: 113px;
}

.pt114 {
  padding-top: 114px;
}

.pr114 {
  padding-right: 114px;
}

.pb114 {
  padding-bottom: 114px;
}

.pl114 {
  padding-left: 114px;
}

.pt115 {
  padding-top: 115px;
}

.pr115 {
  padding-right: 115px;
}

.pb115 {
  padding-bottom: 115px;
}

.pl115 {
  padding-left: 115px;
}

.pt116 {
  padding-top: 116px;
}

.pr116 {
  padding-right: 116px;
}

.pb116 {
  padding-bottom: 116px;
}

.pl116 {
  padding-left: 116px;
}

.pt117 {
  padding-top: 117px;
}

.pr117 {
  padding-right: 117px;
}

.pb117 {
  padding-bottom: 117px;
}

.pl117 {
  padding-left: 117px;
}

.pt118 {
  padding-top: 118px;
}

.pr118 {
  padding-right: 118px;
}

.pb118 {
  padding-bottom: 118px;
}

.pl118 {
  padding-left: 118px;
}

.pt119 {
  padding-top: 119px;
}

.pr119 {
  padding-right: 119px;
}

.pb119 {
  padding-bottom: 119px;
}

.pl119 {
  padding-left: 119px;
}

.pt120 {
  padding-top: 120px;
}

.pr120 {
  padding-right: 120px;
}

.pb120 {
  padding-bottom: 120px;
}

.pl120 {
  padding-left: 120px;
}

.pt121 {
  padding-top: 121px;
}

.pr121 {
  padding-right: 121px;
}

.pb121 {
  padding-bottom: 121px;
}

.pl121 {
  padding-left: 121px;
}

.pt122 {
  padding-top: 122px;
}

.pr122 {
  padding-right: 122px;
}

.pb122 {
  padding-bottom: 122px;
}

.pl122 {
  padding-left: 122px;
}

.pt123 {
  padding-top: 123px;
}

.pr123 {
  padding-right: 123px;
}

.pb123 {
  padding-bottom: 123px;
}

.pl123 {
  padding-left: 123px;
}

.pt124 {
  padding-top: 124px;
}

.pr124 {
  padding-right: 124px;
}

.pb124 {
  padding-bottom: 124px;
}

.pl124 {
  padding-left: 124px;
}

.pt125 {
  padding-top: 125px;
}

.pr125 {
  padding-right: 125px;
}

.pb125 {
  padding-bottom: 125px;
}

.pl125 {
  padding-left: 125px;
}

.pt126 {
  padding-top: 126px;
}

.pr126 {
  padding-right: 126px;
}

.pb126 {
  padding-bottom: 126px;
}

.pl126 {
  padding-left: 126px;
}

.pt127 {
  padding-top: 127px;
}

.pr127 {
  padding-right: 127px;
}

.pb127 {
  padding-bottom: 127px;
}

.pl127 {
  padding-left: 127px;
}

.pt128 {
  padding-top: 128px;
}

.pr128 {
  padding-right: 128px;
}

.pb128 {
  padding-bottom: 128px;
}

.pl128 {
  padding-left: 128px;
}

.pt129 {
  padding-top: 129px;
}

.pr129 {
  padding-right: 129px;
}

.pb129 {
  padding-bottom: 129px;
}

.pl129 {
  padding-left: 129px;
}

.pt130 {
  padding-top: 130px;
}

.pr130 {
  padding-right: 130px;
}

.pb130 {
  padding-bottom: 130px;
}

.pl130 {
  padding-left: 130px;
}

.pt131 {
  padding-top: 131px;
}

.pr131 {
  padding-right: 131px;
}

.pb131 {
  padding-bottom: 131px;
}

.pl131 {
  padding-left: 131px;
}

.pt132 {
  padding-top: 132px;
}

.pr132 {
  padding-right: 132px;
}

.pb132 {
  padding-bottom: 132px;
}

.pl132 {
  padding-left: 132px;
}

.pt133 {
  padding-top: 133px;
}

.pr133 {
  padding-right: 133px;
}

.pb133 {
  padding-bottom: 133px;
}

.pl133 {
  padding-left: 133px;
}

.pt134 {
  padding-top: 134px;
}

.pr134 {
  padding-right: 134px;
}

.pb134 {
  padding-bottom: 134px;
}

.pl134 {
  padding-left: 134px;
}

.pt135 {
  padding-top: 135px;
}

.pr135 {
  padding-right: 135px;
}

.pb135 {
  padding-bottom: 135px;
}

.pl135 {
  padding-left: 135px;
}

.pt136 {
  padding-top: 136px;
}

.pr136 {
  padding-right: 136px;
}

.pb136 {
  padding-bottom: 136px;
}

.pl136 {
  padding-left: 136px;
}

.pt137 {
  padding-top: 137px;
}

.pr137 {
  padding-right: 137px;
}

.pb137 {
  padding-bottom: 137px;
}

.pl137 {
  padding-left: 137px;
}

.pt138 {
  padding-top: 138px;
}

.pr138 {
  padding-right: 138px;
}

.pb138 {
  padding-bottom: 138px;
}

.pl138 {
  padding-left: 138px;
}

.pt139 {
  padding-top: 139px;
}

.pr139 {
  padding-right: 139px;
}

.pb139 {
  padding-bottom: 139px;
}

.pl139 {
  padding-left: 139px;
}

.pt140 {
  padding-top: 140px;
}

.pr140 {
  padding-right: 140px;
}

.pb140 {
  padding-bottom: 140px;
}

.pl140 {
  padding-left: 140px;
}

.pt141 {
  padding-top: 141px;
}

.pr141 {
  padding-right: 141px;
}

.pb141 {
  padding-bottom: 141px;
}

.pl141 {
  padding-left: 141px;
}

.pt142 {
  padding-top: 142px;
}

.pr142 {
  padding-right: 142px;
}

.pb142 {
  padding-bottom: 142px;
}

.pl142 {
  padding-left: 142px;
}

.pt143 {
  padding-top: 143px;
}

.pr143 {
  padding-right: 143px;
}

.pb143 {
  padding-bottom: 143px;
}

.pl143 {
  padding-left: 143px;
}

.pt144 {
  padding-top: 144px;
}

.pr144 {
  padding-right: 144px;
}

.pb144 {
  padding-bottom: 144px;
}

.pl144 {
  padding-left: 144px;
}

.pt145 {
  padding-top: 145px;
}

.pr145 {
  padding-right: 145px;
}

.pb145 {
  padding-bottom: 145px;
}

.pl145 {
  padding-left: 145px;
}

.pt146 {
  padding-top: 146px;
}

.pr146 {
  padding-right: 146px;
}

.pb146 {
  padding-bottom: 146px;
}

.pl146 {
  padding-left: 146px;
}

.pt147 {
  padding-top: 147px;
}

.pr147 {
  padding-right: 147px;
}

.pb147 {
  padding-bottom: 147px;
}

.pl147 {
  padding-left: 147px;
}

.pt148 {
  padding-top: 148px;
}

.pr148 {
  padding-right: 148px;
}

.pb148 {
  padding-bottom: 148px;
}

.pl148 {
  padding-left: 148px;
}

.pt149 {
  padding-top: 149px;
}

.pr149 {
  padding-right: 149px;
}

.pb149 {
  padding-bottom: 149px;
}

.pl149 {
  padding-left: 149px;
}

.pt150 {
  padding-top: 150px;
}

.pr150 {
  padding-right: 150px;
}

.pb150 {
  padding-bottom: 150px;
}

.pl150 {
  padding-left: 150px;
}

.pt151 {
  padding-top: 151px;
}

.pr151 {
  padding-right: 151px;
}

.pb151 {
  padding-bottom: 151px;
}

.pl151 {
  padding-left: 151px;
}

.pt152 {
  padding-top: 152px;
}

.pr152 {
  padding-right: 152px;
}

.pb152 {
  padding-bottom: 152px;
}

.pl152 {
  padding-left: 152px;
}

.pt153 {
  padding-top: 153px;
}

.pr153 {
  padding-right: 153px;
}

.pb153 {
  padding-bottom: 153px;
}

.pl153 {
  padding-left: 153px;
}

.pt154 {
  padding-top: 154px;
}

.pr154 {
  padding-right: 154px;
}

.pb154 {
  padding-bottom: 154px;
}

.pl154 {
  padding-left: 154px;
}

.pt155 {
  padding-top: 155px;
}

.pr155 {
  padding-right: 155px;
}

.pb155 {
  padding-bottom: 155px;
}

.pl155 {
  padding-left: 155px;
}

.pt156 {
  padding-top: 156px;
}

.pr156 {
  padding-right: 156px;
}

.pb156 {
  padding-bottom: 156px;
}

.pl156 {
  padding-left: 156px;
}

.pt157 {
  padding-top: 157px;
}

.pr157 {
  padding-right: 157px;
}

.pb157 {
  padding-bottom: 157px;
}

.pl157 {
  padding-left: 157px;
}

.pt158 {
  padding-top: 158px;
}

.pr158 {
  padding-right: 158px;
}

.pb158 {
  padding-bottom: 158px;
}

.pl158 {
  padding-left: 158px;
}

.pt159 {
  padding-top: 159px;
}

.pr159 {
  padding-right: 159px;
}

.pb159 {
  padding-bottom: 159px;
}

.pl159 {
  padding-left: 159px;
}

.pt160 {
  padding-top: 160px;
}

.pr160 {
  padding-right: 160px;
}

.pb160 {
  padding-bottom: 160px;
}

.pl160 {
  padding-left: 160px;
}

.pt161 {
  padding-top: 161px;
}

.pr161 {
  padding-right: 161px;
}

.pb161 {
  padding-bottom: 161px;
}

.pl161 {
  padding-left: 161px;
}

.pt162 {
  padding-top: 162px;
}

.pr162 {
  padding-right: 162px;
}

.pb162 {
  padding-bottom: 162px;
}

.pl162 {
  padding-left: 162px;
}

.pt163 {
  padding-top: 163px;
}

.pr163 {
  padding-right: 163px;
}

.pb163 {
  padding-bottom: 163px;
}

.pl163 {
  padding-left: 163px;
}

.pt164 {
  padding-top: 164px;
}

.pr164 {
  padding-right: 164px;
}

.pb164 {
  padding-bottom: 164px;
}

.pl164 {
  padding-left: 164px;
}

.pt165 {
  padding-top: 165px;
}

.pr165 {
  padding-right: 165px;
}

.pb165 {
  padding-bottom: 165px;
}

.pl165 {
  padding-left: 165px;
}

.pt166 {
  padding-top: 166px;
}

.pr166 {
  padding-right: 166px;
}

.pb166 {
  padding-bottom: 166px;
}

.pl166 {
  padding-left: 166px;
}

.pt167 {
  padding-top: 167px;
}

.pr167 {
  padding-right: 167px;
}

.pb167 {
  padding-bottom: 167px;
}

.pl167 {
  padding-left: 167px;
}

.pt168 {
  padding-top: 168px;
}

.pr168 {
  padding-right: 168px;
}

.pb168 {
  padding-bottom: 168px;
}

.pl168 {
  padding-left: 168px;
}

.pt169 {
  padding-top: 169px;
}

.pr169 {
  padding-right: 169px;
}

.pb169 {
  padding-bottom: 169px;
}

.pl169 {
  padding-left: 169px;
}

.pt170 {
  padding-top: 170px;
}

.pr170 {
  padding-right: 170px;
}

.pb170 {
  padding-bottom: 170px;
}

.pl170 {
  padding-left: 170px;
}

.pt171 {
  padding-top: 171px;
}

.pr171 {
  padding-right: 171px;
}

.pb171 {
  padding-bottom: 171px;
}

.pl171 {
  padding-left: 171px;
}

.pt172 {
  padding-top: 172px;
}

.pr172 {
  padding-right: 172px;
}

.pb172 {
  padding-bottom: 172px;
}

.pl172 {
  padding-left: 172px;
}

.pt173 {
  padding-top: 173px;
}

.pr173 {
  padding-right: 173px;
}

.pb173 {
  padding-bottom: 173px;
}

.pl173 {
  padding-left: 173px;
}

.pt174 {
  padding-top: 174px;
}

.pr174 {
  padding-right: 174px;
}

.pb174 {
  padding-bottom: 174px;
}

.pl174 {
  padding-left: 174px;
}

.pt175 {
  padding-top: 175px;
}

.pr175 {
  padding-right: 175px;
}

.pb175 {
  padding-bottom: 175px;
}

.pl175 {
  padding-left: 175px;
}

.pt176 {
  padding-top: 176px;
}

.pr176 {
  padding-right: 176px;
}

.pb176 {
  padding-bottom: 176px;
}

.pl176 {
  padding-left: 176px;
}

.pt177 {
  padding-top: 177px;
}

.pr177 {
  padding-right: 177px;
}

.pb177 {
  padding-bottom: 177px;
}

.pl177 {
  padding-left: 177px;
}

.pt178 {
  padding-top: 178px;
}

.pr178 {
  padding-right: 178px;
}

.pb178 {
  padding-bottom: 178px;
}

.pl178 {
  padding-left: 178px;
}

.pt179 {
  padding-top: 179px;
}

.pr179 {
  padding-right: 179px;
}

.pb179 {
  padding-bottom: 179px;
}

.pl179 {
  padding-left: 179px;
}

.pt180 {
  padding-top: 180px;
}

.pr180 {
  padding-right: 180px;
}

.pb180 {
  padding-bottom: 180px;
}

.pl180 {
  padding-left: 180px;
}

.pt181 {
  padding-top: 181px;
}

.pr181 {
  padding-right: 181px;
}

.pb181 {
  padding-bottom: 181px;
}

.pl181 {
  padding-left: 181px;
}

.pt182 {
  padding-top: 182px;
}

.pr182 {
  padding-right: 182px;
}

.pb182 {
  padding-bottom: 182px;
}

.pl182 {
  padding-left: 182px;
}

.pt183 {
  padding-top: 183px;
}

.pr183 {
  padding-right: 183px;
}

.pb183 {
  padding-bottom: 183px;
}

.pl183 {
  padding-left: 183px;
}

.pt184 {
  padding-top: 184px;
}

.pr184 {
  padding-right: 184px;
}

.pb184 {
  padding-bottom: 184px;
}

.pl184 {
  padding-left: 184px;
}

.pt185 {
  padding-top: 185px;
}

.pr185 {
  padding-right: 185px;
}

.pb185 {
  padding-bottom: 185px;
}

.pl185 {
  padding-left: 185px;
}

.pt186 {
  padding-top: 186px;
}

.pr186 {
  padding-right: 186px;
}

.pb186 {
  padding-bottom: 186px;
}

.pl186 {
  padding-left: 186px;
}

.pt187 {
  padding-top: 187px;
}

.pr187 {
  padding-right: 187px;
}

.pb187 {
  padding-bottom: 187px;
}

.pl187 {
  padding-left: 187px;
}

.pt188 {
  padding-top: 188px;
}

.pr188 {
  padding-right: 188px;
}

.pb188 {
  padding-bottom: 188px;
}

.pl188 {
  padding-left: 188px;
}

.pt189 {
  padding-top: 189px;
}

.pr189 {
  padding-right: 189px;
}

.pb189 {
  padding-bottom: 189px;
}

.pl189 {
  padding-left: 189px;
}

.pt190 {
  padding-top: 190px;
}

.pr190 {
  padding-right: 190px;
}

.pb190 {
  padding-bottom: 190px;
}

.pl190 {
  padding-left: 190px;
}

.pt191 {
  padding-top: 191px;
}

.pr191 {
  padding-right: 191px;
}

.pb191 {
  padding-bottom: 191px;
}

.pl191 {
  padding-left: 191px;
}

.pt192 {
  padding-top: 192px;
}

.pr192 {
  padding-right: 192px;
}

.pb192 {
  padding-bottom: 192px;
}

.pl192 {
  padding-left: 192px;
}

.pt193 {
  padding-top: 193px;
}

.pr193 {
  padding-right: 193px;
}

.pb193 {
  padding-bottom: 193px;
}

.pl193 {
  padding-left: 193px;
}

.pt194 {
  padding-top: 194px;
}

.pr194 {
  padding-right: 194px;
}

.pb194 {
  padding-bottom: 194px;
}

.pl194 {
  padding-left: 194px;
}

.pt195 {
  padding-top: 195px;
}

.pr195 {
  padding-right: 195px;
}

.pb195 {
  padding-bottom: 195px;
}

.pl195 {
  padding-left: 195px;
}

.pt196 {
  padding-top: 196px;
}

.pr196 {
  padding-right: 196px;
}

.pb196 {
  padding-bottom: 196px;
}

.pl196 {
  padding-left: 196px;
}

.pt197 {
  padding-top: 197px;
}

.pr197 {
  padding-right: 197px;
}

.pb197 {
  padding-bottom: 197px;
}

.pl197 {
  padding-left: 197px;
}

.pt198 {
  padding-top: 198px;
}

.pr198 {
  padding-right: 198px;
}

.pb198 {
  padding-bottom: 198px;
}

.pl198 {
  padding-left: 198px;
}

.pt199 {
  padding-top: 199px;
}

.pr199 {
  padding-right: 199px;
}

.pb199 {
  padding-bottom: 199px;
}

.pl199 {
  padding-left: 199px;
}

.pt200 {
  padding-top: 200px;
}

.pr200 {
  padding-right: 200px;
}

.pb200 {
  padding-bottom: 200px;
}

.pl200 {
  padding-left: 200px;
}

@media (max-width: 1400px) {
  .size-xl-1 {
    font-size: 1px;
  }
  .size-xl-2 {
    font-size: 2px;
  }
  .size-xl-3 {
    font-size: 3px;
  }
  .size-xl-4 {
    font-size: 4px;
  }
  .size-xl-5 {
    font-size: 5px;
  }
  .size-xl-6 {
    font-size: 6px;
  }
  .size-xl-7 {
    font-size: 7px;
  }
  .size-xl-8 {
    font-size: 8px;
  }
  .size-xl-9 {
    font-size: 9px;
  }
  .size-xl-10 {
    font-size: 10px;
  }
  .size-xl-11 {
    font-size: 11px;
  }
  .size-xl-12 {
    font-size: 12px;
  }
  .size-xl-13 {
    font-size: 13px;
  }
  .size-xl-14 {
    font-size: 14px;
  }
  .size-xl-15 {
    font-size: 15px;
  }
  .size-xl-16 {
    font-size: 16px;
  }
  .size-xl-17 {
    font-size: 17px;
  }
  .size-xl-18 {
    font-size: 18px;
  }
  .size-xl-19 {
    font-size: 19px;
  }
  .size-xl-20 {
    font-size: 20px;
  }
  .size-xl-21 {
    font-size: 21px;
  }
  .size-xl-22 {
    font-size: 22px;
  }
  .size-xl-23 {
    font-size: 23px;
  }
  .size-xl-24 {
    font-size: 24px;
  }
  .size-xl-25 {
    font-size: 25px;
  }
  .size-xl-26 {
    font-size: 26px;
  }
  .size-xl-27 {
    font-size: 27px;
  }
  .size-xl-28 {
    font-size: 28px;
  }
  .size-xl-29 {
    font-size: 29px;
  }
  .size-xl-30 {
    font-size: 30px;
  }
  .size-xl-31 {
    font-size: 31px;
  }
  .size-xl-32 {
    font-size: 32px;
  }
  .size-xl-33 {
    font-size: 33px;
  }
  .size-xl-34 {
    font-size: 34px;
  }
  .size-xl-35 {
    font-size: 35px;
  }
  .size-xl-36 {
    font-size: 36px;
  }
  .size-xl-37 {
    font-size: 37px;
  }
  .size-xl-38 {
    font-size: 38px;
  }
  .size-xl-39 {
    font-size: 39px;
  }
  .size-xl-40 {
    font-size: 40px;
  }
  .size-xl-41 {
    font-size: 41px;
  }
  .size-xl-42 {
    font-size: 42px;
  }
  .size-xl-43 {
    font-size: 43px;
  }
  .size-xl-44 {
    font-size: 44px;
  }
  .size-xl-45 {
    font-size: 45px;
  }
  .size-xl-46 {
    font-size: 46px;
  }
  .size-xl-47 {
    font-size: 47px;
  }
  .size-xl-48 {
    font-size: 48px;
  }
  .size-xl-49 {
    font-size: 49px;
  }
  .size-xl-50 {
    font-size: 50px;
  }
  .size-xl-51 {
    font-size: 51px;
  }
  .size-xl-52 {
    font-size: 52px;
  }
  .size-xl-53 {
    font-size: 53px;
  }
  .size-xl-54 {
    font-size: 54px;
  }
  .size-xl-55 {
    font-size: 55px;
  }
  .size-xl-56 {
    font-size: 56px;
  }
  .size-xl-57 {
    font-size: 57px;
  }
  .size-xl-58 {
    font-size: 58px;
  }
  .size-xl-59 {
    font-size: 59px;
  }
  .size-xl-60 {
    font-size: 60px;
  }
  .size-xl-61 {
    font-size: 61px;
  }
  .size-xl-62 {
    font-size: 62px;
  }
  .size-xl-63 {
    font-size: 63px;
  }
  .size-xl-64 {
    font-size: 64px;
  }
  .size-xl-65 {
    font-size: 65px;
  }
  .size-xl-66 {
    font-size: 66px;
  }
  .size-xl-67 {
    font-size: 67px;
  }
  .size-xl-68 {
    font-size: 68px;
  }
  .size-xl-69 {
    font-size: 69px;
  }
  .size-xl-70 {
    font-size: 70px;
  }
  .size-xl-71 {
    font-size: 71px;
  }
  .size-xl-72 {
    font-size: 72px;
  }
  .size-xl-73 {
    font-size: 73px;
  }
  .size-xl-74 {
    font-size: 74px;
  }
  .size-xl-75 {
    font-size: 75px;
  }
  .size-xl-76 {
    font-size: 76px;
  }
  .size-xl-77 {
    font-size: 77px;
  }
  .size-xl-78 {
    font-size: 78px;
  }
  .size-xl-79 {
    font-size: 79px;
  }
  .size-xl-80 {
    font-size: 80px;
  }
  .size-xl-81 {
    font-size: 81px;
  }
  .size-xl-82 {
    font-size: 82px;
  }
  .size-xl-83 {
    font-size: 83px;
  }
  .size-xl-84 {
    font-size: 84px;
  }
  .size-xl-85 {
    font-size: 85px;
  }
  .size-xl-86 {
    font-size: 86px;
  }
  .size-xl-87 {
    font-size: 87px;
  }
  .size-xl-88 {
    font-size: 88px;
  }
  .size-xl-89 {
    font-size: 89px;
  }
  .size-xl-90 {
    font-size: 90px;
  }
  .size-xl-91 {
    font-size: 91px;
  }
  .size-xl-92 {
    font-size: 92px;
  }
  .size-xl-93 {
    font-size: 93px;
  }
  .size-xl-94 {
    font-size: 94px;
  }
  .size-xl-95 {
    font-size: 95px;
  }
  .size-xl-96 {
    font-size: 96px;
  }
  .size-xl-97 {
    font-size: 97px;
  }
  .size-xl-98 {
    font-size: 98px;
  }
  .size-xl-99 {
    font-size: 99px;
  }
  .size-xl-100 {
    font-size: 100px;
  }
}
@media (max-width: 1200px) {
  .size-lg-1 {
    font-size: 1px;
  }
  .size-lg-2 {
    font-size: 2px;
  }
  .size-lg-3 {
    font-size: 3px;
  }
  .size-lg-4 {
    font-size: 4px;
  }
  .size-lg-5 {
    font-size: 5px;
  }
  .size-lg-6 {
    font-size: 6px;
  }
  .size-lg-7 {
    font-size: 7px;
  }
  .size-lg-8 {
    font-size: 8px;
  }
  .size-lg-9 {
    font-size: 9px;
  }
  .size-lg-10 {
    font-size: 10px;
  }
  .size-lg-11 {
    font-size: 11px;
  }
  .size-lg-12 {
    font-size: 12px;
  }
  .size-lg-13 {
    font-size: 13px;
  }
  .size-lg-14 {
    font-size: 14px;
  }
  .size-lg-15 {
    font-size: 15px;
  }
  .size-lg-16 {
    font-size: 16px;
  }
  .size-lg-17 {
    font-size: 17px;
  }
  .size-lg-18 {
    font-size: 18px;
  }
  .size-lg-19 {
    font-size: 19px;
  }
  .size-lg-20 {
    font-size: 20px;
  }
  .size-lg-21 {
    font-size: 21px;
  }
  .size-lg-22 {
    font-size: 22px;
  }
  .size-lg-23 {
    font-size: 23px;
  }
  .size-lg-24 {
    font-size: 24px;
  }
  .size-lg-25 {
    font-size: 25px;
  }
  .size-lg-26 {
    font-size: 26px;
  }
  .size-lg-27 {
    font-size: 27px;
  }
  .size-lg-28 {
    font-size: 28px;
  }
  .size-lg-29 {
    font-size: 29px;
  }
  .size-lg-30 {
    font-size: 30px;
  }
  .size-lg-31 {
    font-size: 31px;
  }
  .size-lg-32 {
    font-size: 32px;
  }
  .size-lg-33 {
    font-size: 33px;
  }
  .size-lg-34 {
    font-size: 34px;
  }
  .size-lg-35 {
    font-size: 35px;
  }
  .size-lg-36 {
    font-size: 36px;
  }
  .size-lg-37 {
    font-size: 37px;
  }
  .size-lg-38 {
    font-size: 38px;
  }
  .size-lg-39 {
    font-size: 39px;
  }
  .size-lg-40 {
    font-size: 40px;
  }
  .size-lg-41 {
    font-size: 41px;
  }
  .size-lg-42 {
    font-size: 42px;
  }
  .size-lg-43 {
    font-size: 43px;
  }
  .size-lg-44 {
    font-size: 44px;
  }
  .size-lg-45 {
    font-size: 45px;
  }
  .size-lg-46 {
    font-size: 46px;
  }
  .size-lg-47 {
    font-size: 47px;
  }
  .size-lg-48 {
    font-size: 48px;
  }
  .size-lg-49 {
    font-size: 49px;
  }
  .size-lg-50 {
    font-size: 50px;
  }
  .size-lg-51 {
    font-size: 51px;
  }
  .size-lg-52 {
    font-size: 52px;
  }
  .size-lg-53 {
    font-size: 53px;
  }
  .size-lg-54 {
    font-size: 54px;
  }
  .size-lg-55 {
    font-size: 55px;
  }
  .size-lg-56 {
    font-size: 56px;
  }
  .size-lg-57 {
    font-size: 57px;
  }
  .size-lg-58 {
    font-size: 58px;
  }
  .size-lg-59 {
    font-size: 59px;
  }
  .size-lg-60 {
    font-size: 60px;
  }
  .size-lg-61 {
    font-size: 61px;
  }
  .size-lg-62 {
    font-size: 62px;
  }
  .size-lg-63 {
    font-size: 63px;
  }
  .size-lg-64 {
    font-size: 64px;
  }
  .size-lg-65 {
    font-size: 65px;
  }
  .size-lg-66 {
    font-size: 66px;
  }
  .size-lg-67 {
    font-size: 67px;
  }
  .size-lg-68 {
    font-size: 68px;
  }
  .size-lg-69 {
    font-size: 69px;
  }
  .size-lg-70 {
    font-size: 70px;
  }
  .size-lg-71 {
    font-size: 71px;
  }
  .size-lg-72 {
    font-size: 72px;
  }
  .size-lg-73 {
    font-size: 73px;
  }
  .size-lg-74 {
    font-size: 74px;
  }
  .size-lg-75 {
    font-size: 75px;
  }
  .size-lg-76 {
    font-size: 76px;
  }
  .size-lg-77 {
    font-size: 77px;
  }
  .size-lg-78 {
    font-size: 78px;
  }
  .size-lg-79 {
    font-size: 79px;
  }
  .size-lg-80 {
    font-size: 80px;
  }
  .size-lg-81 {
    font-size: 81px;
  }
  .size-lg-82 {
    font-size: 82px;
  }
  .size-lg-83 {
    font-size: 83px;
  }
  .size-lg-84 {
    font-size: 84px;
  }
  .size-lg-85 {
    font-size: 85px;
  }
  .size-lg-86 {
    font-size: 86px;
  }
  .size-lg-87 {
    font-size: 87px;
  }
  .size-lg-88 {
    font-size: 88px;
  }
  .size-lg-89 {
    font-size: 89px;
  }
  .size-lg-90 {
    font-size: 90px;
  }
  .size-lg-91 {
    font-size: 91px;
  }
  .size-lg-92 {
    font-size: 92px;
  }
  .size-lg-93 {
    font-size: 93px;
  }
  .size-lg-94 {
    font-size: 94px;
  }
  .size-lg-95 {
    font-size: 95px;
  }
  .size-lg-96 {
    font-size: 96px;
  }
  .size-lg-97 {
    font-size: 97px;
  }
  .size-lg-98 {
    font-size: 98px;
  }
  .size-lg-99 {
    font-size: 99px;
  }
  .size-lg-100 {
    font-size: 100px;
  }
}
@media (max-width: 992px) {
  .size-md-1 {
    font-size: 1px;
  }
  .size-md-2 {
    font-size: 2px;
  }
  .size-md-3 {
    font-size: 3px;
  }
  .size-md-4 {
    font-size: 4px;
  }
  .size-md-5 {
    font-size: 5px;
  }
  .size-md-6 {
    font-size: 6px;
  }
  .size-md-7 {
    font-size: 7px;
  }
  .size-md-8 {
    font-size: 8px;
  }
  .size-md-9 {
    font-size: 9px;
  }
  .size-md-10 {
    font-size: 10px;
  }
  .size-md-11 {
    font-size: 11px;
  }
  .size-md-12 {
    font-size: 12px;
  }
  .size-md-13 {
    font-size: 13px;
  }
  .size-md-14 {
    font-size: 14px;
  }
  .size-md-15 {
    font-size: 15px;
  }
  .size-md-16 {
    font-size: 16px;
  }
  .size-md-17 {
    font-size: 17px;
  }
  .size-md-18 {
    font-size: 18px;
  }
  .size-md-19 {
    font-size: 19px;
  }
  .size-md-20 {
    font-size: 20px;
  }
  .size-md-21 {
    font-size: 21px;
  }
  .size-md-22 {
    font-size: 22px;
  }
  .size-md-23 {
    font-size: 23px;
  }
  .size-md-24 {
    font-size: 24px;
  }
  .size-md-25 {
    font-size: 25px;
  }
  .size-md-26 {
    font-size: 26px;
  }
  .size-md-27 {
    font-size: 27px;
  }
  .size-md-28 {
    font-size: 28px;
  }
  .size-md-29 {
    font-size: 29px;
  }
  .size-md-30 {
    font-size: 30px;
  }
  .size-md-31 {
    font-size: 31px;
  }
  .size-md-32 {
    font-size: 32px;
  }
  .size-md-33 {
    font-size: 33px;
  }
  .size-md-34 {
    font-size: 34px;
  }
  .size-md-35 {
    font-size: 35px;
  }
  .size-md-36 {
    font-size: 36px;
  }
  .size-md-37 {
    font-size: 37px;
  }
  .size-md-38 {
    font-size: 38px;
  }
  .size-md-39 {
    font-size: 39px;
  }
  .size-md-40 {
    font-size: 40px;
  }
  .size-md-41 {
    font-size: 41px;
  }
  .size-md-42 {
    font-size: 42px;
  }
  .size-md-43 {
    font-size: 43px;
  }
  .size-md-44 {
    font-size: 44px;
  }
  .size-md-45 {
    font-size: 45px;
  }
  .size-md-46 {
    font-size: 46px;
  }
  .size-md-47 {
    font-size: 47px;
  }
  .size-md-48 {
    font-size: 48px;
  }
  .size-md-49 {
    font-size: 49px;
  }
  .size-md-50 {
    font-size: 50px;
  }
  .size-md-51 {
    font-size: 51px;
  }
  .size-md-52 {
    font-size: 52px;
  }
  .size-md-53 {
    font-size: 53px;
  }
  .size-md-54 {
    font-size: 54px;
  }
  .size-md-55 {
    font-size: 55px;
  }
  .size-md-56 {
    font-size: 56px;
  }
  .size-md-57 {
    font-size: 57px;
  }
  .size-md-58 {
    font-size: 58px;
  }
  .size-md-59 {
    font-size: 59px;
  }
  .size-md-60 {
    font-size: 60px;
  }
  .size-md-61 {
    font-size: 61px;
  }
  .size-md-62 {
    font-size: 62px;
  }
  .size-md-63 {
    font-size: 63px;
  }
  .size-md-64 {
    font-size: 64px;
  }
  .size-md-65 {
    font-size: 65px;
  }
  .size-md-66 {
    font-size: 66px;
  }
  .size-md-67 {
    font-size: 67px;
  }
  .size-md-68 {
    font-size: 68px;
  }
  .size-md-69 {
    font-size: 69px;
  }
  .size-md-70 {
    font-size: 70px;
  }
  .size-md-71 {
    font-size: 71px;
  }
  .size-md-72 {
    font-size: 72px;
  }
  .size-md-73 {
    font-size: 73px;
  }
  .size-md-74 {
    font-size: 74px;
  }
  .size-md-75 {
    font-size: 75px;
  }
  .size-md-76 {
    font-size: 76px;
  }
  .size-md-77 {
    font-size: 77px;
  }
  .size-md-78 {
    font-size: 78px;
  }
  .size-md-79 {
    font-size: 79px;
  }
  .size-md-80 {
    font-size: 80px;
  }
  .size-md-81 {
    font-size: 81px;
  }
  .size-md-82 {
    font-size: 82px;
  }
  .size-md-83 {
    font-size: 83px;
  }
  .size-md-84 {
    font-size: 84px;
  }
  .size-md-85 {
    font-size: 85px;
  }
  .size-md-86 {
    font-size: 86px;
  }
  .size-md-87 {
    font-size: 87px;
  }
  .size-md-88 {
    font-size: 88px;
  }
  .size-md-89 {
    font-size: 89px;
  }
  .size-md-90 {
    font-size: 90px;
  }
  .size-md-91 {
    font-size: 91px;
  }
  .size-md-92 {
    font-size: 92px;
  }
  .size-md-93 {
    font-size: 93px;
  }
  .size-md-94 {
    font-size: 94px;
  }
  .size-md-95 {
    font-size: 95px;
  }
  .size-md-96 {
    font-size: 96px;
  }
  .size-md-97 {
    font-size: 97px;
  }
  .size-md-98 {
    font-size: 98px;
  }
  .size-md-99 {
    font-size: 99px;
  }
  .size-md-100 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .size-xs-1 {
    font-size: 1px;
  }
  .size-xs-2 {
    font-size: 2px;
  }
  .size-xs-3 {
    font-size: 3px;
  }
  .size-xs-4 {
    font-size: 4px;
  }
  .size-xs-5 {
    font-size: 5px;
  }
  .size-xs-6 {
    font-size: 6px;
  }
  .size-xs-7 {
    font-size: 7px;
  }
  .size-xs-8 {
    font-size: 8px;
  }
  .size-xs-9 {
    font-size: 9px;
  }
  .size-xs-10 {
    font-size: 10px;
  }
  .size-xs-11 {
    font-size: 11px;
  }
  .size-xs-12 {
    font-size: 12px;
  }
  .size-xs-13 {
    font-size: 13px;
  }
  .size-xs-14 {
    font-size: 14px;
  }
  .size-xs-15 {
    font-size: 15px;
  }
  .size-xs-16 {
    font-size: 16px;
  }
  .size-xs-17 {
    font-size: 17px;
  }
  .size-xs-18 {
    font-size: 18px;
  }
  .size-xs-19 {
    font-size: 19px;
  }
  .size-xs-20 {
    font-size: 20px;
  }
  .size-xs-21 {
    font-size: 21px;
  }
  .size-xs-22 {
    font-size: 22px;
  }
  .size-xs-23 {
    font-size: 23px;
  }
  .size-xs-24 {
    font-size: 24px;
  }
  .size-xs-25 {
    font-size: 25px;
  }
  .size-xs-26 {
    font-size: 26px;
  }
  .size-xs-27 {
    font-size: 27px;
  }
  .size-xs-28 {
    font-size: 28px;
  }
  .size-xs-29 {
    font-size: 29px;
  }
  .size-xs-30 {
    font-size: 30px;
  }
  .size-xs-31 {
    font-size: 31px;
  }
  .size-xs-32 {
    font-size: 32px;
  }
  .size-xs-33 {
    font-size: 33px;
  }
  .size-xs-34 {
    font-size: 34px;
  }
  .size-xs-35 {
    font-size: 35px;
  }
  .size-xs-36 {
    font-size: 36px;
  }
  .size-xs-37 {
    font-size: 37px;
  }
  .size-xs-38 {
    font-size: 38px;
  }
  .size-xs-39 {
    font-size: 39px;
  }
  .size-xs-40 {
    font-size: 40px;
  }
  .size-xs-41 {
    font-size: 41px;
  }
  .size-xs-42 {
    font-size: 42px;
  }
  .size-xs-43 {
    font-size: 43px;
  }
  .size-xs-44 {
    font-size: 44px;
  }
  .size-xs-45 {
    font-size: 45px;
  }
  .size-xs-46 {
    font-size: 46px;
  }
  .size-xs-47 {
    font-size: 47px;
  }
  .size-xs-48 {
    font-size: 48px;
  }
  .size-xs-49 {
    font-size: 49px;
  }
  .size-xs-50 {
    font-size: 50px;
  }
  .size-xs-51 {
    font-size: 51px;
  }
  .size-xs-52 {
    font-size: 52px;
  }
  .size-xs-53 {
    font-size: 53px;
  }
  .size-xs-54 {
    font-size: 54px;
  }
  .size-xs-55 {
    font-size: 55px;
  }
  .size-xs-56 {
    font-size: 56px;
  }
  .size-xs-57 {
    font-size: 57px;
  }
  .size-xs-58 {
    font-size: 58px;
  }
  .size-xs-59 {
    font-size: 59px;
  }
  .size-xs-60 {
    font-size: 60px;
  }
  .size-xs-61 {
    font-size: 61px;
  }
  .size-xs-62 {
    font-size: 62px;
  }
  .size-xs-63 {
    font-size: 63px;
  }
  .size-xs-64 {
    font-size: 64px;
  }
  .size-xs-65 {
    font-size: 65px;
  }
  .size-xs-66 {
    font-size: 66px;
  }
  .size-xs-67 {
    font-size: 67px;
  }
  .size-xs-68 {
    font-size: 68px;
  }
  .size-xs-69 {
    font-size: 69px;
  }
  .size-xs-70 {
    font-size: 70px;
  }
  .size-xs-71 {
    font-size: 71px;
  }
  .size-xs-72 {
    font-size: 72px;
  }
  .size-xs-73 {
    font-size: 73px;
  }
  .size-xs-74 {
    font-size: 74px;
  }
  .size-xs-75 {
    font-size: 75px;
  }
  .size-xs-76 {
    font-size: 76px;
  }
  .size-xs-77 {
    font-size: 77px;
  }
  .size-xs-78 {
    font-size: 78px;
  }
  .size-xs-79 {
    font-size: 79px;
  }
  .size-xs-80 {
    font-size: 80px;
  }
  .size-xs-81 {
    font-size: 81px;
  }
  .size-xs-82 {
    font-size: 82px;
  }
  .size-xs-83 {
    font-size: 83px;
  }
  .size-xs-84 {
    font-size: 84px;
  }
  .size-xs-85 {
    font-size: 85px;
  }
  .size-xs-86 {
    font-size: 86px;
  }
  .size-xs-87 {
    font-size: 87px;
  }
  .size-xs-88 {
    font-size: 88px;
  }
  .size-xs-89 {
    font-size: 89px;
  }
  .size-xs-90 {
    font-size: 90px;
  }
  .size-xs-91 {
    font-size: 91px;
  }
  .size-xs-92 {
    font-size: 92px;
  }
  .size-xs-93 {
    font-size: 93px;
  }
  .size-xs-94 {
    font-size: 94px;
  }
  .size-xs-95 {
    font-size: 95px;
  }
  .size-xs-96 {
    font-size: 96px;
  }
  .size-xs-97 {
    font-size: 97px;
  }
  .size-xs-98 {
    font-size: 98px;
  }
  .size-xs-99 {
    font-size: 99px;
  }
  .size-xs-100 {
    font-size: 100px;
  }
}
@media (max-width: 991.98px) {
  html {
    overflow-x: hidden;
  }
}

/*# sourceMappingURL=main.css.map */
