html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/lato/Lato-Light");
	src: url("../fonts/lato/Lato-Light.ttf") format("woff");
	font-weight: 300;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/lato/Lato-Medium");
	src: url("../fonts/lato/Lato-Medium.ttf") format("woff");
	font-weight: 400;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/lato/Lato-Bold");
	src: url("../fonts/lato/Lato-Bold.ttf") format("woff");
	font-weight: 600;
}



@font-face {
	font-family: "Montserrat";
	src: url("../fonts/lato/Lato-Heavy");
	src: url("../fonts/lato/Lato-Heavy.ttf") format("woff");
	font-weight: 700;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/lato/Lato-Black");
	src: url("../fonts/lato/Lato-Black.ttf") format("woff");
	font-weight: 900;
}

body {
	max-width: 1920px;
	font-family: "Montserrat";
	color: #5d565b;
	font-size: 16px;
	font-weight: 400;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex-grow: 1;
}

a {
	color: #66c;
	text-decoration: underline;
	transition: .4s;
}

a:hover {
	text-decoration: none;
	/*color: #69c;*/
}

p {
	line-height: 32px;
}

span {
	color: #fc0;
}

strong {
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6, .like-h5 {
	color: #5d565b;
	font-weight: 900;
	line-height: 30px;
	text-transform: uppercase;
}

h1 {
	font-size: 30px;
}

h2{
	font-size: 25px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 24px;
}

h5,
.like-h5 {
	font-size: 20px;
}

h6 {
	font-size: 18px;
}

table.def-table {
	background-color: #f9f8f8;
	width: 100%;
}

table.def-table tr {
	border-left: 3px solid #eae9e9;
	border-right: 3px solid #eae9e9;
}

table.def-table tr:first-child {
	border-color: #69c;
}

table.def-table tr:last-child {
	border-bottom: 3px solid #eae9e9;
}

table.def-table tr th {
	background-color: #69c;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	text-align: left;
	text-transform: uppercase;
	padding: 3px 20px;
	line-height: 54px;
}

table.def-table tr td {
	padding: 15px 20px;
}

table.def-table tr:nth-child(2n+1) {
	background-color: #fff;
}

ul.def-ul {
	padding-left: 17px;
}

ul.def-ul li {
	position: relative;
	line-height: 30px;
	margin-bottom: 32px;
}

ul.def-ul li:before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #66c;
	border-radius: 50%;
	top: 10px;
	left: -17px;
}

ul.check-ul {
	padding-left: 22px;
}

ul.check-ul li {
	position: relative;
	line-height: 20px;
	margin-bottom: 18px;
}

ul.check-ul li:before {
	content: "";
	position: absolute;
	width: 14px;
	height: 15px;
	background-image: url("../images/check.png");
	background-size: 14px 15px;
	background-repeat: no-repeat;
	top: 3px;
	left: -22px;
}

ul.free-ul li {
	position: relative;
	line-height: 20px;
	margin-bottom: 18px;
	font-size: 14px;
}

ul.free-ul li:last-child {
	margin-bottom: 0;
}

ul.free-ul li:before {
	content: "FREE ";
	position: relative;
	color: #12b106;
	font-size: 14px;
}

ol.def-ol {
	list-style: none;
	counter-reset: li;
	padding-left: 16px;
}

ol.def-ol li {
	position: relative;
	counter-increment: li;
	line-height: 20px;
	margin-bottom: 20px;
}

ol.def-ol li::before {
	content: counter(li) ". ";
	color: #66c;
	font-weight: 900;
	margin-left: -5px;
	display: inline-block;
	width: 16px;
	margin-left: -16px;
}

a.more, div.more {
	color: #6da8d6;
	font-size: 16px;
	font-weight: 400;
	text-decoration: underline;
	cursor: pointer;
	transition: .2s;
}

a.more:hover, div.more:hover {
	text-decoration: none;
	color: #66c;
}

.def-width {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
}

select {
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid #ccc;
	width: 100%;
	padding: 13px 0;
	color: #5d565b;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	outline: 0;
	cursor: pointer;
	margin-bottom: 20px;
}

/*Chosen*/
.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	user-select: none;
	margin-bottom: 20px;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	left: -9999px;
	z-index: 1010;
	width: 100%;
	border-bottom: 2px solid #fc0;
	border-top: 0;
	background: #fff;
}

