:root{
    --hero-max-width: 1380px;
    --hero-gap: clamp(20px, 3vw, 48px);
    --hero-copy-width: 560px;
    --hero-visual-width: 820px;
    --glass-bg: rgba(255,255,255,.08);
    --glass-border: rgba(255,255,255,.14);
    --promo-blue-900:#062a63;
    --promo-blue-800:#0a3e83;
    --promo-blue-700:#0b5ea8;
    --promo-blue-600:#0e86d4;
    --promo-blue-500:#19a8f2;
    --promo-cyan:#4fcfff;
    --promo-white:#ffffff;
    --promo-text-soft:rgba(255,255,255,.86);
    --promo-text-muted:rgba(255,255,255,.72);
    --promo-dark-overlay:rgba(2,15,31,.46);
}

html{
    -webkit-text-size-adjust:100%;
}

html, body{
    margin:0;
    padding:0;
    min-height:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
    background:#071b33;
}

body{
    font-family: Inter, Arial, sans-serif;
    color:#fff;
}

.promo-page{
    position:relative;
    min-height:100vh;
    overflow-x:hidden;
}

.promo-fixed-bg{
    position:fixed;
    inset:0;
    background:url('../img/bg_estadio.jpg') center center / cover no-repeat;
    z-index:0;
}

.promo-fixed-bg::before{
    content:"";
    position:absolute;
    inset:0;
}

.promo-content{
    position:relative;
    z-index:2;
}
.div_glass{
    position: relative;
    z-index: 4;
    padding: clamp(22px, 2.5vw, 32px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
/* HERO */
.promo-hero-split{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:clamp(20px, 4vw, 48px) 0 clamp(24px, 5vw, 64px);
}

.hero-container{
    width:min(100%, var(--hero-max-width));
    margin:0 auto;
    padding-left:clamp(16px, 3vw, 40px);
    padding-right:clamp(16px, 3vw, 40px);
}

.hero-row{
    min-height:calc(100vh - 80px);
    row-gap:clamp(18px, 4vw, 42px);
}

.hero-copy-box{
    max-width:560px;
    position:relative;
    z-index:4;

    padding:clamp(22px,2.5vw,32px);
    border-radius:28px;

    /* vidrio */
    background:rgba(255,255,255,0.06);

    backdrop-filter:blur(14px) saturate(160%);
    -webkit-backdrop-filter:blur(14px) saturate(160%);

    border:1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.25),
        inset 0 -1px 0 rgba(255,255,255,0.08);
}
.hero-copy-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;

    background:linear-gradient(
        120deg,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0.10) 30%,
        rgba(255,255,255,0.04) 55%,
        rgba(255,255,255,0.0) 70%
    );

    pointer-events:none;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(135deg, rgba(79,207,255,.18), rgba(10,62,131,.28));
    border:1px solid rgba(79,207,255,.28);
    color:#eaf8ff;
    font-size:clamp(.78rem, 1vw, .95rem);
    font-weight:800;
    margin-bottom:24px;
    line-height:1.2;
    letter-spacing:.2px;
    text-shadow:0 2px 10px rgba(0,0,0,.22);
}

.hero-heading{
    font-size:clamp(2rem,5vw,4.1rem);
    line-height:0.98;
    font-weight:900;
    color:#ffffff;

    text-shadow:
        0 6px 22px rgba(0,0,0,.35),
        0 1px 0 rgba(255,255,255,.08);
}

.hero-heading span{
    color:#4fcfff;

    text-shadow:
        0 6px 20px rgba(79,207,255,.35),
        0 2px 10px rgba(0,0,0,.25);
}

.hero-description{
    font-size:clamp(1rem,1.25vw,1.14rem);
    line-height:1.75;
    color:rgba(255,255,255,0.92);

    text-shadow:0 3px 14px rgba(0,0,0,0.28);

    margin-bottom:clamp(20px,2.4vw,30px);
}

.hero-description strong{
    color:#ffffff;
    font-weight:900;
}

.hero-highlights{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
    margin-bottom:clamp(18px, 2.4vw, 28px);
}

.hero-highlight-item{

    background:rgba(255,255,255,0.06);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.18);

    border-radius:18px;

    padding:16px 18px;

    box-shadow:
        0 12px 26px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.22);
}

