/*=========================================
GLOBAL RESET
=========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    font-size:15px;

    line-height:1.7;

    color:var(--text);

    background:var(--body);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

    transition:.3s;

}

ul{

    list-style:none;

}

button,

input,

textarea,

select{

    font-family:inherit;

    outline:none;

}

.container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 15px;

}

section{

    position:relative;

}

.website-wrapper{

    width:100%;

    overflow:hidden;

}

.text-center{

    text-align:center;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-between{

    justify-content:space-between;

}