@charset "UTF=8";
body{
	margin:0;
	padding:0;
	font-family: 'Raleway', sans-serif;
	background-color: #FFDCC5;
}
p{
	line-height: 1.2em;
}
/*------- Makes ALL images responsive ------*/
img{
	max-width: 100%;
}
/*------- Main top images for home page ------*/
/* Banner Images*/
.flex-container{
			height: 20vh;
			background: url("img/banner2.jpg") no-repeat;
			background-size: cover;
			display: flex;
			justify-content: center;
			align-items: center;
	    	z-index: -1;
    		position: relative;
}

.flex-item{
	-webkit-animation: flex-item 3s ; /* Safari 4.0 - 8.0 */
 			animation: flex-item 3s ;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes flex-item {
  from {transform: scale(1.3);}
  to {transform: scale(1);}
}

/* Standard syntax */
@keyframes flex-item {
  from {transform: scale(1.3);}
  to {transform: scale(1);}
}
/*------  NAV ------*/

.topnav {
  overflow: hidden;
  background-color:#E98F4B;
}
.topnav a {
  float: left;
  display: none;
  color: #ffffff;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}
.topnav a:hover {
  background-color: #ffffff;
  color: black;
}
.topnav a.active {
  display: block;
  background-color: #E98F4B;
  color: white;
}
.topnav a.icon {
	display: block;
	float:right;
	
}
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
	position: absolute;
	right: 0;
	top: 0;
}
.topnav.responsive{
	position: relative;
	z-index: 1;
}
.topnav.responsive a {
	float: none;
	display: block;
	text-align: left;
}
/* Hamburger Menu*/
.menu-icon{
    background: url("img/menu.png") no-repeat;
    background-size: contain;
    height:15px;
    width:23px;
    display: inline-block;
}
/* design changes*/
.slide-h1{
	text-align: center;
}
.about p{
	text-indent: 2em;
}
.contact p{
	text-indent: 2em;
}
.about{
	width: 90%;
	margin: auto;
}
.number{
	font-size: 2em;
}
.box{
	background-color: #E98F4B;
	padding: 8%;
	border-radius: 5px;
	margin-top: 20px;
	
}
.help{
	font-size: 53px;
	padding-top: 0;
	margin-top: 0;
}
/*Page Layout*/
main{
	width:90%;
	margin:auto auto 40px auto;
}
.column{
	float:none;
}

.video-container{
	
}
strong{
	font-weight: bold;
}
/*CONTACT PAGE*/
form{
	margin:20px auto;
}
formp{
	margin-bottom:5px;
}
label{
	display:inline;
}
input{
	width:100%;
	padding:1.7%;
	margin:1.5% 0;
	font-size: 1em;
	border-radius:4px;
	border:1px solid #ccc;
	box-sizing:border-box;
}
textarea{
	min-height:100px;
	width: 100%;
	padding: 2%;
	margin: 1.5% 0;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing:border-box;
	color: #ACACAC;
}
input[type=file]{
	padding-left:0px;
}

#hide{
	height:0;
	width: 0;
	overflow: hidden;
}

#btn{
	border:1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	max-width: 98%;
	display: inline-block;
	text-align: center;
	margin-top: 10px;
	padding: 6px 15px;
	overflow-wrap: break-word;
}

input[type=checkbox]{
	width: auto;
	cursor:pointer;
}

button{
	border: 1px solid #45A99F;
	border-radius: 4px;
	background: #45A99F;
	color:white;
	cursor:pointer;
	margin-top: 3%;
	margin-bottom: 3%;
	padding:2%;
	width:100%;
	font-size: 1em;
	display: inline;
}
button a{
	text-decoration:none;
	color:white;
}
input[type=submit]{
	background: #FFF;
	cursor: pointer;
	margin-top:3%;
	border-radius: 4px;
	display:inline;
}


/*Footer*/
footer{
	background-color: #E98F4B;
	margin:20px auto 0 auto;
	padding:3% 0;
	width:100%;
}
footer p{
	margin:auto ;
	text-align: center;
}
/*Buttons*/
button{
	border: 1px solid #E98F4B;
	border-radius:4px;
	background:#E98F4B;
	color:white;
	cursor:pointer;
	margin-top: 3%;
	margin-bottom:3%;
	padding:2%;
	width:100%;
	font-size:1em;
	display: inline;
}
button:hover {
  background-color: #CB691E;
}
/* Link Fix For the Footer*/
a:link {
  text-decoration: none;
  color: white;
}

a:visited {
  	text-decoration: none;
	color: white;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}
/*SLIDESHOW*/
/*--YOU BET YOUR ASS I FOUND A USE YOUR THIS--*/
* {box-sizing:border-box}

 /*Slideshow container*/ 
.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

 /*Hide the images by default*/
.mySlides {
  display: none;
}

/* Next & previous buttons*/ 
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

 /*Position the "next button" to the right*/ 
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

 /*On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

 /*Caption text */
.text {
  color: #f2f2f2;
  font-size: 40px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.8);
}

 /*Number text (1/3 etc)*/ 
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

 /*The dots/bullets/indicators*/ 
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation*/ 
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@media screen and (min-width: 600px) {
	.flex-container{
			height: 40vh;
	}
	.number{
		font-size: 2em;
	}
}
@media screen and (min-width: 1000px) {

	.topnav a {
	  display: block;
	}
	.topnav a.icon {
	  display: none;
	}
	.index-hero{
/*		height:70vh;*/
	}
	.column{
		float:left;
		width:48%;
		margin-left:30px;
	}
	.column:first-of-type{
		margin:0;
		
	}
	.clearfix::after{
		clear:both;
		content:"";
		display:table;
	}
	.about {
		width: 70%;
	}
	.bottom{
	margin-top:0%;
	margin-left:10%;
	max-width: 80%;
}
	.flex-container{
			height: 55vh;
	}
	.number{
		font-size: 2em;
	}
}

@media screen and (min-width: 1700px) {
	.flex-container{
			height: 55vh;
	}
	.flex-item{
		width: 50%;
	}
	.column{
		float:left;
		width:48%;
		margin-left:30px;
	}
	.number{
		font-size: 3em;
	}
}












