body {
	padding: 0;
	margin: 0;
	font-family: 'Assistant', sans-serif;
}

@keyframes jump {

    from,
    to {
        left: -15px;
    }

    50% {
        left: -20px;
    }
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.container {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	width: 80%;
}

.container:after {
	content: "";
	display: block;
	clear: both;
}

.container-wide {
	display: block;
	max-width: 1700px;
	margin: 0 auto;
	width: 90%;
}

.container-wide:after {
	content: "";
	display: block;
	clear: both;
}

.narrow-container {
	display: block;
	max-width: 1016px;
	margin: 0 auto;
	width: 80%;
}

.narrow-container:after {
	content: "";
	display: block;
	clear: both;
}

/* Hero section */

.hero {
	display: block;
	position: relative;
	background-color: #fff;
	background-image: url('img/hero-bg.jpg');
	background-size: cover;
	background-position: bottom 0 center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

.hero .hero-row {
	display: block;
}

.hero .hero-row:after {
	content: "";
	display: block;
	clear: both;
}

.hero .hero-row .hero-col {
	display: block;
	width: 50%;
	float: right;
	box-sizing: border-box;
}

.hero .hero-row .hero-col.hero-col-1 {
	padding-left: 20px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.hero .hero-row .hero-col.hero-col-2 {
	padding-right: 20px;
	padding-top: 100px;
	padding-bottom: 200px;
}

.hero .hero-row .hero-col.hero-col-1 > a {
	display: block;
	padding: 0;
	margin: 0;
	text-decoration: none;
	cursor: pointer;
}

.hero .hero-row .hero-col.hero-col-1 img {
	display: block;
	padding: 0;
	margin: 0;
}

.hero .hero-row .hero-col.hero-col-1 h1 {
	display: block;
	padding: 30px 0 30px 0;
	font-weight: 800;
	color: #fff;
	font-size: 96px;
	line-height: 96px;
	margin: 0;
	width: 90%;
}

.hero .hero-row .hero-col.hero-col-1 p {
	display: block;
	padding: 0;
	margin: 0;
	color: #000;
	font-size: 44px;
	line-height: 44px;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form {
	display: block;
	box-sizing: border-box;
	width: 480px;
	padding: 34px;
	background: #fff;
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 24px 5px rgba(0,0,0,0.37);
	-moz-box-shadow: 0px 0px 24px 5px rgba(0,0,0,0.37);
	box-shadow: 0px 0px 24px 5px rgba(0,0,0,0.37);
}

.hero .hero-row .hero-col.hero-col-2 .hero-form h3 {
	display: block;
	padding: 0;
	margin: 0;
	text-align: center;
	color: #000;
	font-size: 38px;
	line-height: 38px;
	font-weight: 600;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form p.slogan {
	display: block;
	padding: 0 0 30px 0;
	margin: 0;
	text-align: center;
	color: #000;
	font-weight: 800;
	font-size: 38px;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input {
	display: block;
	box-sizing: border-box;
	width: 100%;
	font-size: 18px;
	padding: 0 12px;
	height: 56px;
	line-height: 56px;
	color: #b3b3b3;
	border: 1px solid #b3b3b3;
	margin-bottom: 20px;
	font-weight: 400;
	outline: none;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input:focus {
	border-color: #000;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input::-webkit-input-placeholder {
  color: #808080;
  font-weight: 300;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input::-moz-placeholder {
  color: #808080;
  font-weight: 300;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input:-ms-input-placeholder {
  color: #808080;
  font-weight: 300;
}

.hero-form-submit {
	display: block;
	box-sizing: border-box;
	text-align: center;
	border: none;
	width: 100%;
	height: 56px;
	background: #000;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	font-family: 'Assistant', sans-serif;
	cursor: pointer;
	transition: opacity .3s ease;
	margin-bottom: 20px;
	outline: none;
}

.hero-form-submit:hover {
	opacity: 0.8;
}

.hero-form-submit > span {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}

.hero-form-submit img {
	display: inline-block;
	position: absolute;
	margin: 0;
	padding: 0;
	height: auto;
	top: 10px;
	left: -15px;
	z-index: 1;
	animation-name: jump;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: all 0.3s ease;
}

.hero .hero-row .hero-col.hero-col-2 .hero-form p.afterwords {
	display: block;
	padding: 0;
	margin: 0;
	text-align: center;
	color: #000;
	font-weight: 700;
	font-size: 34px;
}

@media screen and (max-width: 1600px) {
	.hero .hero-row .hero-col.hero-col-2 {
		padding-bottom: 140px;
	}
}

@media screen and (max-width: 1400px) {
	.hero .hero-row .hero-col.hero-col-2 {
		padding-bottom: 100px;
	}

	.hero .hero-row .hero-col.hero-col-1 img {
		max-width: 120px;
		height: auto;
	}

	.hero .hero-row .hero-col.hero-col-1 h1 {
		padding: 25px 0 15px 0;
		font-size: 86px;
		line-height: 78px;
	}

	.hero .hero-row .hero-col.hero-col-1 p {
		font-size: 34px;
		line-height: 34px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form {
		width: 420px;
		padding: 24px;
		border-radius: 14px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form h3 {
		font-size: 32px;
		line-height: 32px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form p.slogan {
		padding: 0 0 20px 0;
		font-size: 32px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input {
		font-size: 14px;
		padding: 0 10px;
		height: 48px;
		line-height: 48px;
		margin-bottom: 15px;
	}

	.hero-form-submit {
		height: 48px;
		font-size: 22px;
		font-weight: 800;
		margin-bottom: 15px;
	}


	.hero-form-submit img {
		margin: 0 3px;
		width: 14px;
		top: 8px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form p.afterwords {
		font-size: 32px;
	}
}

@media screen and (max-width: 1100px) {
	.hero {
		background-position: bottom 0 center;
	}

	.hero .hero-row .hero-col.hero-col-2 {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.hero .hero-row .hero-col.hero-col-1 img {
		max-width: 90px;
		height: auto;
	}

	.hero .hero-row .hero-col.hero-col-1 h1 {
		padding: 25px 0 15px 0;
		font-size: 76px;
		line-height: 68px;
	}

	.hero .hero-row .hero-col.hero-col-1 p {
		font-size: 24px;
		line-height: 24px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form {
		width: 360px;
		padding: 18px;
		border-radius: 12px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form h3 {
		font-size: 24px;
		line-height: 24px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form p.slogan {
		padding: 0 0 20px 0;
		font-size: 24px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input {
		font-size: 12px;
		padding: 0 10px;
		height: 40px;
		line-height: 40px;
		margin-bottom: 15px;
	}

	.hero-form-submit {
		height: 40px;
		font-size: 18px;
		font-weight: 800;
		margin-bottom: 15px;
	}


	.hero-form-submit img {
		margin: 0 3px;
		width: 12px;
		top: 5px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form p.afterwords {
		font-size: 26px;
	}
}

@media screen and (max-width: 900px) {

	.hero {
		background-position: bottom 0 right;
	}

	.hero .hero-row .hero-col {
		width: 100%;
		float: none;
	}

	.hero .hero-row .hero-col.hero-col-1 {
		padding-left: 0;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.hero .hero-row .hero-col.hero-col-2 {
		padding-right: 0;
		padding-top: 0;
		padding-bottom: 30px;
	}

	.hero .hero-row .hero-col.hero-col-1 img {
		max-width: 80px;
		height: auto;
	}

	.hero .hero-row .hero-col.hero-col-1 h1 {
		padding: 25px 0 15px 0;
		font-size: 48px;
		line-height: 58px;
	}

	.hero .hero-row .hero-col.hero-col-1 p {
		font-size: 18px;
		line-height: 18px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form {
		width: 100%;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form h3 {
		font-size: 18px;
		line-height: 18px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form p.slogan {
		padding: 0 0 20px 0;
		font-size: 18px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form .hero-form-input {
		font-size: 10px;
		padding: 0 8px;
		height: 30px;
		line-height: 30px;
		margin-bottom: 10px;
	}

	.hero-form-submit {
		height: 30px;
		font-size: 14px;
		font-weight: 800;
		margin-bottom: 15px;
	}


	.hero-form-submit img {
		margin: 0 3px;
		width: 10px;
	}

	.hero .hero-row .hero-col.hero-col-2 .hero-form p.afterwords {
		font-size: 12px;
	}
}

@media screen and (max-width: 500px) {
	.hero {
		background-image: url('img/hero-bg-mobile.jpg');
		background-size: 110% auto;
		background-position: top center;
	}
}

/* Phone section */

.phone {
	display: none;
	width: 100%;
	padding: 20px 60px;
	background: #000;
	position: relative;
	box-sizing: border-box;
}

.phone.sticky {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.phone:after {
	content: "";
	display: block;
	clear: both;
}

.phone .phone-col {
	display: inline-block;
	font-weight: 700;
	color: #fff;
	font-size: 26px;
}

.phone .phone-col.phone-col-1 {
	float: right;
}

.phone .phone-col.phone-col-2 {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.phone .phone-col.phone-col-2 a {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
}

.phone .phone-col.phone-col-2 img {
	display: inline-block;
	height: auto;
}

.phone .phone-col.phone-col-3 {
	float: left;
}

.phone .phone-col.phone-col-3 > img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	height: auto;
}

.phone .phone-col.phone-col-3 > a.phone-link {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	vertical-align: middle;
}

.phone .phone-col.phone-col-3 > a.phone-link:hover {
	text-decoration: underline;
}

.phone .phone-col.phone-col-3 > a.scroll-btn {
	display: inline-block;
	vertical-align: middle;
	padding: 8px 25px;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	background: #5fc19f;
	cursor: pointer;
	text-decoration: none;
	margin-right: 20px;
	opacity: 1;
	transition: opacity .3s ease;
}

.phone .phone-col.phone-col-3 > a.scroll-btn:hover {
	opacity: 0.8;
}

@media screen and (max-width: 1100px) {
	.phone {
		padding: 16px 50px;
	}

	.phone .phone-col {
		font-size: 24px;
	}

	.phone .phone-col.phone-col-2 img {
		width: 90px;
	}

	.phone .phone-col.phone-col-3 > img {
		width: 17px;
	}
}

@media screen and (max-width: 900px) {
	.phone {
		padding: 16px 50px;
	}

	.phone .phone-col {
		font-size: 18px;
	}

	.phone .phone-col.phone-col-2 img {
		width: 90px;
	}

	.phone .phone-col.phone-col-3 > img {
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
	}
}

@media screen and (max-width: 650px) {
	.phone {
		padding: 16px 50px;
	}

	.phone .phone-col {
		display: block;
		text-align: center;
	}

	.phone .phone-col.phone-col-1 {
		float: none;
	}

	.phone .phone-col.phone-col-2 {
		position: initial;
		transform: none;
		padding: 10px 0;
	}

	.phone .phone-col.phone-col-2 img {
		width: 90px;
	}

	.phone .phone-col.phone-col-3 {
		float: none;
	}
	
}

/* Benefits section */

.benefits {
	padding: 50px 0 10px 0;
}

.benefits .benefits-heading {
	display: block;
	padding: 0 0 50px 0;
	margin: 0;
	text-align: center;
	font-weight: 800;
	font-size: 64px;
}

.benefits .benefits-row {
	display: block;
}

.benefits .benefits-row:after {
	content: "";
	display: block;
	clear: both;
}

.benefits .benefits-row .benefits-item {
	display: block;
	box-sizing: border-box;
	width: 33.3%;
	float: right;
	margin-bottom: 80px;
}

.benefits .benefits-row .benefits-item img {
	display: block;
	margin: 0 auto;
	padding: 0;
}

.benefits .benefits-row .benefits-item h3 {
	display: block;
	margin: 0 auto;
	padding: 20px 0 0 0;
	text-align: center;
	width: 80%;
	font-weight: 800;
	font-size: 28px;
	line-height: 28px;
	color: #54af8c;
}

.benefits .benefits-row .benefits-item p {
	display: block;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	width: 50%;
	font-size: 22px;
	color: #333333;
	font-weight: 400;
}

@media screen and (max-width: 1100px) {
	.benefits .benefits-row .benefits-item {
		width: 50%;
	}
}

@media screen and (max-width: 900px) {
	.benefits .benefits-row .benefits-item {
		width: 50%;
	}

	.benefits .benefits-heading {
		font-size: 38px;
	}

	.benefits .benefits-row .benefits-item h3 {
		font-size: 18px;
		line-height: 18px;
	}

	.benefits .benefits-row .benefits-item p {
		font-size: 14px;
	}
}

@media screen and (max-width: 560px) {
	.benefits .benefits-row .benefits-item {
		width: 100%;
		float: none;
		margin-bottom: 30px;
		padding-bottom: 30px;
		position: relative;
	}

	.benefits .benefits-row .benefits-item:after {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		z-index: 10;
		background: rgb(206,206,206);
		background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(206,206,206,1) 50%, rgba(255,255,255,1) 100%);
	}

	.benefits .benefits-row .benefits-item:last-child {
		padding-bottom: 0;
	}

	.benefits .benefits-row .benefits-item:last-child:after {
		display: none;
	}
}

/* Callout section */

.callout {
	display: block;
	padding: 100px 0;
	margin: 0;
	background-color: #5fc19f;
	border-top: 40px solid #e8f8f1;
}

.callout.callout-with-bg {
	background-image: url('img/callout-green-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 60px 0;
}

.callout .callout-heading {
	display: block;
	margin: 0;
	padding: 0 0 100px 0;
	font-size: 51px;
	line-height: 51px;
	text-align: center;
	color: #000;
	font-weight: 600;
}

.callout.callout-with-bg .callout-heading {
	padding: 0 0 60px 0;
}

.callout .callout-heading > span {
	font-weight: 800;
}

.callout .callout-form {
	display: block;
	text-align: center;
}

.callout .callout-form form {
	display: block;
	text-align: center;
}

.callout .callout-form .callout-form-input {
	display: inline-block;
	box-sizing: border-box;
	font-size: 18px;
	padding: 0 12px;
	height: 56px;
	line-height: 56px;
	color: #1a1a1a;
	border: 1px solid #000;
	margin-bottom: 20px;
	font-weight: 400;
	outline: none;
	text-align: right;
	width: 300px;
	vertical-align: middle;
	margin: 0 8px;
}

.callout .callout-form .callout-form-input:focus {
	border-color: #000;
}

.callout .callout-form .callout-form-input::-webkit-input-placeholder {
  color: #1a1a1a;
  font-weight: 300;
}

.callout .callout-form .callout-form-input::-moz-placeholder {
  color: #1a1a1a;
  font-weight: 300;
}

.callout .callout-form .callout-form-input:-ms-input-placeholder {
  color: #1a1a1a;
  font-weight: 300;
}

.callout .callout-form .callout-form-submit {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	text-align: center;
	border: none;
	height: 56px;
	background: #000;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	font-family: 'Assistant', sans-serif;
	cursor: pointer;
	transition: opacity .3s ease;
	padding: 0 36px;
	outline: none;
	margin: 0 8px;
}

.callout .callout-form .callout-form-submit:hover {
	opacity: 0.8;
}

.callout .callout-form .callout-form-submit img {
	display: inline-block;
	position: absolute;
	margin: 0;
	padding: 0;
	height: auto;
	top: 10px;
	left: -15px;
	z-index: 1;
	animation-name: jump;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: all 0.3s ease;
}

.callout .callout-form .callout-form-submit > span {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}

@media screen and (max-width: 1500px) {
	.callout .callout-form .callout-form-input {
		width: 250px;
	}
}

@media screen and (max-width: 1400px) {

	.callout .callout-form .callout-form-input {
		font-size: 14px;
		padding: 0 10px;
		height: 48px;
		line-height: 48px;
		width: 200px;
	}

	.callout .callout-form .callout-form-submit {
		height: 48px;
		font-size: 22px;
		font-weight: 800;
	}


	.callout .callout-form .callout-form-submit img {
		margin: 0 3px;
		width: 14px;
		top: 8px;
	}
}

@media screen and (max-width: 1100px) {

	.callout .callout-form .callout-form-input {
		font-size: 12px;
		padding: 0 10px;
		height: 40px;
		line-height: 40px;
		width: 150px;
	}

	.callout .callout-form .callout-form-submit {
		height: 40px;
		font-size: 18px;
		font-weight: 800;
	}


	.callout .callout-form .callout-form-submit img {
		margin: 0 3px;
		width: 12px;
		top: 5px;
	}
}

@media screen and (max-width: 900px) {

	.callout {
		padding: 40px 0;
	}

	.callout .callout-heading {
		padding: 0 0 40px 0;
		font-size: 38px;
		line-height: 38px;
	}

	.callout .callout-form .callout-form-input {
		font-size: 14px;
		padding: 0 8px;
		height: 50px;
		line-height: 30px;
		display: block;
		margin: 0 0 10px 0;
		width: 100%;
	}

	.callout .callout-form .callout-form-submit {
		height: 50px;
		font-size: 14px;
		font-weight: 800;
		display: block;
		width: 100%;
		margin: 0;
	}


	.callout .callout-form .callout-form-submit img {
		margin: 0 3px;
		width: 10px;
	}
}

/* About section */

.about {
	display: block;
	padding: 100px 0;
	background-image: url('img/glossy-bg.png');
	background-size: auto 100%;
	background-position: top right;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

.about .about-row {
	display: block;
}

.about .about-row:after {
	content: "";
	display: block;
	clear: both;
}

.about .about-row .about-col {
	display: block;
	box-sizing: border-box;
	float: right;
}

.about .about-row .about-col.about-col-1 {
	width: 70%;
	padding-left: 54px;
}

.about .about-row .about-col.about-col-2 {
	width: 30%;
}

.about .about-row .about-col.about-col-1 h2 {
	display: block;
	margin: 0;
	padding: 0 0 30px 0;
	font-size: 51px;
	line-height: 51px;
	color: #333333;
	font-weight: 800;
}

.about .about-row .about-col.about-col-1 p {
	display: block;
	margin: 0;
	padding: 0;
	color: #333333;
	font-weight: 400;
	text-align: justify;
	font-size: 22px;
}

.about .about-row .about-col.about-col-2 img {
	display: block;
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 1400px) {
	.about .about-row .about-col.about-col-1 p {
		font-size: 16px;
	}
}

@media screen and (max-width: 900px) {

	.about .about-row .about-col.about-col-1 h2 {
		font-size: 38px;
		line-height: 38px;
	}

	.about .about-row .about-col.about-col-1 p {
		font-size: 14px;
	}
}

@media screen and (max-width: 750px) {

	.about {
		padding: 40px 0;
		background-position: top center;
	}

	.about .about-row .about-col {
		float: none;
	}

	.about .about-row .about-col.about-col-1 {
		width: 100%;
		padding-left: 0;
		margin-bottom: 50px;
	}

	.about .about-row .about-col.about-col-2 {
		width: 100%;
	}

	.about .about-row .about-col.about-col-1 h2 {
		font-size: 38px;
		line-height: 38px;
	}

	.about .about-row .about-col.about-col-1 p {
		font-size: 14px;
	}

	.about .about-row .about-col.about-col-2 img {
		margin: 0 auto;
	}
}

/* Testimonials section */

.testimonials {
	display: block;
	padding: 50px 0 50px 0;
	background-color: #5fc19f;
	background-image: url('img/testimonials-bg.jpg');
	background-size: cover;
	background-position: bottom 0 center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

.testimonials .testimonials-heading {
	display: block;
	margin: 0;
	padding: 0 0 50px 0;
	font-size: 51px;
	line-height: 51px;
	color: #333333;
	font-weight: 800;
	text-align: center;
}

.testimonials .slider {
	display: block;
	width: 100%;
	position: relative;
}

.testimonials .slider .slider-container {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
	transition: height .4s ease;
}

.testimonials .slider .slider-container .slider-row {
	display: block;
	position: absolute;
	z-index: 10;
	right: 0;
	top: 0;
	width: 9000px;
	transition: right 0.5s ease-in-out;
}

.testimonials .slider .slider-container .slider-row:after {
	content: "";
	display: block;
	clear: both;
}

.testimonials .slider .slider-container .slider-row .slide {
	display: block;
	box-sizing: border-box;
	float: right;
	width: 480px;
	padding: 20px;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card {
	display: block;
	box-sizing: border-box;
	padding: 34px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 10px -2px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px -2px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px -2px rgba(0,0,0,0.75);
}

.testimonials .slider .slider-container .slider-row .slide .slide-card > img {
	display: block;
	padding: 0 0 15px 0;
	margin: 0 auto;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card > p {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #333;
	text-align: justify;
	padding: 0 0 15px 0;
	margin: 0;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials {
	display: block;
	padding-top: 15px;
	position: relative;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials:after {
	content: "";
	display: block;
	clear: both;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > img {
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	width: 100px;
	height: auto;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > div {
	display: block;
	box-sizing: border-box;
	padding-left: 120px;
	margin: 0;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > div > h6 {
	display: block;
	margin: 0;
	padding: 5px 0;
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	color: #000;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > div > span {
	display: block;
	padding: 0 0 5px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > div > img {
	display: block;
	max-width: 100%;
	height: auto;
}

.testimonials .slider .slider-control {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 29px;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-15px);
	cursor: pointer;
}

.testimonials .slider .slider-control > img {
	display: inline-block;
	vertical-align: middle;
}

.testimonials .slider .slider-control.left {
	left: -20px;
}

.testimonials .slider .slider-control.right {
	right: -20px;
}

.testimonials .slider .dots {
	display: none;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.testimonials .slider .dots .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	margin: 0 4px;
	vertical-align: middle;
}

.testimonials .slider .dots .dot.active {
	background: #333;
}

@media screen and (max-width: 900px) {
	.testimonials .testimonials-heading {
		font-size: 38px;
		line-height: 38px;
	}
}

@media screen and (max-width: 1049px) {
	.testimonials {
		padding: 50px 0 70px 0;
	}

	.testimonials .container {
		width: 90%;
	}

	.testimonials .slider .dots {
		display: inline-block;
	}
}

@media screen and (max-width: 460px) {

	.testimonials .slider .slider-container .slider-row .slide .slide-card {
		padding: 20px;
	}

	.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > img {
		float: none;
		margin: 0 auto;
		padding: 0;
	}

	.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > div {
		display: block;
		box-sizing: border-box;
		padding-left: 0;
		margin: 0;
		text-align: center;
	}

	.testimonials .slider .slider-container .slider-row .slide .slide-card .credentials > div > img {
		margin: 0 auto;
	}
}

/* FAQ section */

.faq {
	display: block;
	border-top: 40px solid #e8f8f1;
}

.faq .faq-col {
	display: block;
	box-sizing: border-box;
	float: right;
}

.faq .faq-col.faq-col-1 {
	width: 40%;
	padding: 80px 0 80px 80px;
}

.faq .faq-col.faq-col-1 img {
	display: block;
	max-width: 100%;
	height: auto;
}

.faq .faq-col.faq-col-2 {
	width: 60%;
	padding: 100px 0 80px 0;
}

.faq .faq-col.faq-col-2 .accordeon {
	display: block;
}

.faq .faq-col.faq-col-2 .accordeon .item {
	display: block;
	position: relative;
	padding: 0 40px 0 0;
}

.faq .faq-col.faq-col-2 .accordeon .item:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(2,2,2,1) 50%, rgba(255,255,255,1) 100%);
}

.faq .faq-col.faq-col-2 .accordeon .item > img {
	display: inline-block;
	position: absolute;
	top: 25px;
	right: 0;
	z-index: 20;
	transition: transform .3s ease;
}

.faq .faq-col.faq-col-2 .accordeon .item.opened > img {
	transform: rotate(-90deg);
}

.faq .faq-col.faq-col-2 .accordeon .item .question {
	display: block;
	padding: 15px 0 15px 0;
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
}

.faq .faq-col.faq-col-2 .accordeon .item.opened .question {
	font-weight: 800;
}

.faq .faq-col.faq-col-2 .accordeon .item .answer {
	display: none;
	padding: 0 0 15px 0;
	font-size: 22px;
	font-weight: 400;
	color: #333;
}

@media screen and (max-width: 900px) {
	.faq .faq-col {
		float: none;
	}

	.faq .faq-col.faq-col-1 {
		width: 100%;
		padding: 80px 0 80px 0;
	}

	.faq .faq-col.faq-col-1 > img {
		margin: 0 auto;
	}

	.faq .faq-col.faq-col-2 {
		width: 100%;
		padding: 0 0 80px 0;
	}

	.faq .faq-col.faq-col-2 .accordeon .item > img {
		top: 20px;
	}

	.faq .faq-col.faq-col-2 .accordeon .item .question {
		font-size: 18px;
		padding: 15px 0 15px 0;
	}

	.faq .faq-col.faq-col-2 .accordeon .item .answer {
		padding: 0 0 15px 0;
		font-size: 14px;
	}
}

/* Footer section */

.footer {
	display: block;
	width: 100%;
	padding: 40px 60px;
	background: #333;
	position: relative;
	box-sizing: border-box;
}

.footer > span {
	display: inline-block;
	vertical-align: bottom;
	margin-right: 10px;
	color: #fff;
	font-size: 18px;
}

.footer > img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

@media screen and (max-width: 660px) {
	.footer > span {
		display: block;
		text-align: center;
		margin-bottom: 10px;
		font-size: 14px;
	}

	.footer > img {
		display: block;
		margin: 0 auto;
	}
}

/* Sticky mobile footer */

.mobile-footer-sticky {
	position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 5000;
    display: none;
}

.mobile-footer-sticky .mob-contact-phone {
	height: 40px;
    line-height: 39px;
    padding: 0;
    padding: 0 20px;
    float: left;
    font-size: 13px;
    text-align: center;
    background: #333;
    color: #fff;
    width: 54%;
    box-sizing: border-box;
}

.mobile-footer-sticky .mob-contact-phone i {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	margin: 0 4px;
	vertical-align: middle;
}

.mobile-footer-sticky .mob-contact-phone a {
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

.mobile-footer-sticky .mob-contact-contact {
	height: 40px;
    line-height: 39px;
    padding: 0;
    padding: 0 20px;
    float: left;
    font-size: 13px;
    text-align: center;
    background: #5fc19f;
    color: #fff;
    width: 46%;
    box-sizing: border-box;
    position: relative;
}

.mobile-footer-sticky .mob-contact-contact i {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	margin: 0 4px;
	vertical-align: middle;
}

.mobile-footer-sticky .mob-contact-contact a {
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

.mobile-footer-sticky .mob-contact-contact:after {
	border-color: transparent transparent #5fc19f;
    border-style: solid;
    border-width: 0 0 70px 70px;
    content: "";
    display: inline-block;
    height: 100%;
    left: -70px;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 9999;
    box-sizing: border-box;
}

/* Tank you section */

.thanks {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 100;
	top: 0;
	left: 0;
	background-color: #5fc19f;
	background-image: url('img/thank-you-desktop.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.thanks .container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.thanks .container h1 {
	display: block;
	margin: 0;
	padding: 0 0 10px 0;
	font-size: 78px;
	text-align: center;
	font-weight: 800;
	color: #333;
}

.thanks .container p {
	display: block;
	padding: 0 0 60px 0;
	text-align: center;
	font-weight: 600;
	font-size: 54px;
	color: #333;
	margin: 0;
}

.thanks .container .thanks-submit {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	text-align: center;
	border: none;
	height: 64px;
	line-height: 62px;
	background: #000;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	font-family: 'Assistant', sans-serif;
	cursor: pointer;
	transition: opacity .3s ease;
	padding: 0 36px;
	outline: none;
	margin: 0;
	width: 400px;
}

.thanks .container .thanks-submit:hover {
	opacity: 0.8;
}

.thanks .container .thanks-submit img {
	display: inline-block;
	position: absolute;
	margin: 0;
	padding: 0;
	height: auto;
	top: 10px;
	left: -15px;
	z-index: 1;
	animation-name: jump;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: all 0.3s ease;
}

.thanks .container .thanks-submit > span {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	line-height: initial;
}

@media screen and (max-width: 1400px) {
	.thanks .container h1 {
		font-size: 64px;
	}

	.thanks .container p {
		font-size: 44px;
		padding: 0 0 50px 0;
	}

	.thanks .container .thanks-submit {
		font-size: 22px;
		width: 300px;
		height: 58px;
		line-height: 56px;
	}

	.thanks .container .thanks-submit img {
		top: 6px;
	}
}

@media screen and (max-width: 1000px) {
	.thanks .container h1 {
		font-size: 58px;
	}

	.thanks .container p {
		font-size: 38px;
		padding: 0 0 40px 0;
	}

	.thanks .container .thanks-submit {
		font-size: 20px;
		width: 300px;
		height: 50px;
		line-height: 48px;
	}

	.thanks .container .thanks-submit img {
		top: 5px;
	}
}

@media screen and (max-width: 600px) {
	.thanks .container h1 {
		font-size: 46px;
	}

	.thanks .container p {
		font-size: 28px;
		padding: 0 0 30px 0;
	}

	.thanks .container .thanks-submit {
		font-size: 16px;
		width: 300px;
		height: 48px;
		line-height: 46px;
	}

	.thanks .container .thanks-submit img {
		top: 5px;
		width: 14px;
		height: auto;
	}
}

@media screen and (max-width: 400px) {

	.thanks {
		background-image: url('img/thank-you-mobile.jpg');
	}

	.thanks .container h1 {
		font-size: 40px;
	}

	.thanks .container p {
		font-size: 26px;
		padding: 0 0 20px 0;
	}

	.thanks .container .thanks-submit {
		font-size: 16px;
		width: 250px;
		height: 44px;
		line-height: 42px;
	}

	.thanks .container .thanks-submit img {
		top: 5px;
		width: 14px;
		height: auto;
	}
}

@media screen and (max-width: 350px) {

	.thanks {
		background-image: url('img/thank-you-mobile.jpg');
	}

	.thanks .container h1 {
		font-size: 36px;
	}

	.thanks .container p {
		font-size: 22px;
		padding: 0 0 20px 0;
	}

	.thanks .container .thanks-submit {
		font-size: 14px;
		width: 220px;
		height: 44px;
		line-height: 42px;
	}

	.thanks .container .thanks-submit img {
		top: 3px;
		width: 12px;
		height: auto;
	}
}