/*======================================================================== RESET =========*/
/*======================================================================== RESET =========*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    margin: 0;
}

ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

button {
    background: none;
    cursor: pointer;
    font-family: inherit;
    border: none;
    padding: 0;
    color: inherit;
}

.relative {
    position: relative;
}

.overflow {
    overflow: hidden;
}

.fs {
    flex-shrink: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}

.uppercase {
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .h-full--lg {
        height: 100%;
    }
}


.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.fw3 {
    font-weight: 300;
}
.fw4 {
    font-weight: 400;
}
.fw5 {
    font-weight: 500;
}
.fw6 {
    font-weight: 600;
}
.fw7 {
    font-weight: 700;
}