.button, input[type="submit"], a.button:link, a.button:visited, a.button:hover, a.button:active {
	background-color: #f86759;
	color: #fff;
	font-family: 'Lato',  Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	border-radius: 5px;
	padding: 8px 20px 12px 20px;
	line-height: 1;
	display: inline-block;
	transition: all 0.5s ease;
	border: none;
}
.button:hover, input[type="submit"]:hover, a.button:hover, a.button:active {
	background-color: #89cfc0;
	outline: none;
	cursor: pointer;
}

.button.green, input[type="submit"].green, 
a.button.green:link, a.button.green:visited, 
a.button.green:hover, a.button.green:active {
	background-color: #89cfc0;
}
.button.green:hover, input[type="submit"].green:hover, 
a.button.green:hover, a.button.green:active {
	background-color: #f86759;
}

.button.grey, input[type="submit"].grey, 
a.button.grey:link, a.button.grey:visited, 
a.button.grey:hover, a.button.grey:active {
	background-color: #777f88;
}
.button.grey:hover, input[type="submit"].grey:hover, 
a.button.grey:hover, a.button.grey:active {
	background-color: #f86759;
}

.button.outline, input[type="submit"].outline, 
a.button.outline:link, a.button:visited.outline, 
a.button:hover.outline, a.button.outline:active {
	background-color: transparent;
	border: 2px solid #fff;
}
.button.outline:hover, input[type="submit"].outline:hover, 
a.button:hover.outline, a.button.outline:active {
	background-color: #fff;
	color: #f86759;
}

p.multibuttons {
	margin: 10px -20px 0 -20px;
}
p.multibuttons .button, p.multibuttons input[type="submit"] {
	margin: 20px 20px 0 20px;
}
p + p .button {
	margin-top: 10px;
}



/*"Fake" slider buttons*/
.arrows-nav {
	position: relative;
	float: right;
}
.arrow-prev, .arrow-next {
    font-size: 0;
    line-height: 0;
	border: 0;
    position: absolute;
	z-index: 1;
    top: 0px;
    right: 50px;
    display: block;
    background-color: #f86759;
	width: 50px;
	height: 50px;
    color: white;
	cursor: pointer;
}
.arrow-next {
	right: 0px;
	background-color: #fd7062;
}
.arrow-prev:hover, .arrow-prev:focus,
.arrow-next:hover, .arrow-next:focus {
    color: transparent;
    outline: none;
}
.arrow-prev:hover:before, .arrow-next:hover:before {
    opacity: 0.5;
}
.arrow-prev:before, .arrow-next:before,
.arrow-prev:after, .arrow-next:after {
    width:0;
    border:10px solid transparent;
	border-left:solid 18px #fff;
	content: "";
	position: absolute;
	left: 16px;
	top: 15px;
	transition: all 0.5s ease;
}
.arrow-prev:after, .arrow-next:after {
    width:0;
	border: 5px solid transparent;
    border-left: solid 10px #fd7062;
	left: 19px;
    top: 20px;
}
.arrow-prev:before {
	border-left: 10px solid transparent;
	border-right:solid 18px #fff;
	left: 6px;
}
.arrow-prev:after {
	border-left: 5px solid transparent;
    border-right: solid 10px #f86759;
	left: 16px;
}

@media (max-width: 767px) {
    input[type=text] {  
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		}
		p.multibuttons {
			text-align: center;
			margin-top: 0;
			margin-bottom: 10px
		}
		.case-study .arrows-nav {
			display: none
		}
	.button.green, input[type="submit"].green, 
a.button.green:link, a.button.green:visited, 
a.button.green:hover, a.button.green:active {
	background-color: #89cfc0!important;
}
}