.chosen-container.chosen-with-drop .chosen-drop {
	left: 0;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: normal;
	color: #5d565b;
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

.chosen-container .chosen-results {
	color: #5d565b;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 4px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 10px 6px;
	list-style: none;
	word-wrap: break-word;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #66c;
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	color: #5d565b;
	display: list-item;
	background: #fff;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: bold;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding-top: 5px;
	height: 44px;
	border-bottom: 2px solid #ccc;
	background-color: #fff;
	background-clip: padding-box;
	color: #5d565b;
	text-decoration: none;
	white-space: nowrap;
	line-height: 30px;
}

.chosen-container-single .chosen-single span {
	color: #5d565b;
	display: block;
	overflow: hidden;
	margin-right: 35px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 5px;
	display: block;
	width: 12px;
	height: 100%;
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background: url(chosen-sprite.png) no-repeat -12px 20px;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	left: -9999px;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	height: auto;
	outline: 0;
	border: 1px solid #aaa;
	font-size: 1em;
	font-family: sans-serif;
	line-height: normal;
}

.chosen-container-single .chosen-default {
	color: 555;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
	color: #5d565b;
}

.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 6px;
	right: 26px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-drop {
	margin-top: -2px;
	background-clip: padding-box;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: 0px 20px;
}

/*Buttons*/
.btn {
	background-color: #66c;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	display: inline-block;
	text-align: center;
	transition: .2s;
	text-decoration: none;
	border-radius: 25px;
	text-transform: uppercase;
	height: 38px;
	min-width: 135px;
	line-height: 38px;
}

.btn.btn-big {
	min-width: 187px;
	height: 50px;
	font-size: 20px;
	line-height: 48px;
}

.btn.btn-blue {
	background-color: #69c;
	border-radius: 21px;
	min-width: 150px;
	height: 42px;
	line-height: 42px;
}

.btn.btn-blue:hover {
	background-color: #66c;
}

.btn:hover {
	background-color: #86b5dc;
	color: #fff;
}

/*Buttons END*/
/*Header*/
.top-offer {
	position: relative;
	text-align: center;
	color: #fff;
	background-color: #66c;
}

.top-offer p {
	padding: 7px 0;
}

.top-offer__close {
	position: absolute;
	color: #fff;
	top: 9px;
	right: 10px;
	cursor: pointer;
}

.mob-phones {
	display: none;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.mob-phones img {
	display: block;
}

.close {
	display: none;
}

.nav-toggler {
	display: none;
	cursor: pointer;
	outline: 0;
	border: 0;
	width: 32px;
	height: 32px;
	background-color: #fff;
	background-image: url("../images/menu.png");
	background-repeat: no-repeat;
	background-size: 31px 31px;
}

.nav-toggler.nav-icon {
	background-image: url("../images/close.png");
}

.call-us {
	color: #5d565b;
	padding: 12px 0;
	background-color: #f4f4f5;
}

.call-us a {
	color: #5d565b;
	font-size: 16px;
	font-weight: 400;
}

.call-us .def-width {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.call-us ul {
	flex: 11 100px;
	display: flex;
	flex-flow: row wrap;
}

.call-us ul li {
	margin-right: 19px;
}

.call-us ul li a {
	text-decoration: none;
}

.call-us .login {
	/*flex: 1 100px;*/
	text-align: right;
}

.call-us .login a {
	text-decoration: underline;
	position: relative;
}

.call-us .login a:before {
	content: "";
	display: block;
	background: url(/images/ic_login.svg) no-repeat center;
	width: 17px;
	height: 17px;
	position: absolute;
	left: -25px;
}

.call-us .login a:hover {
	text-decoration: none;
}

.call-us .login-tablet {
	display: none;
	color: #6764c9;
	font-size: 16px;
	font-weight: 600;
	line-height: 30px;
	text-transform: uppercase;
	text-decoration: none;
}

.header_without-cta .call-us{
	padding-top: 12px;
}

.nav-block {
	background-color: #fff;
	padding: 20px 0;
}

.nav-block .def-width {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.nav-block .logo {
	flex: 2 100px;
}

.nav-block .logo a {
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
	color: #66c;
	text-decoration: none;
	transition: .2s;
}

.nav-block .logo a span {
	color: #5d565b;
}

.nav-block .logo a:hover {
	color: #5d565b;
}

.nav-block .logo a:hover span {
	color: #66c;
}

.main-nav {
	flex: 10 100px;
}

.main-nav > ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
}

.main-nav > ul > li {
	position: relative;
	border: 2px solid transparent;
	border-radius: 16px;
	transition: border .2s;
	margin-right: 2px;
}

.main-nav > ul > li:last-child {
	margin-right: -17px;
}

.main-nav > ul > li:hover {
	border: 2px solid #66c;
}

.main-nav > ul > li.current {
	border: 2px solid #b2b2e5;
}

.main-nav > ul > li.with-dropdown.open-dd {
	border-bottom: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.main-nav > ul > li.with-dropdown.open-dd .main-nav__dropdown {
	opacity: 1;
	visibility: visible;
}

.main-nav > ul > li a {
	display: block;
	color: #5d565b;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 6px 15px;
	line-height: 15px;
}

.main-nav > ul > li a img {
	margin-left: 5px;
}

.main-nav .main-nav__dropdown {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: 0;
	left: -2px;
	right: -2px;
	border: 2px solid #66c;
	border-radius: 16px;
	z-index: 999;
	margin-top: -2px;
	transition: opacity .2s;
}

.main-nav .main-nav__dropdown > li {
	line-height: 30px;
	background-color: #fff;
}

.main-nav .main-nav__dropdown > li:first-child {
	margin-top: 30px;
}

.main-nav .main-nav__dropdown > li:last-child {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.main-nav .main-nav__dropdown > li a {
	border: 0;
	font-size: 14px;
	padding: 2px 13px;
	line-height: 26px;
}

.main-nav .main-nav__dropdown > li a:hover {
	color: #66c;
	border: 0;
}

.main-nav .main-nav__dropdown > li:last-child {
	padding-bottom: 8px;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: #fff;
}

/*Header END*/
.home-main {
	position: relative;
}

/*Home bunner*/
.home-bunner {
	text-align: center;
	padding-top: 125px;
	padding-bottom: 66px;
	background-image: url("../images/bg_lead.png");
	background-repeat: no-repeat;
	background-size: 1920px 866px;
}

.home-bunner .def-width > span {
	color: #66c;
	font-size: 36px;
	margin-bottom: 38px;
	text-transform: uppercase;
	font-weight: bold;
	display: block;
}

.home-bunner .def-width > p {
	color: #5d565b;
	font-size: 20px;
	font-weight: 400;
	line-height: 40px;
	max-width: 684px;
	margin: 0 auto 40px;
}

.home-bunner .def-width > h3 {
	font-size: 30px;
	margin-bottom: 54px;
}

.home-bunner .btn.btn-big {
	margin-bottom: 10vh;
}

.home-bunner__prices-mobile {
	display: none;
}

.home-bunner__prices {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding: 0px 26px;
}

.home-bunner__price-block {
	flex: 1 100px;
	margin: 0 16px;
}

.home-bunner__price-block .price-block__top {
	background-color: #5d565b;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 7px 0;
}

.home-bunner__price-block .price-block__top p {
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	text-transform: uppercase;
}

.home-bunner__price-block .price-block__bottom {
	background-color: #6da8d6;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-bottom: 3px;
}
.home-bunner__price-block:hover .price-block__bottom {
	background-color: #6666cc;
}

.home-bunner__price-block .price-block__bottom p {
	line-height: 30px;
	font-size: 16px;
	color: #fff;
}

.home-bunner__price-block .price-block__bottom h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 32px;
	color: #fff;
	margin-top: 10px;
}

.home-bunner__price-block .price-block__bottom h2 span {
	color: #fff;
	font-size: 20px;
	font-weight: 400;
}

/*Home Order*/
.home-order {
	padding: 75px 0;
	background-color: #f4f4f5;
}

.home-order .def-width {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
}

.home-order .order__side {

	padding: 34px 20px;
	border: 1px solid rgba(255,255,255,0);
}

.order__side {
	flex: 3 100px;
}

.order__side h5 {
	margin: 0 0 20px 17px;
}

.order__center {
	flex: 8 100px;
}

.order__calculate {
	background-color: #fff;
	padding: 34px 40px;
	max-width: 458px;
	margin: 0 auto;
}

.order__calculate h5 {
	margin-bottom: 20px;
	text-align: center;
	font-weight: 600;
}

.calculate__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 32px;
}

.calculate__bottom h4 {
	font-weight: 400;
}

.calculate__bottom h4 span {
	font-size: 16px;
	color: #5d565b;
}

/*Home Order END*/
/*Home Steps*/
.home-steps {
	padding: 52px 0;
	text-align: center;
}

.home-steps h5 {
	margin-bottom: 45px;
}

.steps__block {
	display: flex;
	flex-flow: row wrap;
}

.steps__step {
	flex: 1 100px;
	position: relative;
}

/*.steps__step::after {
	content: "";
	position: absolute;
	right: -25px;
	top: 30px;
	width: 49px;
	height: 49px;
	background-image: url("../images/arrow.png");
	background-size: 49px 49px;
	background-repeat: no-repeat;
}*/

.step-arrow {
	display: none;
	content: "";
	position: absolute;
	right: -25px;
	top: 30px;
	width: 49px;
	height: 49px;
	background-image: url("../images/arrow.png");
	background-size: 47px 47px;
	background-repeat: no-repeat;
}

.step-arrow.bounce-in-left {
	display: inherit;
}

.steps__step:last-child::after {
	display: none;
}

.steps__step h6 {
	font-weight: 700;
	line-height: 26px;
	max-width: 135px;
	margin: 28px auto 0;
}

/*Home Steps END*/
/*Home Testimonials*/
.home-testim {
	padding: 48px 0 42px;
	text-align: center;
	background-color: #f4f4f5;
}

.home-testim .def-width > h5 {
	text-align: center;
	margin-bottom: 26px;
}

.testim__block {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-bottom: 42px;
}

.testim__item {
	width: calc(33.33% - 12px);
	background-color: #fff;
	padding: 40px 32px;
	margin-right: 12px;
	position: relative;
	min-height: 337px;
	text-align: left;
	max-width: 339px;
}

.testim__item:nth-child(3n+3) {
	margin-right: 0;
}

.testim__top {
	display: flex;
	margin-bottom: 12px;
}

.testim__top-img {
	margin-right: 10px;
}

.testim__top-img img {
	display: block;
	margin-left: -8px;
}

.testim__text {
	margin-bottom: 34px;
}

.testim__text p {
	color: #666;
}

.testim__top-info {
	color: #5d565b;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
}

.testim__top-info p {
	line-height: 20px;
	margin-bottom: 12px;
}

.testim__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 48px;
}

.testim__mark {
	font-size: 14px;
	font-weight: 700;
}

/*Home Testimonials END*/
/*Home Last Orders*/
.home-last-orders {
	padding: 48px 0 42px;
	text-align: center;
}

.home-last-orders .def-width > h5 {
	text-align: center;
	margin-bottom: 26px;
}

.home-last-orders__block {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-bottom: 42px;
}

.home-last-orders__item {
	width: calc(33.33% - 12px);
	background-color: #f4f4f5;
	padding: 40px 32px;
	margin-right: 12px;
	position: relative;
	/*min-height: 337px;*/
	text-align: left;
}

.home-last-orders__item:last-child {
	margin-right: 0;
}

.home-last-orders__top {
	display: flex;
	margin-bottom: 12px;
}

.home-last-orders__top-img {
	margin-right: 10px;
}

.home-last-orders__top-img img {
	display: block;
	margin-left: -5px;
}

.home-last-orders__text {
	display: flex;
}

.home-last-orders__text ul {
	flex: 1 50px;
}

.home-last-orders__text ul.text__right {
	text-align: right;
}

.home-last-orders__text ul li {
	line-height: 32px;
	position: relative;
	white-space: nowrap;
}

.home-last-orders__text ul li p {
	background-color: #f4f4f5;
	display: inline-block;
	position: relative;
	z-index: 2;
	font-size: 14px;
	letter-spacing: -0.2px;
}

.home-last-orders__text ul .white-dot {
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 10px;
	left: 0;
	background-image: url("../images/white-dot.png");
	background-repeat: repeat-x;
	background-size: 3px 3px;
}

.home-last-orders__top-info {
	color: #5d565b;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
}

.home-last-orders__top-info p {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.home-last-orders__top-info a {
	display: block;
	color: #5d565b;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
}

.home-last-orders__top-info a:hover {
	color: #66c;
}

.home-last-orders__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 28px;
}

/*Home Last Orders END*/
/*Home FAQ*/
.home-faq {
	padding: 52px 0;
	background-color: #f4f4f5;
}

.home-faq .def-width {
	max-width: 700px;
}

.home-faq h5 {
	text-align: center;
	margin-bottom: 34px;
}

.home-faq a.more {
	text-align: center;
	display: block;
	margin-top: 20px;
}

.faq__accordion {
	width: 100%;
}

.faq__accordion input {
	display: none;
}

.faq__group,
.accordion__content {
	display: block;
	overflow: hidden;
}

.accordion__header {
	position: relative;
}

.accordion__header h6 {
	font-weight: 600;
	margin-bottom: 20px;
	cursor: pointer;
	text-transform: none;
	text-decoration: underline;
	padding-right: 30px;
}

.accordion__header h6:hover {
	color: #66c;
	text-decoration: none;
}

.accordion__header h6:hover::after {
	background-image: url("../images/f3.png");
}

.accordion__header h6 span {
	color: #5d565b;
	display: inline-block;
	margin-right: 5px;
}

.accordion__header h6::after {
	content: '';
	position: absolute;
	top: 3px;
	right: 0;
	transition: all .2s;
	width: 25px;
	height: 25px;
	background-image: url("../images/f2.png");
	background-size: 25px 25px;
	background-repeat: no-repeat;
}

.accordion__content {
	height: 0;
	overflow: auto;
	opacity: 0;
	position: relative;
	transition: opacity .5s;
}

.accordion__content p {
	line-height: 32px;
	padding-right: 30px;
}

input:checked ~ .accordion__header h6 {
	color: #66c;
	cursor: default;
	text-decoration: none;
	margin-bottom: 12px;
}

input:checked ~ .accordion__header h6:after {
	background-image: url("../images/f4.png");
	cursor: pointer;
}


input:checked ~ .accordion__content {
	height: 100%;
	overflow: hidden;
	opacity: 1;
	margin-bottom: 30px;
}

/*Home FAQ END*/
/*Important text*/
.important-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 280px;
	padding: 55px 0;
}

.important-text h1 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 24px;
}
.important-text h2 {
	font-size: 25px;
	margin: 18px 0;
}

