* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:focus {
	outline: none;
}

*::-webkit-input-placeholder {
	color: #c0c0c0;
	opacity: 1;
	font-family: 'Lato', sans-serif;
}

*:-moz-placeholder {
	color: #c0c0c0;
	opacity: 1;
	font-family: 'Lato', sans-serif;
}

*::-moz-placeholder {
	color: #c0c0c0;
	opacity: 1;
	font-family: 'Lato', sans-serif;
}

*:-ms-input-placeholder {
	color: #c0c0c0;
	opacity: 1;
	font-family: 'Lato', sans-serif;
}

*::placeholder,
button {
	font-family: 'Lato', sans-serif;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	color: #000;
}

body input:required:valid,
body textarea:required:valid {
	color: #000;
}

html,
body {
	height: 100%;
	scroll-behavior: auto;
}

body {
	font-size: 16px;
	min-width: 320px;
	position: relative;
	font-family: 'Lato', sans-serif;
	overflow-x: hidden;
	opacity: 1;
	line-height: 1.5;
}

img {
	max-width: 100%;
}

.img-responsive {
	display: block;
	max-width: 150%;
	height: auto;
}

/*btns */
.btn_simple {
	color: #722ed1;
	border: 1px solid #722ed1;
	font-weight: 500;
	padding: 6px 34px;
	transition: all 0.4s ease;
	text-decoration: none;
	border-radius: 20px;
}
.btn_simple:hover {
	background-color: #722ed1;
	color: #fff;
}

.btn {
	color: #fff;
	background-color: #722ed1;
	padding: 14px 40px;
	transition: all 0.4s ease;
	text-decoration: none;
	border-radius: 24px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn:hover {
	background-color: #fff;
	color: #111;
}
.btn.btn_white {
	background-color: #fff;
	color: #111;
}
.btn.btn_white:hover {
	color: #fff;
	background-color: #722ed1;
}

/*btns */
#top_banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#header {
	padding-top: 24px;
}
#header .inner_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header .inner_header .logo {
	display: block;
	width: 48px;
	height: 48px;
}
#header .inner_header .logo > img {
	width: 100%;
}
#header .inner_header .right_side_header {
	display: flex;
	align-items: center;
}
#header .inner_header .right_side_header .mnu_top {
	list-style-type: none;
}
#header .inner_header .right_side_header .mnu_top > li {
	display: inline-block;
	margin-right: 40px;
	position: relative;
}
#header .inner_header .right_side_header .mnu_top > li a {
	display: block;
	text-decoration: none;
	font-weight: 500;
	color: #000;
	transition: color 0.4s ease;
	padding: 4px 35px 10px 0;
}
#header .inner_header .right_side_header .mnu_top > li a:hover {
	color: #722ed1;
}
#header .inner_header .right_side_header .mnu_top > li > .sub_menu {
	position: absolute;
	top: 35px;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	z-index: 10;
	border-radius: 5px;
	padding: 5px;
	animation: 0.6s opac;
	display: none;
}
#header .inner_header .right_side_header .mnu_top > li > .sub_menu > li {
	display: block;
}
#header .inner_header .right_side_header .mnu_top > li > .sub_menu > li > a {
	padding: 3px 10px;
	font-size: 14px;
}
#header
	.inner_header
	.right_side_header
	.mnu_top
	> li.has_sub_menu:hover
	> .sub_menu {
	display: block;
}
#header .inner_header .right_side_header .mnu_top > li.has_sub_menu::after {
	content: '';
	display: block;
	width: 8px;
	height: 4px;
	background-image: url('../img/arrow-down.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 17px;
	right: 21px;
}

@keyframes opac {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* common styles */
h1,
h2,
h3,
h4 {
	line-height: 1.4;
}

/* common styles */
.notif {
	background-color: #f9f0ff;
	border-radius: 30px;
	padding: 10px 25px;
	display: flex;
	align-items: center;
	max-width: max-content;
}
.notif img {
	width: 16px;
	height: auto;
	margin-right: 7px;
}
.notif p {
	color: #722ed1;
}
.notif a {
	transition: all 0.4s ease;
	text-decoration: none;
	border-bottom: 1px solid #722ed1;
	color: #722ed1;
}
.notif a:hover {
	color: #5b25a7;
}

.main_banner {
	padding: 360px 0 440px;
}
.main_banner .mb_info h1 {
	max-width: 430px;
	margin-top: 10px;
	line-height: 1.2;
	color: #160637;
	font-size: 50px;
	font-weight: 900;
}
.main_banner .mb_info .descr {
	color: gray;
	font-size: 17px;
	font-weight: 500;
	margin: 14px 0 44px;
}
.main_banner .mb_info .btns {
	display: flex;
	align-items: center;
}
.main_banner .mb_info .btns .btn_white {
	margin-left: 16px;
}
.main_banner .container .row .col-lg-6 {
	display: flex;
	justify-content: center;
	align-items: center;
}

section {
	padding: 100px 0;
}
section#top_banner {
	padding: 0;
}

