/*==========================================
  RESET CSS
==========================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

ul,
ol{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
    border:none;
    outline:none;
    background:none;
}

button{
    cursor:pointer;
}

table{
    border-collapse:collapse;
    border-spacing:0;
    width:100%;
}

section{
    position:relative;
    padding:var(--section-gap) 0;
}

.container{

    width:100%;

    max-width:1320px;

    margin:0 auto;

    padding:0 20px;

}

::selection{
    background:var(--primary);
    color:#fff;
}