.hero-highlight-item strong{
    display:block;
    color:#ffffff;
    font-size:clamp(.98rem, 1vw, 1.1rem);
    font-weight:900;
    margin-bottom:6px;
    line-height:1.2;
}

.hero-highlight-item span{
    display:block;
    color:rgba(255,255,255,.78);
    font-size:clamp(.82rem, .95vw, .93rem);
    line-height:1.45;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:16px;
}

.hero-btn-primary{

    background:linear-gradient(
        135deg,
        #0e86d4,
        #19a8f2
    ) !important;

    border:none !important;

    box-shadow:
        0 10px 24px rgba(14,134,212,.45),
        inset 0 1px 0 rgba(255,255,255,.3);

    color:white !important;
}

.hero-btn-primary:hover{
    background:linear-gradient(135deg, var(--promo-blue-700), var(--promo-blue-500)) !important;
    color:#fff !important;
    transform:translateY(-1px);
}

.hero-btn-secondary{
    border:1px solid rgba(255,255,255,.22) !important;
    color:#fff !important;
    background:rgba(255,255,255,.04) !important;
    backdrop-filter:blur(6px);
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,.10) !important;
    color:#fff !important;
}

.hero-note{
    margin:0;
    color:rgba(255,255,255,.84);
    font-size:clamp(.84rem, .95vw, .95rem);
    line-height:1.55;
    text-shadow:0 2px 10px rgba(0,0,0,.22);
}
/* VISUAL */
.hero-visual-stage{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:clamp(380px, 58vw, 700px);
}

.hero-visual-card{
    width:min(100%, var(--hero-visual-width));
    aspect-ratio: 1 / 0.88;
    position:relative;
    margin-inline:auto;
}

.visual-logo{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:clamp(180px, 30vw, 330px);
    z-index:5;
    filter:drop-shadow(0 10px 24px rgba(0,0,0,.18));
}

.visual-title{
    position: absolute;
    top: clamp(68px, 12vw, 70px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 28vw, 390px);
    z-index: 5;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .18));
}

.visual-shield{
    position: absolute;
    top: clamp(132px, 23vw, 205px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(220px, 24vw, 360px);
    z-index: 4;
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .28));
    animation: floatShield 4.5s ease-in-out infinite;
}

.visual-character{
    position:absolute;
    left: clamp(-8px, 1vw, 20px);
    bottom: clamp(-20px, -2vw, 50px);
    width: clamp(95px, 21vw, 318px);
    z-index:6;
    filter:drop-shadow(0 18px 34px rgba(0,0,0,.30));
}

.visual-tickets{
    position:absolute;
    right: clamp(-6px, 6vw, 30px);
    bottom: clamp(-20px, -4vw, 77px);
    width: clamp(90px, 19vw, 280px);
    z-index:6;
    transform:rotate(45deg);
    filter:drop-shadow(0 18px 34px rgba(0,0,0,.30));
    animation: floatTickets 5.2s ease-in-out infinite;
}

@keyframes floatShield{
    0%,100%{ transform:translateX(-50%) translateY(0); }
    50%{ transform:translateX(-50%) translateY(-8px); }
}

@keyframes floatTickets{
    0%,100%{ transform:rotate(45deg) translateY(0); }
    50%{ transform:rotate(42deg) translateY(-6px); }
}