section#advantages {
	padding: 100px 0 200px;
}

#advantages .notif {
	margin: 0 auto;
}
#advantages .notif img {
	width: 26px;
	height: auto;
	margin-right: 7px;
}
#advantages .heading_main {
	max-width: 500px;
	margin: 32px auto 48px;
}
#advantages .heading_main h2 {
	color: #160637;
	font-size: 38px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 12px;
	line-height: 1.3;
}
#advantages .heading_main .description {
	color: #8989a2;
	text-align: center;
	font-size: 18px;
}
#advantages .row_adv .item_adv > img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
#advantages .row_adv .item_adv > .heading {
	color: #160637;
	font-size: 22px;
	font-weight: 900;
	margin: 24px 0;
}
#advantages .row_adv .item_adv > .descr {
	color: #8989a2;
	font-size: 18px;
}

section.information .img-responsive {
	max-width: 580px;
	margin: 0 auto;
}
section.information .col-lg-6 {
	justify-content: center;
}
section.information h3 {
	color: #160637;
	font-size: 38px;
	font-weight: 900;
	text-align: start;
	margin: 32px 0 16px;
	line-height: 1.4;
}
section.information .descr {
	color: #8989a2;
	font-size: 18px;
}
section.information .notif {
	margin-bottom: 20px;
}
section.information .notif img {
	margin: 2px 7px 0 0;
	width: 24px;
	height: 24px;
}
section.information .right_info {
	padding-left: 50px;
}

#reviews {
	padding: 440px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('./../img/reviews/background.svg');
}
#reviews .item_rev {
	text-align: center;
	display: none;
	animation: opac 0.8s;
}
#reviews .item_rev.active {
	display: block;
}
#reviews .item_rev > .quotes {
	height: 70px;
	margin: 0 auto 16px;
	color: #160637;
	font-size: 22px;
	max-width: 660px;
}
#reviews .item_rev img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
#reviews .item_rev .name {
	margin-top: 16px;
	font-size: 16px;
}
#reviews .item_rev .name,
#reviews .item_rev .position {
	color: #111;
	font-weight: 900;
}
#reviews .line {
	height: 1px;
	width: 100%;
	background-color: #dec9fa;
	margin: 56px 0;
}
#reviews .nav_rev {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
#reviews .nav_rev > div {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 16%;
	filter: grayscale(1);
	transition: filter 0.4s ease;
}
#reviews .nav_rev > div > img {
	width: 155px;
}
#reviews .nav_rev > div.active {
	filter: grayscale(0);
	transform: scale(1.1);
}

.btn_form {
	font-size: 16px;
	width: 100%;
	display: block;
	padding: 14px;
	margin-bottom: 16px;
	color: #fff;
	background-color: #722ed1;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border: none;
	outline: none;
	border-radius: 4px;
	transition: border-radius 0.4s ease-in-out;
	text-decoration: none;
	cursor: pointer;
}
.btn_form:hover {
	border-radius: 30px;
}

