@charset "utf-8";

* {
    box-sizing: border-box;
}

img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body{
	font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
	padding:0;
	margin:0;
	list-style:none;
	background:#fff;
	color: #000;
}
.pos-arrow
{
  position: relative;
  left: 300px;
  top: -60px;
  margin-left:-20px;
  width: 46px;
  height: 43px;
  z-index: +10;

  /**
   * Dark Arrow Down
   */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAArCAYAAAAHdLqEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE1NDQ3MkQ0Q0JGNTExRTg5MjlDODM5RkEyNUFDRTE1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE1NDQ3MkQ1Q0JGNTExRTg5MjlDODM5RkEyNUFDRTE1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTU0NDcyRDJDQkY1MTFFODkyOUM4MzlGQTI1QUNFMTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTU0NDcyRDNDQkY1MTFFODkyOUM4MzlGQTI1QUNFMTUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6/zmkWAAAB7ElEQVR42uzZYUrDMBQA4NTN/nAIgniA4W8v4QUE/dUdUP/YgRfwEv6WHmAIBamwzhGTLhO75jWvyXtdCwbCClmTb4/kpc0iKaUYYzkRIy3T/cXX28sowGc3d+OO+CH8QdW1qnJgdW1sIDxVdaFqOaDglsaUuhbnkPBWdNscHwIeRLsW5zHxrWhMVjkG3onGpsM+8Sh0lzzeBx6Nru2cunx/ZPfq40nV2PblKJ6JyfmVviI2S7H9XMWyLJ5bflQyvZwvrRE3DQkUWdWxHsDsCaToqm8s2jpV+sX7ocE53g/eH926OHnxYWhnVuHBh6NR6ZAWT4NG53EaPB26kce376/6mffRlserzH06E3Jmz+M7vADyvAstRVSsYrEp0m2egZvT5Po2tUbcNMA75KbQA4CRtUceha76bttR/6KtU4UWz4MG5zgVngvdujgp8Fzo2uJUD1jN1ot5GuXZAlqwO7wAF2wIWqqxrSZsOtQdhETeF02Sx2nwdOhOB0JheFp055MsPzwKnXRBex3BmQESHB6NXnZ1eJ0dmoGceC500KEnBs+FruXxKM987t/jwRdsCK3v9RwzLOIWfNkFHToo1fk4Bk+GpoS78KRoajiEJ0dzwA/xLOjGqxsDXnCgOeFs4N/0/f8Hbc/lR4ABAKEW9KsN+HKZAAAAAElFTkSuQmCC);
  background-size: contain;
}

.zoom {
    transition: transform .5s; /* Animation */
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.04); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
   
}

