:root {
    --dum-yellow: #FFBB11;
    --dum-cream: #FFFAE2;
    --dum-blue: #181A85;
    --dum-gray: #868375;
}


body {
    background-color: var(--dum-cream);
}

h1 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--dum-blue);
    margin-bottom: 1rem;
}

p {
    font-size: 1.25em;
    color: var(--dum-blue);
}

.dummy-icon {
    width: 50px;
    padding-top: 5px;
    transition: all .2s ease-in-out;

    &:hover {
        opacity: .75;
    }
}

.instagram-icon {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    path, circle {
        /* color: var(--dum-yellow) !important; */
        color: hsl(from var(--dum-cream) calc(h - 5) calc(s - 75) calc(l - 25));
        fill: currentColor !important;
    }
}

.hamburger {
    margin-top: 5px;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--dum-blue);
    cursor: pointer;
    svg {
        width: 35px;
        height: 35px;
    }
}

nav {
    position: fixed;
    background-color: var(--dum-cream);
    box-shadow: 0 10px 10px rgba(0,0,0,0.25);
    z-index: 100;
    width: 100%;
    height: 65px;

    .nav {
        margin-top: 0;
        margin-bottom: 0;
        height: 100%;
        list-style: none;
        display: block;
        padding-left: 0;

        li {
            display: inline;
            font-weight: 700;
            text-transform: uppercase;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 15px;

            a {
                text-decoration: none;
                color: var(--dum-blue);
                padding: 8px 16px;
                margin: 0;
                cursor: pointer;
                
            }
            a.active {
                color: var(--dum-yellow) !important;
            }
        }
        li:first-child {
            float: left;
        }
        :nth-child(2) {
            margin-right: 0 !important;
        }
        
    }
    .nav > *:not(:first-child) {
        float: right;

        > a {
            border-radius: 10px;
            transition: all .2s ease-in-out;

            &:hover {
                background-color:hsl(from var(--dum-cream) h calc(s - 50) calc(l - 10));
            }
        }
    }
}
.mobile-nav-content {
    background-color: var(--dum-cream);
    top: 65px;
    left: 0;
    position: absolute;
    width: 100%;
    box-shadow: 0 15px 15px rgba(0,0,0,0.2);
    visibility: hidden;

    ul {
        margin-left: -1rem;
        margin-top: 2rem;
        width: 100%;
        list-style: none;
        li {
            margin-bottom: 1rem;
        }
        li, a {
            width: 100%;
        }
        a {
            color: var(--dum-blue);
            font-size: 1.25rem;
            width: 90%;
            display: inline-block;
            padding: 5px 0 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: all .2s ease;

            
            &:hover {
                background-color:hsl(from var(--dum-cream) h calc(s - 50) calc(l - 10));
            }
        }
    }
}


.nav-svg {
    width: 15px;
    height: 15px;
    display: inline;
    margin-right: 5px;
    color: var(--dum-blue);
}

.mobile-nav-content--open {
    visibility: visible;
}
.mobile-icon-wrap {
    display: inline-block;
}

.mobile-nav-container {
    top: -65px;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#banner {
    background-color: var(--dum-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: -1;
    height: 350px;
    width: 100%;
    top: 0;
    left: 0;

    #banner-logo {
        margin-top: 50px;
        max-width: 400px;
    }
}

#spacer {
    height: 400px;
    visibility: hidden;
}
.spacer {
    height: 6rem;
    visibility: hidden;
}

section {
    z-index: 10;
}

#hero-section {
    display: block;
    position: relative;
    background-color: var(--dum-cream);
    padding-top: 3rem;
    
    h1, p {
        z-index: 20;
    }
}

#hero-dummy-wrap {
    z-index: 20;
    position: relative;
    height: 40rem;
}
#dummy-hero {
    position: absolute;
    bottom: -8px;
    /* right: -100px; */
    display: block;
    left: 0;
}
#dummy-hero-mobile {
    position: absolute;
    bottom: -8px;
    display: none;
}

#tow-truck-section {
    background-color: var(--dum-yellow);
    height: 40rem;

    #tow-truck-img {
        width: 100%;
    }

    h1 {
        line-height: 1.5;
    }

    #oval-white-on-blue {
        width: 7rem;
        margin-top: 2rem;
    }

    .container.extended {
        height: 100%;
        display: flex;
        align-items: center;
    }
}

