body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-in {
    animation: fadeIn .3s ease-out
}

.header-scrolled {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .08)
}

.dropdown-visible {
    display: block !important
}

#mobile-menu {
    display: none
}

.mobile-menu-open {
    display: block !important
}

#home {
    height: auto;
    min-height: 85vh;
    padding-top: 5rem;
    padding-bottom: 5rem
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1
}

@media (min-width:768px) {
    #home {
        height: auto;
        min-height: 70vh
    }

    .hero-title {
        font-size: 3.5rem
    }
}

@media (min-width:1024px) {
    #home {
        height: 90vh;
        min-height: 600px
    }

    .hero-title {
        font-size: 4.5rem
    }
}

.form-input {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .5rem;
    border: 1px solid #cbd5e1;
    outline: none;
    transition: all .2s
}

.form-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .2)
}

.accent-bar {
    height: .375rem;
    width: 6rem;
    border-radius: 9999px;
    background-color: #f97316;
    margin: 1rem auto 0
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    transform: translateY(100%);
    opacity: 0;
    transition: all .25s ease
}

.back-to-top-visible {
    transform: translateY(0);
    opacity: 1
}

.section-shape {
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 18rem;
    height: 18rem;
    background: #f97316;
    border-radius: 9999px;
    filter: blur(64px);
    opacity: .12
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1)
}

.slider-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%
}