/*==========================================================

    Theme Name: Juice
    Author: OG Web Solutions
    Author URI: https://www.ogwebsolutions.com/
    Version:  1.0
==========================================================*/


/*==========================================================
	CSS Index 
============================================================
    # Global Styles
		## Preloader Spinner
		## Back to top

	# Header
	# Footer
	# Homepage
		## banner section
		## About Hello section
		## Benifit section
		## Customer Reviews section
		## FAQ Section

	# Upsell1 page
	# Upsell2 page
	# Thank-you page
	# Order page
	# Privacy Policy & Term and Conditions page
	# Error || 404 || Page not found

==========================================================*/

/*==========================================================
    # Global Styles
==========================================================*/


/* google font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

/* font-family: 'Montserrat', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Caveat', cursive;*/

/*---------- Typography ----------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	font-family: 'Montserrat', sans-serif;
}

@media screen and (min-width:1200px){
	.container {
		max-width: 1170px;
		padding-left: 15px;
		padding-right: 15px;
		margin-left: auto;
		margin-right: auto;
	}	
}


/*========== Section Title ==========*/

.heading-content h2 {
	font-size: 60px;
	line-height: 1.3;
	text-align: center;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
}

@media (max-width: 991px) {
	.heading-content h2 {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	.heading-content h2 {
		font-size: 36px;
		line-height: 1.2;
	}
}

@media (max-width: 360px) {
	.heading-content h2 {
		font-size: 32px;
	}
}

.heading-content p {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
	font-family: 'Caveat', cursive;
}

@media (max-width: 991px) {
	.heading-content p {
		font-size: 24px;
	}
}


/*------------------------------------------------
	[ Other Typography ]
------------------------------------------------*/

a {
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: none;
	outline: none;
	color: #F1F4F8;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

img {
	max-width: 100%;
}

video {
	width: 100%;
	object-fit: cover;
	height: auto;
	box-shadow: 1px 1px 4px 4px gainsboro;
	border: 6px solid #ffff;
}

.text-red {
	color: #f00;
}

/* Button */
.buy-btn {
	font-size: 30px;
	line-height: 19px;
	font-weight: 700;
	color: #ffffff;
	border-radius: 5px;
	background: linear-gradient(to bottom, #ff9f44, #ff9234, #ff8325, #ff7314, #ff6200);
	padding: 30px 100px 30px 100px;
	display: inline-block;
	margin-top: 40px;
	border: 1px solid #ff7314;
}

@media (max-width: 991px) {
	.buy-btn {
		font-size: 24px;
		padding: 20px 60px 20px 60px;
	}
}

/*==========  Section Padding ==========*/
.section-spacer {
	padding-top: 60px;
	padding-bottom: 60px;
}

/* ## Preloader Spinner */
.preloadSpinner{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #ffffff;
	z-index: 99999;
}

.preloadSpinner::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -50px;
	margin-left: -50px;
	width: 100px;
	height: 100px;
	background-color: #074884;
	border: 1px solid #f0f0f0;
	border-radius: 100%;
	animation: spinner 500ms infinite ease-in-out;
}

@keyframes spinner{
	to{
		transform: rotate(360deg);
	}
	0%{
		transform: scale(1);
		opacity: 1;
	}
	50%{
		transform: scale(0.5);
		opacity: 0.5;
	}
	100%{
		transform: scale(1);
		opacity: 1;
	}
}

@media screen and (max-width:767.98px) {
	.preloadSpinner::after{
		width: 50px;
		height: 50px;
		margin-top: -25px;
		margin-left: -25px;
	}
}

/* ## Back to top */
.backtotop{
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 40px;
	width: 40px;
	background-color: #f0f0f0;
	cursor: pointer;
	border: 2px solid #074884;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2);
	border-radius: 50%;
	opacity: 0.9;
	transition: opacity 200ms linear;
	display: none;
}

.backtotop::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -7px;
	margin-top: -4px;
	transform: rotate(-45deg);
	height: 0px;
	width: 0px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	padding: 5px;
	border-color: #074884;
}

.backtotop:hover{
	opacity: 1;
	transition: opacity 200ms linear;
}


/* ================================================== */
/* # Header */
/* ================================================== */

header {
	background: #fff;
	padding: 10px 0;
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	position: fixed;
	width: 100%;
	z-index: 9;
}

.navbar-brand .img-fluid {
	width: 180px;
}

.header-text .mail-logo {
	width: 20px;
	margin-right: 5px;
}

header .navbar-brand {
	padding: 0px 0px;
}

header .navbar-brand p {
	margin-top: 20px;
}

.fa-envelope {
	vertical-align: middle;
	margin-right: 4px;
}

/*==========  Header for all Inner Page ==========*/
.innerPages-header .header-text {
	font-size: 17px;
	line-height: 1.2px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #2a2a2a;
}

.innerPages-header .header-text .fal {
	position: relative;
	font-size: 25px;
	left: -6px;
	top: 4px;
}

/* ================================================== */
/* # Footer */
/* ================================================== */

footer {
	border-top: 5px solid rgb(254, 193, 72);
	background-color: rgb(42, 42, 42);
	padding: 55px 0;
}

footer .f-logo {
	text-align: center;
	display: inline-block;
	margin-bottom: 22px;
}

footer .cf-logo img {
	width: 212px;
	margin-bottom: 20px;
}

footer .footer-para {
	line-height: 1.5;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 20px;
}

footer p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 15px;
}
footer p.copyrights{
	margin-bottom: 0;
}

