

* {
	outline: none;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	font-weight: 400;
	font-size: 1em;
	border: none;
	font-family: 'Nunito Sans';
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5 {
	display: block;
	color: #000;
	font-family: 'Nunito Sans';
	font-weight: 900;
	text-transform: none;
}

strong {
	font-weight: 700;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 15px;
}

p {
	font: 15px 'Nunito Sans';
	font-weight: 300;
	color: #000;
	line-height: 1.5;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
	border: none;
}

section {
	margin-top: 150px;
}

select::-ms-expand {
	display: none;
}

.wrapper {
	max-width: 90%;
	height: 100%;
	margin: 0 auto;
	padding: 0 1rem;
	position: relative;
}

.clearfix:after {
	content: ".";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.text-bold {
	font-weight: 700 !important;
}

.link {
	font: 15px 'Nunito Sans';
	font-weight: 300;
	color: #176fd5;
	text-decoration: underline;
}

.link:hover {
	text-decoration: none;
}

.btn {
	display: inline-block;
	background-color: #176fd5;
	color: #fff;
	font-family: 'Nunito Sans';
	font-weight: 700;
	text-align: center;
	padding: 15px 30px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.btn:hover {
	background: #4193f2;
}

.logo {
	width: 150px;
	height: 80px;
}

.logo img {
	height: 100%;
}


/* header section */

header {
	background-color: #cdebe8;
	position: relative;
}

header.main {
	width: 100%;
	height: 100%;
	background: url(../img/bg_main_right.png) right bottom no-repeat #cdebe8;
}

header.main .bg-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_main_left.png) left bottom no-repeat;
}

header .navigate {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 5%;
	text-align: left;
	transition: 0.4s;
}

.nav-up {
	top: -20% !important;
}

.nav-bg {
	background-color: #fff;
	-webkit-box-shadow: 0px 5px 15px -2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 5px 15px -2px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 5px 15px -2px rgba(0, 0, 0, 0.5);
}

header .navigate .web-menu {
	flex-grow: 6;
}

header .navigate .logo {
	flex-grow: 2;
}

header .navigate .btn {
	text-align: right;
}

header .navigate .web-menu li {
	display: inline-block;
	margin-right: 80px;
}

header .navigate .web-menu a {
	font-family: 'Nunito Sans';
	font-weight: 700;
	color: #000;
	position: relative;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

header .navigate .web-menu a:hover,
.active {
	color: #176fd5 !important;
}

header .navigate .web-menu a:hover:after {
	width: 100%;
}

header.main .content-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .content-header .box-mid {
	text-align: center;
}

header .content-header .box-mid .form-main {
	width: 450px;
	height: 180px;
	margin: 0 auto;
}

header .content-header .box-mid .form-main>div,
header .content-header .box-mid .form-main>div>div,
header .content-header .box-mid .form-main input,
header .content-header .box-mid .form-main button {
	width: 100%;
}

header .content-header .box-mid>p {
	padding: 40px 0;
	width: 500px;
	margin: 0 auto;
}

/* mobile */

.hum {
	width: 55px;
	height: 55px;
	background-color: #176fd5;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
	position: relative;
	cursor: pointer;
	display: none;
}

.hum:hover {
	background-color: #4193f2;
}

.hum span {
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% - 10px);
	width: 22px;
	height: 4px;
	background-color: #fff;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px;
}

.hum span:before,
.hum span:after {
	content: '';
	display: block;
	position: absolute;
	width: 22px;
	height: 4px;
	background-color: #fff;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px;
}

.hum span:before {
	top: -7px;
}

.hum span:after {
	top: 7px;
}

.mobile-menu {
	z-index: 1002;
	position: fixed;
	top: 0;
	left: -100%;
	background-color: #fff;
	height: 100vh;
	padding: 40px;
	min-width: 50%;
	overflow-y: auto;
}

.mobile-menu ul {
	margin-top: 40px;
	text-align: left;
}

.mobile-menu li {
	margin-bottom: 40px;
	width: 100%;
}

.mobile-menu li a {
	color: #000;
	font-size: 20px;
}

.mobile-menu li a.btn {
	color: #fff;
	text-align: center;
	margin-top: 40px;
	width: 100%;
}

.mobile-menu .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.mobile-menu .close:before,
.mobile-menu .close:after {
	content: '';
	position: absolute;
	top: 50%;
	display: block;
	width: 100%;
	height: 3px;
	background-color: #176fd5;
}

.mobile-menu .close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mobile-menu .close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.substrate {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	cursor: pointer;
}


/* simple section */

.simple {
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	padding: 0 200px;
}

.simple .img-box {
	display: inline-block;
	width: 356px;
	height: 356px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}

.simple .text-box {
	display: inline-block;
	width: 75%;
}

.simple .text-box .icon-box {
	display: inline-block;
	width: 75px;
	height: 75px;
	text-align: center;
	padding-top: 20px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 20px -7px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 20px -7px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 20px -7px rgba(0, 0, 0, 0.5);
	position: relative;
	top: -45px;
}

.simple .text-box .icon-box img {
	height: 60%;
}

.simple .text-box h3 {
	padding-bottom: 15px;
}


/* about section */

.about {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 200px;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.about h2 {
	padding-bottom: 30px;
}

.about .box-left {
	width: 40%;
}

.about .box-right {
	width: 50%;
}


/* works section */

.works {
	text-align: center;
}

.works .box-text {
	display: inline-block;
	width: 50%;
	text-align: left;
	margin-bottom: 100px;
}

.works .box-text>p {
	display: inline-block;
	margin-top: 30px;
}

.works .box-slides {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 0 100px;
}

.works .box-slides .slide {
	background-color: red;
	width: 300px;
	height: 390px;
	position: relative;
}

.works .box-slides .slide:nth-child(1) {
	background: url(../img/works_img_1.jpg) center no-repeat;
}

.works .box-slides .slide:nth-child(2) {
	background: url(../img/works_img_2.jpg) center no-repeat;
}

.works .box-slides .slide:nth-child(3) {
	background: url(../img/works_img_3.jpg) center no-repeat;
}

.works .box-slides .slide:nth-child(4) {
	background: url(../img/works_img_4.jpg) center no-repeat;
}

.works .box-slides .slide p {
	position: absolute;
	left: 10%;
	bottom: 0;
	width: 80%;
	padding: 10px;
	background-color: #fff;
	font-family: 'Nunito Sans';
	font-weight: 700;
	-moz-border-top-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-khtml-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-top-right-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-khtml-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
}

.works>p {
	font-size: 32px;
	margin-top: 50px;
}

.works>p a {
	font-size: 32px;
	color: #176fd5;
}


/* helping section */

.helping {
	position: relative;
}

.helping .box-img {
	width: 60%;
	height: 540px;
	background: url(../img/img_help.jpg) no-repeat;
	background-size: cover;
}

.helping .box-content {
	position: absolute;
	top: 20%;
	right: 25%;
	width: 30%;
	height: auto;
	padding: 70px;
	background-color: #fff;
	-moz-border-top-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-khtml-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-khtml-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.helping .box-content p {
	padding: 25px 0;
}

.helping .box-content .btn {
	margin: 0;
}


/* footer section */

footer {
	margin: 150px 0 50px;
}

footer .foot-nav {
	border-top: 1px solid #37414c;
	border-bottom: 1px solid #37414c;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .foot-nav li {
	display: inline-block;
	margin-left: 55px;
}

footer .foot-nav li a {
	font: 14px 'Nunito Sans';
	font-weight: 300;
	color: #000;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	position: relative;
}

footer .foot-nav li a:hover {
	color: #176fd5;
}

footer .material p {
	text-align: justify;
}

footer .material h3,
footer .material p,
footer p.copiright {
	color: #73767b;
}

footer .material h3 {
	margin-top: 50px;
}

footer .material p {
	font-size: 12px;
	margin-top: 20px;
}

footer p.copiright {
	font-size: 14px;
	margin-top: 50px;
}

/* page */

.page header .content-header {
	padding: 200px 0 150px;
}

.page .page-cont {
	padding: 0 100px;
	margin-top: 100px;
}


/*===============================================================
===================== HOW IT WORKS PAGE =========================
=================================================================*/

header.works {
	width: 100%;
	background: url(../img/bg_works_right.png) 85% 100% no-repeat #cdebe8;
}

header.works .bg-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_works_left.png) 15% 100% no-repeat;
}

.page section.works {
	margin-top: 70px;
}

.page-cont h5,
.page-cont strong,
.page-cont p,
.page-cont ul {
	margin-bottom: 30px;
}

.page-cont strong {
	font-size: 15px;
	color: #000;
	font-family: 'Nunito Sans';
	font-weight: 900;
	text-transform: none;
}

/*==============================================================
======================== TERMS PAGE ============================
================================================================*/

header.terms {
	width: 100%;
	background: url(../img/bg_terms_right.png) 100% 0% no-repeat #cdebe8;
}

header.terms .bg-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_terms_left.png) 15% 100% no-repeat;
}


