html, body {
	padding: 0;
	margin: 0;
}

section {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 0 30px;
}

.content-width {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
}

.section-with-button {
	background-image: url("assets/images/bg-image.jpg");
	-moz-background-size: cover;
	     background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
}

.button-custom-style {
	width: 100%;
	max-width: 572px;
	min-height: 84px;
	background-color: #f16f63;
	border: 1px solid #f16f63;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
	        border-radius: 50px;
	color: #fff;
	font-size: 28px;
	text-transform: uppercase;
	display: block;
	margin: 0 auto;
	cursor: pointer;
	-webkit-transition:  ease all .5s;
	-o-transition:  ease all .5s;
	-moz-transition:  ease all .5s;
	transition:  ease all .5s;
}

.button-custom-style:hover {
	background-color: #fff;
	color: #f16f63;
}

.button-custom-style .fas:before {
	font-size: 23px;
}

@media screen and (max-width: 767px) {
    button.button-custom-style,
    .button-custom-style .fas:before {
        font-size: 18px;
    }
}