/* ===============================
GLOBAL RESET
================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body-font);
    color:var(--text);
    background:var(--white);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

section:not(.hero-section){
    padding:var(--section-padding) 0;
}

.container-custom{
    width:100%;
    max-width:var(--container);
    margin:auto;
    padding:0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:var(--heading-font);
    color:var(--dark);
    font-weight:700;
}

p{
    margin-bottom:15px;
}

button{
    border:none;
    outline:none;
}

input,
textarea,
select{
    outline:none;
}

::selection{
    background:var(--primary);
    color:#fff;
}