/*==================================================
RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:var(--font);

    font-size:var(--fs-md);

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input{

    outline:none;

    border:none;

    font-family:inherit;

}

section{

    padding:70px 0;

}

.container{

    max-width:1450px;

}

::selection{

    background:var(--primary);

    color:#fff;

}