/*-------------
 	General
-------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	font-family: 'Roboto', arial, tahoma, verdana, sans-serif;
	font-size: 16px;
	color: #120f15;
	scroll-behavior: smooth;
}
img {
	max-width: 100%;
	height: auto;
}
.wrapper {
	max-width: 1360px;
	margin: 0 auto;
}
.container {
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header {
	background: #F58220;
	padding: 20px 0 20px 0;
	font-size: 16px;
	color: #fff;
}
header h2 {
	line-height: 0;
}
header .container {
	max-width: 90%;
	align-items: flex-end;
}
.flex-center {
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header ul {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header li:last-child {
	padding: 0 0 0 25px;
}
.slinks {
	padding: 25px 0 5px 0;
}
.slinks li {
	padding: 0 15px 0 15px;
	position: relative;
}
.slinks li::after {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	content: "|";
	margin: auto;
	width: 1px;
	height: 100%;
}
.slinks li:last-child {
	padding: 0 0 0 15px;
}
.slinks li:last-child::after {
	display: none;
}
header ul img {
	display: inline-block;
	vertical-align: middle;
	margin: 0 3px 0 0;
}
header a {
	color: #fff;
	text-decoration: none;
}
.hero {
	background: #fff url(../images/hero-bg.png) no-repeat center bottom;
	padding: 80px 0 50px 0;
	height: 1100px;
}
.hero h1 {
	font-size: 62px;/*70px*/
	font-weight: 600;
	color: #F58220;
}
.hero h1 span {
	display: block;
	font-weight: 500;
	color: #000;
}
.hero h1 font {
	font-size: 35px;
	font-weight: 900;
	vertical-align: super;
}
.hero .container {
	max-width: 1020px;
	display: block;
	text-align: center;
}
.hcontent {
	justify-content: center;
	max-width: 100%;
	padding: 220px 0 0 0;
}
.hero-left {
	width: 50%;
	text-align: left;
}
.hero-left h1 {
	font-size: 33px;
	font-weight: normal;
	font-style: italic;
	line-height: 33px;
	color: #282828;
	padding: 0 0 25px 0;
}
.hero-left h1 img {
	display: inline-flex;
	vertical-align: middle;
}
.hero-form {
	width: 48%;
}
.hero-form form {
	margin: auto;
	padding: 0 0;
	position: relative;
}
.form-content {
	background: #F58220;
	margin: 0 28px 0 28px;
	padding: 35px 50px;
}
.form-head {
	background: #F58220;
	margin: 0 28px 0 28px;
	padding: 0 0;
	height: 35px;
}
.hero-form h2 {
	background: #231f20;
	font-size: 22px;
	font-weight: bold;
	color: #043B72;
	text-transform: uppercase;
	text-align: center;
	padding: 20px 10px !important;
	width: 100%;
	margin: 0 0 0 0;
	position: relative;
}
.hero-form h2::before, .hero-form h2::after {
	position: absolute;
	left: 0;
	bottom: -21px;
	content: "";
	background: url(../images/left.png) no-repeat;
	width: 28px;
	height: 21px;
}
.hero-form h2::after {
	background: url(../images/right.png) no-repeat;
	left: auto;
	right: 0;
}
.hero-form p {
	padding: 0 0 25px 0;
	position: relative;
}
.hero-form p:last-child {
	padding-bottom: 10px;
}
.hero-form input {
	background: #fff;
	border: none;
	border-radius: 5px;
	padding: 15px 15px;
	width: 100%;
	font-size: 16px;
	color: #58595b;
}
	::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 font-size:16px;
 font-weight:400;
