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


/* ===================================================
		MIN WIDTH 
=================================================== */

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

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

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

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




/* ===================================================
		MAX WIDTH 
=================================================== */
/* mobile displays that are shown under the large breakpoint (992px) */
@media screen and (max-width: 1199px) {
    body {
        font-size: 13px;
    }
}

@media screen and (max-width: 991px) {
    .hero-section .brush-strokes {
        transform: rotate(-7deg);
    }

    .hero-section .overlapping-img {
        width: 80%;
        transform: translate(-50%, -47%);
    }

    .section-1 .brushstrokes-bg-container {
        min-height: 510px;
    }
}

/* mobile displays that are shown under the medium breakpoint (768px) */
@media screen and (max-width: 767px) {
    .section-1 .brushstrokes-bg-container {
        min-height: 340px;
    }
}

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

    .gform_wrapper.gravity-theme .gform_footer {
        justify-content: center;
    }
}


@media screen and (max-width: 550px) {
    .hero-section {
        padding: 40px 0;
        font-size: 12px;
    }
}

@media screen and (max-width: 500px) {
    .section-1 .brushstrokes-bg-container {
        min-height: 300px;
    }

}

@media screen and (max-width: 450px) {
    .section-1 .brush-strokes {
        bottom: -130px;
        width: 80%;
    }
}

@media screen and (max-width: 400px) {
    .hero-section {
        font-size: 9px;
    }

    .section-1 .brushstrokes-bg-container {
        min-height: 260px;
    }
}

@media screen and (max-width: 350px) {
    .section-1 .brushstrokes-bg-container {
        min-height: 220px;
    }

    .section-1 .brush-strokes {
        bottom: -100px;
    }
}

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




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

/* 501px - 991px LARGE size */
@media (min-width: 501px) and (max-width: 991px) {}

/* 768px - 991px MEDIUM Size */
@media (min-width: 768px) and (max-width: 991px) {}

/* 768px - 1200px MEDIUM AND LARGE Size */
@media (min-width: 768px) and (max-width: 1199px) {}

/* 992px - 1199px LARGE size */
@media (min-width: 992px) and (max-width: 1199px) {}