#resp-brand-section {
    background-color: var(--dum-cream);
    padding-top: 8rem;
    padding-bottom: 10rem;
    h2 {
        color: var(--dum-blue);
    }
}

#factory-section {
    padding: 8rem 0 10rem 0;
    background-color: var(--dum-yellow);
    text-align: center;

    h1 {
        padding: 0 1rem 0 1rem;
    }
}

.resp-logo-wrapper {
    height: 7rem;
    border: 3px dashed #B6B6B6;
    
    padding: 2rem;
    text-align: center;

    img {
        width: 100%;
        margin: auto;
    }

    h3 {
        margin-top: -3rem;
        width: min-content;
        background-color: var(--dum-cream);
        padding: 0 2rem;
        color: #B6B6B6;
        margin-left: auto;
        margin-right: auto;
    }

    #dmti-sm {
        width: 30%;
    }
    #dmti-md {
        width: 35%;
    }
}


#factory-section {
    h1 {
        max-width: 40rem;
        margin: auto;
    }
    img {
        width: 100%;
    }
}


#illustration-section {
    background-color: var(--dum-cream);
    h1 {
        margin-top: 6rem;
    }
    img {
        width: 100%;
    }
    p {
        font-size: 1rem;
    }

    #dummy-wrap {
        position: relative;
        height: 40rem;
        width: 100%;

        img {
            position: absolute;
            bottom: 0;
            right: 0;
        }
    }
}




.btn-outline {
    background-color: transparent;
    border-radius: 10px;
    border: 3px solid var(--dum-blue);
    color: var(--dum-blue);
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 20px 15px 20px;
    font-family: 'antonio', Tahoma, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all .2s ease-in-out;

    &:hover:not([disabled]) {
        background-color: var(--dum-yellow);
        color: white;
        border-color: var(--dum-yellow);
    }
    &[disabled] {
        opacity: .2;
        pointer-events: none;
        cursor: default;
    }
    &:focus {
        outline-color: var(--dum-yellow);
    }
}
.btn-outline.full-length {
    width: auto;
    display: block;
    text-align: center;
}


#tool-section {
    padding-top: 8rem;
    padding-bottom: 10rem;
    background-color: var(--dum-yellow);
    text-align: center;

    #tool-illustration {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    #tool-illustration-vert {
        margin-top: 4rem;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: none;
    }
    #oval-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 9rem;
    }
     & > * {
        margin-top: 3rem;
     }
}

footer {
    text-align: center;
    background-color: var(--dum-blue);
    /* padding: 8rem 0; */
    padding: 3rem 0 0 0;
}