.important-text p {
	line-height: 30px;
	margin-bottom: 20px;
}

.important-text div.more {
	text-align: center;
	margin-top: 42px;
}

.important-text .imp-content {
	max-height: 155px;
	overflow: hidden;
}

/*Important text END*/
/*About us page*/
.about-main {
	padding: 16px 0;
}

.about-main h1 {
	color: #69c;
	text-align: center;
	margin-bottom: 30px;
}

.about-us {
	padding: 0 32px;
	margin-bottom: 50px;
}

.about-us p {
	margin-bottom: 44px;
}

.about-us__lists {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.about-us__lists ul {
	border-left: 2px solid #69c;
	padding-left: 15px;
}

.about-us__lists ul li {
	line-height: 30px;
}

.about-steps {
	text-align: center;
	border: 3px solid #6666cc;
	padding: 28px 0 50px;
	margin-bottom: 36px
}

.steps__step {
	visibility: hidden;
}

.steps__step.fade-in-show {
	visibility: visible;
}

.about-steps h5 {
	margin-bottom: 45px;
}

.about-order {
	margin-bottom: 58px;
}

.about-order .about-order__content {
	display: flex;
	flex-flow: row wrap;
}

.about-order .order__calculate {
	border: 3px solid #6666cc;
}

.about-order p {
	padding: 0 16px;
	margin-bottom: 48px;
}

/*About us page END*/
/*FAQ page*/
.faq-main {
	padding: 20px 0;
}

.faq-main .def-width {
	display: flex;
}

.faq-main h1 {
	color: #69c;
	text-align: center;
	margin-bottom: 40px;
}

.faq-main .faq__accordion {
	max-width: 695px;
	margin-right: 70px;
}

.sidebar {
	max-width: 275px;
}

.sidebar h6 {
	color: #66c;
	font-weight: 400;
	margin-bottom: 18px;
	position: relative;
	z-index: 3;
}

.sidebar__whyus {
	border: 3px solid #f4f4f5;
	padding: 20px 18px;
	margin-bottom: 14px;
	position: relative;
}

.top-border {
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	border: 3px solid #66c;
	border-bottom: 0;
	height: 55px;
}

.sidebar-block {
	position: relative;
	border: 3px solid #f4f4f5;
	padding: 20px 18px 40px;
	margin-bottom: 14px;
	position: relative;
}

.sidebar-block__top {
	display: flex;
	margin-bottom: 6px;
}

.sidebar-block__top-img {
	margin-right: 10px;
}

.sidebar-block__top-img img {
	display: block;
	margin-left: -8px;
}

.sidebar-block__text {
	margin-bottom: 34px;
}

.sidebar-block__text p {
	color: #666;
	line-height: 30px;
}

.sidebar-block__top-info {
	color: #5d565b;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
}

.sidebar-block__top-info p {
	line-height: 20px;
	margin-bottom: 12px;
}

.sidebar-block__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 26px;
}

.sidebar-block__mark {
	font-size: 14px;
	font-weight: 700;
}

/*FAQ page END*/
/*Order page*/
.order-main {
	padding: 16px 0;
}

.order-main h1 {
	color: #69c;
	text-align: center;
	margin-bottom: 30px;
}

.footer-order .cta {
	display: none;
}


/*Order page END*/
/*Testimonials page*/
.testim-main {
	padding-top: 20px;
}

.testim-main h1 {
	color: #69c;
	text-align: center;
	margin-bottom: 30px;
}

.testim-main .testim__item {
	border: 3px solid #f4f4f4;
	margin-bottom: 12px;
}

.testim-main .testim__block {
	margin-bottom: 14px;
}

.pagination__nav {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-bottom: 25px;
}

.pagination__nav div a {
	color: #5d565b;
	display: block;
	font-size: 20px;
	font-weight: 900;
	line-height: 26px;
	padding: 4px 9px;
	cursor: pointer;
	transition: .2s;
	text-decoration: none;
}

.pagination__nav div a:hover {
	color: #66c;
}

.pagination-page-numbers {
	display: flex;
}

.pagination-navigation-disabled {
	color: #66c !important;
	cursor: not-allowed !important;
}

.active-class {
	color: #66c !important;
}

/*Testimonials page END*/
/*Samples page*/
.samples-main {
	padding: 20px 0 0;
}

.samples-main h1 {
	color: #69c;
	text-align: center;
	margin-bottom: 30px;
}

.samples__block {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 15px;
}

.samples__item {
	width: calc(33.33% - 12px);
	padding: 40px 30px;
	margin-right: 12px;
	margin-bottom: 12px;
	border: 3px solid #eae9e9;
	position: relative;
	min-height: 337px;
	max-width: 339px;
	text-align: left;
}

.samples__item:nth-child(3n+3) {
	margin-right: 0;
}

.samples__top {
	display: flex;
	margin-bottom: 12px;
}

.samples__top-img {
	margin-right: 10px;
}

.samples__top-img img {
	display: block;
	margin-left: -5px;
}

.samples__text {
	margin-bottom: 34px;
	display: flex;
}

.samples__text ul {
	flex: 1 50px;
}

.samples__text ul.text__right {
	text-align: right;
}

.samples__text ul li {
	line-height: 32px;
	position: relative;
}

.samples__text ul li p {
	background-color: #fff;
	display: inline-block;
	position: relative;
	z-index: 2;
}