/*==============================================================
========================= FAQ PAGE =============================
================================================================*/

header.faq {
	width: 100%;
	background: url(../img/bg_faq_right.png) 100% 100% no-repeat #cdebe8;
}

header.faq .bg-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_faq_left.png) 0% 100% no-repeat;
}

header.faq .content-header a {
	display: inline-block;
}

.ac-head {
	cursor: pointer;
	padding: 10px 0;
}

.ac-body {
	display: none;
	padding: 10px 0 30px;
}

.ac-head h5 {
	font-size: 24px;
	margin-bottom: 0;
}

.ac-head h5 span {
	position: relative;
	display: inline-block;
}

.ac-head h5 span:after {
	content: url(../img/arrow_accord.png);
	display: inline-block;
	position: relative;
	left: 10px;
	top: -2px;
	height: 9px;
	width: 12px;
}

.ac-head:hover h5 span:after {
	content: url(../img/arrow_accord_hover.png);
}

.ac-head:hover h5 {
	color: #176fd5;
}

.ac-body li,
.ac-body p {
	line-height: 1.4;
	margin: 0;
	font-size: 15px;
}

.ac-body ul {
	margin: 10px 0;
}

.ac-body p {
	padding: 5px 0;
}

.ac-body li:before {
	content: '- ';
}


