/* ==========================================================
   BASE
========================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    font-size: 16px;
    color: var(--text);
    line-height: 1.65;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

picture {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

input,
textarea,
select {
    font: inherit;
}

ul {
    list-style: none;
}

section {
    position: relative;
    padding: var(--section-space) 0;
}

.container {
    max-width: var(--container-width);
}

::selection {
    background: var(--secondary);
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}