html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	font: 100% Helvetica, Arial, sans-serif;
	color: #555a5d;
}

h1,
h2,
h3,
h4 {
	color: #333333;
}

h1 {
	letter-spacing: -1px;
}

* {
	box-sizing: border-box;
}

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

.for-desk {
	display: none;
}

@media (min-width: 768px) {
	.for-mob {
		display: none;
	}
	.for-desk {
		display: block;
	}
	h1 {
		font-size: 2rem;
		letter-spacing: -2px;
	}
}

@media (min-width: 1024px) {
	h1 {
		font-size: 2.4rem;
	}
	h2 {
		font-size: 1.8rem;
	}
}

/***** Layout Styles *****/

.container {
	width: 100%;
	max-width: 1100px;
	margin: auto;
	padding: 0 20px;
}

.container-800 {
	max-width: 800px;
}

.container-600 {
	max-width: 600px;
}

.container.full-width {
	max-width: 100%;
}

.m-auto {
	margin: auto;
}

/***** HEADER STYLES *****/

.banner {
	margin: 0 auto;
	padding: 14px 25px;
	font-size: 1rem;
	color: #fff;
	background: #dc3c3c;
	text-align: center;
}

.offer-timer-text {
	font-weight: 600;
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	.banner {
		padding: 6px 25px;
	}
}

/***** CLOCK TIMER *****/

#clockdiv,
#clockdiv > div {
	margin: 0 1px;
}

.urgency__timer-hours,
.urgency__timer-hours .hours {
	display: none;
}

/***** LOGO *****/

.logo-wrapper {
	width: 100%;
	padding: 15px;
	margin: auto;
	text-align: center;
	background: #eeeeee;
}

.logo {
	width: auto;
	height: 40px;
}

.as-seen-on-image {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: block;
}

.as-seen-on-heading {
	text-align: center;
	margin: 20px 0 5px;
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.as-seen-on-image {
		margin: 0 auto 20px;
		max-width: 400px;
	}
}

/***** HERO *****/

