body {
	font-family: 'Roboto', sans-serif;
}

.collapse_menu li a {
	color: rgba(0,0,0,0.87);
}


/* changing materialize label focus color */

.input-field input[type=text]:focus + label {
	color: rgba(0,0,0,0.87) !important;
}

.input-field textarea:focus + label {
	color: rgba(0,0,0,0.87) !important;
}

/*-----*/


/* changing materialize label underline focus color */

.input-field input[type=text]:focus {
	border-bottom: 1px solid rgba(0,0,0,0.87) !important;
	box-shadow: 0 1px 0 0 rgba(0,0,0,0.87) !important;
}

.input-field textarea:focus {
	border-bottom: 1px solid rgba(0,0,0,0.87) !important;
	box-shadow: 0 1px 0 0 rgba(0,0,0,0.87) !important;
}

/*-----*/


/*changing the default materialize toast position*/

#toast-container {
  top: auto !important;
  right: auto !important;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%);
  -ms-transform: translate(-50%);
  -webkit-transform: translate(-50%);
  text-align: center;
}

/*-----*/


/*Custom CSS*/

.section_header {
	text-align: center;
	font-size: 36px;
	font-weight: 300
}
.intro_text {
	text-align: center;
	color: #f5f5f5;
	line-height: 50px;
	font-size: 32px;
	width: 60%;
	font-weight: 300
}

@media only screen and (max-width: 600px) {
  .section_header {
    font-size: 30px
  }
  .intro_text {
  	font-size: 22px
  }
}

.page_center_container {
	position: absolute;
	top:45%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

/*-----*/