.samples__text ul .white-dot {
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 10px;
	left: 0;
	background-image: url("../images/grey-dot.png");
	background-repeat: repeat-x;
	background-size: 3px 3px;
}

.samples__top-info {
	color: #5d565b;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
}

.samples__top-info p {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.samples__top-info a {
	display: block;
	color: #5d565b;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
}

.samples__top-info a:hover {
	color: #66c;
}

.samples__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 28px;
}

/*Samples page END*/
/*Not found page*/
.notfound-main {
	text-align: center;
	background-color: #fff;
	padding: 80px 0;
}

.notfound-main .def-width > * {
	margin-bottom: 30px;
}

/*Not found page END*/
/*Contact page*/
.contact-main {
	padding: 16px 0;
}

.contact-main .def-width {
	padding: 0 90px;
}

.contact-main h1 {
	color: #69c;
	text-align: center;
	margin-bottom: 30px;
}

.contact__content {
	display: flex;
	flex-flow: row wrap;
	background-color: #f4f4f4;
	padding: 40px 100px;
	margin-bottom: 80px;
	padding-right: 50px;
}

.contact__left,
.contact__right {
	flex: 1 100px;
}

.contact__left {
	margin-right: 96px;
}

.contact__left img {
	display: block;
}

.contact__right h5 {
	margin-bottom: 5px;
}

.contact__right ul {
	margin-bottom: 32px;
}

.contact__right ul:last-child {
	margin-bottom: 0;
}

.contact__right ul li {
	line-height: 30px;
}

.contact__right ul li a {
	color: #5d565b;
	font-size: 16px;
	line-height: 30px;
	text-decoration: none;
	transition: .2s;
}

.contact__right .emails a {
	text-decoration: underline;
}

.contact__right .emails a:hover {
	text-decoration: none;
}

/*Contact page End*/
/*Text page*/
.text-main {
	padding: 20px 0;
}

.text-main .def-width {
	display: flex;
}

.text-main h1.main-text__title {
	color: #69c;
	text-align: center;
	margin-bottom: 30px;
}

.text-main .lists {
	display: flex;
	justify-content: space-around;
}

.text-main .lists > * {
	flex: 1 100px;
}

.text-main .lists .def-ol {
	margin-right: 70px;
}

.text-main__content {
	max-width: 752px;
	margin-right: 20px;
}

.text-main__content > p,
.text-main__content table {
	margin-bottom: 20px;
}

.order-block {
	display: flex;
	align-items: center;
	background-color: #f4f4f5;

	padding: 14px 28px;
	margin-bottom: 20px;
	justify-content: space-between;
}

.order-block h5,
.order-block .like-h5 {
	color: #69c;
}

.order-block__text {
	margin: 0 20px;
	text-align: center;
}

/*Text page END*/
/*Footer and Call to action*/
.cta {
	background-color: #69c;
	color: #fff;
	padding: 20px 0;
}

.cta .def-width {
	display: flex;
	flex-flow: row wrap;
}

.cta h5 {
	color: #fff;
	line-height: 34px;
}

.cta p {
	font-size: 20px;
}

.cta__left,
.cta__right {
	flex: 1 100px;
	display: flex;
	align-items: center;
}

.cta__left-img,
.cta__right-img {
	margin-right: 74px;
}

.cta__left-img img,
.cta__right-img img {
	display: block;
}

.cta__right-img {
	margin-left: 65px;
}

.cta__code span {
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 37px;
}

.cta__code span.btn:hover {
	background-color: #5555b1;
}

.cta__right-cont p {
	margin-bottom: 8px;
}

footer {
	background-color: #4f4f4f;
}

.footer-mobile {
	display: none;
}

.footer-mobile-toggler {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	z-index: 99;
}

.footer-mobile-toggler img {
	position: absolute;
	top: 15px;
	right: 15px;
}

.footer-top {
	background-color: #403e3e;
	padding: 7px 0;
}

.footer-top ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-top ul li {
	position: relative;
}

.footer-top ul li::after {
	content: "|";
	position: absolute;
	top: 8px;
	right: -42px;
	color: #828282;
	font-size: 14px;
}

.footer-top ul li:last-child::after {
	display: none;
}

.footer-top ul li a {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 30px;
	text-decoration: none;
	transition: .2s;
}

.footer-top ul li a:hover {
	color: #69c;
	text-decoration: none;
}

.footer-bottom ul li {
	line-height: 30px;
}

.footer-bottom ul li a {
	color: #898989;
	font-size: 12px;
	font-weight: 400;
	line-height: 30px;
	text-decoration: none;
	transition: .2s;
}

.footer-bottom ul li a:hover {
	color: #d8d4d4;
	text-decoration: none;
}

.footer-bottom .def-width {
	display: flex;
	justify-content: space-between;
}

.footer-bottom .copyright {
	color: #898989;
	font-size: 12px;
	font-weight: 400;
	line-height: 32px;
	text-align: center;
	padding: 5px 0;
}

.fixed-footer {
	bottom: 0;
	width: 100%;
	position: fixed !important;
}

.terms {
	display: block;
	width: 672px;
	height: 43px;
	background: url(/img/terms_cond_img.png) no-repeat;
}

@media (max-width: 767px) {
	.terms {
		width: 280px;
		height: 60px;
		background: url(/img/terms_cond_img_mob.png) no-repeat;
	}
}

/*Footer and Call to action END*/
/*Media*/
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	.home-bunner {
		background-image: url("../images/bg_lead@2x.png");
		background-position: center;
	}
	.steps__step::after {
		background-image: url("../images/arrow@2x.png");
	}
	.nav-toggler {
		background-image: url("../images/menu@2x.png");
	}
	.nav-icon {
		background-image: url("../images/close@2x.png");
	}
	input:checked ~ .accordion__header h6:after {
		background-image: url("../images/f1@2x.png");
	}
	.accordion__header h6::after {
		background-image: url("../images/f2@2x.png");
	}
	.accordion__header h6:hover::after {
		background-image: url("../images/f3@2x.png");
	}
	.nav-toggler.nav-icon {
		background-image: url("../images/close@2x.png");
	}
	.home-bunner__prices-mobile ul .white-dot {
		background-image: url("../images/white-dot@2x.png") !important;
	}
	.home-last-orders__text ul .white-dot {
		background-image: url("../images/white-dot@2x.png");
	}
	.samples__text ul .white-dot {
		background-image: url("../images/grey-dot@2x.png");
	}
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
	.home-bunner {
		background-image: url("../images/bg_lead@3x.jpg");
	}
	.steps__step::after {
		background-image: url("../images/arrow@3x.png");
	}
	.nav-toggler {
		background-image: url("../images/menu@3x.png");
	}
	.nav-icon {
		background-image: url("../images/close@3x.png");
	}
	input:checked ~ .accordion__header h6:after {
		background-image: url("../images/f1@3x.png");
	}
	.accordion__header h6::after {
		background-image: url("../images/f2@3x.png");
	}
	.accordion__header h6:hover::after {
		background-image: url("../images/f3@3x.png");
	}
	.nav-toggler.nav-icon {
		background-image: url("../images/close@3x.png");
	}
	.home-last-orders__text ul .white-dot {
		background-image: url("../images/white-dot@3x.png");
	}
	.home-bunner__prices-mobile ul .white-dot {
		background-image: url("../images/white-dot@3x.png") !important;
	}
	.samples__text ul .white-dot {
		background-image: url("../images/grey-dot@3x.png");
	}
}

