.home-modern { padding: 18px 0 70px; }
.home-modern .container { max-width: 1200px; }
.home-page .container {
    max-width: 1200px;
    padding-left: 18px;
    padding-right: 18px;
}
.home-hero {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 460px);
    gap: 26px;
    align-items: center;
    margin-bottom: 42px;
}
.home-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--theme-color);
    margin-bottom: 16px;
}
.home-tag::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--theme-color);
}
.home-title {
    font-family: var(--heading-font);
    font-size: clamp(38px, 5vw, 70px);
    line-height: .95;
    letter-spacing: -1px;
    color: var(--color-dark);
    margin-bottom: 18px;
    font-weight: 800;
}
.home-title em {
    color: var(--theme-color);
    font-style: normal;
}
.home-sub {
    max-width: 620px;
    color: var(--body-text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.home-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.home-actions .theme-btn { border-radius: 8px; }
.home-link {
    align-self: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    color: var(--color-dark);
    font-weight: 600;
    padding-bottom: 1px;
}
.home-stats {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-info-color);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.home-stat-num {
    font-family: var(--heading-font);
    font-size: 30px;
    color: var(--color-dark);
    font-weight: 800;
    line-height: 1;
}
.home-stat-label {
    margin-top: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--body-text-color);
    font-weight: 600;
}
.hero-featured {
    border: 1px solid var(--border-info-color);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.hero-featured-img {
    position: relative;
    height: 320px;
    background: #E8F2EE;
}
.hero-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(0, 103, 79, .08);
    color: var(--theme-color);
}
.hero-featured-timer {
    position: absolute;
    right: 14px;
    bottom: 14px;
    border-radius: 8px;
    background: rgba(20, 28, 25, .85);
    color: #fff;
    padding: 8px 12px;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
}
.hero-featured-body { padding: 18px; }
.hero-featured-title {
    font-family: var(--heading-font);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}
.hero-featured-meta { color: var(--body-text-color); font-size: 13px; margin-bottom: 10px; }
.hero-featured-price { font-size: 13px; color: var(--body-text-color); }
.hero-featured-price strong {
    display: block;
    margin-top: 2px;
    font-size: 28px;
    line-height: 1;
    color: var(--color-dark);
    font-family: var(--heading-font);
}
.home-section-title {
    margin-bottom: 18px;
    font-family: var(--heading-font);
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1;
    color: var(--color-dark);
    font-weight: 800;
}
.home-auctions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.home-featured-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.home-featured-scroll::-webkit-scrollbar {
    height: 8px;
}
.home-featured-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}
.home-featured-item {
    flex: 0 0 calc((100% - (20px * 3)) / 4);
    min-width: 260px;
    scroll-snap-align: start;
}
.home-hero-right .home-auction-card {
    box-shadow: var(--box-shadow);
}
.home-hero-right .home-ac-img {
    height: 280px;
}
.hero-section .hero-single {
    min-height: 620px;
}
.hero-section .hero-img {
    min-height: 320px;
}
.hero-section .hero-img > img,
.hero-section .hero-img-content img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 292;
}
.about-left {
    min-height: 430px;
}
.about-img {
    min-height: 300px;
}
.about-img img {
    display: block;
}
.home-auction-card {
    background: #fff;
    border: 1px solid var(--border-info-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-auction-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow2);
}
.home-ac-img {
    height: 250px;
    position: relative;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid var(--border-info-color2);
}
.home-ac-img img { width: 100%; height: 100%; object-fit: contain; }
.home-ac-blank {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5c9cf;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.home-ac-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 103, 79, .08);
    color: var(--theme-color);
    border: 1px solid rgba(0, 103, 79, .15);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 8px;
}
.home-ac-status.live {
    background: rgba(214, 76, 63, .14);
    color: #d64c3f;
    border-color: rgba(214, 76, 63, .24);
}
.home-ac-countdown {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(31, 33, 37, .72);
    color: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.home-ac-time-block {
    text-align: center;
    color: #fff;
}
.home-ac-time-num {
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 1;
    display: block;
    font-weight: 700;
}
.home-ac-time-label {
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .78;
    display: block;
    margin-top: 2px;
}
.home-ac-sep {
    color: rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 1;
    padding-bottom: 4px;
}
.home-ac-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.home-ac-title {
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 10px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-ac-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-info-color2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.home-ac-price small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--body-text-color);
    font-weight: 600;
}
.home-ac-price strong {
    font-family: var(--heading-font);
    font-size: 22px;
    color: var(--color-dark);
    line-height: 1;
}
.home-ac-btn {
    border-radius: 7px;
    padding: 10px 16px;
    background: var(--color-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.card-heart-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px; flex-shrink: 0;
    background: #ffffff; border: 1px solid #e5e7eb;
    border-radius: 8px; cursor: pointer; padding: 0; margin: 0;
    transition: all 0.15s;
}
.card-heart-btn svg { width: 14px; height: 14px; stroke: #6b7280; stroke-width: 2; fill: none; transition: all 0.15s; }
.card-heart-btn.on svg { fill: #ef4444; stroke: #ef4444; }
.card-heart-btn:active { transform: scale(0.9); }
.home-featured-placeholder {
    height: 360px;
    border: 1px solid var(--border-info-color);
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #c5c9cf;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: var(--box-shadow);
}
@media (max-width: 1024px) {
    .home-hero { grid-template-columns: 1fr; }
    .home-auctions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-featured-item { flex-basis: calc((100% - (20px * 2)) / 3); }
    .hero-section .hero-single { min-height: 560px; }
}
@media (max-width: 767.98px) {
    .home-modern { padding-top: 10px; }
    .home-auctions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-featured-item { flex-basis: calc((100% - 20px) / 2); min-width: 220px; }
    .home-hero-right .home-ac-img { height: 250px; }
    .home-featured-placeholder { height: 260px; }
    .home-stats { grid-template-columns: 1fr 1fr; }
    .home-stat-num { font-size: 28px; }
    .home-ac-title { min-height: auto; }
    .hero-section .hero-single { min-height: 500px; }
    .hero-section .hero-img { min-height: 260px; }
    .about-left { min-height: 360px; }
    .about-img { min-height: 250px; }
    .home-ac-btn { display: none; }
    .card-heart-btn { display: flex; }
}
@media (max-width: 560px) {
    .home-auctions-grid { grid-template-columns: 1fr; }
    .home-featured-item { flex-basis: 100%; min-width: 85%; }
}

/* How steps / FAQs / Why */
.home-block { padding: 40px 0 20px; }
.home-block h2 { font-family: var(--heading-font); font-size: 28px; margin-bottom: 18px; color: var(--color-dark); }
.home-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; }
.home-step { border: 1px solid var(--border-info-color); border-radius: 10px; background: #fff; padding: 16px; }
.home-step-title { font-weight: 700; margin-bottom: 8px; color: var(--color-dark); }
.home-step-body { color: var(--body-text-color); font-size: 14px; line-height: 1.6; }
.home-faqs { display: grid; gap: 12px; }
.home-faq { border: 1px solid var(--border-info-color); border-radius: 10px; background: #fff; padding: 14px 16px; }
.home-faq-q { font-weight: 700; color: var(--color-dark); margin-bottom: 6px; }
.home-faq-a { color: var(--body-text-color); font-size: 14px; line-height: 1.6; }
.home-why { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; }
.home-why-item { background: #fff; border: 1px solid var(--border-info-color); border-radius: 10px; padding: 14px; }
.home-why-title { font-weight: 700; margin-bottom: 6px; color: var(--color-dark); }
.home-why-text { color: var(--body-text-color); font-size: 14px; line-height: 1.6; }
.home-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.home-cat { border: 1px solid var(--border-info-color); border-radius: 20px; padding: 8px 14px; background: #fff; color: var(--color-dark); font-weight: 600; font-size: 13px; }
.home-about {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 22px;
    align-items: center;
}
.home-about-copy p { color: var(--body-text-color); line-height: 1.7; }
@media (max-width: 900px) {
    .home-about { grid-template-columns: 1fr; }
}

/* Como funciona – polished 2 col */
.feature-area2 {
    background: #fff;
}
.home-how {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.home-how-left {
    position: sticky;
    top: 90px;
}
.home-how-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
    color: #00674F;
    margin-bottom: 16px;
}
.home-how-kicker::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #00674F;
    flex-shrink: 0;
}
.home-how-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.02;
    color: var(--color-dark);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}
.home-how-sub {
    color: var(--body-text-color);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 360px;
}
.home-how-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-info-color);
}
.home-how-stat-num {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}
.home-how-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--body-text-color);
    font-weight: 600;
    margin-top: 3px;
}
.home-how-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #00674F;
    border: 2px solid #00674F;
    border-radius: 9px;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    transition: all .18s;
}
.home-how-cta:hover { background: #00674F; color: #fff; border-color: #00674F; }
.home-how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.home-how-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    position: relative;
}
.home-how-row:not(:last-child) .home-how-num-wrap::after {
    content: '';
    position: absolute;
    top: 56px;
    left: 27px;
    width: 2px;
    bottom: 0;
    background: linear-gradient(to bottom, var(--border-info-color), transparent);
    z-index: 0;
}
.home-how-num-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2px;
}
.home-how-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-info-color);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 800;
    color: var(--body-text-color);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: background .2s, color .2s, border-color .2s;
}
.home-how-row:hover .home-how-num,
.home-how-row:first-child .home-how-num {
    background: #00674F;
    color: #fff;
    border-color: #00674F;
}
.home-how-content {
    background: #fff;
    border: 1px solid var(--border-info-color);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 14px;
    transition: box-shadow .2s, border-color .2s;
}
.home-how-row:last-child .home-how-content {
    margin-bottom: 0;
}
.home-how-row:hover .home-how-content {
    border-color: #00674F;
    box-shadow: var(--box-shadow);
}
.home-how-row-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: #00674F;
    margin-bottom: 8px;
}
.home-how-content h4 {
    font-family: var(--heading-font);
    font-size: 19px;
    color: var(--color-dark);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -.2px;
}
.home-how-content p {
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.68;
    margin: 0;
}
.hero-img,
.hero-img img,
.hero-img-content {
    border-radius: 24px;
}
.hero-img {
    overflow: hidden;
}
.hero-single {
    border-radius: 24px;
    overflow: hidden;
}
.small-banner {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .home-how { grid-template-columns: 1fr 1.3fr; gap: 40px; }
}
@media (max-width: 860px) {
    .home-how { grid-template-columns: 1fr; gap: 28px; }
    .home-how-left { position: static; }
    .home-how-sub { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   Tabs section bajo el banner — Activas / Próximas / Finalizadas
═══════════════════════════════════════════════════════════════ */
.home-tabs-section { padding: 60px 0 40px; background: #fafafa; }

.home-tabs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}
.home-tabs-title .site-title-tagline {
    display: inline-flex; align-items: center; gap: 8px;
    color: #00674F; font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 6px;
}
.home-tabs-title .site-title {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 32px);
    color: #141C19;
    font-weight: 700;
}

.home-tabs-nav {
    display: inline-flex;
    background: #fff;
    border: 1px solid #e2eae6;
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
}
.home-tabs-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent; border: 0; cursor: pointer;
    padding: 8px 14px; border-radius: 7px;
    font-size: 13px; font-weight: 600; color: #5f6670;
    transition: background .15s ease, color .15s ease;
}
.home-tabs-btn:hover { background: #f3f4f6; }
.home-tabs-btn.active { background: #141C19; color: #fff; }
.home-tabs-btn.active .home-tabs-count { background: rgba(255,255,255,0.18); color: #fff; }
.home-tabs-count {
    background: #f3f4f6; color: #5f6670;
    font-size: 11px; font-weight: 700;
    padding: 2px 7px; border-radius: 999px;
    min-width: 18px; text-align: center;
}

.home-tabs-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
}
.home-tabs-dot.dot-live     { background: #e87116; }
.home-tabs-dot.dot-upcoming { background: #1a7a48; }
.home-tabs-dot.dot-finished { background: #5f6670; }

/* Grid 5 columnas en desktop, responsive abajo */
.home-tabs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
@media (max-width: 1200px) { .home-tabs-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px)  { .home-tabs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .home-tabs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px)  { .home-tabs-grid { grid-template-columns: 1fr; } }

/* Tarjeta */
.home-tab-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ebeeef;
    transition: box-shadow .2s, transform .2s;
}
.home-tab-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.home-tab-card-img {
    position: relative; display: block; aspect-ratio: 4/3;
    background: #fff; overflow: hidden;
}
.home-tab-card-img img {
    width: 100%; height: 100%; object-fit: contain; padding: 16px;
    transition: transform .25s ease;
}
.home-tab-card:hover .home-tab-card-img img { transform: scale(1.04); }
.home-tab-card.is-ended .home-tab-card-img img { opacity: .68; filter: grayscale(.3); }

.home-tab-card-badge {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10.5px; font-weight: 700;
    padding: 4px 9px; border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    pointer-events: none; white-space: nowrap;
}
.home-tab-card-badge.badge-live     { background: rgba(232, 113, 22, 0.95); color: #fff; }
.home-tab-card-badge.badge-upcoming { background: rgba(26, 122, 72, 0.95); color: #fff; }
.home-tab-card-badge.badge-finished { background: rgba(95, 102, 112, 0.9); color: #fff; }

.home-tab-card-body { padding: 14px 14px 16px; }
.home-tab-card-title {
    font-size: 14px; font-weight: 600; line-height: 1.3;
    color: #141C19; margin: 0 0 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-tab-card-title a { color: inherit; text-decoration: none; }
.home-tab-card-title a:hover { color: #00674F; }

.home-tab-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.home-tab-card-price small {
    display: block; font-size: 10.5px; color: #8a9e97;
    text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px;
}
.home-tab-card-price strong { font-size: 16px; color: #00674F; font-weight: 700; }
.home-tab-card.is-ended .home-tab-card-price strong { color: #5f6670; }

.home-tab-card-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 12px; border-radius: 8px;
    background: #00674F; color: #fff; text-decoration: none;
    font-size: 12px; font-weight: 700;
    transition: background .15s;
}
.home-tab-card-btn:hover { background: #004f3c; color: #fff; }
.home-tab-card-btn.is-ended { background: #6b727a; }
.home-tab-card-btn.is-ended:hover { background: #4f555c; }
.home-tab-card-btn i { font-size: 11px; }

.home-tabs-empty {
    text-align: center; padding: 40px 20px;
    color: #8a9e97; font-style: italic; font-size: 14px;
}
.home-tabs-cta { text-align: center; margin-top: 26px; }

@media (max-width: 720px) {
    .home-tabs-section { padding: 36px 0 24px; }
    .home-tabs-head { flex-direction: column; align-items: flex-start; }
    .home-tabs-nav { width: 100%; overflow-x: auto; scrollbar-width: none; }
    .home-tabs-nav::-webkit-scrollbar { display: none; }
    .home-tabs-btn { white-space: nowrap; }
}

/* ════ Override colores hero (texto debajo del titulo) ══════════════
   El estilo base ponia color blanco/herencia que se hacia invisible
   sobre el fondo gris claro. Aqui forzamos colores legibles. */
.hs-1 .hero-single .hero-content p,
.hero-section .hero-single .hero-content p {
    color: #1f2937 !important;          /* gris oscuro */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.hs-1 .hero-single .hero-content .hero-sub-title,
.hero-section .hero-single .hero-content .hero-sub-title {
    background: #00674F !important;
    color: #ffffff !important;
    padding: 6px 18px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    box-shadow: 0 2px 8px rgba(0, 103, 79, 0.25);
}
.hs-1 .hero-single .hero-content .hero-title,
.hero-section .hero-single .hero-content .hero-title {
    color: #141C19 !important;
    text-shadow: 0 2px 6px rgba(255,255,255,0.4);
}
.hs-1 .hero-single .hero-content .hero-title span,
.hero-section .hero-single .hero-content .hero-title span {
    color: #00674F !important;
}
