/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:#222;
    background:#fff;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* =========================
   CONTAINER
========================= */

.container{
    max-width:1200px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3{
    font-weight:700;
}

h4,h5,h6{
    font-weight:600;
}

p{
    line-height:1.8;
}

/* =========================
   BUTTONS
========================= */

.btn{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-success{
    background:#644ae4;
    border:none;
}

.btn-success:hover{
    background:#644ae4;
}

.btn-outline-light:hover{
    color:#000;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#22c55e;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:10px;
    font-size:2.5rem;
    font-weight:700;
}

/* =========================
   SHADOWS
========================= */

.shadow-sm{
    box-shadow:
    0 5px 15px rgba(0,0,0,.08)!important;
}

.shadow-lg{
    box-shadow:
    0 20px 40px rgba(0,0,0,.15)!important;
}

/* =========================
   COMMON SPACING
========================= */

.section-padding{
    padding:100px 0;
}

.section-margin{
    margin:100px 0;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f1f5f9;
}

::-webkit-scrollbar-thumb{
    background:#22c55e;
    border-radius:20px;
}