.footer {
    justify-content: space-between;
    color: var(--dum-cream);
    h1 {
        color: var(--dum-yellow);
    }
    h2, p {
        color: var(--dum-cream);
    }
    h2 {
        font-size: 3rem;
        line-height: 2rem;
        font-family: 'damion', 'Brush Script MT', cursive;
        margin-bottom: 2rem;
        margin-top: 0;
    }
    p {
        line-height: 1.25;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.footer-wrap {
    text-align: center;
    height: 18rem;
    p {
        color: var(--dum-cream);
    }
    h2 {
        color: var(--dum-yellow);
    }
    h2 {
        font-size: 3rem;
        line-height: 1;
        font-family: 'damion', 'Brush Script MT', cursive;
        margin-bottom: 2rem;
        margin-top: 0;
    }
    p {
        line-height: 1.25;
        margin-top: 0;
        margin-bottom: 0;
    }
}
.non-scroll-footer > .footer-wrap {
    height: 13rem;
}

.btn-scroll {
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
    p {
        margin-top: 0;
        margin-bottom: 0;
        color: var(--dum-yellow);
        font-size: 1.2rem;
        line-height: 1;
        font-family: 'antonio', Tahoma, sans-serif;
    }
    svg {
        margin: auto;
        color: var(--dum-yellow) !important;
        display: block;
        width: 25px;

        polygon {
            color: var(--dum-yellow) !important;
        }
    }
    &:hover {
        opacity: .8;
    }
}

.btn-cream {
    color: var(--dum-cream);
    border-color: var(--dum-cream);
    border-width: 2px;
}
.mail-link {
    color: var(--dum-yellow);
}
#contact-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16rem;

    p {
        margin: 0;
    }
}

.back-link {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-family: 'antonio', Tahoma, sans-serif; 
}

.back-link::before {
    content: "";
    position: absolute;
    left: -0.35em;
    top: 55%;
    width: 0.2em;
    height: 0.2em;
    border-left: 0.06em solid currentColor;
    border-bottom: 0.06em solid currentColor;
    transform: translateY(-50%) scaleY(1.6) rotate(45deg);
}


.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 1rem !important;
}
.mt-2 {
    margin-top: 2rem !important;
}
.mt-3 {
    margin-top: 3rem !important;
}
.mt-4 {
    margin-top: 4rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 1rem !important;
}
.mb-2 {
    margin-bottom: 2rem !important;
}
.mb-3 {
    margin-bottom: 3rem !important;
}
.mb-4 {
    margin-bottom: 4rem !important;
}
.mb-5 {
    margin-bottom: 5rem !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.ml-1 {
    margin-left: 1rem;
}
.mr-0 {
    margin-right: 0;
}
.mr-1 {
    margin-right: 1rem;
}
.p-0 {
    padding: 0 !important;
}
.pb-1 {
    padding-bottom: 1rem;
}
.pb-2 {
    padding-bottom: 2rem;
}
.pb-3 {
    padding-bottom: 3rem;
}
.pb-4 {
    padding-bottom: 4rem;
}

.pt-0 {
    padding-top: 0;
}
.pt-1 {
    padding-top: 1rem;
}
.pt-2 {
    padding-top: 2rem;
}
.pt-3 {
    padding-top: 3rem;
}
.pt-4 {
    padding-top: 4rem;
}
.pt-5 {
    padding-top: 5rem;
}
.w-100 {
    width: 100%;
}
.d-none {
    display: none !important;
}


.inline-block {
    display: inline-block !important;
}





.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 800ms ease-in,
        transform 700ms ease-out;
}
.reveal--left {
    opacity: 0;
    transform: translateX(-100px);
    transition:
        opacity 600ms ease-in,
        transform 1s ease-out;
}

.reveal--right {
    opacity: 0;
    transform: translateX(100px);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 600ms ease-in,
        transform 1s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--second {
    transition-delay: 400ms;
}
.reveal--third {
    transition-delay: 800ms;
}






[hidden] {
    display: none !important;
}


.contact-wrap {
    background-color: var(--dum-cream);
    height: 90vh;
}


#about-img {
    width: 100%;
    filter: sepia(50%) contrast(80%);
    border-radius: 10px;
}
.about-h2 {
    font-family: 'damion', 'Brush Script MT', cursive;
    font-size: 4rem;
    line-height: .75;
    margin: 3rem 0 3rem 0;
}
.about-h3 {
    background-color: var(--dum-yellow);
    width: max-content;
    text-align: center;
    margin: 0 auto 4rem auto;
    padding: 0 2rem .25rem 2rem;
    border-radius: 25px;
}
.about-text-wrap {
    p {
        font-size: 1.25rem;
    }
    text-align: center;
    width: 80%;
    margin: auto;
}
.about-cta {
    display: block;
    width: max-content;
    margin: 3rem auto 12rem auto;
}

.bio {
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 45em) {
    #dummy-hero {
        display: none;
    }
    #hero-section {
        overflow: hidden;
    }
    #hero-dummy-wrap {
        height: 27rem;
    }
    #dummy-hero-mobile {
        display: block;
        width: 30rem;
    }
    #dummy-wrap {
        max-height: 30rem;
    }
    #illustration-hdr {
        margin-top: 4rem !important;
    }
    #illustration-section {
        text-align: center;
    }
    #tow-truck-section {
        text-align: center;
    }
    .resp-logo-wrapper {
        height: 10rem;
    }
    .nav-mobile-button {
        display: flex;
    }
    #tool-illustration {
        display: none !important;
    }
    #tool-illustration-vert {
        display: block !important;
    }
    #desktop-nav {
        display: none;
    }
    .mobile-nav-container {
        top: 0;
    }
    .about-text-wrap {
        width: 100%;
    }
    .responsive-row > .col-4:not(:first-child) > .resp-logo-wrapper {
        margin-top: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}