line-height:24px;
color:#58595b;
}
::-moz-placeholder { /* Firefox 19+ */
 font-size:16px;
 font-weight:400;
line-height:24px;
color:#58595b;
}
:-ms-input-placeholder { /* IE 10+ */
 font-size:16px;
line-height:24px;
color:#58595b;
}
:-moz-placeholder { /* Firefox 18- */
 font-size:16px;
line-height:24px;
color:#58595b;
}
.hero-form button {
	width: 100%;
	height: 45px;
	line-height: 45px;
	background: #231f20;
	border: none;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.97px;
	color: #fff;
	text-transform: uppercase;
	margin: 15px 0 0 0;
	padding: 0 15px 0 15px;
	cursor: hand;
	cursor: pointer;
	position: relative;
	border-radius: 5px;
}
.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	left: 0;
	right: 0;
	margin-top: -20px;
}
.autocomplete-items div {
	padding: 5px 10px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
	text-align: left;
}
/*when hovering an item:*/
.autocomplete-items div:hover {
	background-color: #e9e9e9;
}
/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
	background-color: DodgerBlue !important;
	color: #ffffff;
}
input:focus, select:focus, textarea:focus, button:focus {
	outline: none;
}
.text-center {
	text-align: center !important;
}
.white-color {
	color: #fff !important;
}
.orange-color {
	color: #F58220 !important;
}
h2 {
	font-size: 46px;
	font-weight: 600;
	color: #000;
	line-height: 64px;
}
h2 span {
	display: block;
	font-weight: 500;
	color: #000;
}
h2 font {
	color: #F58220;
}
.benefits h2 font {
	color: #000;
	font-size: 30px;
	font-weight: 900;
	vertical-align: 8px;
}
h3 {
	font-size: 40px;
	font-weight: 600;
	text-transform: uppercase;
	color: #000;
}
h4 {
	font-size: 40px;
	font-weight: 500;
	color: #000;
	line-height: 56px;
}
h4 font {
	color: #F58220;
	font-weight: 600;
}
.lines {
	position: relative;
}
.lines::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 42%;
	height: 10px;
	background: #043B72;
}
.lines::after {
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	width: 85%;
	height: 10px;
	background: #F58220;
}
.benefits {
	background: #fff;
	background-size: cover;
	padding: 60px 15px;
}
.benefits .container {
	max-width: 980px;
	padding: 50px 0 10px 0;
	display: block;
}
.benefits ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
}
.benefits li {
	width: 300px;
	height: 360px;
	margin: 0 0 40px 0;
	padding: 20px 0 20px 0;
	background: #fff;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	font-size: 26px;
	line-height: 36px;
	color: #6d6e71;
	-webkit-box-shadow: -1px 0px 17px -9px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 0px 17px -9px rgba(0,0,0,0.75);
	box-shadow: -1px 0px 17px -9px rgba(0,0,0,0.75);
	position: relative;
}
.benefits li figure {
	height: 150px;
	display: flex;
	justify-content: center;
}
.benefits li figure img {
	margin: auto;
}
.works {
	padding: 90px 15px 90px 15px;
	font-size: 22px;
	line-height: 32px;
}
.works h2 {
	font-weight: 500;
	padding: 0 0 60px 0;
}
.works .container {
	max-width: 1160px;
}
.works .col-6 {
	width: 50%;
}
.steps {
	list-style: none;
	display: flex;
	flex-direction: column;
}
.steps li {
	display: flex;
	align-items: center;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 0;
}
.steps li img {
	margin-right: 25px;
}
.steps li span {
	width: 70%;
	text-align: left;
	line-height: 38px;
	color: #6d6e71;
}
.steps li:last-child {
	padding-bottom: 0;
}
.steps li:last-child::before {
	display: none;
}
.story {
	background: #ededed;
	padding-top: 60px;
	padding-bottom: 70px;
}
.story h2 {
	padding: 0 0 80px 0;
}
.story .container {
	max-width: 960px;
	align-items: flex-start;
}
.story .col-6:nth-child(2) {
	text-align: left;
	font-size: 18px;
	line-height: 30px;
}
.story .col-6:nth-child(2) p {
	padding: 0 0 20px 0;
	max-width: 85%;
}
.story h3 {
	padding: 0 0 35px 0;
	margin: 0 0 30px 0;
	position: relative;
}
.story h3::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 50px;
	height: 3px;
	background: #000;
}
.story small {
	display: block;
	font-size: 14px;
	color: #6d6e71;
	line-height: 24px;
	text-align: left;
	padding: 40px 0 0 0;
	max-width: 70%;
}
.partnerwithus {
	background: #e6e7e8;
	padding: 60px 15px 80px 15px;
}
.partnerwithus::after {
	display: none;
}
.partnerwithus h2 {
	font-weight: 500;
}
.partnerwithus .container {
	max-width: 900px;
}
.partnerwithus ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	padding: 35px 0 15px 0;
	list-style: none;
}
.partnerwithus li {
	width: 33%;
	margin: 0;
	padding: 25px 10px;
	margin-bottom: 25px;
	font-size: 24px;
	line-height: 36px;
	position: relative;
}
.partnerwithus li::after {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	width: 7px;
	height: 87px;
	background: url(../images/Divider.png) no-repeat;
}
.partnerwithus li:nth-child(3)::after, .partnerwithus li:last-child::after {
	display: none;
}
.lbutton {
	font-size: 24px;
	line-height: 26px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	padding: 10px 25px;
	background: #F58220;
	border-radius: 5px;
}
.strength {
	background: #fff;
	padding: 80px 15px;
}
.strength .container {
	max-width: 1010px;
}
.strength ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	padding: 55px 0 15px 0;
	list-style: none;
}
.strength li {
	width: 310px;
	margin: 0;
	padding: 25px 10px 60px 10px;
	background: #fff;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	font-size: 26px;
	color: #231f20;
	line-height: 38px;
	-webkit-box-shadow: 6px 6px 0px -3px rgba(201,195,201,1);
	-moz-box-shadow: 6px 6px 0px -3px rgba(201,195,201,1);
	box-shadow: 6px 6px 0px -3px rgba(201,195,201,1);
	position: relative;
}
.strength li figure {
	display: flex;
	justify-content: center;
	padding: 5px 0 20px 0;
}
.strength li figure img {
	margin: auto;
}
.strength li span {
	font-size: 34px;
	font-weight: bold;
	color: #F58220;
	display: block;
	line-height: 38px;
}
.packages {
	padding: 40px 15px 20px 15px;
}
.packages .container {
	max-width: 1150px;
	justify-content: flex-start;
}
.packages h4 {
	padding: 30px 0 0 0;
}
.packages h4 font {
	display: block;
}
.packages .pack-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 930px;
	padding: 55px 0 0 0;
	list-style: none;
	margin: auto;
}
.pack-list li {
	width: 440px;
	margin: 0;
	padding: 50px 25px 50px 25px;
	margin: 10px 0 40px 0;
	background: #fff;
	border: 1px solid #F58220;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	font-size: 24px;
	color: #6d6e71;
	line-height: 34px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.packages li::before {
	position: absolute;
	left: -100px;
	top: 17px;
	content: "FREE";
	width: 300px;
	height: 45px;
	background: #008a5c;
	font-size: 22px;
	font-weight: 300;
	color: #fff;
	line-height: 40px;
	letter-spacing: 1px;
	transform: rotate(330deg);
	text-align: center;
}
.pack-list li ul {
	width: 100%;
}
.pack-list li li {
	width: 100%;
	border: none;
	background: none;
	border-radius: 0;
	padding: 0 0 0 20px;
	margin: 0 0 2px 0;
	position: relative;
	align-items: flex-start;
}
.pack-list li li::before {
	background: none;
	transform: none;
	content: "»";
	color: #6d6e71;
	width: 15px;
	left: 0;
	top: 5px;
	font-size: 28px;
	line-height: 18px;
}
.packages .pack-list li:nth-child(3), .packages .pack-list li:nth-child(4), .packages .pack-list li:nth-child(3) li, .packages .pack-list li:nth-child(4) li {
	text-align: left;
}
.packages figure {
	width: 260px;
	border: 1px solid #F58220;
	border-radius: 10px;
	line-height: 1;
	margin: 0 0 25px 0;
	overflow: hidden;
	text-align: center;
}
footer {
	color: #ffffff;
	background: #043B72;
	padding: 50px 15px;
	text-align: justify;
	border-bottom: 10px solid #F58220;
	font-weight: 300;
	line-height: 24px;
}
footer a {
	color: #F58220;
	text-decoration: none;
}
footer .container {
	max-width: 1220px;
}
#myBtn {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 99;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	padding: 0;
	color: #F58220;
	white-space: nowrap;
	font-size: 14px;
	text-align: center;
}
#myBtn span {
	width: 27px;
	height: 27px;
	line-height: 27px;
	background: #fff;
	text-align: center;
	display: block;
	border: 1px solid #F58220;
	border-radius: 50%;
	margin: auto auto 5px auto;
}
.plus-container {
	padding-bottom: 60px;
}
.plus {
	padding: 20px 20px;
	background: #F58220;
	border-radius: 20px;
	position: relative;
	font-size: 26px;
	color: #fff;
	text-align: center;
	width: 930px;
	margin: auto;
	line-height: 44px;
}
.plus::before {
	position: absolute;
	left: 0;
	top: 0;
	background: #dee1e6;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 20px;
	transform: rotate(1.53deg);
	border-radius: 20px;
	z-index: -5;
}
@media (max-width: 960px) {
header {
	padding-bottom: 5px;
}
nav {
	padding: 10px 15px;
}
.container, header ul {
	display: block;
}
h1 {
	font-size: 34px !important;
}
h2 {
	font-size: 28px !important;
	line-height: normal !important;
	padding-bottom: 0 !important;
}
h3 {
	font-size: 28px !important;
	line-height: normal !important;
}
h4 {
	font-size: 28px !important;
	line-height: normal !important;
}
section {
	padding: 30px 15px !important;
}
header h2 {
	text-align: left;
	padding-left: 20px;
	padding-bottom: 10px;
}
header h2 img {
	width: 60%;
}
header li:last-child {
	padding: 10px 0 0 0;
}
.hero {
	height: auto;
}
.hcontent {
	margin: 0;
	padding: 0;
	flex-direction: column;
}
.hero-left, .hero-form, .works .col-6, .strength li, .partnerwithus li, .packages .pack-list, .pack-list li, .plus, .plus::before {
	width: 100%;
}
.hero-left h1 {
	padding-bottom: 5px;
}
.hero-form {
	padding-top: 25px;
	padding-bottom: 25px;
}
.form-content {
	padding: 15px;
}
.benefits .container {
	padding: 25px 20px 0 20px;
}
.benefits ul+ul {
	margin-top: 0;
}
.benefits li {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	padding: 20px 5px;
	flex-direction: initial;
	text-align: left;
	line-height: 31px;
}
.benefits ul+ul li:last-child {
	margin-bottom: 0;
}
.benefits li::before {
	width: 180px;
	height: 120px;
}
.benefits li figure {
	width: 100px;
	height: auto;
}
.benefits li figure img {
	max-width: 80%;
}
.benefits li figcaption {
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	padding: 0 0 0 0;
	width: 65%;
}
.benefits li figcaption br {
	display: none;
}
.steps {
	padding: 25px 0 15px 0;
	font-size: 20px;
}
.steps li span br {
	display: none;
}
.partnerwithus ul {
	padding-top: 0;
}
.partnerwithus li {
	font-size: 22px;
	padding-bottom: 25px;
	margin-bottom: 10px;
}
.partnerwithus li:last-child {
	padding-bottom: 0;
}
.partnerwithus li::after {
	top: auto;
	bottom: -43px;
	left: 0;
	transform: rotate(90deg);
}
.strength ul {
	padding-top: 20px;
}
.strength li {
	height: auto;
	margin-bottom: 20px;
}
.strength li figure {
	height: auto;
	padding-bottom: 20px;
}
.strength li figure img {
	max-width: 80%;
}
footer {
	padding: 15px;
}
footer .container {
	max-width: 100%;
}
.hero h1 font {
	font-size: 18px;
}
.hero-left {
	order: 2;
}
.hero-form {
	order: 1;
}
.benefits h2 font {
	font-size: 18px;
}
.lines::before, .lines::after {
	width: 70%;
}
.works {
	padding-top: 50px !important;
}
.works .col-6:nth-child(1) {
	order: 2;
}
.works .col-6:nth-child(2) {
	order: 1;
}
.works .container {
	display: flex;
	flex-direction: column;
}
.steps li img {
	margin-right: 15px;
	width: 110px;
}
.steps li span {
	line-height: 30px;
	color: #6d6e71;
}
.story .col-6:nth-child(1) {
	order: 1;
	padding-top: 25px;
	padding-bottom: 25px;
}
.story .col-6:nth-child(2) {
	order: 2;
}
.story .col-6:nth-child(2) p {
	max-width: 100%;
}
.story h3 {
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.story small {
	max-width: 100%;
	padding-top:20px;
}
.packages h4 font {
	display: inline;
}
.packages .pack-list {
	padding-top: 0;
}
.pack-list li {
	margin-bottom: 0;
	align-items: flex-start;
}
.packages figure {
	margin-top: 5px;
}
.pack-list li li br {
	display: none;
}
.partnerwithus li:nth-child(3)::after {
	display: block;
}
.pack-list li {
	padding: 20px 0;
	border: none;
	border-bottom: 1px solid #6d6e71;
	border-radius: 0;
	flex-direction: initial;
	text-align: left;
}
.pack-list figure {
	width: 40%;
	margin-right: 4%;
}
.pack-list div {
	width: 56%;
	font-size: 20px;
	line-height: 28px;
}
.pack-list p br {
	display: none;
}
.pack-list figure img {
	max-width: 80%;
	padding: 25px 0 0 15px;
}
.packages li::before {
	display: none;
}
.packages li li {
	font-size: 20px;
	line-height: 28px;
}
.packages li li::before {
	display: block;
}
figure {
	position: relative;
}
.packages figure::before {
	position: absolute;
	left: -145px;
	top: 2px;
	content: "FREE";
	width: 340px;
	height: 30px;
	background: #008a5c;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	line-height: 33px;
	letter-spacing: 1px;
	transform: rotate(330deg);
	text-align: center;
}
.plus-container {
	padding-top: 10px !important;
	padding-bottom: 40px !important;
}
.plus::before{transform: rotate(3deg);}
}
@media only screen and (max-width: 912px) and (min-width: 480px) {
}
.formdropdown{
    padding: 12.5px 0 12.5px 10px; position: relative; display: block; width: 100%; border: none; border-radius: 5px; font-size: 16px; color: #58595b;
}