/*================================================================
========================== CONTACT PAGE ==========================
=================================================================*/

header.contact {
	width: 100%;
	background: url(../img/bg_contact_right.png) 100% 85% no-repeat #cdebe8;
}

header.contact .bg-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_contact_left.png) 0% 85% no-repeat;
}

.page header .content-header.cont {
	padding: 150px 0 0;
}

/* form contact */

.page form {
	width: 50%;
	display: block;
	margin: 0 auto;
	position: relative;
}

.page .input-cont {
	width: 48%;
}

.page form .box-flex {
	display: flex;
	justify-content: space-between;
}

.page .textarea {
	width: 100%;
}

.page form input,
.page form textarea {
	width: 100%;
	margin-bottom: 30px;
	border: 1px solid transparent;
	font: 17px 'Nunito Sans';
	font-weight: 300;
	-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.13);
	padding: 1rem;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
}

.page form input {
	height: 70px;
}


.page form textarea {
	padding-top: 1rem;
	resize: none;
	height: 100px;
}

.page .btn-cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: justify;
	margin-bottom: 130px;
}

.page .btn-cont button {
	width: 55%;
	height: 70px;
	margin-right: 30px;
	background: #176fd5;
	font-size: 16px;
	font-weight: 900;
	color: #FFF;
	text-transform: uppercase;
	border: none;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
}

.page .btn-cont button:hover {
	background: #4193f2;
}

.page .btn-cont .phone-link a {
	font: 15px 'Nunito Sans';
	font-weight: 300;
	color: #176fd5;
	text-decoration: underline;
	display: inline-block;
}

.page .btn-cont .phone-link a:hover {
	text-decoration: none;
}

.box-captcha {
	position: relative;
}