.hero {
	padding: 35px 25px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.hero .hero__title {
	color: #333333;
	margin-top: 0;
}

.hero .hero__subtitle {
	font-weight: 400;
	line-height: 1.5rem;
}

.hero .product-image {
	max-width: 300px;
}

@media (min-width: 768px) {
	.hero {
		min-height: 350px;
		background: url('../img/hero-bg-desk2.jpg') bottom center no-repeat;
		background-size: cover;
		background-attachment: fixed;
		justify-content: flex-start;
		position: relative;
		z-index: 10;
	}
	.hero .container {
		text-align: left;
		z-index: 1;
	}
	.hero.dark {
		color: #fff;
	}
	.hero:before {
		width: 100%;
		height: 100%;
		content: '';
		background: rgba(0, 0, 0, 0.5);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 0;
	}
	.hero .hero__title,
	.hero .hero__subtitle {
		margin: 0;
		text-align: center;
	}
	.hero.dark .hero__title,
	.hero.dark .hero__subtitle {
		color: #fff;
	}
	.hero .btn {
		margin: 15px auto;
	}
}

@media (min-width: 1024px) and (max-device-height: 1200px) {
	.hero {
		height: 60vh;
		min-height: 550px;
		background-position: top right;
	}
	.hero .hero__title,
	.hero .hero__subtitle {
		max-width: 600px;
		text-align: left;
	}
	.hero .hero__title {
		margin: 15px 0;
	}
	.hero .btn {
		margin: 15px 0;
	}
}

/***** BUTTON *****/

.btn {
	width: 100%;
	max-width: 320px;
	margin: auto;
	padding: 20px 15px;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 5px;
	display: block;
}

.btn:hover {
	cursor: pointer;
}

.btn-primary {
	color: #fff;
	background: #0fc351;
}

/***** PRODUCT LIST *****/

.product-details {
	padding: 60px 25px;
	background: #f5f5f5;
}

.product-details__heading,
.product-details__subheading {
	text-align: center;
}

.product-details__heading {
	margin: 0 0 15px;
}

.product-details__subheading {
	margin: 0;
	padding: 0;
	font-size: 1rem;
	font-weight: normal;
	color: #02b20b;
}

.product-details__content {
	text-align: center;
	line-height: 25px;
	margin-top: 0;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.product-details {
		padding: 60px 50px;
	}
	.product-details__heading {
		margin: 0;
	}
}

@media (min-width: 1024px) {
	.product-details {
		padding: 100px 25px;
	}
}

/***** FEATURE LIST *****/

.feature-list-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.feature-list__heading {
	margin: 0 0 5px 0;
	font-size: 1rem;
	line-height: 1em;
}

.feature-list {
	margin: 0 0 25px;
	padding: 0;
	list-style: none;
}

.feature-list-box > div {
	width: 100%;
	max-width: 300px;
	align-self: flex-start;
}

.feature-list li {
	padding: 6px 0 6px 25px;
	font-size: 0.9rem;
	text-align: left;
	line-height: normal;
	background: url('../img/checkbox.jpg') left center no-repeat;
	background-size: 18px;
}

@media (min-width: 667px) {
	.feature-list-box {
		flex-direction: row;
		margin-bottom: 50px;
	}
	.feature-list {
		margin: 0;
	}
	.feature-list li {
		padding: 5px 0 5px 25px;
	}
}

@media (min-width: 768px) {
	.feature-list li {
		padding: 8px 0 8px 25px;
	}
}

/***** END FEATURE LIST *****/

/***** KEY FEATURES *****/

.key-features {
	padding: 60px 0;
	text-align: center;
	color: #ffffff;
	background: #0058b3;
}

.key-features__heading {
	color: #ffffff;
	margin-top: 0;
}

.key-features-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.key-features-list li {
	width: 100%;
	max-width: 160px;
	margin: 0 10px 10px;
	padding: 10px;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.75em;
	text-align: center;
	text-transform: uppercase;
	background: #004995;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: start;
	justify-content: center;
}

.key-features__icon {
	width: 60px;
	margin: 15px 0;
}

@media (min-width: 570px) {
	.key-features-list li {
		max-width: 135px;
		margin: 0 10px;
	}
}

@media (min-width: 768px) {
	.key-features-list li {
		max-width: 165px;
	}
}

@media (min-width: 1024px) {
	.key-features {
		padding: 100px 0;
	}
	.key-features-list {
		margin: 0;
	}
	.key-features-list li {
		max-width: 220px;
		padding: 55px 10px;
		margin: 0 10px;
	}
}

@media (min-width: 1224px) {
	.key-features-list li {
		max-width: 230px;
		margin: 0 20px;
	}
}

/***** END KEY FEATURES *****/

/***** HOW IT WORKS *****/

.how-it-works {
	padding: 60px 0;
}

.how-it-works__heading,
.how-it-works__subheading {
	text-align: center;
	padding: 0 25px;
}

.how-it-works__heading {
	margin: 0;
}

.how-it-works__subheading {
	margin: 10px auto 30px;
	font-size: 1rem;
	font-weight: 400;
	color: #555a5d;
	max-width: 800px;
	line-height: 25px;
}

.how-to-content {
	padding: 0 25px 25px;
}

.how-to-content p {
	margin: 0;
	text-align: center;
	font-weight: bold;
}

.how-to-step.before .how-to-content p {
	color: #ff4836;
}

.how-to-step.after .how-to-content p {
	color: #02b20b;
}

.how-to-step:last-child .how-to-content {
	padding-bottom: 0;
}

@media (min-width: 480px) {
	.how-it-works {
		padding: 60px 50px;
	}
	.how-it-works__steps {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
}

@media (min-width: 667px) {
	.how-to-step {
		padding: 0 15px;
		flex: 1;
	}
	.how-to-content {
		padding: 0;
	}
	.how-to-content h3 {
		font-size: 1rem;
	}
}

@media (min-width: 1024px) {
	.how-it-works {
		padding: 100px 25px;
	}
}

/***** END HOW-TO *****/

/***** CUSTOMER REVIEWS *****/

.customers {
	padding: 60px 25px;
	text-align: center;
	background: #f5f5f5;
}

.customers h1 {
	margin-top: 0;
}

.customer-review {
	max-width: 500px;
	margin: 0 auto 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.customer-review:last-child {
	margin-bottom: 0;
}

.customer-review__heading {
	margin: 10px 0;
}

.customer-review__content {
	margin: 0;
	line-height: 25px;
}

.customer-review__location {
	margin: 10px 0;
	font-size: 0.8rem;
}

.customer-review__image,
.customer-review__stars {
	width: 150px;
}

.customer-review__image {
	border-radius: 50%;
}

@media (min-width: 768px) {
	.customer-reviews {
		display: flex;
		align-items: start;
	}
	.customer-review {
		padding: 0 15px;
		flex: 1;
		margin-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.customers {
		padding: 100px 25px;
	}
	.customer-review {
		padding: 0 25px;
		flex: 1;
		margin-bottom: 0;
	}
}

/***** END CUSTOMER REVIEWS *****/

/***** FAQ *****/

.frequently-asked-questions {
	padding: 60px 0;
}

.faq-container {
	width: 100%;
	margin: auto;
}

.faq__heading {
	margin: 0 0 25px;
	text-align: center;
}

.faq-wrapper {
	margin: auto;
	padding: 0;
	font-size: 1rem;
}

.faq {
	margin-bottom: 5px;
	border-bottom: 1px solid #e7e7e7;
	border-radius: 4px;
	text-align: left;
}

.faq a {
	color: #666;
	text-decoration: underline;
}

.faq .faq-header {
	padding: 15px 0 5px;
	display: flex;
	align-items: center;
}

.faq .faq-header:hover {
	cursor: pointer;
}

.faq .faq-title {
	margin: 0;
	padding: 0;
	flex: 1;
	font-size: 1rem;
	font-weight: normal;
	-webkit-transition: all ease 0.2s;
	/* Safari prior 6.1 */
	transition: all ease 0.2s;
	cursor: pointer;
}

.faq .faq-body {
	height: 0;
	padding: 0 0 10px;
	font-size: 0.9rem;
	word-break: break-word;
	color: #555;
	opacity: 0;
	transition: opacity 0.5s ease 0.1s, height 0.5s ease 0.1s,
		padding 0.5s ease 0.1s;
}

.faq .faq-body p {
	height: 0;
	margin: 0 auto;
	display: none;
	opacity: 0;
	transition: opacity 0.25s ease 0.05s, margin 0.5s ease 0.1s,
		height 0.5s ease 0.1s;
}

.faq.faq-active .faq-title {
	color: #004995;
}

.faq.faq-active .faq-body {
	height: auto;
	display: block;
	opacity: 1;
}

.faq.faq-active .faq-body p {
	height: auto;
	margin: 0 auto 1em;
	padding-right: 20px;
	line-height: 20px;
	display: block;
	opacity: 1;
}

.faq-icon {
	width: 15px;
	height: 15px;
	background-image: url('../img/faq-icons.jpg');
	background-size: 30px auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	transition: transform 0.5s ease 0ms;
}

.faq-icon.icon-plus {
	background-position: 0px 0px;
}

.faq-active .faq-icon {
	transform: rotate(180deg);
	background-position: -15px 0;
}

@media (min-width: 768px) {
	.faq-container {
		width: 85%;
	}
	.faq-wrapper {
		padding-top: 15px;
	}
	.faq .faq-heading {
		padding: 25px;
	}
}

@media (min-width: 1024px) {
	.frequently-asked-questions {
		padding: 100px 25px;
	}
	.faq-container {
		width: 75%;
	}
}

/***** END FAQ *****/

.user-action {
	padding: 60px 25px;
	text-align: center;
	background: #f5f5f5;
}

.user-action .container {
	margin: auto;
}

.user-action__heading {
	margin: 0 0 25px;
}

.user-action__content {
	line-height: 1.5rem;
	margin-top: 0;
}

.user-action .btn-cta {
}

@media (min-width: 768px) {
	.user-action .container {
		width: 75%;
		margin: auto;
	}
}

@media (min-width: 1024px) and (max-device-height: 1200px) {
	.user-action {
		padding: 100px 25px;
	}
	.user-action .container {
		max-width: 1100px;
		width: 45%;
	}
}

/* CUSTOM STYLES */

.veins {
	padding: 60px 20px;
}

.veins-heading {
	text-align: center;
}

.veins-content {
	display: flex;
}

.veins-left,
.veins-right {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.veins-left {
	margin-right: 20px;
}

.veins-right {
	margin-left: 20px;
}

.veins-left img {
	margin-bottom: 20px;
}

.veins-left ul {
	padding-left: 0;
	list-style-type: none;
}

.veins-left ul li {
	background-image: url('../img/check.png');
	background-size: 20px;
	padding-left: 25px;
	padding-top: 2px;
	padding-bottom: 10px;
	background-repeat: no-repeat;
	background-position: left top;
	font-size: 14px;
}

.veins-left p {
	text-align: center;
	font-style: italic;
	line-height: 1.6;
}

.veins-left p cite {
	display: block;
	margin-top: 10px;
	font-weight: bold;
	font-style: normal;
}

.veins-right h5 {
	font-size: 18px;
	margin-bottom: 0;
}

.veins-right p {
	line-height: 1.4;
}

.veins-right a {
	display: none;
}

@media (max-width: 768px) {
	.veins-content {
		flex-direction: column;
	}
	.veins-left,
	.veins-right {
		width: 100%;
		margin: 0;
	}
	.veins-left a {
		display: none;
	}
	.veins-right a {
		display: inline-block;
		margin-top: 40px;
	}
}

.swollen {
	background-color: #fff;
}

.swollen-content {
	display: flex;
}

.swollen-header {
	text-align: center;
}

.swollen-content a {
	width: 50%;
	align-self: center;
}

.swollen-content__right a {
	width: 50%;
	align-self: center;
}

@media (max-width: 768px) {
	.swollen-content {
		flex-direction: column;
	}

	.swollen-content a {
		width: 100%;
	}
	.swollen-content img {
		width: 100%;
	}

	.swollen h2 {
		margin-top: 5px !important;
		font-size: 20px !important;
	}
}

.brands {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	padding: 10px 0;
	background-color: #dddddd;
}

.brands img {
	max-height: 40px;
	width: auto;
	margin: 15px;
}

@media (max-width: 768px) {
	.brands img {
		max-height: 30px;
	}
}

.features {
	background-color: #ededed;
	padding: 60px 20px;
}

.features-content {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.features-item {
	width: calc(33% - 30px);
	margin: 0 15px;
	text-align: center;
}

.features-item img {
	max-height: 70px;
	width: auto;
}

.features-item p {
	font-size: 14px;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.features-item {
		width: calc(50% - 30px);
		margin-bottom: 20px;
	}
}

@media (max-width: 425px) {
	.features-item {
		width: 100%;
	}
}

.harvard {
	display: flex;
	align-items: center;
	padding: 20px;
	padding-left: 80px;
	padding-right: 80px;
	background-color: #eee;
	font-size: 20px;
}

@media (max-width: 768px) {
	.harvard {
		flex-direction: column;
	}
}

.harvard img {
	width: auto;
	max-height: 100px;
	margin-right: 30px;
}

.harvard p {
	margin: 0;
}

.swollen-content {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.swollen-content h2 {
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 10px;
}

.swollen-content__right {
	margin-left: 30px;
}

.swollen-content__right p {
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	line-height: 1;
	color: rgb(185, 0, 0);
	font-size: 28px;
	font-weight: bold;
}

.swollen-content__right a {
	margin: 0;
	margin-bottom: 10px;
	width: 100%;
	max-width: 100%;
}

.swollen-content__right img {
	max-width: 220px;
}

@media (max-width: 768px) {
	.harvard {
		flex-direction: column;
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
		font-size: 18px;
	}
	.harvard b {
		display: block;
	}

	.harvard img {
		margin-bottom: 30px;
		margin-right: 0;
	}

	.swollen-content {
		align-items: flex-start;
	}

	.swollen-content__right {
		margin-left: 10px;
		display: flex;
		flex-direction: column;
	}

	.swollen-content h2 {
		font-size: 30px;
	}

	.swollen-content__right p {
		font-size: 20px;
	}

	.swollen-content__right img {
		align-self: center;
		max-width: 220px;
	}
}

/* BENEFITS */
.benefits {
	padding: 50px 0;
}

.benefits h1 {
	margin-top: 10px;
	margin-bottom: 15px;
	text-align: center;
}
.benefits h2 {
	text-align: center;
	font-style: italic;
	margin-bottom: 10px;
}
.benefits h3 {
	text-align: center;
}

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

.benefits-content__left {
	width: 70%;
}

.benefits-content__left img {
	margin-bottom: 20px;
	max-height: 400px;
}

.benefits-content__left img:last-child {
	margin-bottom: 0;
}

.benefits-content__right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 30px;
	font-size: 20px;
	line-height: 1.6;
}

.benefits-content__right p {
	margin-bottom: 14px;
	font-size: 20px;
	font-weight: bold;
}

.benefits-content__right ul {
	margin: 0;
	padding-left: 10px;
	list-style-type: none;
}

.benefits-content__right ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
}

.benefits-content__right ul li:before {
	position: absolute;
	left: -10px;
	top: 4px;
	content: '';
	background-image: url('../img/checkmark.svg');
	background-repeat: no-repeat;
	height: 20px;
	width: 20px;
}

@media (max-width: 768px) {
	.benefits-content {
		flex-direction: column;
	}

	.benefits-content__left a:last-child {
		display: none;
	}

	.benefits-content__right {
		font-size: 18px;
		line-height: 1.4;
	}

	.benefits-content__left {
		width: 100%;
	}
}