.bounce {
  animation: bounce 2s infinite;
}
.bounce2 {
  animation: bounce 2s infinite;
     margin-top: -300px;
    margin-bottom: 70px;
    display: block;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.break {
	clear: both;
}

h1, h2, h3, h4, h5, p {
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
}

h1 {
	font-family: 'Noto Serif JP', sans-serif;
	font-size: 50px;
	font-weight: 900;
	margin-bottom: 20px;
}

h2 {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 32px;
}


h4 {
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	margin-bottom: 20px;
	color: #616161;
	line-height: 32px;
	font-weight: 400;
}

p {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
	margin-bottom: 25px;
	color: #616161;
}

.header-container {
	width: 100%;
	margin: 0;
}

.top-header {
	background-color: #222222;
	padding: 10px 0;
	text-align: center; 
}


.top-header p {
	margin-bottom: 0;
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 14px;
}

.middle-header {
	background-color: #f2f2f2;
	
}

.middle-header-content {
	max-width: 1150px;
	width: 100%;
	margin: 0 auto;
	

}

.middle-header-content-wrapper {
	padding: 10px 20px;
	text-align: right;
}

.middle-header-content-wrapper > * {
	vertical-align: middle;
	margin-right: 5px;
}
.middle-header-content-wrapper p {
	display: inline-block;
	margin-top: -5px;
	margin-bottom: 0;
}


.middle-header-content-wrapper input[type=text] {
  padding: 6px;
  font-size: 17px;
  border: none;
  height: 20px;
  width: 120px;
}

.middle-header-content-wrapper .search-container {
	display: inline-block;
	background-color: #fff;
	border-radius: 25px;
	padding: 4px 10px;
}

.middle-header-content-wrapper .search-container button {
  padding: 6px 10px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.main-header {
	border-bottom: 1px solid #ebebeb;
}

.main-header-content {
	max-width: 1150px;
	width: 100%;
	margin: 0 auto;
	padding: 10px 20px;
}

ul.nav {
	-webkit-padding-start: 0;
}
ul.nav li {
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	text-transform: uppercase;
}

ul.nav li a {
	color: #000;
	text-decoration: none;
}

ul.nav li:last-child {
	margin-right: 0;
}
.main-header-content-left {
	width: 30%;
	float: left;
}

.main-header-content-right {
	width: 70%;
	display: inline-block;
	text-align: right;
}

#body-content {
	max-width: 1150px;
	width: 100%;
	margin: 20px auto;
}


.btn-style1 {
    transition: transform .5s;
    margin: 0 auto;
    animation: pulse 1s infinite;
}
.btn-style2 {
    transition: transform .5s;
    margin: 0 auto;
    animation: pulse 3s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.main-content {
	width: 73%;
	float: left;
	padding: 20px 40px 20px 20px;

}	

.sidebar {
	width: 27%;
	padding-top: 20px;
	float: left;
}

.buynow-promo {
	border: 1px solid #e6e6e6;
	width: 302px;
}

.buynow-promo-content {
	background: #fafafa url("../images/dr_herbal_bg_sidebar.png") no-repeat;
	width: 300px;
	border-top: 7px solid #f59d48;
	padding: 17px;
}

.buynow-promo-content h2 {
	font-size: 36px;
	color: #fff;
	font-weight: 900;
}

.buynow-promo-content h3 {
	font-size: 20px;
	color: #fff;
	margin-top: 20px;
}


.buy-now {
	 margin-top: 30px;
    margin-bottom: 200px;
    display: block;
}

.deco-line {
	width: 44px;
	height: 9px;
	background-color: #f59d48;
	border-radius: 25px;
	margin-bottom: 20px;
}

.last-post {
	margin-top: 20px;
	width: 302px;
}

.last-post-articles {
	border: 1px solid #e6e6e6;
	width: 100%;
	padding: 10px;
	background-color: #fafafa;
}

.last-post-articles h5 {
	font-size: 18px;
	font-weight: 900;
	margin-top: 10px;
}

.widget-title {
	color: #71ba4b;
	text-align: center;
	padding: 20px 0;
	background-color: #71ba4b;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.widget-title h3 {
	color: #fff;
}

.last-post-articles ul {
	padding-left: 0;
}

.last-post-articles ul li {
	list-style: none;
	margin-top: 25px;
}

.author {
	width: 40%;
	float: left;
	text-align: center;
}

.autho-pic{
	width: 107px;
	height: 106px;
	margin: 0 auto;
	border-radius: 50px;
	border: #e2e2e2 solid 10px;
	overflow: hidden;
}

.social-share {
	width: 60%;
	display: inline-block;
	text-align: right;
}

.social-share img {
	margin-left: 10px;
	margin-top: 20px;
}

.author p {
	display: inline-block;
	color: #666666 !important;
	margin-bottom: 0;
	font-size: 16px;

}

.author > * {
	vertical-align: middle;
}

.author img {
	margin-right: 20px;
}

.main-content-ad {
	padding: 30px;
	background-color: #f7ffe3;
	border-radius: 10px;
	border: #e6e6e6 solid 1px;
	text-align: center;
	margin-top: 20px;
}

.main-content-ad img {
	margin-top: 20px;
}

.news {
	border-radius: 10px;
	background-color: #71ba4b;
	padding: 20px;
	margin: 20px auto;
}
.news p {
	font-weight: 900;
	color: #fff;
	display: inline-block;
	margin-bottom: 0;
}

.news img {
	float: right;
	margin-top: 7px;
}

.img-textwrap {
	float: left;
	margin-right: 40px;
	margin-top: 5px;
}

.image-size {
	width: 45%;
}

.campaign-outer {
	border: #e6e6e6 solid 1px;
	background: fafafa;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-bottom: 20px;
}

.campaign-inner {
	background: url("../images/green-border.jpg") no-repeat top right;
}

.campaign-inner-content {
	background: url("../images/green-border.jpg") no-repeat bottom left;
	padding: 15px 30px;
	text-align: center;
} 

.campaign-inner-content h2 {
	color: #71ba4b;
}

span.bold {
	font-weight: 900;
}

.middle-news {
	border-top: #d1d1d1 solid 2px;
	margin-top: 40px;
}

.middle-news h2 {
	text-align: center;
	margin-bottom: 30px;
}

.middle-news p a {
	text-decoration: underline;
	color: #3654ec;
	font-weight: 900;
}

.middle-news ul {
        -webkit-padding-start: 0;
}

.middle-news ul li {
	background: url("../images/check.png") no-repeat left top;
	list-style: none;
	padding-left: 45px;
	padding-top: 5px;
	min-height: 50px;
	margin-bottom: 10px;
}

.middle-news ul li p {
	line-height: 25px;
	font-size: 18px;
}

.img-textwrap-right {
	float: right;
	margin-left: 20px;
}

.order-now-ad {
	background: #fafafa url("../images/bg3.png") no-repeat top center;
	border: #e6e6e6 solid 1px;
	border-radius: 10px;
	padding: 10px;
}

.order-now-ad .left {
	text-align: center;
	padding: 0 20px;
	width: 63%;
	float: left;
}

.order-now-ad .left p {
	font-size: 18px;
	color: #fff;	
	line-height: 25px;
	margin-top: 10px;
}

.order-now-ad .right {
	width: 37%;
	display: inline-block;
}


.nomargin {
	margin:0;
}
.order-now-ad h2 {
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	text-shadow: 2px 2px 2px #000000;
	margin-top: 20px;
}

.buy-button {
	background-color: #e9913c;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    width: 400px;
    border-radius: 50px;
    font-weight: 900;
    text-shadow: 2px 2px 2px #000000;
}

.absolute-arrow {
	position: absolute;
	margin-left: 385px;
	margin-top: -30px;
}

.chronic-pain {
	background: url("../images/bar-outline.png") no-repeat top center;
	padding: 20px 0;
	margin-top: 30px;
}

.chronic-pain-content {
	background: url("../images/bar-outline.png") no-repeat bottom center;
	padding: 10px 0;
	margin-bottom: 20px;
	
}

.chronic-pain-content h2 {
	text-align: center;
	margin-bottom: 20px;
}

.box {
	
    background:#f9f9f9;
    padding: 20px;
    margin-bottom: 40px;
 
}

.testimonials {
	position: relative;
}
.testimonials:before {
	z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:700px;
  background: #777;
  box-shadow: 0 25px 10px #777;
  transform: rotate(-4deg);
}

.testimonial-content p {
	font-size: 16px;
	line-height: 23px;
 }

 .testimonial-content p .testi-author {
	color: #53b560;
	font-weight: 900;
 }

.testimonial-content {
	width: 80%;
	display: inline-block;
}

.testimonial-image {
	width: 20%;
	float: left;
}

.test-image {
	border: 8px solid #fff;
	border-radius: 80px;
}

.center {
	text-align: center;
}

.two {
	border: 0;
	margin-top: 0;
}

.facebook-comment {
	margin-top: 40px;
}

.footer {
	width: 100%;
}

.top-footer {
	background-color: #e6e6e6;
	
}

.top-footer-content {
	max-width: 1150px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 20px;
}

.top-footer ul {
	-webkit-padding-start: 0;
}

.top-footer ul li {
	width: 350px;
	list-style: none;
	display: inline-block;
	margin-right: 2.3%;
}

.top-footer ul li:last-child {
	margin-right: 0;
}

.bottom-footer {
	background-color: #0f2312;
	width: 100%;
	
}

.bottom-footer-content {
	max-width: 1150px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 40px;
	
}

.bottom-footer-content p {
	color: #fff;
	font-size: 14px;
	margin-bottom: 0;
}

.bottom-footer-content-left {
	width: 40%;
	float: left;
	
}

.bottom-footer-content-right {
	width: 60%;
	display: inline-block;
	text-align: right;
}

.bottom-footer-content-right img {
	margin-left: 10px;
}


@media (max-width: 1024px) {
	.main-content {
		max-width: 814px;
		width: 100%;
		margin: 0 auto;
		float: none;
	}

	.sidebar {
		float: none;
		margin: 0 auto;
		margin-bottom: 20px;
		width: 300px;
	}

	.author {
		width: 30%;
		
	}

	.social-share {
		width: 70%;
	}

	ul.nav li {
		margin-bottom: 10px;
	}

	.order-now-ad h2 {
		font-size: 35px;
	}
}


@media (max-width: 768px) {
	
	.order-now-ad {
		height: 300px;
	}

}

@media (max-width: 600px) {
	.order-now-ad .left {
		width: 100%;
		padding: 0 10px;
	}

	.order-now-ad .right {
		width: 100%;
		float: none;
		text-align: center;
	}

	.order-now-ad .right img { 
		width: 60%;
		margin-top: 10px;
	}

	.order-now-ad {
		height: 400px;
	}
}

@media (max-width: 411px) {
	.main-content{
		padding: 10px;
	}
	
	.main-header-content-left{
		width: 100%;
		text-align: center;
	}

	.main-header-content-right {
		width: 100%;
		text-align: center;
	}

	ul.nav li:first-child {
		margin-left: 0;
	}

	.img-textwrap-right {
		clear: both;
		float: none;
	}

	.buy-button {
		width: 300px;
	}

	.order-now-ad h2 {
		font-size: 32px;
	}

	.absolute-arrow {
		display: none;
	}

	.bottom-footer-content-left {
		width: 100%;
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}

	.bottom-footer-content-right {
		width: 100%;
		text-align: center;
	}

	.image-size {
		width: 80%;
	}
}