/*=========================================
  GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


/*=========================================
  ROOT VARIABLES
=========================================*/
:root{

    /* Colors */

    --primary-color:#0D8A45;
    --primary-hover:#08743A;

    --secondary-color:#111827;

    --white:#ffffff;

    --black:#000000;

    --text-color:#5E6470;

    --border-color:#E5E7EB;

    --light-bg:#F8FAFC;

    --section-bg:#F4F7F6;

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.35s ease;

}


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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#fff;

    color:var(--secondary-color);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

}

input{

    outline:none;

}


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

.container{

    width:min(1320px,92%);

    margin:auto;

}


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

section{

    padding:90px 0;

}


/*=========================================
  HEADINGS
=========================================*/

h1{

    font-size:58px;

    font-weight:800;

    line-height:1.1;

}

h2{

    font-size:44px;

    font-weight:700;

}

h3{

    font-size:28px;

    font-weight:700;

}

h4{

    font-size:22px;

}

p{

    color:var(--text-color);

    font-size:17px;

}


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

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    background:var(--primary-color);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-4px);

}


.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    border:2px solid var(--primary-color);

    color:var(--primary-color);

    font-weight:600;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--primary-color);

    color:#fff;

}


/*=========================================
  COMMON CARD
=========================================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


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

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary-color);

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    font-size:14px;

}

.section-title h2{

    margin-top:10px;

    margin-bottom:15px;

}


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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary-color);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}


/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:1200px){

    h1{

        font-size:50px;

    }

}

@media(max-width:992px){

    section{

        padding:80px 0;

    }

    h1{

        font-size:42px;

    }

    h2{

        font-size:36px;

    }

}

@media(max-width:768px){

    h1{

        font-size:36px;

    }

    h2{

        font-size:30px;

    }

    h3{

        font-size:24px;

    }

    p{

        font-size:16px;

    }

}

@media(max-width:576px){

    section{

        padding:70px 0;

    }

    h1{

        font-size:32px;

    }

}

