body {
	width: 100%;
	max-width: 1920px;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	color: rgb(36, 40, 38);
	background-color: rgb(255, 255, 255);
	overflow-x: hidden;
	margin: auto;
}

a {
	text-decoration: none;
}

.base {
	width: 100%;
	max-width: 1920px;
	background-repeat: no-repeat;
	background-position: center bottom;
	overflow: hidden;
	margin: auto;
}

.banner {
	position: relative;
	height: 914px;
	background-image: url("../img/bg1920-1.jpg");	
}

.container {
	position: relative;
	width: 100%;
	max-width: 944px;
	margin: auto;
}

header {
	width: 100%;
    max-width: 924px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: auto;
}

.header_item {
    width: 276px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 5px;
}

.header_item img {
    -webkit-filter: drop-shadow(5px 10px 16px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(5px 10px 16px rgba(0, 0, 0, 0.1));
}

.header_item span {
	text-transform: uppercase;
    font-size: 18px;
	padding-left: 8px;
	color: rgb(43, 73, 112);
}

.main_title {
    width: 944px;
    height: 110px;
    color: rgb(69, 72, 76);
    margin: 54px auto 0;
}

.h1 span {
	display: block;
}

.h1 span:first-child {
	font-family: 'Poppins', sans-serif;
	font-size: 67px;
}

.h1 span:first-child b {
	color: rgb(17, 179, 255);
	text-shadow: 
		-0   -1px 0   rgb(59, 59, 59),
		 0   -1px 0   rgb(59, 59, 59),
		-0    1px 0   rgb(59, 59, 59),
		 0    1px 0   rgb(59, 59, 59),
		-1px -0   0   rgb(59, 59, 59),
		 1px -0   0   rgb(59, 59, 59),
		-1px  0   0   rgb(59, 59, 59),
		 1px  0   0   rgb(59, 59, 59),
		 1px -1px 0   rgb(59, 59, 59),
		-1px  1px 0   rgb(59, 59, 59),
		-1px -1px 0   rgb(59, 59, 59),
		 1px  1px 0   rgb(59, 59, 59);
}

.h1 span:last-child {
	font-size: 32px;
	font-weight: 700;
	margin-top: -6px;
}

.list {
	width: 620px;
	height: 90px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 6px;
}

.list li {
    position: relative;
    min-width: 282px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    line-height: 18px;
    font-weight: 600;
    padding: 5px 0 5px 42px;
}

.list li::before {
	position: absolute;
	content: '';
	top: calc(50% - 15px);
	left: 0;
	width: 31px;
	height: 31px;
	background-image: url("../img/check.png");
	background-repeat: no-repeat;
}

.row {
	display: flex;
}

.sale_block {
	position: relative;
	width: 306px;
	height: 424px;
    background-image: linear-gradient(to top, 
    	rgba(248, 248, 248, 0) 0%, 
    	rgba(248, 248, 248, 0.4) 20%, 
    	rgba(248, 248, 248, 0.4) 20%,
    	rgba(248, 248, 248, 0.8) 100%);
	border-radius: 46px;
	margin: 26px 0 0;
	z-index: 0;
} 

.sale_block::before {
	position: absolute;
	content: '';
	top: 12px;
	left: 12px;
	box-sizing: border-box;
	width: 282px;
	height: 400px;
	background-color: rgb(255, 255, 255);
	box-shadow: 16px 16px 40px 8px rgba(0, 0, 0, 0.1);
	border-radius: 40px;
	z-index: -1;
}

.count {
	width: 100%;
    box-sizing: border-box;
    height: 67px;
    padding-top: 30px;
}

.count_title {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
 
.count_title span {
	display: block;
	text-transform: uppercase;
}

.count_title span:last-child {
	font-weight: 800;
	font-size: 18px;
	margin-top: 4px;
}

.countdown {
	width: 260px;
	margin: 4px auto 0;
}

.price_list {
	box-sizing: border-box;
    width: 100%;
    max-width: 282px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url("../img/arrow.png") no-repeat center center rgb(16, 201, 255);
    padding: 0;
    margin: auto;
    position: relative;
    text-align: center;
}

.price_list span {
	font-size: 28px;
}

.price_list small {
	font-size: 18px;
}

.old_price {
	position: relative;
    color: rgb(68, 91, 112);
    width: 50%;
    text-decoration: line-through;
}

.new_price {
	font-weight: 700;
    width: 50%;
}




.sale_form {
	width: 100%;
	max-width: 232px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: auto;
}

.input_block {
	width: 100%;
	margin: 25px auto 0;
}

.input_block input {
	border: none;
	background-color: transparent;
	width: 160px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
}

.user,
.phone,
select {
	box-sizing: border-box;
	width: 100%;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgb(0, 0, 0);
	border: 1px solid rgb(198, 198, 198);
	border-radius: 8px;
	background-color: rgb(210, 210, 210);
	background-position: left 10px center;
	background-repeat: no-repeat;
	margin: 28px auto;
}

/* .user {
	background-image: url("../img/user.png");
}

.phone {
	background-image: url("../img/phone.png");
} */

::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
    text-align: center;
}

::-moz-placeholder {
    color: rgb(0, 0, 0);
    text-align: center;
}

:-ms-input-placeholder {
    color: rgb(0, 0, 0);
   	text-align: center;
}

:-moz-placeholder {
    color: rgb(0, 0, 0);
   	text-align: center;
}

.secure {
	width: 206px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: rgb(137, 137, 137);
	margin: 2px auto 8px;
}

.btn {
	-moz-appearance: none;
	-webkit-appearance: none;	
	width: 100%;
	height: 62px;
	color: rgb(255, 255, 255);
	text-transform: uppercase;
	font-size: 18px;
	border-radius: 31px;
	border: none;
	background-color: rgb(151, 12, 255);
	transition: 0.2s all ease;
}

.btn:hover {
	background-color: rgb(0, 160, 253);
}

.btn:active {
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(36, 40, 38);
	color: rgb(36, 40, 38);
	font-weight: 600;
}

.sale {
    width: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 600;
        margin: 44px 162px 0 -3px;
}

.sale p:last-child {
    font-weight: 700;
    font-size: 46px;
}

h2 {
	position: relative;
    width: 100%;
    max-width: 960px;
    text-align: center;
    color: rgb(69, 72, 76);
    font-size: 36px;
    font-weight: 600;
    padding-top: 42px;
    margin: auto;
}

h2::before {
	position: absolute;
	content: '';
	bottom: -16px;
	left: calc(50% - 31px);
	width: 62px;
	height: 1px;
	background-color: rgb(157, 78, 237);
}

h2::after {
    position: absolute;
    content: '';
    bottom: -20px;
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(157, 78, 237);
}

h2 span {
	color: rgb(16, 201, 255);
}

.show {
    margin-top: -116px;
}

.show h2 {
	font-weight: 700;
}

.make h2 br,
.show h2 br {
	display: none;
}

.show_block {
	width: 100%;
	max-width: 942px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 38px auto;
}

.video {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 606px;
    height: 340px;
    border-radius: 34px;
    /*background-image: url("../img/bg_video.jpg");*/
    box-shadow: 12px 12px 20px 0px rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: cover;
}

.video iframe {
    width: 100%;
    height: 100%;
}

.show_slider {
    width: 302px;
    height: 236px;
    margin-bottom: 26px;
}

.img_wrap {
	width: 302px;
    height: 236px;
}

.forget {
	height: 464px;
	background-image: url("../img/bg1920-3.jpg");
}

.forget .container {
	margin-top: 58px;
}

.forget p {
    box-sizing: border-box;
    width: 488px;
    font-weight: 600;
    line-height: 18px;
    padding: 10px 20px 10px 0;
    margin-left: auto;
}

.forget p:first-child {
	letter-spacing: -0.7px;
}

.forget p:last-child {
	color: rgb(255, 255, 255);
	padding: 10px 24px 10px 0;
}

.best {
	height: 470px;
	background-image: url("../img/bg1920-4.jpg");
}

.best_block {
	width: 100%;
	max-width: 944px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px auto 0;
}

.best_item {
	width: 302px;
	height: 310px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	line-height: 18px;
	color: rgb(69, 72, 76);
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(250, 247, 247);
	border-radius: 2px;
	box-sizing: border-box;
	padding: 40px 22px 10px;
	margin-bottom: 18px;
	z-index: 1;
}

.best_item div {
	width: 70px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.best_item h4 {
	max-width: 256px;
	font-weight: 700;
	font-size: 18px;
	padding: 30px 0 10px;
}

.best_item p {
	max-width: 240px;
}

.best_item:nth-child(2) {
	box-shadow: 12px 12px 40px 0 rgba(40, 40, 40, 0.1);
	z-index: 2;
}

.make {
	height: 493px;
	background-image: url("../img/bg1920-5.jpg");
}

.make p {
	color: rgb(73, 78, 68);
}

.make .container {
	display: flex;
	margin-top: 40px;
}

.make_text {
	width: 100%;
	max-width: 390px;
}

.btn.extra {
    width: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.make_text {
    width: 100%;
    max-width: 390px;
    font-size: 18px;
    line-height: 24px;
}

.make_text > p {
	padding: 18px 0;
}

.make_list {
	width: 524px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
}

.make_item {
	width: 252px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.make_item .img {
	position: relative;
	box-sizing: border-box;
	width: 252px;
	height: 140px;
	border-radius: 24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 254px;
	box-shadow: 12px 12px 40px 0 rgba(40, 40, 40, 0.3);
	overflow: hidden;
}

.make_item:nth-child(1) .img {
	background-image: url("../img/how1.jpg");
}

.make_item:nth-child(2) .img {
	background-image: url("../img/how2.jpg");
}

.make_item:nth-child(3) .img {
	background-image: url("../img/how3.jpg");
}

.make_item:nth-child(4) .img {
	background-image: url("../img/how4.jpg");
}

.make_item p {
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
}

.expert {
	padding-bottom: 30px;
}

.expert_img {
    width: 42.8%;
    height: 368px;
    background-image: url("../img/expert.jpg");
    background-repeat: no-repeat;
    background-position: -44px;
    background-size: cover;
    box-shadow: 0 0 30px 8px rgba(40, 40, 40, 0.2);
}

.expert_item {
	display: flex;
	margin-top: 30px;
}

.expert_text_block {
    width: 57.2%;
    padding-left: 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.expert_name p:first-child {
    font-size: 24px;
    padding-top: 10px;
    font-weight: 700;
}

.expert_text {
    line-height: 20px;
    margin-top: 12px;
}

.expert_text p {
    padding: 10px 0;
}

.expert_text p:last-child {
    background-color: rgb(148, 74, 224);
    color: rgb(255, 255, 255);
    font-weight: 600;
    padding-left: 52px;
    margin-left: -52px;
    padding-right: 500px;
	margin-right: -500px;
    padding-bottom: 16px;
}

.feedback {
	height: 422px;
	background-image: url("../img/bg1920-7.jpg");
}

.feedback_slider {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 944px;
    margin: 8px auto 0;
}

.feedback_slider::before {
    position: absolute;
    content: '';
    top: 36px;
    right: 0;
    width: 944px;
    height: 262px;
    background-color: rgb(255, 255, 255);
    box-shadow: 12px 12px 40px 0 rgba(40, 40, 40, 0.2);
    border-radius: 36px;
    border-bottom-left-radius: 130px;
    border-top-left-radius: 130px;
}

.customer {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(69, 72, 76);
    padding: 18px 0 24px;
}

.customer .img {
	width: 291px;
	height: auto;
}

.customer .img img {
    -webkit-filter: drop-shadow(5px 10px 16px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(16px 16px 16px rgba(0, 0, 0, 0.1));
}

.comment {
	width: 66.5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.comment span {
	position: relative;
	font-size: 31px;
    font-weight: 700;
    padding-bottom: 18px;
}

.comment span::before {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 84px;
	height: 2px;
	background-color: rgb(157, 78, 237);
}

.comment p {
    max-width: 576px;
    font-weight: 600;
    color: rgb(24, 32, 36);
    font-size: 18px;
    padding-top: 18px;
    line-height: 24px;
}

.simple_steps {
	height: 379px;
	background-image: url("../img/bg1920-8.jpg");
}

.steps {
	width: 100%;	
	max-width: 886px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 32px auto 0;
}

.step .img {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 36px;
}

.step {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	max-width: 230px;
	height: 210px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(247, 247, 247);
	border-radius: 2px;
}

.step:nth-child(2){
	box-shadow: 12px 12px 40px 0 rgba(40, 40, 40, 0.1);
}

.step:nth-child(1)::after,
.step:nth-child(2)::after {
	position: absolute;
	content: '';
	top: 38px;
	right: -116px;
	width: 122px;
	height: 42px;
	background-image: url("../img/arrow-down.png");
	background-repeat: no-repeat;
	z-index: 1;
}

.step:nth-child(2)::after {
	top: 110px;
	background-image: url("../img/arrow-up.png");
}

.step:nth-child(1)::before,
.step:nth-child(2)::before {
	position: absolute;
	content: '';
	top: 88px;
	right: -60px;
	width: 17px;
	height: 17px;
	background-image: url("../img/cross.png");
	background-repeat: no-repeat;
	z-index: 1;
}

.step p {
	max-width: 180px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding-top: 20px;
}

.action {
	position: relative;
	background-color: rgb(210, 209, 210);
	padding: 16px 0 20px;
    z-index: 1;
}
 
.action_item {
	width: 100%;
	max-width: 940px;
	display: flex;
	justify-content: space-between;
	margin: auto;
}

.br3,
.br6 {
	display: none;
}

.action_item p {
	position: relative;
	color: rgb(69, 72, 76);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	display: block;
	margin: 0;
	padding: 12px 22px;
}

.action_item p:first-child {
	padding-left: 0;
}

.action_item p:last-child {
	padding-right: 0;
}

.action_item p:nth-child(2)::before,
.action_item p:nth-child(3)::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 1px;
	height: 94px;
	background-color: rgb(69, 72, 76);
}

.red {
	color: rgb(157, 78, 237);
}

.bottom_block .btn {
	font-size: 30px;
}

.bottom_block {
	height: 724px;	
	background-position: center bottom -114px;
}

.bottom_block .main_title {
    margin: 46px auto 0;
}

footer {
    background-color: rgb(0, 0, 0);
    font-size: 12px;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 20px 0;
}
footer a {
    display: block;
    margin: 15px 0 0;
    color:#ccc;
}

.show .owl-item,
.show .owl-stage-outer {
	box-shadow: 0px 6px 20px 6px rgba(143, 134, 120, 0.3);
}

.show .owl-nav::before {
    position: absolute;
    content: '';
    top: -48px;
    right: 150px;
    width: 186px;
    height: 2px;
    background-color: rgb(157, 78, 237);
}

.owl-prev,
.owl-next {
	box-sizing: border-box;
	position: absolute;
	background-repeat: no-repeat;
    background-position: center;
}

.owl-prev,
.owl-next {
	width: 60px;
	height: 60px;
	top: -78px;
}   

.owl-prev {
	left: 176px;
    background-image: url("../img/prev.png");
}

.owl-next {
	right: 0;
	background-image: url("../img/prev.png");
    transform: rotate(180deg);
}

.feedback .owl-next {
	top: 136px;
	right: -30px;
}

.feedback .owl-prev {
	top: 136px;
	left: -30px;
}

.owl-prev:hover,
.owl-prev:active {
   background-image: url("../img/next_active.png");
   transform: rotate(180deg);
}

.owl-next:hover,
.owl-next:active {
	background-image: url("../img/next_active.png");
	transform: rotate(0deg);
}

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

	.base {
		max-width: 980px;
	}

	.container {
		max-width: 620px;
	}

	header {
	    max-width: 620px;
	}

	.header_item {
		width: 228px;
		margin-top: 8px;
	}

	.header_item img {
		width: 56px;
	}

	.header_item span {
		font-size: 16px;
    	line-height: 18px;
	}

	.header_item:last-child {
		width: 170px;
	}

	.banner {
		height: 976px;
		background-image: url("../img/bg960-1.jpg");
		background-position: top center;	
	}

	.main_title {
		width: 620px;
		height: 150px;
	}

	.h1 span:first-child {
	    font-size: 62px;
	}

	.h1 span:last-child {
	    width: 320px;
	    font-size: 27px;
	    line-height: 27px;
	    padding-left: 0; 
	    margin-top: 8px;
	}

	.list {
	    width: 282px;
	    height: 184px;
	    flex-direction: column;
	    flex-wrap: nowrap;
	}

	.list li {
	    font-size: 14px;
	    min-width: 282px;
	    line-height: 15px;
	    padding: 7px 0 7px 42px;
	}

	.row {
		max-width: 620px;
		flex-direction: row;
		justify-content: space-between;
	}

	.sale {
		font-size: 21px;
	    margin: 40px 0 0 0px; 
	}

	.sale p:last-child {
	    font-size: 48px;
	}

	.sale_block {
    	margin: 22px 0 0;
    }

	h2 {
		max-width: 620px;
		font-size: 30px;
	}

	.show {
		margin-top: -70px;
	}

	.show_block {
		max-width: 620px;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		margin: 34px auto 0;
	}

	.video {
	    max-width: 620px;
	}

	.show_slider {
	    width: 620px;
	    margin: 40px auto;
	}

	.forget {
		height: 677px;
		background-image: url("../img/bg960-3.jpg");
	}

	.forget .container {
		margin-top: 334px;
	}

	.forget p {
	    width: 562px;
	    padding: 10px 0 10px 0;
	    margin-left: 26px;
	}

	.forget p:first-child {
		letter-spacing: 0;
	}

	.forget p:last-child {
		color: rgb(255, 255, 255);
		padding: 210px 0 10px 0;
	}

	.best {
		height: 802px;
		background-image: url("../img/bg960-4.jpg");
	}

	.best_block {
		max-width: 620px;
		margin: 34px auto 0;
	}

	.best_item:last-child {
		margin: auto;
	}
 	
 	.make {
		height: 710px;
		background-image: url("../img/bg960-5.jpg");
	}

	.make .container {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 38px;
	}

	.make_text {
		width: 100%;
		max-width: 390px;
	}

	.btn.extra {
	    margin-top: 0;
	}

	.make_text {
	    width: 100%;
	    max-width: 620px;
	    font-size: 18px;
	    line-height: 24px;
	}

	.make_text div p {
	    width: 320px;
	    line-height: 17px;
	    padding-left: 24px;
	}

	.make_text div {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    flex-direction: row-reverse;
	    margin-top: 16px;
	}

	.make_text > p {
	    padding: 12px 0;
	}

	.make_text div p {
		width: 320px;
	}


	.make_list {
		width: 620px;
	}

	.make_item {
		width: 296px;
	}

	.make_item p {
	    padding: 12px 0;
	    font-size: 18px;
	}

	.make_item .img {
		width: 296px;
		height: 165px;
		background-size: 300px;
	}

	.expert_img {
		width: 43.5%;
		height: 418px;
		background-image: url("../img/expert.jpg");
		background-repeat: no-repeat;
		background-position: -80px;
	}

	.expert_item {
		display: flex;
		margin-top: 40px;
	}

	.expert_text_block {
	    width: 56.5%;
	    padding-left: 24px;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    box-sizing: border-box;
	}

	.expert_name p:first-child {
	    font-size: 23px;
	    padding-top: 0;
	    line-height: 16px;
	    font-weight: 700;
	}

	.expert_name p:last-child  {
	    font-size: 15px;
	    padding-top: 2px;
	}

	.expert_text {
	    line-height: 16px;
	    margin-top: 0;
	}

	.expert_text p {
	    padding: 10px 10px 10px 0;
	}

	.expert_text p:last-child {
	    font-weight: 400;
	    padding-left: 24px;
	    margin-left: -24px;
	    padding-right: 206px;
    	margin-right: -190px;
	}
	
	.feedback {
		height: 416px;
		background-position: left calc(50% + 28px) bottom;
	}

	.feedback_slider {
		max-width: 620px;
	    margin: 14px auto 0;
	}

	.feedback_slider::before {
		top: 30px;
		right: 0;
		width: 620px;
	}

	.customer .img {
		width: 282px;
	}

	.comment {
		width: 52%;
	}

	.comment span {
	    padding-bottom: 12px;
	    font-size: 26px;
	}

	.comment p {
	    max-width: 308px;
	    padding-top: 12px;
	    font-size: 16px;
	    line-height: 18px;
	}

	.simple_steps {
	    height: 333px;
	    background-position: left calc(50% + 28px) bottom -46px;
	}
	.simple_steps h2 br {
		display: none;
	}

	.steps {	
		max-width: 620px;
		margin: 30px auto 0;
	}

	.step .img {
		margin-top: 20px;
	}

	.step img {
		transform: scale(0.85);
	}

	.step {
		max-width: 202px;
		height: 180px;
	}

	.step:nth-child(1)::after, 
	.step:nth-child(2)::after {
	    top: -12px;
	    right: -80px;
	    width: 122px;
	    height: 42px;
	    background-size: 100px;
	}

	.step:nth-child(2)::after {
		right: -74px;
		top: 158px;
	}

	.step:nth-child(1)::before,
	.step:nth-child(2)::before {
	    top: 76px;
	    right: -13px;
	}

	.step p {
		font-size: 16px;
		padding-top: 14px;
	}

	.action{
		padding: 0;
	}

	.action_item {
		max-width: 490px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 5px 0;
	}

	.action_item p {
	    text-align: center;
		display: block;
		line-height: 1.3;
		margin: 0;
		padding: 12px 17px;

	}

	.action_item p:nth-child(2)::before,
	.action_item p:nth-child(3)::before {
		left: calc(50% - 210px);
		width: 420px;
		height: 1px;
	}

    .action_item p {
    	padding: 7px 0;
    }

	.br1,
	.br2,
	.br5{
		display: none;
	}

	.bottom_block {
		height: 836px;	
		background-position: center bottom -64px;
	}

	.bottom_block .main_title {
	    margin: 40px auto 0;
	}

	.owl-nav::before {
		display: none;
	}

	.owl-prev {
		top: calc(50% - 36px);
		left: -72px;
	}

	.owl-next {
		top: calc(50% - 36px);
		right: -72px;
	}

	.feedback .owl-next {
		top: 124px;
		right: -72px;
	}

	.feedback .owl-prev {
		top: 124px;
		left: -72px;
	}
	
}

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

	.base {
		max-width: 420px;
	}

	header {
		display: none;
	}

	.container {
		max-width: 282px;
	}

	.banner {
		height: 1518px;
		background-image: url("../img/bg420-1.jpg");	
	}

	.main_title {
	    width: 290px;
	    height: 140px;
	    text-align: center;
	    margin: 42px auto 0;
	}

	.h1 span:first-child {
	    font-size: 55px;
	}

	.h1 span:last-child {
	    width: 100%;
	    font-size: 27px;
	    margin-top: 8px;
	}

    .list {
	    margin-top: 866px;
	}

	.row {
		max-width: 306px;
		flex-direction: column;
	}

	.sale {
	    margin: 42px 0 0 12px;
	    font-size: 20px;
	    color: black
	}

	.sale p:last-child {
	    font-size: 48px;
	}

	.sale_block {
		margin: -222px auto 0;
	    background-image: linear-gradient(-55deg,  
    	rgba(255, 255, 255, 0.5) 0%, 
    	rgba(248, 248, 248, 0.8) 100%);
	}

	h2 {
		max-width: 282px;
		padding-top: 32px;
	}

	.show {
		margin-top: -172px;
	}

	.show h2 br {
		display: block;
	}

	.video {
	    max-width: 420px;
	    height: 260px;
	    box-shadow: 0px 13px 28px -17px rgba(0, 0, 0, 0.5);
	}

	.show_slider {
	    width: 282px;
	    height: auto;
	    margin: 36px auto;
	}

	.img_wrap {
		width: 282px;
	    height: auto;
	}

	.forget {
		height: 939px;
		background-image: url("../img/bg420-3.jpg");
	}

	.make h2 br {
		display: block;
	}

	.forget .container {
		margin-top: 260px;
	}

	.forget p {
	    width: 236px;
	}

	.best {
		height: 1070px;
		background-image: url("../img/bg420-4.jpg");
	}

	.best_block {
		max-width: 420px;
		justify-content: center;
		margin: 34px auto 0;
	}

	.best_item {
		width: 282px;
		padding: 34px 20px 10px;
		margin-bottom: 10px;
	}

	.best_item {
	    max-height: 293px;
	}

	.best_item h4 {
		padding: 26px 0 10px;
	}

	.best_item p {
	    max-width: 230px;
	    font-size: 14px;
	}

 	.make {
		height: 1278px;
		background-image: url("../img/bg420-5.jpg");
	}

	.btn.extra {
	    width: 100%;
	    height: 78px;
	    border-radius: 39px;
	    font-size: 24px;
	}

	.make_text {
	    max-width: 282px;
	}

	.make_text div p {
	    width: 282px;
	    line-height: 17px;
	    padding-left: 24px;
	}

	.make_text div {
	    flex-direction: column;
	}

	.make_text > p {
	    padding: 8px 0;
	    line-height: 18px;
	    font-size: 16px;
	}

	.make_text div p {
	    width: 282px;
	    font-size: 16px;
	    padding-left: 0;
	    padding: 12px 0 26px;
	}

	.make_list {
		width: 282px;
	}

	.make_item {
		width: 282px;
	}

	.make_item p {
	    padding: 12px 0;
	    font-size: 18px;
	}

	.make_item .img {
		width: 282px;
		height: 155px;
		background-size: 284px;
	}

	.expert {
	    padding-bottom: 22px;
	}

	.expert_img {
		width: 100%;
		height: 213px;
		background-image: url("../img/expert.jpg");
		background-repeat: no-repeat;
		background-position: center;
	}

	.expert_item {
		display: flex;
		flex-direction: column;
		margin-top: 40px;
	}

	.expert_text_block {
	    width: 100%;
	    padding-left: 0;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    box-sizing: border-box;
	}

	.expert_name {
		text-align: center;
	}

	.expert_name p:first-child {
	    font-size: 24px;
	    padding-top: 10px;
	    font-weight: 700;
	}

	.expert_text {
	    line-height: 18px;
	    margin-top: 12px;
	}

	.expert_text p {
	    padding: 10px 0;
	}

	.expert_text p:last-child {
	    background-color: rgb(148, 74, 224);
	    color: rgb(255, 255, 255);
	    font-weight: 600;
	    padding-left: 69px;
	    margin-left: -69px;
	    padding-right: 69px;
	    margin-right: -69px;
	    padding-bottom: 16px;
	}
		
	.feedback {
		height: 802px;
		background-image: url("../img/bg420-7.jpg");
		background-position: center bottom;
	}

	.feedback_slider {
		max-width: 282px;
	    margin: 10px auto 0;
	}

	.feedback_slider::before {
	    top: 20px;
	    right: 0;
	    width: 282px;
	    height: 626px;
	    border-radius: 30px;
    	border-bottom-left-radius: 30px;
    	border-top-left-radius: 141px;
    	border-top-right-radius: 141px;
	}

	.customer {
		flex-direction: column;
	}

	.customer .img {
		width: 282px;
	}

	.comment {
		width: 226px;
	}

	.comment span {
		text-align: center;
	    padding-bottom: 12px;
	    padding-top: 10px;
	    font-size: 26px;
	}

	.comment p {
	    max-width: 308px;
	    padding-top: 12px;
	    font-size: 16px;
	    line-height: 18px;
	}

	.comment span::before {
	    left: calc(50% - 42px);
	}

	.simple_steps {
		height: auto;
		background-image: url("../img/index.html");
		background-size: 420px;
		background-position: top center;
	}

	.steps {
	    max-width: 420px;
	    flex-direction: column;
	    align-items: center;
	    justify-content: flex-start;
	    margin: 28px auto 10px;
	}

	.step {
		margin-bottom: 10px;
	}
	.step .img {
		margin-top: 20px;
	}

	.step img {
		transform: scale(0.85);
	}

	.step {
		max-width: 202px;
		height: 180px;
	}

	.step:nth-child(1)::after, 
	.step:nth-child(2)::after {
	    top: 152px;
	    right: -58px;
	    width: 122px;
	    height: 42px;
	    background-size: 100px;
	    transform: rotate(90deg);
	}

	.step:nth-child(2)::after {
		right: 138px;
    	top: 184px;
	}

	.step:nth-child(1)::before,
	.step:nth-child(2)::before {
	 	top: 176px;
    	right: calc(50% - 8px);;
	}

	.step p {
		font-size: 16px;
		padding-top: 14px;
	}

	.br1,
    .br3,
    .br5,
    .br6 {
    	display: block;
    }

    .br4{
    	display: none;
    }

	.action_item {
		max-width: 300px;
	}

	.action_item p {
	    line-height: 1;
	}

	.action_item p:nth-child(2)::before,
	.action_item p:nth-child(3)::before {
		left: calc(50% - 113px);
		width: 226px;
	}

	.bottom_block {
		height: 1449px;	
		background-position: center bottom 100px;
	}

	.bottom_block .main_title {
	    margin: 34px auto 0;
	}

	.owl-prev {
		left: -40px;
	}

	.owl-next {
		right: -40px;
	}

	.feedback .owl-prev {
		left: -40px;
	}

	.feedback .owl-next {
		right: -40px;
	}
	
	.feedback .owl-prev,
    .feedback .owl-next {
		top: 120px;
	}
}/*----- :) ----*/	

.copyright { font-size: 14px;text-align: center; padding:20px 0;color: #6C6E6F;}
.copyright p { width: 100%; text-align: center; padding: 0; margin: 0; }
.copyright br { display: none; }
.copyright img { margin: 10px auto!important; max-width:100%; }
.copyright a {color: #6C6E6F; text-decoration: none;}
.copyright a:hover { color:#FF0069; text-decoration: none; }

.errField { display:none; font-size: 14px; background: #f00; color: #fff; text-align: center; padding: 10px; margin-bottom:10px; }

.errorMessage {font-size: 11px;background: rgba(255, 0, 0, 0.64);color: #fff;text-align: center;padding: 5px 10px;position: absolute;margin: 0; z-index: 99999; }