/**
 * ==========================================
 * Outel Public Plans
 * ==========================================
 */

.outel-plans {

    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap:25px;

    max-width:1100px;

    margin:40px auto;

}


.outel-plan {

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    padding:30px;

    text-align:center;

}


.outel-plan h3 {

    margin-top:0;

    font-size:24px;

}


.outel-plan .price {

    font-size:32px;

    font-weight:700;

    margin:20px 0;

}


.outel-plan .billing-cycle {

    color:#666;

    margin-bottom:20px;

}


.outel-plan .button {

    display:inline-block;

    padding:12px 25px;

    background:#2563eb;

    color:#fff;

    border-radius:6px;

    text-decoration:none;

}