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

/* Extra small devices (portrait phones, less than 576px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.calculation-results .display-4 {
	    font-size: 3rem;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.section-title {
	    font-size: 42px;
	    font-weight: 700;
	}

	.section-sub-title {
	    font-size: 32px;
	    font-weight: 400;
	}
	.calculate-button-container {
	    padding: 100px 100px;
	}
	.btn-lg {
	    padding: 16px 75px;
	    background-color: #ee007d;
	    border-radius: 75px;
	    font-size: 1.6rem;
	    font-weight: 600;
	}
	.btn-xl {
	    padding: 30px 75px;
	    background-color: #ee007d;
	    border-radius: 75px;
	    font-size: 2rem;
	    font-weight: 600;
	}

	.disclaimer {
	    padding-bottom: 96px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { ... }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { ... }