/* fonts */

@font-face {
	font-family: 'Tahoma';
	src: url('../fonts/TahomaRegular.woff2') format('woff2'),
	url('../fonts/TahomaRegular.woff') format('woff'),
	url('../fonts/TahomaRegular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Tahoma';
	src: url('../fonts/TahomaBold.woff2') format('woff2'),
	url('../fonts/TahomaBold.woff') format('woff'),
	url('../fonts/TahomaBold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

/* styles */

body {
	min-width: 320px;
	background: #fff;
	font-family: 'Tahoma', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #222;
	cursor: default;
}
.youtube .play{
    background-size: cover!important;
}
header, section, footer {
	margin: 0 auto;
	max-width: 1920px;
}

.wrapper {
	margin: 0 auto;
	padding: 0 10px;
	width: 970px;
	position: relative;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

b {
	font-weight: 700;
}

/* button */

.button {
	display: block;
	margin: 0 auto;
	width: 280px;
	height: 66px;
	border: none;
	border-radius: 3px;
	background-color: #ffc000;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#ffc000), to(#fddc40));
	background-image: linear-gradient(to top, #ffc000 0%, #fddc40 100%);
	-webkit-box-shadow: 0 2px 0 #d7a200;
	box-shadow: 0 2px 0 #d7a200;
	font-family: 'Tahoma', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 66px;
	color: #222;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.button:hover {
	background-color: #fabc00;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#fabc00), to(#fbd93a));
	background-image: linear-gradient(to top, #fabc00 0%, #fbd93a 100%);
}

.button:active {
	-webkit-box-shadow: 0 1px 0 #d7a200;
	box-shadow: 0 1px 0 #d7a200;
	top: 1px;
}

/* titles */

h2 {
	margin: 0 0 40px;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	text-align: center;
}

/* offer */

.offer_section {
	padding: 20px 0 25px;
	background: #00b4e6 url(../img/desctop__offer_bg.jpg) center top no-repeat;
}

.offer_section .main_title {
	margin: 0 0 20px;
	padding: 0 0 0 15px;
	width: 500px;
	border-left: 6px solid #fecf21;
	font-weight: 400;
	font-size: 32px;
	line-height: 38px;
	color: #fff;
}

.offer_section .main_title b {
	display: block;
	font-size: 42px;
	line-height: 48px;
}

.offer_section ul {
	margin: 0 0 20px;
}

.offer_section ul li {
	margin: 0 0 8px;
	padding: 0 0 0 26px;
	background: url(../img/offer__tick_icon.png) left 4px no-repeat;
	color: #fff;
}

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

.offer_section .discount_block {
	padding: 12px 0 0;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: rgba(119,195,0,0.8);
	-webkit-box-shadow: 0 0 0 2px rgba(253,219,62,0.8);
	box-shadow: 0 0 0 2px rgba(253,219,62,0.8);
	font-weight: 700;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	top: 200px;
	left: 525px;
}

.offer_section .discount_block span {
	display: block;
	font-size: 22px;
	line-height: 26px;
}

.offer_section .form_block {
	padding: 25px 0;
	width: 340px;
	border-radius: 15px;
	background: #fff;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.offer_section .price_block {
	margin: 0 0 15px;
	text-align: center;
}

.offer_section .price_item {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

.offer_section .price_item.old {
	margin: 0 15px 0 0;
}

.offer_section .price_item.old .discount {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 8px;
	padding: 2px 6px;
	border-radius: 5px;
	background: #ffbc3d;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
}

.offer_section .price_item.old .value {
	font-size: 22px;
	line-height: 22px;
	text-decoration: line-through;
}

.offer_section .price_item.new .text {
	font-size: 18px;
	line-height: 26px;
}

.offer_section .price_item.new .value {
	font-weight: 700;
	font-size: 30px;
	line-height: 42px;
}

.offer_section .field,select {
	display: block;
	margin: 0 auto 15px;
	padding: 0 20px;
	width: 280px;
	height: 60px;
	border: 1px solid #e2e2e2;
	border-radius: 3px;
	background: #fafafa;
	-webkit-box-shadow: inset 0 2px 3px rgba(2, 2, 2, 0.09);
	box-shadow: inset 0 2px 3px rgba(2, 2, 2, 0.09);
	font-family: 'Tahoma', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #222;
	text-align: center;
 -webkit-box-sizing: content-box;
         box-sizing: content-box;
}

.offer_section .field::-webkit-input-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .field:-moz-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .field::-moz-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .field:-ms-input-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .field:focus::-webkit-input-placeholder {
	opacity: 0;
}

.offer_section .field:focus:-moz-placeholder {
	opacity: 0;
}

.offer_section .field:focus::-moz-placeholder {
	opacity: 0;
}

.offer_section .field:focus:-ms-input-placeholder {
	opacity: 0;
}

.offer_section .products_count {
	margin: 20px 0 0;
	font-size: 15px;
	text-align: center;
}

.offer_section .products_count b {
	padding: 5px;
	border-radius: 5px;
	background: #77c300;
	color: #fff;
}

/* about */

.about_section {
	padding: 40px 0;
}

.about_section .benefits_list {
	margin: 0 0 40px;
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;
	text-align: center;
}

.about_section .benefit_item {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 0 0;
	width: 220px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: normal;
}

.about_section .benefit_item:last-child {
	margin: 0;
}

.about_section .benefit_item img {
	display: block;
	margin: 0 auto 15px;
	border-radius: 15px;
}

.about_section .video_block {
	float: left;
	margin: 0 7px 40px 0;
	padding: 20px;
	width: 460px;
	border-radius: 15px;
	background: #fff;
	-webkit-box-shadow: 0 0 30px rgba(0,0,0,0.1);
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.about_section .video {
	width: 100%;
	height: 236px;
	background-color: #000;
	overflow: hidden;
	position: relative;
}

.about_section .video iframe, 
.about_section .video object, 
.about_section .video embed {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.about_section .text_block {
	float: right;
	margin: 14px 0 40px;
	width: 450px;
}

.about_section .text_block p {
	margin: 0 0 15px;
}

.about_section .text_block p:first-child {
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}

.about_section .text_block p:last-child {
	margin: 0;
}

.about_section .images_block {
	clear: both;
}

.about_section .images_block img {
	display: block;
	float: left;
	margin: 0 35px 0 0;
	width: 290px;
	border-radius: 15px;
}

.about_section .images_block img:last-child {
	margin: 0;
}

/* benefits */

.benefits_section {
	padding: 40px 0 45px;
	background: #00b4e6 url(../img/desctop__benefits_bg.jpg) center top no-repeat;
	background-size: cover;
	color: #fff;
}

.benefits_section p.description {
	margin: -20px 0 40px;
	text-align: center;
}

.benefits_section .benefits_list {
	margin: 0 0 40px;
}

.benefits_section .benefit_item {
	float: left;
	margin: 0 20px 0 0;
	padding: 0 5px;
	width: 300px;
	text-align: center;
}

.benefits_section .benefit_item:last-child {
	margin: 0;
}

.benefits_section .benefit_item .image_block {
	margin: 0 auto 15px;
	width: 285px;
}

.benefits_section .benefit_item img {
	display: block;
}

.benefits_section .benefit_item h4 {
	margin: 0 0 5px;
	font-weight: 700;
}

/* comparison */

.comparison_section {
	padding: 40px 0 25px;
}

.comparison_section .product_item {
	float: left;
	width: 49%;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.comparison_section .product_item:first-child {
	padding: 6px 0 0;
}

.comparison_section .product_item img {
	display: block;
	margin: 0 0 15px 15px;
}

.comparison_section .product_item h4 {
	padding: 10px 20px;
	background: #fdd938;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
}

.comparison_section .product_item:first-child h4 {
	background: #77c300;
	font-weight: 700;
	color: #fff;
}

.comparison_section .product_item p {
	padding: 15px 20px 15px 42px;
	background-position: 20px 22px;
	background-repeat: no-repeat;
}

.comparison_section .product_item p:nth-of-type(2n) {
	background-color: #f6f6f6;
}

.comparison_section .product_item p.yes {
	background-image: url(../img/comparison__tick_icon.png);
}

.comparison_section .product_item p.no {
	background-image: url(../img/comparison__cross_icon.png);
}

/* reviews */

.reviews_section {
	padding: 40px 0;
	background: #00b4e6;
}

.reviews_section h2 {
	color: #fff;
}

.reviews_section .reviews_list {
	margin: 0 auto;
	width: 910px;
}

.reviews_section .review_item {
	border-radius: 15px;
	background: #fff;
	-webkit-box-shadow: inset 0 -5px 0 #e1e1e1;
	box-shadow: inset 0 -5px 0 #e1e1e1;
	text-align: center;
	overflow: hidden;
}

.reviews_section .review_item .author_info {
	padding: 20px 20px 10px;
	font-weight: 700;
}

.reviews_section .review_item p {
	padding: 0 20px 25px;
	font-size: 15px;
	line-height: 22px;
}

/* order info */

.order_info_section {
	padding: 40px 0;
}

.order_info_section .content_block {
	float: left;
	width: 380px;
}

.order_info_section h2 {
	text-align: left;
}

.order_info_section .info_item {
	display: table;
	margin: 0 0 30px;
	width: 100%;
}

.order_info_section .info_item:last-child {
	margin: 0;
}

.order_info_section .info_item .icon_block {
	display: table-cell;
	vertical-align: middle;
	width: 78px;
}

.order_info_section .info_item .icon {
	width: 78px;
	height: 78px;
	border: 2px solid #77c300;
	border-radius: 50%;
	background: center no-repeat;
}

.order_info_section .info_item:nth-child(1) .icon {
	background-image: url(../img/order_info__info1_icon.png);
	background-position: 14px center;
}

.order_info_section .info_item:nth-child(2) .icon {
	background-image: url(../img/order_info__info2_icon.png);
}

.order_info_section .info_item:nth-child(3) .icon {
	background-image: url(../img/order_info__info3_icon.png);
}

.order_info_section .info_item p {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 20px;
}

.order_info_section .image {
	display: block;
	float: left;
	margin: 45px 0 0 80px;
}

/* footer */

.footer_section {
	padding: 25px 0;
	font-size: 14px;
	text-align: center;
}

.footer_section img {
	display: block;
	margin: 0 auto 10px;
}

.footer_section a {
	color: #111;
}

.footer_section a:hover {
	text-decoration: none;
}

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

	/* styles */

	.wrapper {
		width: 640px;
	}

	/* titles */

	h2 {
		font-size: 28px;
		line-height: 34px;
	}

	/* offer */

	.offer_section {
		background-image: url(../img/tablet__offer_bg.jpg);
	}

	.offer_section .main_title {
		width: 430px;
		font-size: 28px;
		line-height: 34px;
	}
    
    .offer_section .field,select{
        width: 260px;
    }

	.offer_section .discount_block {
		left: 450px;
	}

	.offer_section .form_block {
		width: 320px;
	}

	/* benefits */

	.benefits_section {
		background-image: none;
	}

	.benefits_section .benefit_item {
		display: table;
		float: none;
		margin: 0 0 30px;
		padding: 0;
		width: 100%;
		text-align: left;
	}

	.benefits_section .benefit_item .image_block {
		display: table-cell;
		vertical-align: middle;
		margin: 0;
	}

	.benefits_section .benefit_item .text_block {
		display: table-cell;
		vertical-align: middle;
		padding: 0 0 0 30px;
	}

	/* about */

	.about_section .benefits_list {
		margin: 0;
	}

	.about_section .benefit_item {
		margin: 0 40px 40px;
	}

	.about_section .benefit_item:last-child {
		margin: 0 40px 40px;
	}

	.about_section .video_block {
		float: none;
		margin: 0 0 40px;
		width: 100%;
	}

	.about_section .video {
		height: 326px;
	}

	.about_section .text_block {
		float: none;
		margin: 0 0 40px;
		width: 100%;
		text-align: center;
	}

	.about_section .images_block img {
		margin: 0 15px 0 0;
		width: 196px;
	}

	/* comparison */

	.comparison_section .product_item img {
		margin: 0 auto 15px;
	}

	.comparison_section .product_item h4 {
		padding: 10px 0;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
	}

	.comparison_section .product_item p:first-of-type {
		min-height: 126px;
	}

	/* reviews */

	.reviews_section .reviews_list {
		width: 600px;
	}

	.reviews_section .owl-prev, 
	.reviews_section .owl-next {
		width: 54px;
		height: 54px;
		background: url(../img/reviews__arrows.png) no-repeat;
		position: absolute;
		top: 73px;
	}

	.reviews_section .owl-prev {
		background-position: left center;
		left: 0;
	}

	.reviews_section .owl-next {
		background-position: right center;
		right: 0;
	}

	/* order info */

	.order_info_section .content_block {
		float: none;
		margin: 0 auto;
		width: 420px;
	}

	.order_info_section h2 {
		text-align: center;
	}

	.order_info_section .info_item {
		margin: 0 0 25px;
	}

	.order_info_section .image {
		display: none;
	}

}

@media screen and (max-width: 639px) {
	
	/* styles */

	.wrapper {
		width: 320px;
	}

	/* titles */

	h2 {
		margin: 0 0 30px;
		font-size: 22px;
		line-height: 30px;
	}

	/* offer */

	.offer_section {
		padding: 25px 0;
		background-image: url(../img/mobile__offer_bg.jpg);
	}

	.offer_section .main_title {
		width: 100%;
		font-size: 18px;
		line-height: 26px;
	}

	.offer_section ul {
		margin: 0 0 375px;
	}

	.offer_section .discount_block {
		top: 285px;
		left: 130px;
	}

	.offer_section .form_block {
		margin-left: -10px;
	}

	/* about */

	.about_section {
		padding: 30px 0;
	}

	.about_section .benefit_item {
		margin: 0 0 30px;
		width: 100%;
	}

	.about_section .benefit_item:last-child {
		margin: 0 0 30px;
	}

	.about_section .video_block {
		margin: 0 0 30px;
		padding: 10px;
		border-radius: 10px;
	}

	.about_section .video {
		height: 158px;
	}

	.about_section .text_block {
		margin: 0 0 30px;
	}

	.about_section .images_block img {
		margin: 0 auto 20px;
		width: 290px;
	}

	.about_section .images_block img:last-child {
		margin: 0 auto;
	}

	/* benefits */

	.benefits_section {
		padding: 30px 0 35px;
	}

	.benefits_section p.description {
		margin: -20px 0 30px;
	}

	.benefits_section .benefits_list {
		margin: 0 0 30px;
	}

	.benefits_section .benefit_item {
		display: block;
		padding: 0 5px;
		text-align: center;
	}

	.benefits_section .benefit_item .image_block {
		display: block;
		margin: 0 auto 15px;
	}

	.benefits_section .benefit_item .text_block {
		display: block;
		padding: 0;
	}

	/* comparison */

	.comparison_section {
		padding: 30px 0 15px;
	}

	.comparison_section .product_item {
		float: none;
		width: 100%;
		border: none;
	}

	.comparison_section .product_item:first-child {
		margin: 0 0 15px;
		padding: 0;
	}

	.comparison_section .product_item p:first-of-type {
		min-height: auto;
	}


	/* reviews */

	.reviews_section {
		padding: 30px 0;
	}

	.reviews_section .reviews_list {
		width: 290px;
	}

	/* order info */

	.order_info_section {
		padding: 30px 0;
	}

	.order_info_section .content_block {
		width: 100%;
	}

}