@media (max-width: 1024px) {
	.def-width {

		padding: 0 22px;
	}
	.top-offer {
		text-align: left;
	}
	.call-us ul li {
		margin-right: 12px;
	}
	.call-us .login {
		display: none;
	}
	.call-us .login-tablet {
		display: block;
	}
	.main-nav > ul > li:nth-last-child(2) {
		margin-right: -12px;
	}
	.main-nav > ul > li.login {
		display: none;
	}
	.main-nav > ul > li a {
		font-size: 14px;
		padding: 6px 12px;
	}
	.main-nav .main-nav__dropdown > li a {
		font-size: 12px;
	}
	.nav-block .logo {
		flex: 1 100px;
	}
	.nav-block .logo a {
		font-size: 20px;
	}
	.home-bunner__prices {
		padding: 0;
		margin-left: -12px;
		margin-right: -12px;
	}
	.home-bunner__price-block {
		margin: 0 12px;
	}
	.home-bunner__price-block .price-block__top {
		padding: 4px 0;
	}
	.home-bunner__price-block .price-block__top p {
		font-size: 13px;
		line-height: 24px;
	}
	.home-bunner__price-block .price-block__bottom {
		padding: 6px 0 12px;
	}
	.home-bunner__price-block .price-block__bottom h2 {
		font-size: 40px;
		font-weight: 700;
		margin-top: 7px;
		line-height: 24px;
	}
	.home-bunner__price-block .price-block__bottom h2 span {
		font-size: 15px;
	}
	.home-bunner__price-block .price-block__bottom p {
		font-size: 13px;
		line-height: 18px;
	}
	.home-order {
		padding: 22px 0;
	}
	.home-steps {
		padding: 34px 0 46px;
	}
	.order__side-left {
		display: none;
	}
	.order__calculate {
		max-width: initial;
	}
	.order__center {
		flex: 5 100px;
		margin-right: 50px;
	}
	.home-testim {
		padding: 35px 0 40px;
	}
	.home-order .def-width{
		/*padding: 0 50px;*/
	}
	.home-testim .testim__item:nth-child(2) {

	}
	.home-testim .testim__item:last-child {
		display: none;
	}
	.home-last-orders {
		padding: 35px 0 40px;
	}
	.home-last-orders .home-last-orders__item {
		/* max-width: 338px; */
		/*width: 40%;*/
	}
	.home-last-orders .home-last-orders__item:nth-child(2) {

	}
	.home-last-orders .home-last-orders__item:last-child {
		display: none;
	}
	.home-faq {
		padding: 35px 0;
	}
	.home-faq h5 {
		margin-bottom: 20px;
	}
	.home-faq a.more {
		margin-top: 10px;
	}
	.home-faq .def-width {
		max-width: 734px;
	}
	.important-text {
		padding: 45px 0;
	}
	.important-text h1 {
		margin-bottom: 14px;
	}
	.important-text div.more {
		margin-top: 36px;
	}
	.cta {
		padding: 15px 0;
	}
	.cta__left {
		flex: 2 100px;
	}
	.cta__left-img {
		margin-right: 40px;
	}
	.cta__left-img img {
		width: 84px;
		height: 84px;
	}
	.cta__right-img {
		margin: 0 38px;
	}
	.cta__right-img img {
		width: 39px;
		height: 46px;
	}
	.cta__right-cont p {
		/*display: none;*/
	}
	.cta__right-cont .cta__code span:first-child {
		/*display: none;*/
	}
	.cta__right-cont .cta__code span.btn {
		margin-left: 0;
	}
	.footer-top ul li::after {
		/*display: none;*/
	}
	.footer-bottom ul li a {
		font-size: 11px;
	}
	.about-us {
		padding: 0;
	}
	.about-order {
		margin-bottom: 35px;
	}
	.about-order p {
		padding: 0;
	}
	.contact__left {
		display: none;
	}
	.contact__content {
		padding: 40px 60px;
	}
	.faq-main .faq__accordion {
		max-width: initial;
		margin-right: 25px;
	}
	.testim__item:nth-child(3n+3) {
		margin-right: 12px;
	}
	.testim__item:nth-child(2n+2) {

	}
	.samples__block {
		justify-content: center;
	}
	.samples__item:nth-child(3n+3) {
		margin-right: 12px;
	}
	.samples__item:nth-child(2n+2) {
		margin-right: 0;
	}
	.sidebar{
		display: none;
	}
}

