:root {
    --dark-text: #252120;
    --accent: #EA5625;
}

* {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    scroll-padding-top: 60px;
}

body {
    padding-top: 60px;
}

p {
    line-height: 1.5;
    orphans: 3;
    widows: 3;
}

a {
    text-decoration: none;
}

section {
    padding: 80px;
}

h1 {
    line-height: 1.3;
    font-size: 80px;
}

.navbar-toggler:focus {
    outline: 0 !important;
    box-shadow: none;
}

.section-title {
    line-height: 1.3;
    font-size: 80px;
}

.text-wrap-balance {
    text-wrap: balance;
}

.call-to-action {
    font-size: 80px;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
}

.nav-padding {
    padding-left: 80px;
    padding-right: 80px;
}

.navbar-nav > .nav-item > .nav-link {
    font-size: 18px;
    padding: 40px 8px;
    color: var(--dark-text);
}

    .navbar-nav > .nav-item > .nav-link.active {
        font-weight: 600;
        color: var(--accent)
    }

.section-heading-pill {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    border-radius: 100px;
    border: 2px solid var(--dark-text, #252120);
    display: flex;
    padding: 32px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-bottom: 80px;
}

#hero {
    height: calc(100vh - 36px);
}

    #hero > .hero-gradient {
        padding-left: 80px;
        display: flex;
        align-items: center;
        height: inherit;
        flex-direction: column;
        justify-content: center;
    }

        #hero > .hero-gradient > h1 {
            width: 80%;
        }

.hero-gradient {
    background: url('/img/hero-gradient.png') no-repeat right center;
}

.about-gradient {
    background: url('/img/about-gradient.png') no-repeat right top;
}

.product-objective-gradient {
    background-image: url('/img/product-objective-gradient.png');
    background-repeat: no-repeat;
    background-position: bottom right;
}

.product-gradient {
    background: url('/img/product-gradient.png') no-repeat right center;
}

.footer-gradient {
    background: url('/img/footer-gradient.png') no-repeat center bottom;
}

.form-control {
    border-color: var(--dark-text);
    border-radius: 0;
    color: var(--dark-text);
}

.btn {
    border-radius: 0;
}

.text-primary {
    color: var(--accent);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent)
}

    .btn-primary:hover {
        background-color: var(--accent);
        border-color: var(--accent)
    }

.footer-link li a {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--dark-text);
}

    .footer-link li a:hover {
        text-decoration: underline;
    }

.w-70ch {
    max-width: 70ch;
}

.dash-gradient {
    width: 80px;
    height: 8px;
    margin-left: 8px;
    background: linear-gradient(135deg, #EA5625 0%, #3D5775 100%);
}

.products img {
    transition: .3s;
    transform: translateY(0)
}

.products:hover img {
    border-radius: 8px;
    transform: translateY(-16px);
    box-shadow: 0 0px 32px #111;
}

.carousel-item.testimonial {
    height: 500px;
    overflow: hidden;
}

@media screen and (min-width: 320px) and (max-width: 992px) {
    * {
        scroll-padding-top: 84px;
    }

    body {
        padding-top: 84px;
    }

    section {
        padding: 32px 16px;
    }

    h1 {
        line-height: 1.3;
        font-size: 32px;
    }

    .section-title {
        line-height: 1.3;
        font-size: 32px;
    }

    .navbar-nav > .nav-item > .nav-link {
        font-size: 16px;
        padding: 8px 8px;
    }

        .navbar-nav > .nav-item > .nav-link.active {
        }

    #hero {
        height: calc(100vh - 100px);
    }

        #hero > .hero-gradient {
            padding-left: 16px;
            padding-right: 16px;
        }

            #hero > .hero-gradient > h1 {
                width: 100%;
            }

    .section-heading-pill {
        font-size: 24px;
        line-height: 24px;
        padding: 24px;
        margin-bottom: 40px;
    }

    .nav-padding {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-gradient {
        background: none
    }

    .carousel-item.testimonial {
        height: auto;
        overflow: hidden;
    }
}
