/* =================================
   RESET
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#1e293b;
    background:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

ul,
ol{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

/* =================================
   CONTAINER
================================= */

.container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:40px;
    padding-right:40px;
}

/* =================================
   COMMON SECTION
================================= */

section{
    position:relative;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
    line-height:1.2;
}

p{
    margin-bottom:15px;
}

/* =================================
   TABLET
================================= */

@media(max-width:991px){

    .container{
        padding-left:25px;
        padding-right:25px;
    }

}

/* =================================
   MOBILE
================================= */

@media(max-width:767px){

    .container{
        padding-left:20px;
        padding-right:20px;
    }

}


html,
body{
    width:100%;
    overflow-x:hidden;
}