@media (max-width: 760px) {
	.def-width {

		padding: 0 12px;
	}
	/*Header*/
	.top-offer {
		padding: 7px 0;
	}
	.top-offer p {
		font-size: 13px;
		padding-right: 30px;
		line-height: 20px;
	}
	.top-offer__close {
		top: calc(50% - 13px);
		right: 10px;
	}
	.call-us {
		display: none;
	}

	.nav-toggler {
		display: block;
	}
	.mob-phones {
		display: block;
	}
	.main-nav {
		position: absolute;
		top: 130%;
		left: 0;
		right: 0;
		z-index: 999;
		background-color: #5d565b;
		transform: translateX(-200%);
		transition: transform .2s ease-in-out;
	}
	.main-nav.open-nav {
		transform: translateX(0%);
	}
	.main-nav > ul {
		flex-flow: column;
		position: relative;
	}
	.main-nav > ul > li {
		margin-right: 0;
		position: static;
	}
	.main-nav > ul > li:nth-last-child(2), .main-nav > ul > li:last-child {
		margin-right: 0;
	}
	.main-nav > ul > li:hover {
		border-color: transparent;
	}
	.main-nav > ul > li.login {
		display: block;
	}
	.main-nav > ul > li.current {
		background-color: #7d787c;
		border-radius: 0;
		border: 0;
	}
	.main-nav > ul > li.with-dropdown.open-dd {
		background-color: #7d787c;
		border-radius: 0;
		border-bottom: 2px solid transparent;
	}
	.main-nav > ul > li.with-dropdown.open-dd .main-nav__dropdown {
		transform: translateX(0%);
	}
	.main-nav > ul > li a {
		color: #fff;
		font-size: 16px;
		font-weight: 600;
		line-height: 36px;
		text-transform: uppercase;
		padding: 0 20px;
	}
	.main-nav > ul > li a img {
		display: none;
	}
	.main-nav .main-nav__dropdown {
		border: 0;
		border-radius: 0;
		background-color: #66c;
		top: 0;
		left: 50%;
		right: 0;
		bottom: 0;
		margin-top: 0;
		transition: opacity .2s, transform .2s;
		transform: translateX(100%);
	}
	.main-nav .main-nav__dropdown > li {
		background-color: transparent;
	}
	.main-nav .main-nav__dropdown > li:first-child {
		margin-top: 0;
	}
	.main-nav .main-nav__dropdown > li.active {
		background-color: #8585d6;
		border-radius: 0;
	}
	.main-nav .main-nav__dropdown > li a {
		font-size: 16px;
		padding: 2px 20px;
	}
	/*Home page*/
	.home-bunner .def-width > h2 {
		font-size: 30px;
		line-height: 48px;
		margin-bottom: 48px;
	}
	.home-bunner .def-width > h3 {
		font-size: 20px;
		line-height: 36px;
		margin-bottom: 8px;
	}
	.home-bunner .def-width > p {
		display: none;
	}
	.home-bunner .btn.btn-big {
		margin-bottom: 58px;
	}
	.home-bunner {
		padding-top: 58px;
		padding-bottom: 10px;
	}
	.home-bunner__prices {
		display: block;
		margin: 0;
	}
	.home-bunner__price-block {
		display: none;
	}
	.home-bunner__prices-mobile {
		display: flex;
		background-color: ;
		padding: 16px;
	}
	.home-bunner__prices-mobile ul {
		flex: 1 50px;
	}
	.home-bunner__prices-mobile ul.text__left {
		text-align: left;
	}
	.home-bunner__prices-mobile ul.text__left li p {
		color: #ffcc02;
		font-size: 16px;
		text-transform: uppercase;
		line-height: 30px;
	}
	.home-bunner__prices-mobile ul.text__right {
		text-align: right;
	}
	.home-bunner__prices-mobile ul.text__right li {
		line-height: 24px;
	}
	.home-bunner__prices-mobile ul.text__right li p {
		line-height: 24px;
	}
	.home-bunner__prices-mobile ul li {
		line-height: 30px;
		position: relative;
	}
	.home-bunner__prices-mobile ul li p {
		background-color: #5d565b;
		display: inline-block;
		position: relative;
		z-index: 2;
		color: #fff;
		font-size: 20px;
	}
	.home-bunner__prices-mobile ul li p span {
		color: #fff;
		font-size: 14px;
		line-height: 30px;
	}
	.home-bunner__prices-mobile ul .white-dot {
		width: 100%;
		height: 3px;
		position: absolute;
		bottom: 10px;
		left: 0;
		background-image: url("../images/white-dot.png");
		background-repeat: repeat-x;
		background-size: 3px 3px;
	}
	.home-order {
		padding: 10px 0;
	}
	.order__center {
		margin-right: 0;
	}
	.order__calculate {
		padding: 24px 18px;
	}
	.calculate__bottom {
		margin-top: 12px;
	}
	select {
		margin-bottom: 10px;
	}
	.order__side, .home-steps {
		display: none;
	}
	.home-testim {
		padding: 20px 0 30px;
	}
	.home-testim .testim__item {
		padding: 25px 20px;
		margin: 0;
		min-height: 320px;
	}
	.home-testim .testim__item:nth-child(2) {
		/*display: none;*/
	}
	.testim__block {
		margin-bottom: 0;
	}
	.testim__bottom {
		left: 20px;
		right: 20px;
		bottom: 25px;
	}
	.testim__top {
		margin-bottom: 0;
	}
	.testim__top-img {
		margin-right: 5px;
	}
	.home-last-orders .home-last-orders__item {
		margin: 0 auto;
		max-width: 400px;
		padding: 25px 20px;
	}
	.home-last-orders .home-last-orders__item:nth-child(2) {
		/*display: none;*/
	}
	.home-last-orders__text {
		/*margin-bottom: 50px;*/
	}
	.home-last-orders__bottom {
		left: 20px;
		right: 20px;
		bottom: 25px;
	}
	.home-last-orders__block {
		margin-bottom: -15px;
	}
	.home-last-orders {
		padding: 26px 0 32px;
	}
	.home-last-orders .def-width > h5 {
		margin-bottom: 14px;
	}
	.accordion__header h6 {
		font-size: 16px;
	}
	.accordion__content p {
		font-size: 14px;
		padding-left: 13px;
	}
	.home-faq {
		padding: 25px 0;
	}
	.home-faq .def-width {
		/*max-width: 320px;*/
	}
	input:checked ~ .accordion__content {
		margin-bottom: 10px;
	}
	input:checked ~ .accordion__header h6 {
		margin-bottom: 0;
	}
	.order__calculate {
		/*max-width: 100%;*/
		width: 100%;
	}
	/*Testimonials*/
	.testim__block .testim__item {
		width: 100%;
		margin-right: 6px;
		margin-left: 6px;
	}
	/*Last oreders*/
	.home-last-orders .home-last-orders__item {
		width: 100%;
	}
	/*Footer and CTA*/
	.cta {
		position: relative;
		padding: 22px 0;
	}
	.cta .def-width {
		flex-flow: column;
		overflow: hidden;
		padding-bottom: 5px;
	}
	.cta__right {
		flex: 1 75px;
	}
	.cta__left-img {
		position: absolute;
		bottom: 0;
		right: 12px;
	}
	.cta__left-img img {
		width: 75px;
		height: 75px;
	}
	.cta__right-img {
		display: none;
	}
	.cta__right-cont .cta__code span.btn {
		/*width: 340px;*/
		text-align: left;
		padding-left: 22px;
	}
	.footer-top,
	.footer-bottom > .def-width {
		display: none;
	}
	.footer-mobile {
		background-color: #727273;
		border-radius: 3px;
		padding: 15px;
		min-height: 40px;
		overflow: hidden;
		position: relative;
		display: block;
		margin: 24px auto;
		max-width: 210px;
	}
	.footer-mobile::-webkit-scrollbar {
		width: 9px;
	}
	.footer-mobile::-webkit-scrollbar-track {
		background: #8e8e8e;
		border-bottom-right-radius: 3px;
		border-top-right-radius: 3px;
	}
	.footer-mobile::-webkit-scrollbar-thumb {
		background: #fff;
		border-radius: 3px;
	}
	.footer-mobile::-webkit-scrollbar-thumb:window-inactive {
		background: #8e8e8e;
	}
	.footer-mobile.open-footer-nav {
		height: 200px;
		overflow: overlay;
	}
	.footer-mobile.open-footer-nav .footer-mobile-toggler {
		left: 150px;
	}
	.footer-mobile ul.footer-mobile__content {
		display: block;
		position: absolute;
		top: 5px;
		left: 15px;
		right: 15px;
	}
	.footer-mobile ul.footer-mobile__content a {
		color: #fff;
		font-size: 14px;
		line-height: 30px;
		text-decoration: none;
	}
	.footer-mobile .footer-mobile-toggler {
		display: block;
	}
	.footer-bottom .copyright {
		background-color: #403e3e;
	}
	.footer-order li.not-in-order {
		display: none;
	}
	/*Samples page*/
	.samples__item {
		padding: 25px 20px;
		margin-right: 0;
		min-height: 345px;
		width: 100%;
	}
	.samples__item:nth-child(3n+3) {
		margin-right: 0;
	}
	.samples__bottom {
		left: 20px;
		right: 20px;
		bottom: 25px;
	}
	/*About us*/
	.about-us {
		margin-bottom: 5px;
	}
	.about-us p {
		margin-bottom: 25px;
	}
	.about-us__lists > ul {
		margin-bottom: 25px;
	}
	.about-steps {
		display: none;
	}
	.about-order p {
		margin-bottom: 20px;
	}
	/*FAQ*/
	.sidebar {
		display: none;
	}
	.faq-main .faq__accordion {
		margin-right: 0;
	}
	/*Testimonials*/
	.testim-main .testim__item {
		margin-right: 0;
		padding: 25px 20px;
		min-height: 300px;
	}
	/*Cintact*/
	.contact-main .def-width {
		padding: 0;
	}
	/*Text*/
	.text-table, table {
		display: none;
	}
	.text-main__content {
		max-width: 100%;
		margin-right: 0;
	}
	.text-main .lists {
		flex-flow: column;
	}
	.order-block {
		flex-flow: column;
		padding: 14px 0;
	}
	.order-block__img {
		display: none;
	}
	.order-block__text {
		margin-bottom: 10px;
	}
	/*404*/
	.notfound-main img {
		width: 161px;
		height: 58px;
	}
}

.visible-mob {
	display: none;
}

@media (max-width: 767px) {
	.visible-mob {
		display: inherit;
	}
}

/*Media END*/

.bounce-in-left {
	-webkit-animation: bounce-in-left 1.1s both;
	        animation: bounce-in-left 1.1s both;
}

/**
 * ----------------------------------------
 * animation bounce-in-left
 * ----------------------------------------
 */