footer p .bar {
	padding: 0 15px;
}

footer a {
	color: rgba(255, 255, 255, 0.5);
}

footer a:hover {
	color: #fff;
}

/*---------- Responsive view ----------*/
@media (max-width: 767px) {
	footer{
		padding: 40px 0;
	}
	footer .footer-para {
		font-size: 16px;
	}
	footer .cf-logo img {
		width: 180px;
	}
	footer p .bar {
		padding: 0 10px;
	}
}

/*============================================
            # Homepage
============================================*/

main {
	padding-top: 60px;
}

/* ## banner section  */
.banner-section {
	padding-top: 72px;
	position: relative;
	background-image: url("../images/banner.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	padding-bottom: 5px;
}

.banner-section .juice-image {
	text-align: center;
}

.banner-section h1 {
	font-family: 'Oswald', sans-serif;
	;
	font-size: 88px;
	color: #074884;
	line-height: 1.2;
	font-weight: 600;
	font-style: italic;
}

.banner-section h1 .text-red {
	text-decoration: underline;
	text-decoration-thickness: 3px;
}

.banner-section .font-weight-normal {
	color: #f00;
	font-family: 'Caveat', cursive;
	font-size: 76px;
	font-weight: 700 !important;
	padding-left: 30px;
	position: relative;
}

.banner-section .font-weight-normal::after {
	position: absolute;
	content: '';
	background: url("../images/free-after.png");
	display: inline-block;
	top: -20px;
	left: 0;
	width: 335px;
	height: 125px;
}

.banner-section p {
	font-size: 36px;
	line-height: 1.2;
	font-family: 'Caveat', cursive;
	color: #3c3c3c;
	font-weight: 700;
	margin-top: 30px;
}

/*---------- Responsive view ----------*/
@media (max-width: 1199px) {
	.banner-section {
		padding-top: 80px;
		padding-bottom: 45px;
	}
	.banner-section h1 {
		font-size: 75px;
	}
	.banner-section .font-weight-normal {
		font-size: 70px;
	}
	.banner-section .font-weight-normal::after {
		top: -15px;
	}
}

@media (max-width: 991px) {
	.banner-section .font-weight-normal::after {
		display: none;
	}
	.banner-section h1 {
		font-size: 50px;
	}
	.buy-button {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.navbar-brand .img-fluid {
		margin-bottom: 10px;
	}
	.banner-section h1 {
		font-size: 45px;
	}
	.banner-section p {
		font-size: 28px;
		margin-top: 5px;
	}
	.banner-section .font-weight-normal {
		font-size: 55px;
		padding-left: 0px;
	}
	.banner-section .buy-btn {
		font-size: 20px;
		margin-top: 20px;
		padding: 25px 70px;
	}
}

@media (max-width: 412px) {
	.banner-section h1 {
		font-size: 40px;
	}
	.banner-section .font-weight-normal {
		font-size: 55px;
	}
	.banner-section .buy-btn {
		padding: 15px 40px 15px 40px;
	}
}

@media (max-width: 420px) {
	.section-spacer {
		padding-top: 35px;
		padding-bottom: 40px;
	}
	.banner-section .juice-image .img {
		max-width: 70%;
	}
	.faq-section {
		padding-top: 35px !important;
		padding-bottom: 50px !important;
	}
}


/* ## About Hello section  */

.about-section {
	background-color: #fff;
}

.about-section .heading-content h2 {
	color: #3c3c3c;
	font-style: italic;
}

.about-section .heading-content p {
	color: #2c2c2c;
}

.about-section .drink-list {
	display: flex;
	flex-direction: column;
	align-items: start;
	margin-top: 20px;
}

.about-section .drink-list ::marker {
	color: #ff0000;
	font-size: 25px;
}

.about-section .drink-list h3 {
	display: list-item;
	list-style-type: disc;
	list-style-position: inside;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 700;
	color: #3c3c3c;
}

.about-section .drink-list p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	color: #3c3c3c;
	margin-top: 12px;
}

.about-section .bottom-para p {
	font-size: 42px;
	line-height: 1;
	font-family: 'Caveat', cursive;
	font-weight: 400;
	margin-top: 12px;
	text-align: center;
}

/*---------- Responsive view ----------*/
@media (max-width: 1199px) {
	.about-section .bottom-para p {
		font-size: 35px;
	}
}

@media (max-width: 991px) {
	.about-section .bottom-para p {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.about-section .heading-content p {
		margin-left: 0px;
		margin-right: 0px;
	}
	.about-section .drink-list h3 {
		font-size: 18px;
	}
	.about-section .drink-list {
		margin-top: 0px;
	}
}

@media (max-width: 412px) {
	.about-section .drink-list {
		margin-top: 8px;
	}
	.about-section .drink-list p {
		margin-top: 4px;
	}
	.about-section .bottom-para p {
		font-size: 25px;
	}
}

@media (max-width: 360px) {
	.about-section .drink-list h3 {
		font-size: 18px;
	}
	.about-section .drink-list p {
		margin-top: 0px;
	}
}

/* ## Benifit section  */
.benifit-section {
	position: relative;
	background-image: url("../images/benifit-poster.jpg");
	background-repeat: no-repeat;
	overflow: hidden;
	background-size: cover;
}

.benifit-section .heading-content h2 {
	color: #ffffff;
	font-style: italic;
}

.benifit-section p {
	color: #ffffff;
}

.benifit-section .buy-button::before {
	content: url(../images/arrow-left.png);
	position: absolute;
	left: 15%;
	top: 50%;
	margin-top: -15px;
}

.benifit-section .buy-button:after {
	content: url(../images/arrow-right.png);
	position: absolute;
	right: 15%;
	top: 50%;
	margin-top: -15px;
}

.benifit-section .buy-btn {
	margin-top: 8px;
}

/*---------- Responsive view ----------*/
@media (max-width: 1199px) {
	.benifit-section {
		background-position: 73% 100%;
	}
}

@media (max-width: 991px) {
	.benifit-section .buy-button:after {
		display: none;
	}
	.benifit-section .buy-button::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.benifit-section .buy-btn {
		font-size: 20px;
		margin-top: 20px;
	}
}

@media (max-width: 412px) {
	.benifit-section .buy-btn {
		padding: 15px 50px 15px 50px;
	}
}

/* ## Customer Reviews section */
.customer-review-section {
	background-color: #fff;
}

.customer-review-section .heading-content h2 {
	color: #3c3c3c;
	font-style: italic;
}

.customer-review-section .heading-content p {
	color: #2c2c2c;
}

.customer-review-section .review-list {
	display: flex;
	width: 100%;
	margin-top: 20px;
}

.customer-review-section .review-list figure {
	width: 33%;
	z-index: 5;
	margin-bottom: 40px;
}

.customer-review-section .customer-detail {
	width: 75%;
}

.customer-review-section .customer-detail h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	color: #fffefe;
	position: relative;
	background: #e899a7;
	padding: 3px 9px 6px;
}

.customer-review-section .customer-detail h3::before {
	position: absolute;
	left: -13px;
	top: 0px;
	content: '';
	width: 0;
	height: 0;
	border-left: 13px solid transparent;
	border-right: 0 solid transparent;
	border-bottom: 51px solid #e899a7;
}

.customer-review-section .customer-detail h3::after {
	position: absolute;
	right: -13px;
	top: 0px;
	content: '';
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 14px solid transparent;
	border-top: 51px solid #e899a7;
}

.customer-review-section .customer-detail .detail2 h3 {
	background: #f2a46c;
}

.customer-review-section .customer-detail .detail2 h3::before {
	border-bottom-color: #f2a46c;
}

.customer-review-section .customer-detail .detail2 h3::after {
	border-top-color: #f2a46c;
}

.customer-review-section .customer-detail .detail3 h3 {
	background: #66d6c9;
}

.customer-review-section .customer-detail .detail3 h3::before {
	border-bottom-color: #66d6c9;
}

.customer-review-section .customer-detail .detail3 h3::after {
	border-top-color: #66d6c9;
}

.customer-review-section .customer-detail .detail4 h3 {
	background: #369ef5;
}

.customer-review-section .customer-detail .detail4 h3::before {
	border-bottom-color: #369ef5;
}

.customer-review-section .customer-detail .detail4 h3::after {
	border-top-color: #369ef5;
}

.customer-review-section .customer-detail p {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 500;
	color: #3c3c3c;
	position: relative;
	padding-left: 10px;
	margin-top: 15px;
}

.customer-review-section .customer-detail p::before {
	content: '';
	width: 5px;
	height: 100%;
	background: #e899a7;
	position: absolute;
	top: 0;
	left: -5px;
	transform: skew(-10deg);
	-o-transform: skew(-10deg);
	-moz-transform: skew(-10deg);
	-webkit-transform: skew(-10deg);
}

.customer-review-section .customer-detail .detail2 p::before {
	background: #f2a46c;
}

.customer-review-section .customer-detail .detail3 p::before {
	background: #66d6c9;
}

.customer-review-section .customer-detail .detail4 p::before {
	background: #369ef5;
}

/*---------- Responsive view ----------*/
@media (max-width: 1199px) {
	.customer-review-section .customer-detail h3::before {
		left: -12px;
	}
}

@media (max-width: 991px) {
	.customer-review-section .review-list {
		max-width: 325px;
		margin: 0 auto;
		flex-direction: column;
		margin-top: 20px;
	}
	.customer-review-section .review-list figure {
		width: 100%;
		text-align: center;
		margin-left: 5px;
		margin-bottom: 15px;
	}
	.customer-review-section .customer-detail {
		width: 100%;
	}
	.customer-review-section .customer-detail h3 {
		font-size: 38px;
	}
	.customer-review-section .customer-detail h3::before {
		border-bottom: 47px solid #e899a7;
	}
	.customer-review-section .customer-detail .detail2 h3::before {
		border-bottom: 47px solid #f2a46c;
	}
	.customer-review-section .customer-detail .detail3 h3::before {
		border-bottom: 47px solid #66d6c9;
	}
	.customer-review-section .customer-detail .detail4 h3::before {
		border-bottom: 47px solid #369ef5;
	}
	.customer-review-section .customer-detail h3::after {
		border-top: 48px solid #e899a7;
	}
	.customer-review-section .customer-detail .detail2 h3::after {
		border-top: 48px solid #f2a46c;
	}
	.customer-review-section .customer-detail .detail3 h3::after {
		border-top: 48px solid #66d6c9;
	}
	.customer-review-section .customer-detail .detail4 h3::after {
		border-top: 48px solid #369ef5;
	}
	.customer-review-section .customer-detail p {
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.customer-review-section .review-list {
		max-width: 400px;
	}
	.customer-review-section .col-md-6 {
		margin-top: 20px;
	}
	.customer-review-section .customer-detail {
		margin-top: -15px;
		text-align: center;
	}
	.customer-review-section .customer-detail h3::before {
		display: none;
	}
	.customer-review-section .customer-detail h3::after {
		display: none;
	}
	.customer-review-section .customer-detail p::before {
		display: none;
	}
	.customer-review-section .customer-detail p{
		padding-left: 0;
	}
	.customer-review-section .heading-content p{
		margin-left: auto;
    	margin-right: auto;
	}
}

@media (max-width: 568px) {
	.customer-review-section .customer-detail {
		
		text-align: center;
	}
	.customer-review-section .review-list {
		max-width: 300px;
	}
	.customer-review-section .customer-detail h3 {
		font-size: 30px;
	}
}

/* ## FAQ Section  */

.faq-section {
	padding-top: 65px;
	background-color: #f7f7f7;
}

.faq-section .heading-content {
	margin-bottom: 35px;
}

.faq-section .heading-content p {
	color: #2c2c2c;
	font-family: 'Caveat', Helvetica, sans-serif !important;
}

.accordion .accordion-section {
	border-bottom: 1px solid #000000;
}

.accordion .accordion-section:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.accordion .accordion-section-title {
	font-size: 20px;
	line-height: 1.5;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	position: relative;
	display: block;
	transition: ease 0.3s all;
	color: #2a2a2a;
	padding: 20px 0;
	padding-right: 40px;
}

.accordion .accordion-section-title.active {
	color: #074884;
	border-bottom: 1px solid #074884;
}

.accordion .accordion-section-title:after {
	position: absolute;
	right: 10px;
	top: 35%;
	margin-top: 8px;
	content: '';
	height: 0;
	width: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #3c3c3c;
}

.accordion .accordion-section-title.active:after {
	border-bottom: 7px solid #074884;
	border-top: 0;
	border-bottom: 7px solid #074884;
}

.accordion-section-content {
	display: none;
}

.accordion-section-content p {
	font-size: 18px;
	color: #3c3c3c;
	line-height: 1.5;
	padding: 25px 0;
}

/*---------- Responsive view ----------*/
@media (max-width: 767px) {
	.accordion {
		margin-top: -20px;
	}
	.accordion .accordion-section-title {
		font-size: 18px;
		padding-right: 30px;
	}
	.accordion-section-content p {
		font-size: 16px;
	}
}

@media (max-width: 412px) {
	.accordion .accordion-section-title {
		font-size: 15px;
	}
	.accordion-section-content p {
		font-size: 15px;
	}
	.accordion .accordion-section-title:after {
		right: 5px;
		margin-top: 12px;
	}
}


/*============================================
            # Upsell1 page
============================================*/

/* ## Upsell1 banner start  */
.upsell-banner {
	padding-top: 72px;
	position: relative;
	background-image: url("../images/upsell-banner.png");
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	padding-bottom: 78px;
}

.upsell-banner h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 80px;
	color: #ffffff;
	line-height: 1.5;
	font-weight: 600;
	font-style: italic;
}

.upsell-banner .text-green {
	border-bottom: 2px solid #befe00;
	color: #befe00;
}

.upsell-banner h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	color: #ffffff;
	line-height: 1.5;
	font-weight: 600;
	font-style: italic;
}