/* TABLET */
@media (max-width: 991.98px){
    .promo-fixed-bg{
        background:url('../img/bg_estadio_movil.png') center center / cover no-repeat;
    }
    .visual-title{
        width: clamp(100px, 40vw, 390px);
        top: clamp(20px, 6vw, 60px);
    }
    .visual-shield{
        width: clamp(220px, 35vw, 360px);
        top: clamp(132px, 19vw, 205px);
    }
    .visual-character{
        left: clamp(-15px, -2vw, 15px);
        bottom: clamp(-13px, -1vw, 50px);
        width: clamp(95px, 30vw, 320px);
    }
    .visual-tickets{
        right: clamp(-6px, -1vw, 30px);
        bottom: clamp(-20px, 0vw, 77px);
        width: clamp(90px, 26vw, 280px);
    }
    .promo-hero-split{
        min-height:auto;
        padding:20px 0 28px;
    }

    .hero-row{
        min-height:auto;
        row-gap:18px;
    }

    .hero-copy-box{
        max-width:100%;
        text-align:center;
        margin-inline:auto;
    }

    .hero-description{
        margin-inline:auto;
    }

    .hero-highlights{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        max-width:560px;
        margin-inline:auto;
        margin-bottom:20px;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-note{
        max-width:520px;
        margin-inline:auto;
    }

    .hero-visual-stage{
        min-height:auto;
        margin-bottom:6px;
    }

    .hero-visual-card{
        width:min(100%, 540px);
        aspect-ratio:1 / 0.95;
    }
}

/* MOBILE */
@media (max-width: 767.98px){
    .promo-hero-split{
        padding:16px 0 24px;
    }

    .hero-row{
        row-gap:14px;
    }

    .hero-badge{
        font-size:.78rem;
        padding:9px 14px;
        margin-bottom:14px;
    }

    .hero-heading{
        font-size:clamp(1.9rem, 8.5vw, 2.45rem);
        line-height:1.03;
        margin-bottom:14px;
    }

    .hero-description{
        font-size:.95rem;
        line-height:1.62;
        margin-bottom:16px;
        max-width:42ch;
    }

    .hero-highlights{
        grid-template-columns:1fr;
        max-width:320px;
        gap:10px;
        margin-bottom:16px;
    }

    .hero-highlight-item{
        min-height:auto;
        padding:14px 16px;
        border-radius:16px;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
        max-width:320px;
        margin-inline:auto;
        margin-bottom:12px;
    }

    .hero-actions .btn{
        width:100%;
        min-height:52px;
        padding-inline:18px;
    }

    .hero-note{
        font-size:.84rem;
        line-height:1.45;
        max-width:320px;
    }

    .hero-visual-card{
        width:min(100%, 360px);
        aspect-ratio:1 / 1.04;
    }

    .visual-logo{
        width: clamp(150px, 50vw, 210px);
        top:0;
    }

    .visual-title{
        width: clamp(217px, 60vw, 265px);
        top: clamp(54px, 6vw, 70px);
    }

    .visual-shield{
        width: clamp(200px, 70vw, 215px);
        top: clamp(114px, 33vw, 160px);
    }

    .visual-character{
        width: clamp(82px, 36vw, 140px);
        left:0;
        bottom:10px;
    }

    .visual-tickets{
        width: clamp(78px, 31vw, 124px);
        right: 5px;
        bottom: clamp(0px, 2vw, 42px);
    }
}

/* SMALL DEVICES */
@media (max-width: 389.98px){
    .hero-container{
        padding-left:14px;
        padding-right:14px;
    }

    .hero-heading{
        font-size:1.75rem;
    }

    .hero-description{
        font-size:.90rem;
    }

    .hero-visual-card{
        width:min(100%, 315px);
    }

    .visual-title{
        width:245px;
    }

    .visual-shield{
        width:215px;
    }

    .visual-character{
        width:78px;
    }

    .visual-tickets{
        width:74px;
    }
}

.promo-steps-section{
    padding:clamp(22px, 4vw, 42px) 0;
}

.steps-container{
    width:min(100%, 1220px);
    margin:0 auto;
    padding-inline:clamp(16px, 3vw, 40px);
}

.steps-panel{
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.13);
    border-radius:28px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 22px 40px rgba(0,0,0,.18);
    padding:clamp(22px, 4vw, 36px);
}

.steps-header{
    margin-bottom:clamp(18px, 3vw, 28px);
}

.steps-title{
    font-size:clamp(1.7rem, 3vw, 2.5rem);
    font-weight:900;
    color:#fff;
    margin-bottom:10px;
}

.steps-subtitle{
    margin:0 auto;
    max-width:680px;
    color:rgba(255,255,255,.80);
    font-size:clamp(.95rem, 1.2vw, 1.05rem);
    line-height:1.7;
}

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

.step-promo-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:22px 20px;
    text-align:center;
    min-height:100%;
}

.step-number{
    width:50px;
    height:50px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#fff;
    color:#009fe3;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
}

.step-promo-card h3{
    font-size:1.25rem;
    font-weight:900;
    color:#fff;
    margin-bottom:10px;
}