@-webkit-keyframes bounce-in-left {
  0% {
    -webkit-transform: translateX(-600px);
            transform: translateX(-600px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateX(-68px);
            transform: translateX(-68px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateX(-28px);
            transform: translateX(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes bounce-in-left {
  0% {
    -webkit-transform: translateX(-600px);
            transform: translateX(-600px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateX(-68px);
            transform: translateX(-68px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateX(-28px);
            transform: translateX(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/*
 * Fade in
 */
.fade-in-show {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
   -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
     -o-animation: fadein 2s; /* Opera < 12.1 */
        animation: fadein 2s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.home-bunner{
	background-attachment: fixed;
}


body .arrows {
  position: relative;
  /**/
  position: absolute;
  top: 44%;
  left: 50%;
  /**/
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
}
body .arrows:before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-left: 26.66666667px solid rgba(255, 255, 255, 0.9);
  border-bottom: 26.66666667px solid rgba(255, 255, 255, 0.9);
  transform: translate(26.66666667px, 106.66666667px) rotate(-135deg);
  animation: arrows 3s linear infinite;
}
body .arrows:after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-left: 26.66666667px solid rgba(255, 255, 255, 0.9);
  border-bottom: 26.66666667px solid rgba(255, 255, 255, 0.9);
  transform: translate(53.33333333px, 0px) rotate(-135deg);
  animation: arrows 3s linear infinite -1.5s;
}

@keyframes arrows {
  0% {
    border-left: 26.66666667px solid  transparent;
    border-bottom: 26.66666667px solid transparent;
    transform: translate(0, 0) rotate(-135deg);
  }
  10%, 90% {
    border-left: 26.66666667px solid transparent;
    border-bottom: 26.66666667px solid transparent;
  }
  50% {
    border-left: 26.66666667px solid rgba(255, 255, 255, 0.9);
    border-bottom: 26.66666667px solid rgba(255, 255, 255, 0.9);
    transform: translate(50px, 0px) rotate(-135deg);
  }
  100% {
    border-left: 26.66666667px solid transparent;
    border-bottom: 26.66666667px solid transparent;
    transform: translate(100px, 0) rotate(-135deg);
  }
}
.cta__right-img{
	opacity: 0;
}

.top-offer{
	z-index: 1000;
	background-color:#66c !important;
	position: fixed;
	width: 100%;
	top: 0;
}

.call-us{
	padding-top: 60px;
}

@media screen and (max-width: 760px){
	.arrows{
		display: none;
	}

}
@media screen and (min-width: 761px ) and (max-width: 1024px){
	.arrows{
		left: 58% !important;
	}
}

.forschool{
	height: 30px;
	background: url('/images/img_footer.png');

	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 760px){
	.forschool{
		background: url('/images/img_footer_mob.png');
		background-position: center;
		background-repeat: no-repeat;
		height: 70px;
	}
}

.home-bunner__price-block>div{
	transition: 0.5s;
	position: relative;
	top: 0;
}
.home-bunner__price-block:hover > div{
	top: -30px;
	position: relative;
	transition: 0.5s;

}


.footer-top ul li::after{
	right: -72px !important;
}
.footer-top .def-width{
	display: flex;
	justify-content: space-between;
}
.footer-top .current-foot a{
	color: #69c !important;
}
.footer-bottom .current-foot a{
	color: #d8d4d4 !important;
}
@media screen and (max-width: 760px){
	#nav-block{
		top: 0;
		position: fixed;
		left: 0;
		right: 0;
		z-index: 999;
	}
	body{
		padding-top: 74px !important;
	}
	body.top-banner{
		padding-top: 124px !important;
	}
  .logo img{
    width: 190px;
  }
  .main-nav{
    top: 124%;
  }
  .ispromo{
    padding-top: 48px;
  }
  header.header_without-cta + main{
  	position: relative;
  }
}
@media screen and (max-width: 308px){
	#nav-block{
		top: 88px;
		position: fixed;
	}
  body{
    padding-top: 120px !important;
  }
}

@media screen and (min-width: 761px) and (max-width: 1024px){
  .testim__item{
    width: calc(33.333% - 12px);
  }
}

.bx-wrapper{
	background-color: initial !important;
	box-shadow: initial !important;
	border: initial !important;
}

.title-mob-price{
	background-color: #5d565b;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.title-mob-price p{
	color: #fc0;
	font-size: 18px;
    line-height: 24px;
    padding: 2px 0;
}
.content-mob-price{

background-color: #82cff2;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.mobile-price{
	padding: 0 50px;
}
.content-mob-price *{
	color: white
}
@media screen and (max-width: 899px){
	.def-width:not(#pagination) > .testim__block > .testim__item{
		display: none;
	}
}
@media screen and (min-width: 900px){
	.testim__block .bx-wrapper{
		display: none;
	}
}
.slider2 .testim__stars img{
	float: left;
}

@media screen and (max-width: 899px){
	.def-width > .home-last-orders__block > .home-last-orders__item{
		display: none;
	}
}
@media screen and (max-width: 1024px){
	.home-order .order__side{
		/*margin-right: 4%;*/
	}
}
@media screen and (min-width: 900px){
	.home-last-orders__block .bx-wrapper{
		display: none;
	}
}
.top-offer span a{
	color: #fc0;
	text-decoration: none;
}
.home-bunner__prices a{
	text-decoration: none;
}
.order__side > div{
	margin: 0 0 20px 0;
	text-align: center;
	color: #5d565b;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    font-size: 20px;
}
.bx-wrapper .bx-controls-direction a{
	z-index: 100 !important;
}
.bx-wrapper .bx-prev, .bx-wrapper .bx-next{
	opacity: 0.8;
}
ul.def-ul span{
	color: #5d565b;
}
.steps__step .title-step{
	font-weight: 700;
    line-height: 26px;
    max-width: 135px;
    margin: 28px auto 0;
    color: #5d565b;
   font-size: 18px;
}
.section-title{
	text-align: center;
    margin-bottom: 26px;
        color: #5d565b;
    font-weight: 900;
    line-height: 30px;
    text-transform: uppercase;
        font-size: 20px;
}
.title-faq{
	color: #5d565b;
    text-decoration: underline;
    font-weight: 600;
    margin-bottom: 20px;
    cursor: pointer;
    text-transform: none;
    padding-right: 30px;
    font-size: 18px;
    line-height: 30px;
}
.title-faq span{
	color: #5d565b;
	text-decoration: none;
	display: inline-block;
	margin-right: 10px;
}
.title-faq:hover span{
	text-decoration: none;
}
.title-faq:hover{
	color: #66c;
	text-decoration: none;
}
.title-faq:hover::after{
	background-image: url(../images/f3.png);
}
.title-faq::after{
	content: '';
    position: absolute;
    top: 3px;
    right: 0;
    transition: all .2s;
    width: 25px;
    height: 25px;
    background-image: url(../images/f2.png);
    background-size: 25px 25px;
    background-repeat: no-repeat;
}
input:checked + .accordion__header .title-faq::after{
	background-image: url(../images/f4.png);
}
.title-cta{
	color: #fff;
    line-height: 34px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}
.cta__code{
	text-align: center;
}
.contact-title{
	color: #5d565b;
    font-weight: 900;
    line-height: 30px;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 5px;
}
.adress{
	background-image: url(/images/address_contacts.png);
	width: 265px;
	height: 43px;
	background-repeat: no-repeat;
}
@media (max-width: 1024px){
	.adress{
		background-image: url(/images/address_contacts_mob.png);
		width: 200px;
		height: 43px;
	}
}
#main-order-form{
	margin-bottom: 400px !important;
}
#order-form .steps-wrapper .custom-button,
#order-form .steps-wrapper .custom-button-second-step,
#order-form .steps-wrapper .custom-button-third-step{
	background-color: #66c !important;
	background-image: none !important;
	border-color: #66c;
}
#main-customer-form .wrap-customer-form .input-wrap button.submit-btn{
	background-image: none;
	background-color: #66c;
	border-color: #66c;
}
#main-customer-form .wrap-customer-form .input-wrap button.submit-btn:hover{
	background-image: none;
	background-color: #66c;
	border-color: #66c;
}
input#calc4{
	background-color: transparent;
    border: 0;
    border-bottom: 2px solid #ccc;
    width: 100%;
    padding: 13px 0;
    color: #5d565b;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    outline: 0;
    cursor: pointer;
    margin-bottom: 20px;
}
.sidebar__calc-butn{
	margin-top:20px;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.sidebar__calc-butn > .title_h3{
	font-weight: 400;
	font-size: 16px;
	color: #5d565b;
	line-height: 30px;
	text-transform: uppercase;
}
.price_val{
	font-weight: 400;
	font-size: 24px;
	color: #5d565b;
	line-height: 30px;
	text-transform: uppercase;
}
.btn.butn.butn-red{
	border: none;
}
.order__side{
	padding-top: 37px;
}
.not-mob{
	color: #fff;
}
@media (max-width: 760px){
	.not-mob{
		display: none;
	}
}
.home-bunner__prices .bx-wrapper .bx-prev{
	left: 1px;
	opacity: 0.35
}
.home-bunner__prices .bx-wrapper .bx-next{
	right: 1px;
	opacity: 0.35;
}
/*body.overflow{
	overflow: hidden;
}*/
@media (max-width: 760px){
	nav.main-nav{
		height: 100vh;
	}
	footer .cta__left-img{
		display: none;
	}
	footer .cta__left-cont, footer .cta__right-cont{
		margin: auto;
		text-align: center;
	}
	footer .cta__right-cont .cta__code span.btn{
		padding-left: 0;
		text-align: center;
	}
}

.testim-main > h1{
	padding: 0 15px;
}
@media (max-width: 1024px){
	.contact-main{
		text-align: center;
	}
	main.contact-main .adress{
		width: initial;
		background-position: center;
	}
	.contact__content{
		padding: 40px 0;
	}
	.testim__block .testim__item:nth-of-type(3n){

	}
}

.text-main__content{
	max-width: initial;
}
.modal.fade.ng-isolate-scope.final-step-modal.in span{
	color: #555;
}
.modal.fade.ng-isolate-scope.final-step-modal.in button span{
	color: #fff;
}
.modal.fade.ng-isolate-scope.final-step-modal.in .wrap-summary{
	line-height: 24px;
}
.modal.fade.ng-isolate-scope.final-step-modal.in .wrap-additionally p{
	line-height: 24px;
}
.modal.fade.ng-isolate-scope.final-step-modal.in  .modal-header > p{
	line-height: 1;
}
.modal.fade.ng-isolate-scope.final-step-modal.in .wrap-additionally li span.ng-binding{
	line-height: 1.5;
}
.modal-final-step .modal-content .modal-body .wrap-additionally .new-price-label span{
	color: #176497 !important;
}

#cabinet-wrapper #header-wrapper #header .logo{
	background-image: url("/img/logo.png")
}
.order-block{
	position: relative;
}

@media (max-width: 768px){
	#cabinet-wrapper #header-wrapper #header .logo{
		background-position: 0 12px;
	}
}
@media (max-width: 760px){


}

.modal .modal-file-upload .modal-content .modal-body .wrap-select-file span{
	line-height: 150%;
}
.modal span{
	color: #000;
}

.btn{
	cursor: pointer;
}

select:focus::-ms-value {
    background: #fff;
    color:#5d565b;
}
header{
	height: 100%;
}

.order__calculate .select-style{
	position: relative;
	height:40px;
	margin-bottom: 5px;
}
.order__calculate .select-style.arrow:after{
	content: '▼';
    position: absolute;
    top: 14px;
    right: 7px;
    font-size: 9px;
    color: #938f92;
}

.order__calculate .select-style input[name='topic']{
	position: absolute;
	right:0;
}
.order__calculate select {
   -ms-appearance: none;
  appearance: none!important;
  -moz-appearance: none;
  -webkit-appearance: none;
	text-overflow: ellipsis;
}
.order__calculate select::-ms-expand {
    display: none;
}

.order__calculate .select-style select{
	position: absolute;
	right: 0;
}

/*.home-order .order__center {
	border: 1px solid rgba(255,255,255,0);
}*/
.home-order .order__calculate{
	border: 3px solid #66c;
}
.modal-dialog.modal-file-upload{
	top: calc(50vh - 200px);
}

ul.footer-mobile__content li{
	color: #fff;
	font-size: 14px;
}
.footer-order{
	position: relative !important;
}

.bx-wrapper .bx-next {
    right: 10px;
    background: url(/images/controls.png) no-repeat -43px -32px !important;
}
.bx-wrapper .bx-prev {
    left: 10px;
    background: url(/images/controls.png) no-repeat 0 -32px !important;
}
.accordion__content p{
	-webkit-text-size-adjust: 100%;
}
footer a:focus{
	outline: none;
}
@media (min-width: 760px) and (max-width: 950px){
	.testim-main .testim__item{
		width: calc(50% - 12px);
	}
}
.order__calculate li.sidebar__calc-pages input{
	cursor: text;
}
.cta__code .btn{
	transition: 0.5s;
}
/*.home-bunner__price-block a:hover .price-block__top p{
	color: #fc0;
}
.home-bunner__price-block a:hover .price-block__bottom *{
	color: #fff;
}
.home-bunner__price-block a:hover{
	color: #fff;
}*/

	@media (max-width: 760px ){

	.main-nav.open-nav ul{
		display: block;
		height: calc(100vh - 120px);
		overflow-y: scroll; /* has to be scroll, not auto */
	  -webkit-overflow-scrolling: touch;
	}
.main-nav.open-nav{
	-webkit-overflow-scrolling: touch;
}
.main-nav.open-nav li{
	-webkit-overflow-scrolling: touch;
}
	}


.top-offer * {
	-webkit-text-size-adjust: 100%;
}

@media only screen and (max-width: 768px){
	#order-form .tabs-wrapper .active {
		background-color: #66c !important;
	}
}

