﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* UTILITY */
.primary {
    color: #000000;
}

.secondary {
    color: #FFFFFF;
}

.light {
    color: #FFFFFF;
}

.m-auto {
    margin: 0 auto;
}

.w-100{
    width: 100%;
}


/* FLEX UTIL */

.flex {
    display: flex;
}

.row, .mobile-row {
    flex-direction: row;
}

.col {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.self-center{
    align-self: center;
}

.between {
    justify-content: space-between;
}

.gap-sm {
    gap: 1rem;
}

.gap {
    gap: 1.5rem;
}

.gap-2 {
    gap: 3rem;
}

.wrap {
    flex-wrap: wrap;
}

@media screen and (max-width: 671px){
    .m-gap {
        gap: 1rem;
    }

    .row{
        flex-direction: column;
    }
}

/* TEXT UTIL */
.text-center {
    text-align: center;
}

.med-large {
    font-size: 50px;
}

.medium {
    font-size: 30px;
    line-height: 30px;
}

.med-small {
    font-size: 18px;
}

.small {
    font-size: 16px;
}

.bold {
    font-weight: 700;
}

/* TEXT STYLES */

.heading {
    font-family: 'Gabarito', sans-serif;
    font-style: normal;
}

.text {
    font-family: nimbus-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* COMPONENT STYLES */

.cta_btn {
    font-family: 'Gabarito', sans-serif;
    font-weight: bold;
    font-size: 18px;
    background: #FF9914;
    border: 1px solid #73cd05;
    border-radius: 5px;
    padding: .5rem;
}

    .cta_btn:hover {
        cursor: pointer;
        background: #6fc606;
    }

.cta_btn--lg {
    font-family: 'Gabarito', sans-serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    background: #FFB52A;
    border: 1px solid #CC9122;
    border-radius: 5px;
    padding: 1rem 3rem;
    cursor: pointer;
    color: #000000;
    transition: all .3s ease;
}

.cta_btn--alt {
    font-family: 'Gabarito', sans-serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    background: #8D938F;
    border: 1px solid #6D746F;
    border-radius: 5px;
    padding: 1rem 3rem;
    cursor: pointer;
    color: #000000;
    transition: all .3s ease;
    max-width: 250px;
}

    .cta_btn--alt:hover {
        background: #6D746F;
    }

.cta_btn--xl {
    font-family: 'Gabarito', sans-serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    background: #FFB52A;
    border: 1px solid #CC9122;
    border-radius: 5px;
    padding: 1rem 3rem;
    cursor: pointer;
    color: #000000;
    transition: all .3s ease-in-out;
    text-align: left;
}

    .cta_btn--lg:hover, .cta_btn--xl:hover {
        background: #CC9122;
    }

.card {
    width: 285px;
    box-shadow: 2px 2px 4px rgba(0,0,0,.4);
}

.card_content {
    padding: 1rem;
}

.banner {
    padding: .5rem 1rem;
    background: #578CF9;
}

.progress-bar_track {
    width: 100%;
    height: 15px;
    background: #DDDDDD;
}

.progress {
    height: 100%;
    background: repeating-linear-gradient( -55deg, rgba(0,0,0,.2), rgba(0,0,0,.2) 15px, rgba(0,0,0,0) 15px, rgba(0,0,0,0) 30px ), #FFB52A;
    transition: width .3s ease-in-out;
}

.step {
    max-width: 535px;
}

.step-show{
    display: flex;
}

.step-hide{
    display: none;
}

/* NAV STYLES */

.nav {
    padding: 1.5rem;
}

.nav_brand {
    max-width: 200px;
}

/* CONTAINER STYLES */

.container {
    max-width: 1110px;
    margin: 0 auto;
}


/* FORM STYLES */

.input {
    font-family: 'Gabarito', sans-serif;
    appearance: none;
    padding: 1rem;
    font-size: 18px;
    width: 100%;
    border: 1px solid #8d8d8d;
}

.dropdown {
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding: 1rem;
    border: 1px solid #8d8d8d;
    font-family: 'Gabarito', sans-serif;
    font-size: 18px;
    width: 100%;
}

.select-block {
    position: relative;
    width: 100%;
}

    .select-block::after {
        content: '';
        width: 0;
        height: 0;
        display: inline-block;
        position: absolute;
        right: 10px;
        top: 30px;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-top: 5px solid #2B3D41;
    }

.error {
    color: #930F14;
    font-family: 'Gabarito', sans-serif;
    top: 80px;
}

.tcpa {
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    line-height: 14px;
}

/* MAIN SECTION */

.main_section {
    background: linear-gradient(to right, rgba(255,255,255,.9), rgba(255,255,255,.9)), url(../images/neighborhood.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: calc(100vh - 320px);
}

/* FOOTER STYLES */

.footer {
    background: #1E1C1A;
    padding: 2rem 1rem;
    font-family: 'Gabarito', sans-serif;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}