/* =========================
   GLOBAL STYLE
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   BODY
========================= */

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#333;
}

/* =========================
   LINK
========================= */

a{
    text-decoration:none;
}

/* =========================
   BUTTON
========================= */

button{
    cursor:pointer;
    transition:0.3s;
    border:none;
    outline:none;
}

/* =========================
   INPUT
========================= */

input,
textarea,
select{
    outline:none;
    border:none;
    font-family:'Poppins',sans-serif;
}

/* =========================
   IMAGE
========================= */

img{
    max-width:100%;
    display:block;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:#2f855a;
    border-radius:10px;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   CARD GLOBAL
========================= */

.card{
    background:white;

    border-radius:20px;

    padding:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* =========================
   TITLE
========================= */

.section-title{
    font-size:20px;
    font-weight:600;

    color:#1f6f54;

    margin-bottom:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

.container{
    padding:15px;
}

}