.step-promo-card p{
    margin:0;
    color:rgba(255,255,255,.82);
    line-height:1.7;
    font-size:.95rem;
}

@media (max-width: 991.98px){
    .steps-grid{
        grid-template-columns:1fr;
    }
}

.promo-access-section{
    padding:clamp(26px, 5vw, 60px) 0 clamp(34px, 6vw, 80px);
}

.access-container{
    width:min(100%, 1260px);
    margin:0 auto;
    padding-inline:clamp(16px, 3vw, 40px);
}

.access-panel{
    padding:clamp(22px, 3vw, 34px);
    border-radius:28px;
    height:100%;
    position:relative;
}

.access-panel-login{
    min-height:100%;
}

.access-header{
    margin-bottom:24px;
}

.access-kicker{
    display:inline-block;
    font-size:.82rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--promo-cyan);
    margin-bottom:10px;
}

.access-title{
    font-size:clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight:900;
    color:#fff;
    margin-bottom:8px;
    line-height:1.1;
    text-shadow:0 4px 18px rgba(0,0,0,.18);
}

.access-text{
    font-size:clamp(.95rem, 1.1vw, 1rem);
    line-height:1.7;
    color:rgba(255,255,255,.82);
    margin-bottom:0;
}

.form-label-light{
    color:#fff;
    font-weight:700;
    margin-bottom:8px;
}

.form-control-xl{
    min-height:56px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    color:#111;
    padding:12px 16px;
    font-size:1rem;
    box-shadow:none !important;
}

.form-control-xl:focus{
    border:1px solid rgba(79,207,255,.35);
    box-shadow:0 0 0 4px rgba(79,207,255,.10) !important;
}

.login-helper{
    display:flex;
    align-items:center;
    gap:12px;
    margin:22px 0 18px;
    color:rgba(255,255,255,.65);
    font-size:.9rem;
    font-weight:600;
}

.login-helper-line{
    flex:1;
    height:1px;
    background:rgba(255,255,255,.14);
}

@media (max-width: 991.98px){
    .promo-access-section{
        padding-top:22px;
    }
}

@media (max-width: 767.98px){
    .access-panel{
        padding:22px 18px;
        border-radius:24px;
    }

    .access-title{
        font-size:1.65rem;
    }

    .form-control-xl{
        min-height:52px;
        font-size:.95rem;
    }
}

.invalid-feedback{
    display:block;
    font-size:.85rem;
    margin-top:6px;
    color:#ffd4d4;
}

.form-control.is-invalid{
    border-color:#ff8e8e !important;
    box-shadow:0 0 0 4px rgba(255, 94, 94, .10) !important;
}

.form-control.is-valid{
    border-color:#72e0a3 !important;
    box-shadow:0 0 0 4px rgba(114, 224, 163, .10) !important;
}

.promo-access-section{
    padding:clamp(28px, 5vw, 64px) 0 clamp(36px, 6vw, 84px);
}

.access-container{
    width:min(100%, 980px);
    margin:0 auto;
    padding-inline:clamp(16px, 3vw, 40px);
}

.access-card{
    padding:clamp(22px, 3vw, 34px);
    border-radius:28px;
    position:relative;
}

.access-card-header{
    margin-bottom:24px;
}

.access-kicker{
    display:inline-block;
    font-size:.82rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--promo-cyan);
    margin-bottom:10px;
}

.access-title{
    font-size:clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight:900;
    color:#fff;
    margin-bottom:8px;
    line-height:1.1;
}

.access-text{
    font-size:clamp(.95rem, 1.1vw, 1rem);
    line-height:1.7;
    color:rgba(255,255,255,.82);
    margin-bottom:0;
}

.access-link-switch{
    color:rgba(255,255,255,.88) !important;
    font-weight:700;
    text-decoration:underline !important;
    padding:0 !important;
    border:none !important;
    background:transparent !important;
    box-shadow:none !important;
}

.access-link-switch:hover{
    color:#fff !important;
}

.link-terminos{
    color:#4fcfff;
    font-weight:700;
}

.link-terminos:hover{
    color:#8ae3ff;
}

.promo-legal-footer{
    padding:28px 16px 38px;
    text-align:center;
}

