/* ======================================================
   AVARTHANA TECHNOLOGIES
   HOMEPAGE SHARED STYLES
   Release 1.6.10 (Production)

   PURPOSE
   Shared homepage styles ONLY.
   Individual sections own their own CSS.
====================================================== */

/* ---------- Homepage Section Spacing ---------- */

section{
    padding:0px 0;
}

/* ---------- Shared Section Header ---------- */

.section-subtitle{
    text-transform:uppercase;
    letter-spacing:4px;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:48px;
    font-weight:700;
    color:var(--secondary);
    margin:0 0 20px;
}

.section-description{
    font-size:20px;
    line-height:1.8;
    color:var(--muted);
    max-width:850px;
    margin:0 auto;
}

/* ---------- Shared Utilities ---------- */

.text-center{
    text-align:center;
}

.mt-40{
    margin-top:40px;
}

.mb-40{
    margin-bottom:40px;
}

/* ---------- Responsive ---------- */

@media(max-width:992px){
    .section-title{
        font-size:38px;
    }
}

@media(max-width:768px){

    section{
        padding:65px 0;
    }

    .section-title{
        font-size:34px;
    }

    .section-description{
        font-size:18px;
    }

}