section {
	padding: 10rem 2rem;
	text-align: center;
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 400px;
}
section.no_pad_section {
	padding: 0;
}

section .row{
	margin-left: 0;
	margin-right: 0;
}

section.low_pad_section {
	padding: 2rem 1rem;
}
section.carousel_section {
	padding: 0;
	min-height: 1px;
}
.section_header {
	text-align: center;
	font-size: 2rem;
}
.section_footer {
	text-align: center;
	font-size: 1.5rem;
}
.sec_hidden {
	opacity: 0;
}
@keyframes grow-in {
	from {
		opacity: 0;
		transform: scale(.7,.7)
	}
	to {
		opacity: 1;
	}

}
.grow-in-section {
	animation: grow-in 1.4s;
}

@keyframes load-in {
	from {
		opacity: 0;
		transform: scale(.7,.7)
	}
	to {
		opacity: 1;
	}

}
.load-in-section {
	animation: grow-in 1.4s;
}

.all_white_text h1, .all_white_text h2, .all_white_text h3, .all_white_text h4, .all_white_text h5, .all_white_text h6, .all_white_text p {
	color: #fff;
	text-shadow: 0px 0px 6px rgba(0, 0, 0, .5);
}