.upsell-banner p {
	font-family: 'Caveat', cursive;
	font-size: 36px;
	color: #ffffff;
	line-height: 1.2;
	font-weight: 600;
	font-style: italic;
	margin-top: 22px;
}

/*---------- Responsive view ----------*/
@media (max-width: 1199px) {
	.upsell-banner {
		background-position: 73% 100%;
	}
	.upsell-banner h1 {
		font-size: 70px;
	}
	.upsell-banner h2 {
		font-size: 24px;
	}
	.upsell-banner p {
		font-size: 32px;
	}
}

@media (max-width: 991px) {
	.upsell-banner h1 {
		font-size: 55px;
	}
	.upsell-banner h2 {
		font-size: 22px;
	}
	.upsell-banner p {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.upsell-banner {
		padding-top: 72px;
		padding-bottom: 35px;
	}
	.upsell-banner h1 {
		font-size: 45px;
		line-height: 1.3;
	}
	.upsell-banner h2 {
		font-size: 20px;
	}
	.upsell-banner p {
		font-size: 24px;
		margin-top: 10px;
	}
	.upsell-banner p br {
		display: none;
	}
}

@media (max-width: 420px) {
	.flavour-section .drink-image .image {
		max-width: 70%;
	}
}

@media (max-width: 412px) {
	.upsell-banner h1 {
		font-size: 41px;
		margin-bottom: 20px;
	}
	.upsell-banner h2 {
		font-size: 17px;
	}
	.upsell-banner p {
		font-size: 22px;
	}
}

/* ## flavour-section starts */
.flavour-section {
	padding-top: 80px;
	padding-bottom: 60px;
}

.flavour-section h2 {
	font-size: 42px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	background-color: #369ef5;
	color: #fff;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	padding: 35px 92px;
}

.flavour-section h2::before {
	width: 0;
	height: 0;
	border: 0 solid transparent;
	border-top-width: 62px;
	border-bottom-width: 62px;
	border-left: 50px solid #ffffff;
	position: absolute;
	left: -1px;
	top: 0;
	content: '';
}

.flavour-section h2::after {
	width: 0;
	height: 0;
	border: 0 solid transparent;
	border-top-width: 62px;
	border-bottom-width: 62px;
	border-right: 50px solid #ffffff;
	position: absolute;
	right: -1px;
	top: 0;
	content: '';
}

.flavour-section .description p {
	font-size: 21px;
	line-height: 1.2;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #2a2a2a;
	margin-top: 25px;
}

.description-list ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}