#main-order-form{
	overflow: hidden;
}
header{
	z-index: 120;
}
input#calc4{
	cursor: text;
}
main.order-main{
	min-height: calc(100vh - 200px);
}
span.coupon_but{
	border: 1px solid;
    padding: 6px 12px;
    border-radius: 100px;
}
form .select-style, form li.sidebar__calc-pages{
	display: flex;
	justify-content: space-between;
}
.order__calculate select, .order__calculate input , input#calc4{
	color: #938f92;
	border:1px solid #ccc;
	padding: 2px 10px;
	padding-right: 20px;
	width: 235px;
	box-sizing: border-box;
	font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  outline: 0;
  margin-bottom: 12px;
	height: 36px;
	float: right;
}
span.title_select{
	color: #5d565b;
	font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.footer-top ul li::after{
	content: "|" !important;
	flex: 0 1 auto;
	display: block !important;

}

.footer-top ul:last-child li::after{
	content: none !important;
}
@media (max-width: 1024px){
	.footer-top ul li::after{
		content: none !important;
	}
}
.footer_contact__right .contact-title{
	color: #898989;
	font-size: 12px;
	margin-top: 12px;
	margin-bottom: -14px;
}
.pay{
	padding-top: 20px;
}
.pay_bot{
	padding-top: 10px;
}
footer .adress{
	background-image: url(/img/contacts_footer.png);
	width: 160px;
	height: 43px;
	background-repeat: no-repeat;
	background-position: 0 14px;
}
.pay.mob{
	display:none;
	text-align: center;
}
.footer_contact__right.mob{
	display: none;
	text-align: center;
}
.home-bunner__prices_mob{
	display: none;
}
@media (max-width: 760px){
	.pay.mob{
		display: block;
		text-align: center;
		padding-top: 0;
	}
	.footer_contact__right.mob{
		display: block;
		text-align: center;
	}
	.footer_contact__right.mob .adress{
		margin: auto;
		background-image: url(/img/contacts_footer_mob.png);
		width: 144px;
		height: 55px;
	}
	.footer_contact__right.mob .contact-title{
		margin-top: 0;
	}
	.home-bunner__prices{
		display: none;
	}
	.home-bunner__prices_mob{
		display: block;
	}
	.home-bunner__prices_mob .mob_price{
		display: flex;
		justify-content: space-between;
		border: 2px solid #ccc;
		margin-bottom: 10px;
		border-left: none;
		position: relative;
		height: 60px;
	}
	.home-bunner__prices_mob a{
		text-decoration: none;
	}
	.home-bunner__prices_mob .mob_price:before{
		content: "";
		width: 7px;
		background-color: #69c;
		border-radius: 100px;
		position: absolute;
		height: calc(100% + 4px);
		top: -2px;
	}
	.home-bunner__prices_mob .mob_price .price span{
		font-size: 22px;
		color: #5d565b;

	}
	.home-bunner__prices_mob .mob_price .price{
		line-height: 60px;
	    background-image: url(/img/icon_aroow.svg);
	    background-repeat: no-repeat;
	    background-position: right;
	    background-size: 13px 25px;
	    padding-right: 24px;
	    margin-right: 12px;
	    color: #5d565b;
	}
	.home-bunner__prices_mob .mob_price .level h3{
		font-size: 18px;
		line-height: 60px;
		font-weight: 400;
	}
	.home-bunner__prices_mob .mob_price .level{
		margin-left: 20px;
	}

}

@media (max-width: 420px){
	form .select-style, form li.sidebar__calc-pages{
		flex-direction: column;
	}
	.order__calculate select, .order__calculate input, input#calc4{
		width: 75%;
		margin-bottom: 0;
	}
	.sidebar__calc-butn{
		margin-top: 12px;
	}
	.order__calculate .select-style:after{
		top: 42px;
	}
	.home-order .order__calculate{
		border:none;
	}
	.home-order{
		background-color: #fff
	}
}
span.bold_num{
	font-weight: 700;
}
.footer-bottom > .def-width > ul {
	margin-top: 12px;
}
.copyright{
	color: #898989;
}
@media (max-width: 408px){
	span.coupon_but{
		padding: 2px 10px;
	}
}
.home-bunner__prices_mob .mob_price{
	background-color: #fff;
}

body.overflowH,
html.overflowH{
	overflow: hidden;
	height:100vh;
}

@media screen and (max-device-width: 480px){
  body{
    -webkit-text-size-adjust: none;
  }
}
