/* colors */
:root {
    --wf-blaze: #d83E00;
    --wf-flame: #ff6600;
    --wf-burnt: #4e0e1c;
    --wf-smoke: #412540;
    --wf-ash: #c7c1ba;
    --wf-blue: #007bff;
    --wf-indigo: #6610f2;
    --wf-purple: #6f42c1;
    --wf-pink: #e83e8c;
    --wf-red: #dc3545;
    --wf-orange: #fd7e14;
    --wf-yellow: #ffc107;
    --wf-green: #28a745;
    --wf-teal: #20c997;
    --wf-cyan: #17a2b8;
    --wf-white: #ffffff;
    --wf-offwhite: #fffff8;
    --wf-gray-light: #f1f0e9;
    --wf-gray: #6c757d;
    --wf-gray-dark: #343a40;
    --wf-black: #000000;
}

/* fonts */
@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/Onest/onest-v8-latin-100-xCLKrA0.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/Onest/onest-v8-latin-200-2ujVMwi.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/Onest/onest-v8-latin-300-vzdbwYX.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Onest/onest-v8-latin-regular-iMq92vM.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Onest/onest-v8-latin-500-o22uHfy.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Onest/onest-v8-latin-600-wPU-aCJ.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Onest/onest-v8-latin-700-Ms0gdwr.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/Onest/onest-v8-latin-800-QMu-0fr.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/Onest/onest-v8-latin-900-eyLxHU-.woff2") format('woff2');
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Onest', sans-serif;
}

.hide {
    display: none;
}

.plus {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
}

.plus::after {
    content: "+";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 22px;
    height: 22px;
    font-size: 48px;
    line-height: 22px;
    left: -4px;
    font-style: normal;
    font-weight: normal;
}

.minus {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
}

.minus::after {
    content: "-";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 22px;
    height: 22px;
    font-size: 48px;
    line-height: 22px;
    left: -2px;
    top: -4px;
    font-style: normal;
    font-weight: normal;
}

.chevron-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
}

.chevron-right::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    right: 6px;
    top: 4px
}

.chevron-down {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
}

.chevron-down::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px
}

#navigation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
    box-sizing: border-box;
    background-color: var(--wf-offwhite);
}

.show-nav {
    display: flex !important;
}

@media only screen and (max-width: 480px) {
    #navigation {
        flex-direction: column;
        display: none;
    }
}

.navigation-item {
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--wf-black);
    border-radius: 20px;
}

a {
    text-decoration: none;
}

a .navigation-item {
    border: 0;
    color: var(--wf-black);
    text-decoration: none;
}

header {
    box-sizing: border-box;
    width: 100%;
    height: 83px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 24px 15px;
    background: linear-gradient(290deg, #D53E15 5.02%, #000 92.48%);
}

@media only screen and (max-width: 480px) {
    header {
        padding: 24px;
        justify-content: space-between;
    }
}

header img {
    height: 35px;
}

#header-text {
    color: var(--wf-offwhite);
    font-size: 22px;
    font-weight: 600;
}

@media only screen and (max-width: 480px) {
    #header-text {
        display: none;
    }
}

#header-menu {
    display: none;
    color: var(--wf-offwhite);
    font-size: 32px;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    #header-menu {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    header img {
        height: 30px;
    }

    #header-text {
        font-size: 18px;
    }
}