.legal-container{
    max-width:900px;
    margin:0 auto;
}

.legal-links{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    font-size:.9rem;
    margin-bottom:12px;
}

.legal-links a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:all .2s ease;
}

.legal-links a:hover{
    color:#fff;
    text-decoration:underline;
}

.legal-divider{
    color:rgba(255,255,255,.35);
}

.legal-copy{
    font-size:.8rem;
    line-height:1.5;
    color:rgba(255,255,255,1);
}

.color_white {
    color: #fff;
}
.form-control{
    background: none;
    border: 1px solid #fff !important;
    color: #fff;
}

.form-control:focus{
    color: #fff !important;
    background: none;
    border: 1px solid #fff;
}

.promo-ranking-section{
    padding:clamp(28px, 5vw, 60px) 0;
}

.ranking-container{
    width:min(100%, 1100px);
    margin:0 auto;
    padding-inline:clamp(16px, 3vw, 40px);
}

.ranking-panel{
    padding:clamp(24px, 3vw, 34px);
    border-radius:28px;
}

.ranking-header{
    margin-bottom:24px;
}

.ranking-title{
    font-size:clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight:900;
    color:#fff;
    margin-bottom:10px;
}

.ranking-text{
    color:rgba(255,255,255,.80);
    font-size:1rem;
    line-height:1.7;
    max-width:700px;
    margin:0 auto;
}

#tabla_ranking_publico thead th{
    border-bottom:1px solid rgba(255,255,255,.10) !important;
    color:rgba(255,255,255,.72) !important;
    white-space:nowrap;
}

#tabla_ranking_publico tbody td{
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
    vertical-align:middle;
}

.ranking-posicion{
    width:40px;
    height:40px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    background:rgba(255,255,255,.10);
    color:#fff;
}

.ranking-posicion.top-1{
    background:linear-gradient(135deg, #f6d365, #fda085);
    color:#1e1e1e;
}

.ranking-posicion.top-2{
    background:linear-gradient(135deg, #d7d2cc, #d7d2cc);
    color:#1e1e1e;
}

.ranking-posicion.top-3{
    background:linear-gradient(135deg, #c79081, #dfa579);
    color:#1e1e1e;
}

.ranking-amount{
    font-weight:900;
    color:#4fcfff;
}

.ranking-facturas{
    color:rgba(255,255,255,.82);
    font-weight:700;
}
.steps-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:20px;
    margin-top:24px;
}

.step-promo-card{
    position:relative;
    padding:22px 18px 22px;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    text-align:center;
    /* overflow:hidden; */
    min-height:320px;
}

.step-number{
    position:absolute;
    top:14px;
    left:14px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.16);
    color:#fff;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    z-index:5;
}

.step-visual-wrap{
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -20%);
}

.step-visual-img{
    max-width: 235px;
    max-height: 190px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .18));
}

.step-icon-circle{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 100px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(11, 94, 168, .28);
    position: relative;
    z-index: 3;
}

.step-icon-circle img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.step-promo-card h3{
    color:#fff;
    font-weight:800;
    font-size:1.5rem;
    margin:0 0 10px;
    position:relative;
    z-index:3;
}

.step-promo-card p{
    color:rgba(255,255,255,.88);
    line-height:1.75;
    font-size:.98rem;
    margin:0 auto;
    max-width:92%;
    position:relative;
    z-index:3;
}

.step-promo-card strong{
    color:#fff;
    font-weight:900;
}

.step-visual-placeholder{
    width:110px;
    height:90px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    border:1px dashed rgba(255,255,255,.16);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Responsive */
@media (max-width: 991.98px){
    .steps-grid{
        grid-template-columns:1fr;
    }

    .step-promo-card{
        min-height:auto;
    }
}

@media (max-width: 767.98px){
    .step-promo-card{
        padding:20px 16px 20px;
        border-radius:22px;
    }

    .step-visual-wrap{
        height:95px;
    }

    .step-visual-img{
        max-width: 180px;
        max-height: 125px;
    }

    .step-promo-card h3{
        font-size:1.35rem;
    }

    .step-promo-card p{
        font-size:.94rem;
        line-height:1.65;
    }

    .step-icon-circle{
        margin: 75px auto 14px;
    }
}