/* ==========================================
   EC Framework v1.0
   Components
========================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:3rem;

    margin-bottom:20px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:var(--gray);

}

.divider{

    width:90px;

    height:4px;

    background:#D4AF37;

    margin:25px auto;

}

.card{

    background:#111;

    padding:40px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.10);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

}

.card h3{

    margin-bottom:20px;

    color:#fff;

}

.card p{

    color:#bdbdbd;

}

.glass{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    backdrop-filter:blur(20px);

}