/* ======== RESPONSIVE CSS ========= */


/* ===================================================
		MIN WIDTH 
=================================================== */
@media (min-width: 576px) {
    .donate-btn {
        /* background-color: var(--red); */
        margin-left: 15px;
        /* margin-right: 15px; */
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 768px) {}

@media screen and (min-width: 992px) {

    /* make email input field longer on desktop */
    #field_1_5 {
        grid-column: span 4;
    }

    /* make form submit button container shorter on desktop */
    #field_submit {
        grid-column: span 2;
    }

    /* submit button desktop height and width */
    .gform_wrapper.gravity-theme .gfield input,
    .gform_wrapper.gravity-theme .gfield select {
        width: 100%;
    }

    footer .social-icon {
        position: absolute;
        bottom: 12px;
        right: 0;
    }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1300px) {}

@media screen and (min-width: 1400px) {}




/* ===================================================
		MAX WIDTH 
=================================================== */
@media screen and (max-width: 1199px) {
    .page-template-page-lp .splash {
        font-size: 25px;
    }


    .page-template-page-issues .quote-column p {
        font-size: 26px;
    }
}


@media screen and (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-toggler {
        border-color: white;
        padding: 0.1rem 0.6rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: transparent;
        border-radius: 0.25rem;
        width: 60px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg%27%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }

    /* vertical layout of input fields (mobile) */
    .gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
        grid-column: 1/-1 !important;
    }

    .gform-button {
        padding: 10px 40px;
    }
}


@media screen and (max-width: 771px) {
    .page-template-page-lp .splash .container {
        padding-top: 150px;
        display: block;
    }

    .page-template-page-about .bullet-list {
        columns: 1;
    }

    .page-template-page-lp .form-section {
        margin-top: 60px;
    }

    .quote-icon {
        width: 40px;
    }

    .quote-column h3 {
        font-size: 25px;
    }

    .quote-column p {
        font-size: 25px;
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {

    /* Reset for Mobile Admin bar */
    body {
        position: initial;
    }

    .gform_wrapper {
        padding: 20px 5px;
    }

    .page-template-page-about .splash,
    .page-template-page-issues .splash {
        font-size: 25px;
    }
}


@media screen and (max-width: 576px) {
    .header-logo {
        width: 130px;
    }

    .navbar ul {
        background-color: #000;
        margin-top: 15px;
        max-width: 200px;
    }

    .page-template-page-about .list-section h2 {
        font-size: 28px;
    }
}


@media screen and (max-width: 450px) {
    .page-template-page-lp .splash h1 {
        font-size: 70px;
    }

    .page-template-page-lp .form-section h2 {
        font-size: 25px;
    }

    .page-template-page-about .list-section h2 {
        font-size: 24px;
    }
}


@media screen and (max-width: 400px) {

    .page-template-page-about .splash,
    .page-template-page-issues .splash {
        font-size: 20px;
    }
}


@media screen and (max-width: 320px) {

    .page-template-page-about .splash,
    .page-template-page-issues .splash {
        font-size: 17px;
    }

    .page-template-page-lp .homepage-card h3 {
        font-size: 22px;
    }
}




/* ===================================================
		MIN - MAX WIDTH 
=================================================== */
@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 991px) {}