.description-list li {
	position: relative;
}

.description-list li::before {
	position: absolute;
	top: 4px;
	left: -10px;
	background-repeat: no-repeat;
	content: url(../images/arrow-li.png);
}

.description-list li {
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	align-items: start;
	color: #3c3c3c;
	margin-bottom: 22px;
	width: 50%;
	padding: 0 25px;
}

.description-last h3 {
	font-size: 70px;
	line-height: 1.3;
	font-family: 'Caveat', cursive;
	font-weight: 700;
	color: #ff0000;
	margin-top: 18px;
}

.description-last h3 {
	position: relative;
}

.description-last h3::before {
	position: absolute;
	top: -28px;
	left: 195px;
	background-repeat: no-repeat;
	content: url(../images/before-arrow.png);
}

.description-last h3::after {
	position: absolute;
	top: -28px;
	right: 195px;
	background-repeat: no-repeat;
	content: url(../images/after-arrow.png);
}

.description-button .buy-btn {
	margin-top: 15px;
}

.description-button a {
	padding: 20px 40px 20px 40px;
}

.description-button .buy-btn .btnmain {
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	display: block;
}

.description-button .buy-btn .btnsub {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

.description-button {
	margin-bottom: 10px;
}

.button-bottom a {
	font-size: 14px;
	font-family: 'Montserrat';
	font-weight: 500;
	line-height: 2;
	border-bottom: 1px solid;
	color: #3c3c3c;
}

/*---------- Responsive view ----------*/
@media (max-width: 1199px) {
	.flavour-section h2 {
		font-size: 32px;
	}
	.flavour-section h2::before {
		border-top-width: 55px;
		border-bottom-width: 55px;
		border-left: 45px solid #ffffff;
	}
	.flavour-section h2::after {
		border-top-width: 55px;
		border-bottom-width: 55px;
		border-right: 45px solid #ffffff;
	}
	.flavour-section .description p {
		font-size: 20px;
	}
	.description-last h3::before {
		display: none;
	}
	.description-last h3::after {
		display: none;
	}
}

@media (max-width: 991px) {
	.flavour-section h2 {
		padding: 25px 35px;
		font-size: 28px;
	}
	.flavour-section h2::before {
		border-top-width: 40px;
		border-bottom-width: 44px;
		border-left: 28px solid #ffffff;
	}
	.flavour-section h2::after {
		border-top-width: 40px;
		border-bottom-width: 44px;
		border-right: 28px solid #ffffff;
	}
	.description-last h3 {
		font-size: 65px;
	}
}

@media (max-width: 767px) {
	.flavour-section {
		padding-top: 40px;
		padding-bottom: 45px;
	}
	.flavour-section h2 {
		font-size: 25px;
		margin-left: 70px;
	}
	.flavour-section .description p {
		font-size: 18px;
		margin-top: 8px;
	}
	.description-list li {
		font-size: 16px;
		line-height: 1.5;
	}
	.description-last h3 {
		font-size: 60px;
	}
	.description-button .buy-btn .btnmain {
		font-size: 20px;
		line-height: 28px;
	}
	.description-button .buy-btn .btnsub {
		line-height: 28px;
	}
	.description-button a {
		padding: 15px 30px 15px 30px;
	}
	.button-bottom a {
		font-size: 14px;
	}
}

@media (max-width: 568px) {
	.flavour-section h2 {
		padding: 15px 35px;
	}
	.flavour-section h2 {
		font-size: 22px;
		margin-left: 0px;
	}
	.flavour-section h2::before {
		border-top-width: 40px;
		border-bottom-width: 40px;
		border-left: 30px solid #ffffff;
	}
	.flavour-section h2::after {
		border-top-width: 40px;
		border-bottom-width: 40px;
		border-right: 30px solid #ffffff;
	}
	.description-last h3 {
		font-size: 55px;
		margin-top: 0px;
	}
	.description-button a {
		padding: 15px 13px 18px 13px;
	}
	.description-button .buy-btn .btnmain {
		font-size: 16px;
		line-height: 22px;
	}
	.description-button .buy-btn .btnsub {
		line-height: 25px;
	}
	.description-button .buy-btn .btnsub {
		font-size: 12px;
	}
	.description-list {
		padding-left: 20px;
	}
	.button-bottom {
		padding-left: 20px;
		padding-right: 20px;
	}
	.button-bottom a {
		line-height: 25px;
	}
}

@media (max-width: 412px) {
	.description-last h3 {
		font-size: 50px;
	}
	.description-button .buy-btn .btnmain {
		font-size: 14px;
	}
	.description-button .buy-btn .btnsub {
		font-size: 12px;
	}
	.description-button a {
		padding: 12px 7px 12px 7px;
	}
}

/* ##n Upsell1 customer review page start */
.upsell1 .customer-review-section {
	background-color: #f7f7f7;
}

/* ##n Upsell1 FAQ Section start  */
.upsell1 .faq-section {
	padding-top: 65px;
	background-color: #ffffff;
}

/*===========================================
            # Upsell2 page
============================================*/
/*Upsell2 flavour-section starts */
.upsell2 .flavour-section h2 {
	font-size: 36px;
	padding: 20px 176px;
	width: 90%;
	margin: 0 auto;
}

.upsell2 .flavour-section h2::before {
	border-top-width: 60px;
	border-bottom-width: 70px;
	left: -1px;
}

.upsell2 .flavour-section h2::after {
	border-top-width: 60px;
	border-bottom-width: 70px;
	right: -2px;
}

.upsell2 .flavour-section .drink-images .image {
	max-width: 75%;
}

/*---------- Responsive view ----------*/
@media (max-width: 991px) {
	.upsell2 .flavour-section h2 {
		padding: 15px 60px;
		font-size: 30px;
	}
	.upsell2 .flavour-section h2::before {
		border-top-width: 50px;
		border-bottom-width: 52px;
		border-left: 40px solid #ffffff;
	}
	.upsell2 .flavour-section h2::after {
		border-top-width: 50px;
		border-bottom-width: 52px;
		border-right: 40px solid #ffffff;
	}
}

@media (max-width: 767px) {
	.upsell2 .flavour-section h2 {
		padding: 10px 18px;
		font-size: 26px;
	}
	.upsell2 .flavour-section h2::before {
		border-top-width: 40px;
		border-bottom-width: 45px;
		border-left: 35px solid #ffffff;
	}
	.upsell2 .flavour-section h2::after {
		border-top-width: 40px;
		border-bottom-width: 45px;
		border-right: 35px solid #ffffff;
	}
}

@media (max-width: 568px) {
	.upsell2 .flavour-section h2 {
		padding: 10px 30px;
		font-size: 22px;
	}
	.upsell2 .flavour-section h2::before {
		border-top-width: 50px;
		border-bottom-width: 50px;
		border-left: 30px solid #ffffff;
	}
	.upsell2 .flavour-section h2::after {
		border-top-width: 50px;
		border-bottom-width: 50px;
		border-right: 30px solid #ffffff;
	}
	.description-list li {
		width: 100%;
	}
}

@media (max-width: 412px) {
	.upsell2 .flavour-section h2 {
		padding: 12px 30px;
		font-size: 18px;
	}
	.upsell2 .flavour-section h2::before {
		border-top-width: 43px;
		border-bottom-width: 45px;
		border-left: 25px solid #ffffff;
	}
	.upsell2 .flavour-section h2::after {
		border-top-width: 43px;
		border-bottom-width: 45px;
		border-right: 25px solid #ffffff;
	}
}

@media (max-width: 360px) {
	.upsell2 .flavour-section h2 {
		padding: 10px 25px;
		font-size: 16px;
	}
	.upsell2 .flavour-section h2::before {
		border-top-width: 38px;
		border-bottom-width: 42px;
		border-left: 25px solid #ffffff;
	}
	.upsell2 .flavour-section h2::after {
		border-top-width: 38px;
		border-bottom-width: 40px;
		border-right: 25px solid #ffffff;
	}
}

/* ## Upsell2 customer review page start */
.upsell2 .customer-review-section {
	background-color: #f7f7f7;
}

/* ## Upsell2 FAQ Section start  */

.upsell2 .faq-section {
	padding-top: 65px;
	background-color: #ffffff;
}

.upsell2 .drink2-image .img {
	position: relative;
}

.upsell2 .drink2-image .img::before {
	content: url(../images/plus.png);
	position: absolute;
	left: -25%;
	top: 50%;
	margin-top: -15px;
}


/*============================================
            # Thank-you page
============================================*/
/* ## Access section starts */
.thankyou .upsell-banner h2 {
	font-size: 30px;
}

.thankyou-content .top-text p {
	font-size: 18px;
	line-height: 1.2;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #000000;
}

.summary-section {
	background-color: #fff;
	padding: 5px;
	max-width: 950px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}

.summary-section .order-details {
	background-color: #fff;
	border: dashed 2px #e74b34;
	padding: 30px;
}

.summary-section .order-details .title {
	background-color: #e8e8e8;
	border-radius: 5px;
	padding: 15px 15px;
	color: #3c3c3c;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
}

.summary-section .order-details .title img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.summary-section .order-details p {
	font-size: 20px;
}

.summary-section .order-details .table {
	margin-bottom: 0;
}

.summary-section .order-details .table thead th {
	font-weight: 500;
	border-top: none;
	border-bottom: solid 1px #e1e1e1;
	text-align: left;
	font-size: 16px;
	line-height: 26px;
	padding: 15px 10px;
	font-family: 'Montserrat', sans-serif;
}

.summary-section .order-details .table thead th:last-child {
	text-align: right;
}

.thankyou-content .content_p {
	margin-bottom: 40px;
}

.thankyou-content .facebook-logo {
	text-align: center;
	margin-bottom: 20px;
}

.thankyou-content .facebook-logo a {
	display: inline-block;
}

/*--------- Responsive view ----------*/
@media (max-width: 991px) {
	.thankyou .upsell-banner h2 {
		font-size: 24px;
		line-height: 1.2;
	}
}

@media (max-width: 767px) {
	.thankyou-content .top-text p {
		font-size: 16px;
	}
	.thankyou .upsell-banner h2 {
		font-size: 20px;
	}
	.summary-section {
		width: 96%;
	}
	.summary-section .order-details {
		padding: 20px 15px;
	}
	.summary-section .order-details .title img {
		width: 15px;
		height: 15px;
		margin-right: 5px;
	}
	.summary-section .order-details .title {
		font-size: 14px;
	}
	.summary-section .order-details .table thead th {
		font-size: 14px;
	}
}

@media (max-width: 412px) {
	.thankyou .upsell-banner h1 {
		margin-bottom: 8px;
	}
}


/*===========================================
            # Order page
============================================*/
/* Banner section starts */
.order .upsell-banner {
	padding-top: 90px;
	padding-bottom: 70px;
}

.order .upsell-banner h1 {
	font-size: 76px;
	line-height: 1.2;
}

.order .upsell-banner .text-white {
	border-bottom: 2px solid #f7f7f7;
}

/* Form-section */
.form-section {
	padding: 80px 0 80px 0;
}

.form-parent {
	border: 1px solid #d9d9d9;
	padding: 40px 30px;
	background-color: #ffffff;
}

.form-parent .text-left {
	padding-left: 70px;
}

.step h3 {
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	line-height: 30px;
	font-weight: 400;
	color: #3c3c3c;
	border-bottom: 2px dotted #bebebe;
	padding-bottom: 16px;
	margin-bottom: 18px;
}

.step h3 span {
	font-size: 20px;
	line-height: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #f70808;
}

.step input {
	font-size: 14px;
	color: #737373;
	font-family: 'Montserrat', sans-serif;
	padding: 13px 1px 14px 20px;
	margin-bottom: 17px;
}

.prod-head,
.prod-des {
	display: flex;
	justify-content: space-between;
}

.prod-head p,
.prod-des p {
	margin-bottom: auto;
}

.prod-head p {
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: #3c3c3c;
}

.prod-des p {
	font-size: 14px;
	color: #757575;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 17px;
}

.form-section .container {
	max-width: 1038px;
}

.step-1 h3,
.step-2 h3 {
	margin-bottom: 29px;
}

.form-group select {
	padding: 15px 20px;
	margin-bottom: 20px;
	color: #737373;
	background-image: url('../images/down-cart.png');
	background-size: 14px 7px;
	background-position: right 20px center;
	background-repeat: no-repeat;
}

.form-control {
	color: #737373;
	background-color: #fff;
	border-color: #b6b6b6;
}

.form-control:focus {
	outline: 0;
	box-shadow: none;
}

.form-control.error {
	border-color: #f00;
}

.step-3 .bottom {
	padding: 0;
}

.step-3 hr {
	margin-top: 8px;
	margin-bottom: 13px;
}

.bottom hr {
	margin-bottom: 32px!important;
}

.step-3 label {
	margin-bottom: 9px;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	color: #737373;
}

.order .description-button .buy-btn {
	padding: 20px 20px 20px 20px;
	width: 100%;
}

.order .description-button .buy-btn .btnmain {
	font-size: 31px;
}

.form-btn {
	margin-top: 20px;
	text-align: center;
}

.form-btn img {
	max-width: 100%;
}

/*---------- Responsive view ----------*/
@media (max-width: 991px) {
	.order .upsell-banner h1 {
		font-size: 50px;
	}
	.order .description-button a {
		padding: 15px 4px 10px 4px;
	}
	.order .description-button .buy-btn .btnmain {
		font-size: 20px;
		line-height: 25px;
	}
	.description-button .buy-btn .btnsub {
		line-height: 25px;
	}
}

@media (max-width: 767px) {
	.order .upsell-banner {
		padding-top: 70px;
		padding-bottom: 30px;
	}
	.order .upsell-banner h1 {
		font-size: 55px;
	}
	.form-parent .text-left {
		padding-left: 12px;
	}
	.order .description-button a {
		padding: 10px 20px 10px 20px;
	}
}

@media (max-width: 568px) {
	.form-section {
		padding: 50px 0 50px 0;
	}
	.order .upsell-banner h1 br {
		display: none;
	}
	.order .upsell-banner h1 {
		font-size: 34px;
	}
	.upsell-banner p {
		font-size: 20px;
	}
	.order .description-button .buy-btn .btnmain {
		font-size: 20px;
		line-height: 20px;
	}
	.description-button .buy-btn .btnsub {
		line-height: 15px;
	}
}

@media (max-width: 412px) {
	.step h3 {
		font-size: 18px;
	}
	.step h3 span {
		font-size: 18px;
	}
	.order .description-button .buy-btn .btnmain {
		font-size: 17px;
	}
	.description-button .buy-btn .btnsub {
		line-height: 22px;
	}
}

@media (max-width: 360px) {
	.step h3 {
		font-size: 16px;
	}
	.step h3 span {
		font-size: 16px;
	}
	.order .description-button .buy-btn .btnmain {
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
# Privacy Policy & Term and Conditions page
--------------------------------------------------------------*/
.privacypolicyterms h2 {
	font-size: 32px;
}

.privacypolicyterms h3 {
	font-size: 24px;
}

.privacypolicyterms h4 {
	font-size: 22px;
}

.privacypolicyterms p {
	font-size: 18px;
}

.privacypolicyterms p a {
	color: #1577da;
}

.privacypolicyterms li {
	font-size: 18px;
}

.privacypolicyterms .highlight {
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.privacypolicyterms h2 {
		font-size: 28px;
	}
	.privacypolicyterms h3 {
		font-size: 22px;
	}
	.privacypolicyterms h4 {
		font-size: 20px;
	}
	.privacypolicyterms p,
	.privacypolicyterms li {
		font-size: 16px;
	}
}

/*==========================================================
    # Error || 404 || Page not found
==========================================================*/
.error-page-content{
	padding-top: 80px;
	padding-bottom: 80px;
}
.error404 h1{
	font-size: 100px;
	font-weight: 700;
}

.error404 h2{
	font-size: 80px;
	font-weight: 700;
}

.error404 .fourzerofour{
	height: 60px;
	width: 60px;
	display: inline-block;
	background-color: #ffffff;
	border-radius: 100%;
	border: 10px solid #ff000027;
	border-top: 10px solid #ff0000;
	border-bottom: 10px solid #ff0000;
	position: relative;
	animation: zerospinner 500ms linear infinite;
}

@keyframes zerospinner{
	to {
		transform: rotate(360deg);
	}
}

.btn-backtohome{
	min-height: 1px;
}

@media screen and (max-width:1199.98px) {
	.error404 h1{
		font-size: 60px;
	}
	.error404 h2{
		font-size: 40px;
	}
	.error404 .fourzerofour{
		height: 40px;
		width: 40px;
		border-width: 5px;
		animation: zerospinner 800ms linear infinite;
	}
}

@media screen and (max-width:767.98px) {
    .error-page-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
	.error404 h1{
		font-size: 50px;
	}
	.error404 h2{
		font-size: 30px;
	}
	.error404 .fourzerofour{
		height: 30px;
		width: 30px;
	}
}
/* stripe card */
.payment-outer{
	display: flex;
	flex-wrap: wrap;
	padding: 22px 15px 5px;
	background-color: #e9e9e9;
	position: relative;
	margin-bottom: 20px;
	border-radius: 5px;
	margin-top: 20px;
}
.payment-outer:before{
	content: "";
	position: absolute;
	left: 35px;
    top: -8px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #e9e9e9;
}
.payment-outer .form-group{
	width: 33.33%;
	padding: 0 7px;
}
.payment-outer .form-group.card-number-group{
	width: 100%;
}
.payment-outer .form-group #card_number{
	background-image: url('../images/cards.png');
	background-repeat: no-repeat;
	background-size: 120px;
	background-position: right 10px center;
	padding-right: 140px;
}
.paypal-card-group{
	display: flex;
	flex-direction: column;
}
.paypal-card-group label:first-child{
	margin-bottom: 10px;
}
.form-group.btn-outer{
	position: relative;
}
.form-group.btn-outer #loader{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	background-color: rgba(0,0,0,0.4);
    border-radius: 5px;
}
form #loader img{
	width: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px; 
}
.form-group select, .step input{
	height: 53px;
}
form .form-status{
	text-align: center;
    margin-top: 10px;
}
@media only screen and (max-width: 991px) {
	.form-parent .text-left {
		padding-left: 20px;
	}
}
@media only screen and (max-width: 767px) {
	.form-parent{
		padding: 20px;
	}
	.form-parent .text-left {
		padding-left: 10px;
	}
	.payment-outer .form-control{
		padding: 15px 10px;
		background-position: right 5px center;
	}
}
@media only screen and (max-width: 390px) {
	.payment-outer{
		padding: 15px 10px 0px;
	}
	.payment-outer .form-group #card_number{
		padding-right: 100px;
		background-size: 80px;
	}
	form select{
		background-size: 12px;
	}
}
/* stripe card end */