/* ==========================================
   HOME PAGE
========================================== */

/* ---------- HERO ---------- */

.hero{

    text-align:center;

    padding:40px 24px;

    background:linear-gradient(135deg,#072554,#0d3473);

    color:#fff;

    overflow:hidden;
}

.hero .badge{

    margin-bottom:16px;
}

.hero h1{

    color:#fff;

    font-size:34px;

    line-height:1.2;

    margin:18px 0;
}

.hero p{

    color:rgba(255,255,255,.85);

    margin-bottom:24px;
}

/* ---------- SEARCH ---------- */

.section input{

    height:56px;

    font-size:16px;

    border-radius:16px;
}

/* ---------- SERVICE CARD ---------- */

.service-card{

    text-align:center;

    transition:.3s;
}

.service-card:hover{

    transform:translateY(-6px);
}

.service-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:18px;

    border-radius:50%;

    background:#eef8e8;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;
}

.service-card h3{

    margin-bottom:10px;
}

.service-card p{

    min-height:48px;

    margin-bottom:20px;
}

.service-card .btn{

    width:100%;
}

/* ---------- LIVE CARD ---------- */

.section .card h3{

    color:#072554;
}

/* ---------- STATS ---------- */

.section .grid .card{

    text-align:center;
}

.section .grid .card h2{

    color:#57C11D;

    font-size:36px;

    margin-bottom:8px;
}

/* ---------- DESKTOP ---------- */

@media(min-width:768px){

.hero{

    padding:70px 50px;
}

.hero h1{

    font-size:48px;
}

.service-card{

    padding:24px;
}

}

@media(min-width:1100px){

.hero{

    padding:90px;
}

.hero h1{

    font-size:56px;
}

}