#feedCaptcha {
	margin-bottom: 20px;
	position: relative;
}

.feed_contact input.error,
.feed_contact textarea.error {
	border-color: red !important;
}

.error {
	border: 1px solid #d72f63;
}

.feedCaptcha-error {
	color: red;
	position: absolute;
	left: 0;
	bottom: -17px;
	font-size: 13px;
        border: none!important;
}

textarea::-webkit-input-placeholder,
::-webkit-input-placeholder {
	color: #000;
	font: 17px 'Nunito Sans';
	font-weight: 300;
}

textarea:-moz-placeholder,
:-moz-placeholder {
	color: #000;
	font: 17px 'Nunito Sans';
	font-weight: 300;
}

textarea::-moz-placeholder,
::-moz-placeholder {
	color: #000;
	font: 17px 'Nunito Sans';
	font-weight: 300;
}

textarea:-ms-input-placeholder,
:-ms-input-placeholder {
	color: #000;
	font: 17px 'Nunito Sans';
	font-weight: 300;
}

header.form section {
	margin: 0;
}

header.form section.privacy {
	padding: 50px 0 100px;
}

/* modal */

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1005;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	cursor: pointer;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	z-index: 1004;
	overflow-y: auto;
}

.modal form {
	top: 0;
	margin: 0 auto;
}

.modal .clmn-30 {
	display: inline-table;
	width: 100%;
}

.modal .clmn-30:first-child {
	margin-bottom: 1rem;
}

.flex-add {
	display: flex;
}

.modal .window {
	position: relative;
	z-index: 1006;
	width: 750px;
	height: 450px;
	padding: 5rem 0;
	background: url(../img/bg_main_left.png) no-repeat bottom left #cdebe9;
	background-size: 30%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	animation: modal 0.5s ease-in;
	-webkit-animation: modal 0.5s ease-in;
	-moz-animation: modal 0.5s ease-in;
	text-align: center;
	border-radius: 20px;
}

.modal .window .bg-window {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_main_right.png) no-repeat bottom right transparent;
	background-size: 30%;
	border-radius: 20px;
}

.modal .window .text {
	margin-bottom: 2rem;
}

.modal .window h5,
.modal .window p {
	color: #000;
	font-weight: 900;
}

.modal .window h5 {
	font-size: 50px;
	margin-bottom: 1rem;
}

.modal .window p {
	font-size: 20px;
	line-height: normal;
}

.modal .window .close-modal {
	position: absolute;
	right: -40px;
	top: 0;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.modal .window .close-modal:before,
.modal .window .close-modal:after {
	content: '';
	position: absolute;
	top: 8px;
	right: 0;
	display: block;
	width: 100%;
	height: 5px;
	background-color: #fff;
}

.modal .window .close-modal:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.modal .window .close-modal:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.modal button {
	background: linear-gradient(#ffc63c, #ffdc38);
}

.modal form {
	width: 420px;
}

.modal form div,
.modal form div input,
.modal form div button {
	width: 100% !important;
}

.modal form input {
	margin-bottom: 0 !important;
}

@keyframes modal {
	0% {
		top: -100%;
	}

	50% {
		top: 3%;
		transform: rotate(0deg);
	}

	60% {
		top: -5%;
		transform: rotate(5deg)
	}

	100% {
		top: 0;
	}
}

#omForm.omForm .om_subhead,
#omForm.omForm .om_full_step_colored_bg {
	background: #176fd5;
}


.pos-rel {
	position: relative;
}

p.text-req {
	font-size: 12px !important;
	font-weight: 700;
	color: #d72f63 !important;
	position: absolute;
	left: 17px;
	bottom: -19px;
	padding: 0 !important;
	margin: 0 !important;
	text-align: left;
}

.none-get-btn {
	display: none !important;
}

.navigate-fix-top {
	position: absolute !important;
}

.navigate-fix-top.nav-bg {
	background: none;
	box-shadow: none;
}

.page-form-block {
	padding-top: 100px;
}

.page-form-block section {
	margin-top: 0 !important;
}

#omReApplyPage label {
	text-align: left;
}
