/*======================================
        HERO
======================================*/

body{

    margin:0;

    background:#F4F7FC;

    font-family:Poppins,sans-serif;

}

.drakion-hero{

    min-height:420px;

    background:linear-gradient(135deg,#071A45,#0A4FB7);

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.drakion-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-320px;

    right:-200px;

}

.drakion-hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    bottom:-250px;

    left:-180px;

}

.drakion-container{

    width:92%;

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

}

.drakion-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:100px;

    background:rgba(255,255,255,.15);

    color:white;

    backdrop-filter:blur(10px);

    margin-bottom:30px;

}

.drakion-hero h1{

    color:white;

    font-size:64px;

    margin:0;

    font-weight:800;

}

.drakion-hero p{

    color:rgba(255,255,255,.9);

    font-size:22px;

    max-width:780px;

    margin:25px auto 0;

    line-height:1.8;

}

/*======================================
        GRID
======================================*/

.drakion-cases{

    padding:80px 0;

}

.drakion-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*======================================
        CARD
======================================*/

.drakion-card{

    background:rgba(10,79,183,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(10,79,183,.12);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.drakion-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.drakion-card-image{

    height:210px;

    overflow:hidden;

}

.drakion-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.drakion-card:hover img{

    transform:scale(1.08);

}

.drakion-card-body{

    padding:24px;

}

.drakion-date{

    color:#A9D4FF;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    font-family:'Poppins',sans-serif;

}

.drakion-card h2{

    margin:14px 0;

    color:#FFFFFF;

    font-size:26px;

    line-height:1.3;

    font-family:'Poppins',sans-serif;

    font-weight:700;

}

.drakion-excerpt{

    color:#F2F6FF;

    line-height:1.8;

    font-size:16px;

    margin-bottom:24px;

    font-family:'Poppins',sans-serif;

}

.drakion-open-modal{

    border:none;

    background:#0A4FB7;

    color:white;

    border-radius:100px;

    padding:14px 24px;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

.drakion-open-modal:hover{

    background:#071A45;

}


}
/*======================================
        RESPONSIVE
======================================*/

@media(max-width:1100px){

.drakion-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.drakion-grid{

    grid-template-columns:1fr;

}

.drakion-hero h1{

    font-size:42px;

}

.drakion-hero p{

    font-size:18px;

}

}