@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0,204,255, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 50px rgba(0,204,255, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(0,204,255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(77, 189, 86, 0.6);
    box-shadow: 0 0 0 0 rgba(77, 189, 86, 0.6);
  }
  70% {
      -moz-box-shadow: 0 0 0 50px rgba(77, 189, 86, 0);
      box-shadow: 0 0 0 50px rgba(77, 189, 86, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(77, 189, 86, 0);
      box-shadow: 0 0 0 0 rgba(77, 189, 86, 0);
  }
}

/*   list number   */

ul.list-number li {
 background: #fff;
 padding: 8px 15px;
 line-height: 24px;
}

ul.list-number li:after {
 clear: both;
 content: "";
 display: table;
}

ul.list-number .num {
 float: left;
 background: #729815;
 width: 40px;
 height: 40px;
 line-height: 40px;
 font-size: 36px;
 font-weight: 700;
 color: #fff;
 text-align: center;
 -webkit-border-radius: 50%;
 -moz-border-radius: 50%;
 border-radius: 50%;
}

ul.list-number p {
 overflow: hidden;
 padding: 9px 0 0 13px;
}

ul.list-number li:nth-child(even) {
 background: #f4f4f4;
}


.pulse{
	width: 38px;
	height: 38px;
	background: rgba(77, 189, 86, 0.6);
	border-radius: 50%;
	position: absolute;
        top: 297px;
    right: 180px;
	animation: pulse 3s infinite;
}
.pulse:before,
.pulse:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: pulse 3s infinite;
	right: 0px;
}
.pulse:before{
	animation-delay: 0.5s;
}
.pulse:after{
	animation-delay: 1s;
}/*   top line   */

.top_line {
	padding: 0;
	background: #fff;
}

.top_line ul {
	height: 70px;
	padding-left: 20px;
	margin-right: 10px;
	background: url("../images/line-icon-bg.png") 100% 50% no-repeat;
}

.top_line li {
	float: left;
	height: 70px;
	font-size: 14px;
	line-height: 18px;
	padding-top: 18px;
}

.top_line li:nth-child(1) {
	background: url("../images/line-icon1.png") 0 50% no-repeat;
	padding-left: 45px;
	margin-right: 25px;
}

.top_line li:nth-child(2) {
	background: url("../images/line-icon2.png") 0 50% no-repeat;
	padding-left: 37px;
}

.top_line li b {
	display: block;
}

/*   offer   */

.offer {
	background: #f0f3ee;
	padding: 0 0 25px;
}

.offer .box {
	position: relative;
	background: url("../images/offer.jpg") 50% 0 no-repeat;
	height: 583px;
	text-align: center;
}

.offer h1 {
	background: #ffe003;
	color: #426b23;
	font-size: 29px;
	line-height: 1.05em;
	padding: 6px 20px 8px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 20px 0 0;
	border-radius: 8px;
}
.offer h2{
	background: rgba(255,255,255,0.67);
    text-transform: uppercase;
    color: #426b23;
    font-size: 17px;
    line-height: 1.05em;
    text-align: center;
    padding: 22px 28px 10px;
    margin: -19px auto 0;
}

.offer .sale {
	background: #ffa909;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 250px;
	height: 70px;
	font-size: 18px;
	line-height: 1.1em;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 0 0 20px;
	text-align: left;
}
.offer .sale span {
	display: block;
	font-size: 30px;
	line-height: 1.05em;
	font-weight: 700;
}
.offer .sale:before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 70px 0 0 34px;
	border-color: transparent transparent transparent #ffa909;
	position: absolute;
	top: 0;
	right: -34px;
}
.offer .sale:after{
	content: '';
	width: 64px;
	height: 55px;
	background: url(../images/price_after.png);
	position: absolute;
	top: -28px;
	right: 0px;
}

.offer .order_form {
}

.offer .bullet {
	padding: 30px 0 10px;
}

.offer .bullet li {
	float: left;
	width: 33.3%;
	color: #333;
	line-height: 1.4em;
	text-align: center;
}
.offer .bullet img{
	display: block;
	margin: 0px auto 4px;
}

.offer .stock {
	text-align: center;
	padding: 25px 40px;
}

