@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:#1c2fa3;
}

/* 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;
}

/* ABOUT */

.about-section{
    min-height:760px;
    padding:120px 20px 90px;

    text-align:center;
    color:white;

    background:
        radial-gradient(circle at 85% 70%, rgba(160, 14, 82, 0.7), transparent 35%),
        linear-gradient(135deg, #07125a 0%, #12248c 50%, #6d0f49 100%);
}

.about-section h1{
    font-size:54px;
    margin-bottom:35px;
}

.about-text{
    max-width:800px;
    margin:0 auto 55px;

    font-size:14px;
    line-height:1.35;
}

/* FOUNDERS */

.founders{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.founder-card{
    width:310px;
    min-height:370px;

    background:white;
    color:#111;

    border-radius:10px;

    padding:38px 24px 28px;

    text-align:center;
}

.founder-img{
    width:84px;
    height:84px;

    margin:0 auto 20px;

    background:#d9d9d9;

    border-radius:50%;
    overflow:hidden;
}

.founder-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.founder-card h3{
    color:#1c2fa3;
    font-size:20px;
    margin-bottom:5px;
}

.founder-card h4{
    color:#d61252;
    font-size:13px;
    margin-bottom:22px;
}

.founder-card p{
    font-size:11px;
    line-height:1.3;
    margin-bottom:18px;
}

.founder-card em{
    display:block;
    font-size:10px;
    line-height:1.25;
}

/* BOTTOM IMAGE */

.about-footer-image{
    width:100%;
    background:#1230a3;

    border-top:6px solid white;
    border-bottom:6px solid white;

    overflow:hidden;

    line-height:0;
}

.about-footer-image img{
    width:100%;
    height:auto;

    display:block;

    /* FIX */
    margin-bottom:-350px;
}

/* 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;
    }

    .about-section{
        padding:75px 18px 50px;
    }

    .about-section h1{
        font-size:34px;
        margin-bottom:25px;
    }

    .about-text{
        font-size:10px;
        max-width:340px;
        margin-bottom:35px;
    }

    .founders{
        gap:22px;
    }

    .founder-card{
        width:155px;
        min-height:300px;
        padding:25px 12px 18px;
    }

    .founder-img{
        width:55px;
        height:55px;
        margin-bottom:14px;
    }

    .founder-card h3{
        font-size:12px;
    }

    .founder-card h4{
        font-size:9px;
        margin-bottom:12px;
    }

    .founder-card p{
        font-size:7px;
    }

    .founder-card em{
        font-size:7px;
    }

    .about-footer-image{
        height:200px;
    }

    footer{
        font-size:10px;
        padding:18px;
    }
}