.single-slider .text{
    margin-top: 30% !important;
    padding: 15px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.4);
}

/*form styles*/
.mcform {
	/* margin: 50px auto; */
	position: relative;
}
.mcform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
.mcform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
.mcform input, .msform textarea, .mcform select {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
.mcform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px;
	margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}