.offer .stock b {
	background: #426b23;
	color: #fff;
	padding: 5px 8px;
	margin-left: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.offer .policy {
	border-top: 1px solid #d8dad6;
	font-size: 13px;
	color: #777;
	padding: 15px 0 0;
	width: 400px;
	margin: 0px auto;
}

.offer .policy:before {
	position: relative;
	top: -2px;
	display: inline-block;
	background: url("../images/policy-icon.png") 0 0 no-repeat;
	width: 26px;
	height: 22px;
	vertical-align: middle;
	margin-right: 10px;
	content: '';
}

/*   b1   */

.b1 {
	padding-bottom: 0;
}

.b1 h2.title {
	margin-bottom: 20px;
}

.b1 h2.title span {
	color: #ffa808;
}

/*   b2   */
.b2{
	padding-bottom: 40px;
}
.b2 h2.title span {
	color: #426b23;
	font-size: 28px;
	line-height: 1.1em;
}

.b2 p {
	text-align: justify;
	padding: 0 20px 20px;
}

.b2 p i {
	font-style: normal;
	padding: 0px 5px;
	background: #e4fcb9;
	display: inline;
}

.b2 img.image {
	margin-bottom: 10px;
}

/*   b3   */

.b3 {
	background: #f0f3ee;
	padding-bottom: 35px;
	overflow: hidden;
}

.b3 h2 {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 25px;
}

.b3 .alert {
	width: 440px;
	position: relative;
	margin: 100px auto 0;
	background: #88ec85;
	padding: 5px 30px 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
}
.b3 .alert p:not(:last-child){
	margin-bottom: 20px;
}
.b3 .alert:before {
	content: '';
	margin: -110px auto 10px;
	display: block;
	width: 264px;
	height: 197px;
	background: url("../images/b3_alert.png") 0 0 no-repeat;
}

/*   list-v1   */

.list-v1 li {
	position: relative;
	padding: 10px 0 35px;
	min-height: 102px;
	margin-bottom: 5px;
}

.list-v1 li:before {
	position: absolute;
	left: 20px;
	top: 0;
	display: block;
	width: 102px;
	height: 102px;
	background-color: #fff;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	-webkit-border-radius: 0 50% 50% 50%;
	-moz-border-radius: 0 50% 50% 50%;
	border-radius: 0 50% 50% 50%;
	content: '';
}

.list-v1 li:nth-child(1):before {
	background-image: url("../images/efficiency-icon1.png");
}

.list-v1 li:nth-child(2):before {
	background-image: url("../images/efficiency-icon2.png");
}

.list-v1 li:nth-child(3):before {
	background-image: url("../images/efficiency-icon3.png");
}

.list-v1 li:nth-child(4):before {
	top: 10px;
	background-image: url("../images/efficiency-icon4.png");
}

.list-v1 p {
	background: #f5f7f3;
	line-height: 24px;
	padding: 15px 20px 15px 140px;
}


/*  b3_1  */
.b3_1 .title span{
	color: #ffa808;
	font-size: 28px;
	line-height: 1.1em;
}
.b3_1 p{
	text-align: center;
	padding: 0 20px;
}



/*   b4   */

.b4 {
	background: url("../images/b4-bg.jpg") 50% 0 no-repeat #fff;
	padding-bottom: 0;
}

.b4 h2.title {
	color: #fff;
	padding: 0 10px;
}

.b4 h2.title span {
	color: #fff;
	font-size: 28px;
	line-height: 36px;
}

.b4 .top_desc p {
	text-align: center;
}

.b4 .desc_bottom {
	background: #fff;
	text-align: center;
	margin: 0 20px;
	padding: 0 20px 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.b4 .desc_bottom img {
	display: inline-block;
	margin: -155px 0 15px -30px;
}

.b4 .desc_bottom p {
	padding-bottom: 15px;
}

.b4 .desc_bottom p:last-child {
	padding-bottom: 0;
}

/*   benefits-list   */

.benefits-list {
	font-size: 0;
	padding-bottom: 175px;
}

.benefits-list li {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	text-align: center;
	padding-bottom: 25px;
}

.benefits-list img {
	display: block;
	margin: 0 auto 10px;
	border: 6px solid #284225;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.benefits-list h4{
	color: #ffa808;
	font-size: 16px;
	line-height: 1.3em;
	margin: 0 0 4px;
}
.benefits-list p {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	padding: 0 10px;
	text-align: center;
}

/*   b5   */

.b5 {
	background: url("../images/b5-bg.jpg") 50% 0 no-repeat #6a951a;
	padding: 75px 0 25px;
	margin-top: -35px;
}

.b5 h2.title,
.b5 h2.title span {
	color: #fff;
}

.b5 .info {
	margin: 0 0 15px;
	padding: 0 20px;
	background: url("../images/signature.png") 100% 100% no-repeat;
}

.b5 .info:after {
	display: block;
	clear: both;
	content: '';
}

.b5 .info img {
	display: block;
	float: left;
}

.b5 .author {
	overflow: hidden;
	padding: 40px 0 0 20px;
	color: #fff;
}

.b5 .author h4 {
	text-transform: uppercase;
	line-height: 24px;
}

.b5 .author h4:before {
	display: block;
	background: url("../images/hr-line.png") 0 0 no-repeat;
	width: 39px;
	height: 6px;
	margin-bottom: 20px;
	content: '';
}

.b5 .author h4 span {
	display: block;
	font-weight: 400;
	text-transform: none;
}

.b5 .txt {
	background: #fff;
	margin: 0 20px;
	padding: 20px;
	text-align: justify;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.b5 .txt p:not(:last-child){
	margin-bottom: 20px;
}
.b6 {
	padding-bottom: 0;
}

/*   list-v2   */

.list-v2 {
	font-size: 0;
	padding: 0 10px;
}

.list-v2 .item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	padding: 0 10px 35px;
	font-size: 16px;
}

.list-v2 .item img {
	display: block;
	margin: 0 auto 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.list-v2 .item h4 {
	font-weight: 700;
	text-align: center;
	padding-bottom: 5px;
}

.list-v2 .item li {
	position: relative;
	font-size: 15px;
	line-height: 21px;
	color: #444;
	padding: 0 0 15px 20px;
}

.list-v2 .item li:before {
	position: absolute;
	left: 0;
	top: 6px;
	display: block;
	width: 5px;
	height: 5px;
	background: #6a951a;
	border: 3px solid #c3d5a3;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	content: '';
}

.list-v2 .item li:last-child {
	padding-bottom: 0;
}

/*   b7   */

.b7 {
	position: relative;
	background: #f7f7f7;
	padding-bottom: 0;
}

.b7:before {
	position: absolute;
	top: 110px;
	right: 5px;
	display: block;
	width: 94px;
	height: 104px;
	background: url("../images/b7-bg.png") 0 0 no-repeat;
	content: '';
}

.b7 .btn {
	height: 168px;
	background: url("../images/b7-bg2.jpg") 345px 10px no-repeat;
	padding-top: 40px;
}

/*   list-v3   */

.list-v3 li {
	padding: 20px;
}

.list-v3 li:nth-child(odd) {
	background: #fff;
}

.list-v3 li:nth-child(even) {
	background: #f5f5f5;
}

.list-v3 li:after {
	display: block;
	clear: both;
	content: '';
}

.list-v3 li img {
	display: block;
	float: left;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.list-v3 li:nth-child(even) img {
	float: right;
}

.list-v3 li .txt {
	overflow: hidden;
}

.list-v3 li .txt h4{
	line-height: 1.4em;
	margin-bottom: 5px;
}

.list-v3 li .txt p {
	line-height: 24px;
}

.list-v3 li:nth-child(odd) .txt {
	padding-left: 20px;
}

.list-v3 li:nth-child(even) .txt {
	padding-right: 20px;
	text-align: right;
}

.b7 .alert{
	padding: 30px 25px 20px;
}
.b7 .alert img{
	display: block;
	margin: 0px auto 20px;
	border-radius: 8px;
}
.b7 .alert p{
	text-align: center;
	line-height: 1.8em;
}
.b7 .alert p i{
	font-style: normal;
	padding: 0px 5px;
	background: #e4fcb9;
	display: inline;
}

/*   b8   */

.b8 {
	background: url("../images/b8-bg.jpg") 50% 0 no-repeat #7fa81e;
	overflow: hidden;
}

.b8 h2.title,
.b8 h2.title span {
	color: #fff;
}


/*   list-v4   */

.list-v4 {
	font-size: 0;
	padding: 0 10px;
}

.list-v4 li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 50%;
	font-size: 16px;
	padding: 25px 10px 10px;
}

.list-v4 .pic {
	position: relative;
}

.list-v4 li .pic img {
	display: block;
	margin: 0 auto;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.list-v4 li .num {
	position: absolute;
	top: -25px;
	left: 50%;
	margin-left: -25px;
	display: block;
	background: #ffca00;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 29px;
	font-weight: 700;
	color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.list-v4 li p {
	color: #fff;
	line-height: 24px;
	text-align: center;
	padding-top: 15px;
}

.list-v4 li .product {
	display: block;
	position: absolute;
	left: -35px;
	top: 25px;
	width: 280px;
	max-width: 280px;
}

.b9 {
	padding-bottom: 10px;
}

/*   example-list   */

.example-list {
	font-size: 0;
	padding-top: 25px;
	margin-bottom: -10px;
}

.example-list li {
	display: block;
	padding: 0 10px 35px;
}

.example-list .pic {
	position: relative;
}

.example-list .pic img {
	display: block;
	width: 100%;
}

.example-list h4 {
	position: absolute;
	left: 0;
	top: -16px;
	width: 100%;
	text-align: center;
}

.example-list h4 span {
	display: inline-block;
	height: 33px;
	line-height: 33px;
	background: #6a951a;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	padding: 0 35px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.example-list .comparison {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	height: 36px;
	line-height: 36px;
	color: #fff;
	font-size: 16px;
	padding: 0 20px;
	text-transform: uppercase;
}

.example-list .comparison span:nth-child(1) {
	float: left;
}

.example-list .comparison span:nth-child(2) {
	float: right;
	font-size: 18px;
	font-weight: 700;
}

/*   reviews   */

.reviews {
	background: #f5f5f5;
	padding-bottom: 20px;
}

.reviews .total {
	background: url("../images/like-icon.png") 28px 50% no-repeat #fff;
	padding: 20px 10px 20px 115px;
	font-size: 18px;
	margin-bottom: 30px;
}

.reviews .total h4 {
	font-weight: 700;
	font-size: 16px;
}

.reviews .total p span:before {
	position: relative;
	top: -2px;
	display: inline-block;
	vertical-align: middle;
	background: url("../images/rating.png") 0 0 no-repeat;
	width: 114px;
	height: 17px;
	content: '';
	margin: 0 7px 0 5px;
}

.reviews .item {
	background: #fff;
	border: 1px solid #dcdcdc;
	margin: 0 30px 20px 50px;
	padding: 15px 0 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.reviews .item .info {
	padding: 10px 0 0;
	text-align: center;
	margin-bottom: 20px;
}

.reviews .item .info img {
	display: block;
	margin: 20px auto 0;
}

.reviews .item .info h4 {
	font-size: 22px;
	font-weight: 700;
	line-height: 22px;
	color: #6a951a;
	padding-bottom: 10px;
}

.reviews .item .info p {
	color: #555;
	font-size: 18px;
	line-height: 18px;
}

.reviews .item .desc {
	text-align: center;
	padding: 0 15px 20px;
	line-height: 1.8em;
}

.reviews .item .desc h5 {
	padding-bottom: 15px;
	line-height: 1.5em;
}

/*   order info   */

.order_info ul {
	padding: 0 20px 10px;
}

.order_info li {
	position: relative;
	padding-left: 100px;
	margin-bottom: 45px;
}

.order_info li:last-child {
	margin-bottom: 0;
}

.order_info li h4 {
	text-transform: uppercase;
}

.order_info li p {
	line-height: 24px;
}

.order_info li:before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 83px;
	height: 83px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	content: '';
}

.order_info li:nth-child(1):before {
	background-image: url("../images/order-icon1.png");
}

.order_info li:nth-child(2):before {
	background-image: url("../images/order-icon2.png");
}

.order_info li:nth-child(3):before {
	background-image: url("../images/order-icon3.png");
}

/*   footer   */

.footer {
	text-align: center;
	padding: 35px 0 30px;
}

.footer img {
	display: block;
	margin: 0 auto 15px;
}

.footer a {
	display: inline-block;
	font-size: 14px;
	color: #333;
	margin: 0 10px;
}

.footer a:hover {
	text-decoration: none;
}