#pre_footer .pf_info > h4 {
	color: #160637;
	font-size: 38px;
	font-weight: 900;
	text-align: center;
}
#pre_footer .pf_info > .line_img {
	display: block;
	margin: 42px auto;
}
#pre_footer .pf_info > .img-responsive {
	margin: 0 auto;
}
#pre_footer .form_wrapper {
	background-color: #f9f0ff;
	border-radius: 4px;
	max-width: 480px;
	margin: 0 auto;
}
#pre_footer .form_wrapper > form {
	border: 1px solid #f9f0ff;
	transform: translateY(-40px);
	box-shadow: 0 10px 20px rgba(116, 116, 116, 0.16);
	width: 86%;
	margin: 0 auto;
	background-color: #fff;
	padding: 36px 36px 24px;
	text-align: center;
}
#pre_footer .form_wrapper > form > h4 {
	color: #160637;
	font-size: 24px;
	margin-bottom: 24px;
	font-weight: 900;
}
#pre_footer .form_wrapper > form > input {
	font-size: 16px;
	width: 100%;
	outline: none;
	display: block;
	margin-bottom: 16px;
	padding: 14px 24px;
	border-radius: 4px;
	background-color: #fff;
	border: 1px solid rgba(137, 137, 162, 0.5);
	transition: border-color 0.4s ease-in-out;
}
#pre_footer .form_wrapper > form > input::placeholder {
	color: #8989a2;
	font-size: 16px;
}
#pre_footer .form_wrapper > form > input:focus {
	border-color: #8e58da;
}
#pre_footer .form_wrapper > form > .or {
	margin: 20px auto 15px;
	color: #000;
	text-transform: uppercase;
}
#pre_footer .form_wrapper > form > a {
	display: block;
	max-width: 200px;
	margin: 0 auto;
	text-decoration: none;
}
#pre_footer .form_wrapper > form > .footer_form > .line {
	height: 1px;
	width: 100%;
	background-color: rgba(137, 137, 162, 0.5);
	margin: 22px 0;
}
#pre_footer .form_wrapper > form > .footer_form > p {
	font-size: 14px;
	color: #8989a2;
}
#pre_footer .form_wrapper > form > .footer_form > p > a {
	color: #722ed1;
	font-size: 14px;
}

#footer {
	background-color: #fbfcff;
	padding: 60px 0 0;
	justify-content: space-between;
}
#footer .row_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#footer .row_flex .col-footer-1 {
	width: 20%;
}
#footer .row_flex .col-footer-2 {
	width: 55%;
}
#footer .row_flex .col-footer-3 {
	width: 16%;
}
#footer .logo_info > a {
	height: 48px;
	width: 48px;
	display: block;
}
#footer .logo_info > a > img {
	margin: 0 auto;
}
#footer .logo_info > .descr {
	color: #160637;
	font-size: 16px;
	margin: 16px 0;
	line-height: 1.65;
}
#footer .logo_info > .social {
	list-style-type: none;
}
#footer .logo_info > .social > li {
	display: inline-block;
	margin-right: 16px;
}
#footer .logo_info > .social > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}
#footer .logo_info > .social > li > a > img {
	transition: transform 0.4s ease;
}
#footer .logo_info > .social > li > a:hover > img {
	transform: translateY(-8px);
}
#footer .logo_info > .social > li:last-child {
	margin-right: 0;
}
#footer .mnu_footer_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 15px;
}
#footer .mnu_footer_wrapper > .mnu_footer > ul {
	list-style-type: none;
}
#footer .mnu_footer_wrapper > .mnu_footer > ul > li {
	display: block;
}
#footer .mnu_footer_wrapper > .mnu_footer > ul > li > a {
	display: block;
	text-decoration: none;
	color: #160637;
	transition: color 0.4s ease;
	padding: 4px 35px 10px 0;
}
#footer .mnu_footer_wrapper > .mnu_footer > ul > li > a:hover {
	color: #722ed1;
}
#footer b.heading {
	color: #160637;
	font-weight: 900;
	margin-bottom: 8px;
	display: block;
	font-size: 18px;
}
#footer .newsletter > b.heading {
	margin-bottom: 16px;
}
#footer .newsletter > form {
	display: flex;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 5px 9px rgba(0, 0, 0, 0.05);
	position: relative;
}
#footer .newsletter > form > input {
	width: 87%;
	display: block;
	border: none;
	outline: none;
	padding: 12px 16px;
}
#footer .newsletter > form > input::placeholder {
	color: #8989a2;
	font-size: 14px;
}
#footer .newsletter > form > button {
	top: 7px;
	right: 12px;
	position: absolute;
	cursor: pointer;
	border: none;
	background-color: transparent;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
}
#footer .newsletter > form > button > img {
	width: 20px;
	height: 20px;
}
#footer .copyright {
	margin-top: 66px;
	padding-bottom: 15px;
	color: #160637;
	font-size: 16px;
	font-weight: 900;
	text-align: center;
}

.hamburger {
	display: none;
}
.hamburger .line {
	width: 24px;
	height: 3px;
	background-color: #160637;
	display: block;
	margin: 6px auto;
	transition: all 0.3s ease-in-out;
	border-radius: 5px;
}
.hamburger:hover {
	cursor: pointer;
}
.hamburger.is-active .line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}
.hamburger.is-active .line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.animate_graphic {
	transition: none;
	animation: 1s infinite alternate movingAn;
}

@keyframes movingAn {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(10px);
	}
}

/*# sourceMappingURL=main.css.map */
