@font-face{
    font-family:'AvantGarde';
    src:url('fonts/AvantGardeDemi.otf') format('opentype');
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'AvantGarde', sans-serif;
    overflow-x:hidden;
    background:#10135a;
}

/* NAVBAR */

.navbar{
    width:100%;
    height:74px;
    background:#1c2fa3;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 28px;

    position:fixed;
    top:0;
    z-index:999;
}

.logo img{
    height:72px;
}

.nav-links{
    display:flex;
    gap:50px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:12px;
}

.nav-links a.active{
    border-bottom:2px solid white;
    padding-bottom:4px;
}

.contact-btn{
    background:white;
    color:#1c2fa3;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-size:12px;
}

/* HERO */

.product-hero{
    padding:120px 20px 50px;
    text-align:center;
    color:white;

    background:
        radial-gradient(circle at 80% 70%, rgba(160, 14, 82, 0.55), transparent 35%),
        linear-gradient(180deg, #06145f 0%, #15115f 100%);
}

.product-hero h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:16px;
}

.product-hero p{
    font-size:14px;
}

/* IMAGE SLIDER WITHOUT CARD */

.product-slider{
    width:420px;
    margin:35px auto 25px;
    overflow:hidden;
}

.product-track{
    display:flex;
    transition:transform 0.6s ease;
}

.product-slide{
    min-width:100%;
}

.product-slide img{
    width:100%;
    height:auto;
    display:block;
}

/* WHY */

.product-hero h2{
    font-size:60px;
    margin-top:20px;
    margin-bottom:15px;
}

.small-text{
    font-size:12px;
    margin-bottom:25px;
}

/* WINS */

.wins-box{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;

    padding:25px 20px;

    border:1px solid rgba(255,255,255,0.35);
    border-radius:8px;

    background:rgba(255,255,255,0.08);
}

.win-card h3{
    font-size:16px;
    margin-bottom:12px;
}

.win-card img{
    height:75px;
    margin-bottom:10px;
}

.win-card p{
    font-size:11px;
    line-height:1.25;
}

/* BOTTOM IMAGE */

.product-footer-image{
    position:relative;
    width:100%;

    border-top:6px solid white;
    border-bottom:6px solid white;

    overflow:hidden;

    line-height:0;
}

.product-footer-image img{
    width:100%;
    height:auto;

    display:block;

    /* FIX */
    margin-bottom:-350px;
}

.product-footer-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    color:white;
    text-align:center;

    line-height:1.2;

    background:rgba(28,47,163,0.35);
}

.product-footer-content h2{
    font-size:36px;
    margin-bottom:25px;
}

.product-footer-content a{
    background:#d61c4e;
    color:white;

    text-decoration:none;
    padding:14px 45px;
    border-radius:999px;

    font-size:15px;
}

/* FOOTER */

footer{
    background:#1c2fa3;
    color:white;
    text-align:center;
    padding:26px;
    font-size:16px;
}

/* MOBILE */

@media(max-width:600px){

    .navbar{
        height:42px;
        padding:0 12px;
    }

    .logo img{
        height:34px;
    }

    .nav-links{
        gap:26px;
    }

    .nav-links a{
        font-size:6px;
    }

    .contact-btn{
        padding:5px 9px;
        font-size:6px;
    }

    .product-hero{
        padding:75px 12px 30px;
    }

    .product-hero h1{
        font-size:30px;
    }

    .product-hero p{
        font-size:8px;
    }

    .product-slider{
        width:230px;
        margin:20px auto;
    }

    .product-hero h2{
        font-size:36px;
    }

    .small-text{
        font-size:7px;
    }

    .wins-box{
        grid-template-columns:repeat(4, 1fr);
        gap:8px;
        padding:12px 8px;
    }

    .win-card h3{
        font-size:7px;
    }

    .win-card img{
        height:38px;
    }

    .win-card p{
        font-size:5px;
    }

    .product-footer-image{
        height:170px;
    }

    .product-footer-image h2{
        font-size:18px;
    }

    .product-footer-image a{
        padding:8px 24px;
        font-size:8px;
    }

    footer{
        font-size:10px;
        padding:18px;
    }
}