/* =========================================
GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

/* =========================================
BANNER
========================================= */

.banner{

    height:330px;

    padding-top:85px;

    background:
    linear-gradient(
    rgba(0,20,70,.85),
    rgba(0,20,70,.85)
    ),

    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    text-align:center;

}

.banner h1{

    font-size:60px;

    font-weight:800;

    margin-bottom:10px;

}

.banner h4{

    margin-bottom:15px;

    color:#ffc107;

    font-size:20px;

    line-height:1.7;

}

.banner p{

    font-size:18px;

    color:#f2f2f2;

    line-height:1.8;

}

/* =========================================
MAIN SECTION
========================================= */

.sponsor{

    padding:80px 6%;

}

.title{

    font-size:42px;

    text-align:center;

    color:#00133d;

    margin-bottom:15px;

    font-weight:800;

    line-height:1.4;

}

.line{

    width:80px;
    height:4px;

    background:#ffc107;

    margin:15px auto 50px;

}

/* =========================================
CARDS
========================================= */

.cards{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.card{

    background:white;

    border-radius:22px;

    padding:35px 30px;

    text-align:center;

    box-shadow:0 5px 25px rgba(0,0,0,.1);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#00133d;

}

.card i{

    font-size:50px;

    margin-bottom:20px;

}

.gold i{
    color:#f39c12;
}

.silver i{
    color:#8f8f8f;
}

.card h2{

    margin-bottom:15px;

    color:#00133d;

    font-size:30px;

}

.price{

    font-size:30px;

    font-weight:bold;

    color:#00133d;

    margin-bottom:10px;

}

.card p{

    color:#666;

    font-size:16px;

    line-height:1.7;

}

/* =========================================
BENEFITS / CONTENT BOXES
========================================= */

.benefits{

    margin-top:80px;

    background:white;

    padding:50px;

    border-radius:25px;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.benefits h2{

    color:#00133d;

    font-size:36px;

    text-align:center;

    margin-bottom:10px;

}

.benefits p{

    color:#444;

    font-size:17px;

    line-height:1.9;

}

/* =========================================
BENEFIT GRID
========================================= */

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:30px;

}

.box{

    display:flex;

    gap:18px;

    align-items:flex-start;

    background:#f9fbff;

    padding:22px;

    border-radius:16px;

    transition:.3s;

}

.box:hover{

    background:#edf4ff;

    transform:translateY(-4px);

}

.box i{

    font-size:24px;

    color:#ffc107;

    margin-top:3px;

    min-width:25px;

}

.box div{

    color:#333;

    line-height:1.9;

    font-size:16px;

}

.box b{

    color:#00133d;

}

/* =========================================
CTA
========================================= */

.cta{

    margin-top:70px;

    padding:60px 40px;

    background:#00133d;

    border-radius:25px;

    text-align:center;

    color:white;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.cta h2{

    font-size:38px;

    margin-bottom:20px;

}

.cta p{

    font-size:18px;

    color:#ececec;

    line-height:1.8;

}

.cta a{

    display:inline-block;

    padding:16px 32px;

    background:#ffc107;

    color:black;

    text-decoration:none;

    font-weight:700;

    border-radius:45px;

    margin-top:15px;

    transition:.4s;

}

.cta a:hover{

    background:white;

    transform:translateY(-4px);

}

/* =========================================
BUTTONS
========================================= */

.btn{

    display:inline-block;

    margin-top:20px;

    padding:13px 28px;

    background:#00133d;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.btn:hover{

    background:#ffc107;

    color:black;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:991px){

    .banner{

        height:auto;

        padding:140px 20px 70px;

    }

    .banner h1{

        font-size:42px;

    }

    .banner h4{

        font-size:18px;

    }

    .title{

        font-size:34px;

    }

    .benefit-grid{

        grid-template-columns:1fr;

    }

    .benefits{

        padding:35px 25px;

    }

    .cards{

        grid-template-columns:1fr !important;

    }

}

@media(max-width:576px){

    .banner h1{

        font-size:32px;

    }

    .banner h4{

        font-size:16px;

        line-height:1.8;

    }

    .banner p{

        font-size:15px;

    }

    .title{

        font-size:28px;

    }

    .benefits h2{

        font-size:28px;

    }

    .card{

        padding:28px 20px;

    }

    .card h2{

        font-size:24px;

    }

    .price{

        font-size:24px;

    }

    .cta{

        padding:40px 20px;

    }

    .cta h2{

        font-size:28px;

    }

}