/* ----------------------------------------------------------------------------------------------------------------- */
/* CSS - Resets */
/* ----------------------------------------------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: var(--color-24);
    text-decoration: none;
    outline: none;
}
ul, ol {
    list-style: none;
}
a, button, input[type='submit'] {
    cursor: pointer;
}
h1 {
    font-size: 2.4rem;
}
h2 {
    font-size: 2.2rem;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.8rem;
}
h5, i {
    font-size: 1.6rem;
}
h6 {
    font-size: 1.4rem;
}
a, p, button, label, input, textarea, select, option, li {
    font-size: 1rem;
}
a, p, button, label, input, textarea, select, option {
    border: none;
    background: none;
}
i {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1100px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    h4 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.4rem;
    }
    h6 {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 900px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    h4 {
        font-size: 1.4rem;
    }
    h5 {
        font-size: 1.2rem;
    }
    h6 {
        font-size: 1rem;
    }
    a, p, button, label, input, textarea, select, option, li {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 700px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1rem;
    }
    h6 {
        font-size: 0.9rem;
    }
    a, p, button, label, input, textarea, select, option, li {
        font-size: 0.8rem;
    }
    .menuContainer ul > li > a {
        font-size: 1rem;
    }
}