/* @override 
	http://localhost:8888/brewgin/_resources/themes/simple/css/layout.css?*
	http://localhost:8888/brewrum/_resources/themes/simple/css/layout.css?*
	http://localhost:8888/wonderland/_resources/themes/simple/css/layout.css?*
	https://www.wonderlandcocktailco.com/_resources/themes/simple/css/layout.css?* */


/** ----------------------------------------------------------
 *
 * Contains the main layout of the page and the individual styles.
 * Acts as the main stylesheet for theme.
 *
 *		Include your notes or table of contents below....
 *		Include color hex's or values of your grid
 *
 *		1. OOCSS GRID
 *		2. MAIN LAYOUT
 *		3. HEADER
 *			- Brand
 *			- Search Form
 *		4. Navigation
 *			- Primary Navigation
 *			- tablet Navigation
 *			- Secondary Navigation
 *			- Secondary Nav 2-5 Levels deep
 *		5. Mixed
 *		6. Footer
 *		7. Page Specific Layout
 *			- Homepage
 *			- Search Results
 *		8. Device and Responsive Layout
 *			- Breakpoint 960px
 *			- Breakpoint 640px
 *				- Search Form
 *				- Main Content
 *		9. Print Styles
 *			- Simple Theme custom print styles
 *
 * @author Your Name <email@silverstripe.com>
 * ------------------------------------------------------- */

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/
/* Define standard variables and values for website */

 :root {
  --font-on-dark: white;
 --font-purple: #3d3c8a;
 	--mainred: #e84133;
 	--pink:#f2dce8;
} 

.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
	overflow:hidden;
	*overflow:visible;
	*zoom:1;
	padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	padding: 0;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where
	padding and border are NOT added onto the width - they are included in the width,
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}
* {
	box-sizing: border-box;
}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
	_left:-3px;
	_margin-right:-3px;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: repeat;
	background-position: center top;
	background-size: 100%;
	transition: all ease 2s;
	background-color: var(--mainred);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 120px;
	height: 50px;
	margin: -60px 0 0 -25px;
	border-radius: 0%;
	opacity: 1;
	background: url(../images/wonderland-cocktail-co-logo.svg) center center no-repeat;
	background-size: contain;
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

/* MAIN LAYOUT */
body {
    margin: 0;
    min-width: 240px;
    -webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    padding: 0;
	    min-height: 300px;
	}
	.inner {
width: 100%;
margin: 0 auto;
	    padding: 0 0px;
	}
	.ie6 .inner {
	    width: 960px;
	}
	.no-sidebar .content-container {
	    float: left;
	    width:100%; /* makes content container full width when there is no sidebar */
	}
	.sidebar { /* this is the sidebar element */
	    margin-top: 12px;
	}
	.no-sidebar .sidebar {
		display: none;
	}


/* HEADER */
.header {
    background: var(--mainred);
	background-repeat: repeat-x;
	background-size: auto 100%;
	position: fixed;
	width: calc(100%);
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	transition: all 0.3s ease;
	z-index: 3;
}
	.header .inner {
	padding: 17px 3%;
	position: relative;
	height: auto;
	margin-top: 20px;
	margin-bottom: 5px;
	}
	
	.scrolled .header .inner {
	padding: 0.5% 3%;
	position: relative;
	height: auto;
	}
	
	.scrolled .header .inner {
		padding-top: 0.5%;
}
.scrolled .header {
	margin-top: 0px;
/*	background: transparent;*/
}

	/* Brand */
	header .brand {
		display: block;
		width: 33%;
		transition: all ease 0.6s;
		min-width: 70px;
		max-width: auto;
		margin-right: auto;
	margin-left: auto;
	}
	
	/* Brand */
	.scrolled header .brand {
		width: 150px;
		left: -100%;
	}
	
		.brand h1 {
		    margin: 0;
		    padding: 0;
		    font-size: 48px;
		    font-family: "HelveticaNeueLTPro-Bd", "Helvetica Neue LT Pro Bold", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue LT Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		    color: #000;
		    font-weight: 600;
		    font-stretch: normal; /* default value. No font stretching */
		    line-height: 1em;
		}
		.brand p {
		    color: #000;
		    margin-bottom: 22px;
		}

	/* Search form */

	.search-bar {
		position: absolute;
		right: 13px;
		top: 12px;
	}
		.search-bar .field {
			margin: 0;
			padding: 0;
		}
		.search-bar form input.text {
		    width: 155px;
		    padding: 5px 34px 5px 15px;
		    color: #888;
		    margin: 0;
		    border: none;
		    border-radius: 14px;
		    background: #fff;
		}

		.search-bar form input.action { /* positions the search button icon over the top of the search input */
		    font-size: 14px;
		    position: absolute;
		    right: 5px;
		    top: 0;
		    cursor: pointer;
		    border: none;
		    padding: 5px;
		    background: none;
		    font-family: 'WebSymbolsRegular';
		    color: #848484;
			border-radius: 0;
			margin: 0;
		}
		.search-bar form input.active,
		.search-bar form input.action:hover {
		    color: #000;
		}
		.search-bar form input:focus,
		.header textarea:focus {
		    outline: none; /* removes default browser outlining on focus */
		}
		.search-dropdown-icon {
		    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
		}



/* NAVIGATION */

nav#mainNav.primary.navigation ul li a.navigation__link.first.active {
display: none;
}

header .nav_container nav a:hover,
nav a.active {
  color: #3d3c8a;
}

nav#mainNav.primary.navigation ul li a.navigation__link.active {
	color: #3d3c8a;
}

	/* Primary navigation */
	.header .inner .unit {
		
		width: 100%;
		height: auto;
		position: relative; /* used to position the main navigation */
		text-align: center;
	}
	
	.header .primary ul {
		/* positions the main navigation */
		position: absolute;
		width: 100%;
		right: 0;
		top: 0;
	}
	.scrolled .header .primary ul {
			display: none !important;
		}
		
	.header .primary li {
		padding-bottom: 0;
	    margin: 0 0 0 5px;
	    position: relative;
	    white-space: nowrap; /* forces text to never wrap onto a second line */
		text-align: right;
		display: inline-block;
		float: left;
	}
	.header .primary li.first {
		padding-right: 10px;
		margin-right: 7vw;
	}
	#mainNav
li#nav-btn-4.mm-projects-nav-btn {
margin-left: 7vw;
padding-left: 10px;
	}
	.header .primary li a {
	    color: #fff;
		font: 1.0vw/1vw obviously-wide,neue-haas-grotesk-display,Helvetica, Arial, sans-serif;
		padding: 0;
	    font-weight: bold;
		letter-spacing: 1px;
		word-spacing: 3px;
	}
	.header .primary li.last {
		margin-left: 7vw;
	}
	.divide {
		float: right;
	}
	nav#mainNav.primary.navigation ul li a.navigation__link.first {
		display: none;
	}
	.scrolled .header .primary li a {
		font-size: 0.6rem;
	}
	.header .primary li a:hover {
	    color: #fddb00;
	background-size: 60px;
	}
	.header .primary li.section a,
	.header .primary li.active a {
	//	background: url('../images/brushpurple.svg') no-repeat center bottom;	
	}
	.header a.first {
		background: none !important;
		display: none !important;
	}
	
	/* Tablet Navigation */
	/* When navigation and logo overlap tablet-nav is initialized */
	.tablet-nav .brand p {
	    margin-bottom: 0;
	}
	.tablet-nav .header .inner {
	padding: 10px 3%;
	margin-top: 5px;
	}
	.tablet-nav .header .primary ul {
		position: relative;
	    margin: 20px 0 0;
	    white-space: nowrap;
	    right: auto; /* resets the right property value that is set for the desktop site */
		float: right;
		clear: both;
	}
		.tablet-nav .header .primary ul li {
		    white-space: nowrap;
		}
			.tablet-nav .header .primary ul li a { /* there is no hover on touch devices so no transition on hover is necessary */
			    -moz-transition: none;
			    -webkit-transition: none;
			    transition: none;
			}
	.tablet-nav .footer .right {
	    float: left;
	    width: 100%;
	}

	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #AAA;
	    margin: 0 0 8px 0;
	    font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #e5e5e5;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #e5e5e5;
		    position: relative;
		    list-style-type: none;
		    margin-bottom: 0;
		}
			.main .secondary li .arrow {
			    color: #b80000;
			    padding-right: 5px;
			    display: block;
			    font-size: 15px;
			    line-height: 20px;
			    position: absolute;
			    left: 2px;
			    top: 7px;
			    -moz-transition: 0.2s; /* this transition moves the arrow from left:2px to left:6px */
			    -webkit-transition: 0.2s;
			    transition: 0.2s;
			}
		.main .secondary li a:hover .arrow {
		    left: 6px; /* this sets the final position for the arrow transition */
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		    font-size: 11px;
		    color: #333;
		    line-height: 17px;
		    border-bottom: none;
		    font-family: 'Lucida Sans', 'Lucida Grande', Arial, Helvetica, sans-serif;
		}
		.main .secondary li .text {
		    padding-left: 28px;
		    display: block;
		}
		.main .secondary li.current a.current {
			color: #b80000;
			background-color: #EDEDED;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		    background-color: #F3F3F3;
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}


		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/
			.main .secondary ul ul li a .arrow { left: 12px; }
			.main .secondary ul ul li a:hover .arrow { left: 16px; }

		.main .secondary ul ul ul li a { padding-left: 20px; }
			.main .secondary ul ul ul li a .arrow { left: 22px; }
			.main .secondary ul ul ul li a:hover .arrow { left: 26px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }
			.main .secondary ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }
			.main .secondary ul ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
			color: #b80000;
		}

.quality-section.page-section article {
		background: #ebf0e3;
}

/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer a.brand { color: #000; margin-left: 0; }
.footer a.brand:hover { color: #3d3c8a; }
body h1 span.amp {

    font-style: italic;
}
div#perfect-serve-cocktails.content-container.unit.size3of4.lastUnit.perfect-serve-cocktails-section.page-section.is-inview article div.cocktail-products div.cocktail {
	width: calc(50% - 80px);
}
div#perfect-serve-cocktails h1 {
	text-align: center;
}
.cocktail-products {
justify-content: center;
padding: 0% 4% 70px;
	margin: 5% auto;
	display: flex;
	gap:30px;
	max-width: 1500px;
/*	align-items: stretch;*/
text-align: center;
flex-wrap: wrap;
}
.typography .recipe ul li::before { 
 background: url(../images/cross-03.svg) no-repeat center left;
  content: '';
  display: block;
  height: 15px;
  width: 30px;
 float: left;
 margin-right: 5px;
 padding-left: 5px;
}
.recipe li {
	margin-bottom: 7px;
	padding-bottom: 3px;
	letter-spacing: 1px;
}
.cocktail-products {
position: relative;
margin-bottom: 0;
padding-bottom: 30px;
}
.cocktail {
	display: inline-block;
	width: 31%;
}
.cocktail img {
	margin-bottom: 0;
border-radius: 15%;
}
.cocktail img {
	margin-bottom: 0;
border-radius: 8%;
}
.cocktail-products {
justify-content: center;
padding: 0% 1% 30px;
	margin: 5% auto;
	display: flex;
	gap:20px;
	max-width: 1500px;
/*	align-items: stretch;*/
text-align: center;
flex-wrap: wrap;
}
/* PRODUCTS */

.products {
	display: block;
	align-content: center;
	justify-content: space-around;
	align-items: center;
	padding: 0 0 3%;
	margin-right: auto;
	margin-left: auto;
	align-items: stretch;
	width: 100%;
	overflow: auto;
	}

.product {
	width: 100%;
	text-align: center;
		position: relative;
	clear: both;
	float: left;
}
.pro-l {
		display: flex;
	}
.odd .pro-l,.odd .pro-r {
	width: 50%;
	float: left;
	position: relative;
	}
	
	.even .pro-l,.even .pro-r {
	width: 50%;
	float: right;
	position: relative;
	}
	
.sub {
	width: 90%;
	border-radius: 20px;
	text-align: center;
	margin: 40px auto 30px;
	padding: 10px;
}
.pro-bk {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		border-radius: 55px;
		padding: 7% 0;
		//max-height: 80vh;
		width: 100%;
}
.pro-holdr {
	display: flex;
	padding: 3%;
	align-items: stretch;
	min-height: 80vh;
}
.pro-holdr.even {
		flex-direction: row-reverse;
}
.more-button img.readmore {
	width: 35%;
}
.more-button {
	position: absolute;	
	cursor: pointer;
	transition: all ease 0.2s;
	align-items: center;
	text-align: center;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	margin-top: 0;
	padding-top: 25px;
}
div#the-range.content-container.unit.size3of4.lastUnit.the-range-section.page-section article div.products div.product.odd div.Pro-1.pro-holdr.odd div.pro-r div.r-bot div.more-button.animate__animated img.readmore {
	position: relative;
/*	
	transform: translate(-50%,0);
	left: 50%;*/
}
.more-button.animate__zoomOut {
	background: none !important;
	cursor: default;
}
.r-bot {
	text-align: left;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	padding: 50px 20px 20px;
	line-height: 26px;
}
.r-top {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	min-height: 50%;
}
.product img {
bottom: 0px;
transition: all ease 0.2s;
padding: 0;
width: 33%;
position: relative;
//top: 50%;
//margin-top: -25%;
}
.bk-wrp {
	position: relative;
}
.grade{
	
}

/*.bk-wrp {
	position: relative;
}
.grade{
	position: relative;
}
.grade {
   content: '';
   position: absolute;
   z-index: 0;
   display: block;
   top: 0px;
   left: 0px;
   bottom: 0px;
   right: 0px;
   background-image: url(../images/texture-grey.svg);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center top;

}*/
/* PROCESS */

.process-images-wrp {
	justify-content: center;
	padding: 4% 8% 0;
	margin-right: auto;
	margin-bottom: 100px;
	margin-left: auto;
	display: flex;
	gap:40px;
	max-width: 2000px;
/*	align-items: stretch;*/
text-align: left;
flex-wrap: wrap;
	align-content: flex-start;
}
.pro-img-holdr {
	opacity: 0;
		width: calc(33% - 40px);
}
.pro-img-holdr img{
	background: #f5f5f5 url('../images/bg.jpg') no-repeat left top;
	padding: 8px;
}
/* MY LOCO */
.product img.fader,
.cb-container.fader,
.pro-img-holdr.fader,
.clm-one.fader{
	opacity: 1;
	transition: opacity ease 1s;
	bottom: 0px;
	position: relative;
}

.product button {
	position: absolute;
	bottom: 0;
	 left: 50%;
    transform: translate(-50%, 0);
	width: 173px;
	background: url('../images/cross-03.svg') no-repeat 12px 6px;
	height: 160px;
	padding: 0;
	font-size: 0.8rem;
}
.content-bottom {
		padding: 65px 10% 0;
		width: 100%;
	color: black;

text-align: center;
}
.shop-items {
	width: 16%;
	display: inline-block;
	margin-left: 1.5%;
	margin-right: 1.5%;
}
.buybutton {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 50px;
}
.butimg {
	padding-left: 15px;
	padding-top: 15px;
	padding-right: 15px;
}
.buylink {
	position: absolute;
	color: var(--mainred);
	line-height: 30px;
	font-weight: bold;
	font-size: 25px;
}
.buylink a{
	color: white;
	position: absolute;
	transition: all ease 0.2s;
	transform: translate(-34px,-25px);
}
.buylink a:hover {
	top: -3px;
	color: white;
}

.content-strip {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 7%;
	float: left;
	text-align: center;
}
div#range.content-container.unit.size3of4.lastUnit.range-section.page-section.is-inview article {
	position: relative;
	background-color: white;
}
#range .content {
	text-align: center;
	padding: 0 10%;
	position: relative;
}
#range .content p {
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
#range .content p:nth-of-type(2){
	margin-bottom: 0px;
}

.cb-container {
	width: 55%;
	opacity: 0;
	padding-top: 40px;
	display: inline-block;
	margin-left: 45%;
}
.s-btn {
	width: 19rem;
	min-width: 250px;
	background: url('../images/shopbutton-13-2.svg') no-repeat 10px center;	
	
	text-transform: capitalize;
	font: 5rem/5.5px highrise,neue-haas-grotesk-display,"Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: center;
	color: white;
	box-shadow: none;
	position: absolute;
	transform: translateY(-50%) rotate(0deg);
	left: 16%;
	height: 19rem;
	letter-spacing: 2px;
	padding: 0;
	top: 50%;
	margin-top: -10px;
}
.s-btn:hover {
		transform: translateY(-50%) rotate(-4deg);
}
div#range.content-container.unit.size3of4.lastUnit.range-section.page-section article div.content-bottom button.s-btn span.s-btn-txt {
		padding: 0;
}
div#process-and-quality .hero{
overflow: auto;
background: url('../images/blue-bk.jpg') repeat center top;
background-size: auto 100%;
position: relative;
text-align: center;
padding: 5% 6% 3%;
}
div#process-and-quality .hero p{
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
div#process-and-quality .hero h1,
div#process-and-quality .hero h2{
	
}
div#process-and-quality .hero h1{
	display: inline-block;
}
div#process-and-quality .hero h2{
}
div#process-and-quality .left-text .intro {
font: 2rem neue-haas-grotesk-display,"Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
font-weight: 500;
position: relative;
left: 1rem;
top: -1.3rem;
color: white;
}
.left-text {
	width: 80%;
	left: 8%;
	top: 10%;
	position: absolute;
	text-align: left;
}
.right-text {
	width: 25%;
	right: 8%;
	bottom: 40%;
	position: absolute;
	text-align: right;
}
div#process-and-quality .c-left {
	width: 50%;
	padding-left: 8%;
	padding-top: 10%;
	padding-bottom: 10%;
}
div#process-and-quality .c-right {
	width: 25%;
	padding-top: 10%;
	margin-right: 3%;
}
.c-right img {
	border: 7px solid #fff;
	box-shadow: -2px 4px 4px #9d9d9d;
}
.brush-bck {
	background:url('../images/brush-grey-crop-01.svg') no-repeat center top;
	background-size: cover;
	padding-top: 6rem;
	position: relative;
	top: -6rem;
	padding-bottom: 6rem;
}
.brush-bck-2 {
	background:url('../images/brush-grey-crop2.svg') no-repeat center top;
	background-size: cover;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.con-wrp {
	padding-top: 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ecf1e3;
}
.top-pic {
	position: relative;
	min-width: 350px;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
}
/*div#process-and-quality.content-container.unit.size3of4.lastUnit.process-and-quality-section.page-section article div.content::before{
content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: url(../images/texture-grey.svg) no-repeat center top;
 
  }*/
.c-two {
width: 48%;
margin: auto;
position: relative;
transform: translate(0,-30%);
color: white;
max-width: 900px;
}
.c-two p {
	font-size: 50px;
	text-align: center;
}
div#quality.content-container.unit.size3of4.lastUnit.quality-section.page-section article div.content {
	background: var(--mainred);
}
.q-logo {
	width: 60%;
	margin: auto auto 20px;
}
.pro-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vw;
	text-align: center;
	background-image: linear-gradient(-0deg, #f5dcea 0%, #f5dcea 50%, #e84133 50%, #e84133 50%);
	margin-top: -90px;
	padding-bottom: 60px;
}
.bot-text {
	width: 30%;
	margin: auto;
	min-width: 350px;
	color: white;
	padding-top: 10px;
	position: relative;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	z-index: 0;
}

div.bot-text div.text {
	position: absolute;
	max-width: 70%;
	margin: auto;
}
div.bot-text div.text p{margin-bottom: 0px;
}
div.bot-text div.text {
	margin-bottom: 0;
}
.cans {
	position: absolute;
	max-width: 80%;
	margin: auto;
	animation: rotate 15s linear infinite;
	z-index: 0;
	pointer-events: none;
}
    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    img.titles {
		height: 17vh;
		max-height: 200px;
		margin-right: auto;
	margin-left: auto;
		margin-top: 60px;
		padding-right: 15px;
	padding-left: 15px;
	}
/* FOOTER */

.footer {
	display: flex;
	justify-content: space-between;
	width: 100%;
padding: 40px 4% 35px;
	font-size: 11px;
    line-height: 22px;
	align-items: flex-end;
overflow: auto;
background:var(--mainred);
}
.footer-illustration {
	width: 33%;
	display: inline-block;
	min-width: 300px;
}
.footer-illustration img{
	float: left;
}
.footer .roundal {
	width: 30%;
	max-width: 150px;
	min-width: 50px;
	margin-right: 40px;
	float: left;
}
.footer .logo {
	float: left;
	width: 55%;
	max-width: 250px;
	min-width: 50px;
}
.footer a {
	color:white;
}
.wrp-l {
	width: 20%;
	min-width: 250px;
	display: flex;
	align-items: center;
	float: left;
}
.wrp-r {
		width: 50%;
		display: flex;
	align-items: center;
	justify-content: space-between;
	float: right;
}
.clm1 {
	float: left;
	margin-right: 20px;
}
.clm2 {
	float: left;
	font-size: 0.6rem;
	letter-spacing: 1px;
	color: white;
	line-height: 15px;
}
.rw1,.rw2 {
	overflow: auto;
	width: 100%;
}
img {
	 max-width: 100%;
}
.contact-d {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: right;
}

footer 
	.footer a {
	}
	.footer a:hover {
	color: white;
	}
	.footer .left {
	    float: left;
	    color: #000;
	    display: block;
	    margin-bottom: 10px;
	}
	.footer .right {
	    float: right;
	    display: block;
	    margin-bottom: 10px;
		height: 100px;
	}

	.footer .primary,
	.footer .primary ul {
	    display: inline;
	    margin: 0;
	    padding: 0;
	}
		.footer .primary li {
		    display: inline;
		}
	.ie6 .footer .primary li,
	.ie7 .footer .primary li { /* this is a bugfix for ie6/7 */
	    display: inline;
	    zoom: 1;
	    margin-right: 10px;
	}
	.footer .primary li:after { /* adds '/' to separate the footer navigation items */
	    padding: 0 3px 0 5px;
	    content: '/';
	    color: #999;
	}
	.footer .primary li:last-child:after {
	    content: ''; /* makes sure last nav item doesn't have a '/' following it */
	}
	.footer .arrow {
	    padding: 0 8px 0 5px;
	    color: #b80000;
	    font-size: 13px;
	}
	.footer .primary .nav-open-button {
	    display: none; /* the footer includes the primary nav include - this makes sure the nav open close button doesn't show up */
	}
	/* Style all font awesome icons */
.fa {
  padding: 5px;
  font-size: 30px;
  width: auto;
  text-align: center;
  text-decoration: none;
  position: relative;
  bottom: 0px;
      transition: 0.2s;
  margin-right: 5px;
	margin-left: 5px;
}

/* Add a hover effect if you want */
.fa:hover {
  bottom: 3px;
}

/* Set a specific color for each brand */

.fa-facebook,
.fa-instagram {
  color: white !important;
}


/* SECTIONS */

html, body {
		height: 100%;
}
div#about-content.content {
		padding-top: 100px;
	text-align: center;
	position: relative;
}
.about-section {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f2dce8 5%, #f2dce8 100%);

}
.the-range-section {
	background: white;
}
.page-section {
		min-height: 90vh;
		width: 100vw;
		margin-left: auto;
	margin-top: 0;
		padding: 0;
	margin-right: auto;
	position: relative;
}
#serve {
	background: white;
}
.footer-section {
	min-height: auto;
	margin-right: auto;
	margin-left: auto;
	width: 100vw;
	position: relative;
}
div#perfect-serve-cocktails.content-container.unit.size3of4.lastUnit.perfect-serve-cocktails-section.page-section {
	padding: 8%;
	position: relative;
	background-color: white;
}
div#perfect-serve-cocktails .content{
	position: relative;
}
.page-section {
	opacity: 1 !important;
}
		
	div#our-story.content-container.unit.size3of4.lastUnit.our-story-section.page-section {
		position: relative;
		min-height: auto;
		display: flex;
		 justify-content: flex-start;
		 align-items: center;
		color: white;
			background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #115a56 24.3%) transparent;
	}	
		.page-section:first-of-type {
			min-height: 100vh;
			margin-top: 3vh;
		}
		.hero-content-wrap {
			width: 90%;
			margin-right: auto;
	text-align: center;
			position: absolute;
			top: 80%;
			margin-left: 5%;
		}
		.hero-content-wrap .logo,.w1,.w3,.w4 {
			display: inline-block;
			margin-right: 7px;
	margin-left: 7px;
		}
		/* animated wave type */
		
		.logo.is-animetion {
	 margin-top: 0.6em;
		}
		.more-button .logo.is-animetion {
			display: inline-block;
			margin-top: 0;
			position: absolute;
		}
 .logo.is-animetion span {
	 display: inline-block;
	 animation: wave-text 1s ease-in-out infinite;
}
.more-button .logo.is-animetion span {
	 display: inline-block;
	 animation: wave-text 1.5s ease-in-out infinite;
	 font-size: 2vw;
	 letter-spacing: -2px;
}
.more-button .logo.is-animetion span:nth-of-type(1) {
	 animation-delay: 0.1s;
}
.more-button .logo.is-animetion span:nth-of-type(2) {
	 animation-delay: 0.2s;
}
.more-button.logo.is-animetion span:nth-of-type(3) {
	 animation-delay: 0.3s;
}
 .more-button .logo.is-animetion span:nth-of-type(4) {
	 animation-delay: 0.4s;
 	margin-right: 11px;
 }
.more-button .logo.is-animetion span:nth-of-type(5) {
	 animation-delay: 0.5s;
}
.more-button .logo.is-animetion span:nth-of-type(6) {
	 animation-delay: 0.6s;
}
.more-button .logo.is-animetion span:nth-of-type(7) {
	 animation-delay: 0.7s;
}
.more-button .logo.is-animetion span:nth-of-type(8) {
	 animation-delay: 0.8s;
}
 .w1.is-animetion span {
	 display: inline-block;
	 animation: wave-text 1s ease-in-out infinite;
}
 .w3.is-animetion span {
	 display: inline-block;
	 animation: wave-text 1s ease-in-out infinite;
}
 .w4.is-animetion span {
	 display: inline-block;
	 animation: wave-text 1s ease-in-out infinite;
}
 .w1.is-animetion span:nth-of-type(1) {
	 animation-delay: 0s;
}
 .w1.is-animetion span:nth-of-type(2) {
	 animation-delay: 0.1s;
}
 .w1.is-animetion span:nth-of-type(3) {
	 animation-delay: 0.2s;
}
 .logo.is-animetion span:nth-of-type(1) {
	 animation-delay: 0.3s;
}
 .logo.is-animetion span:nth-of-type(2) {
	 animation-delay: 0.4s;
}
 .logo.is-animetion span:nth-of-type(3) {
	 animation-delay: 0.5s;
}
 .logo.is-animetion span:nth-of-type(4) {
	 animation-delay: 0.6s;
}
 .logo.is-animetion span:nth-of-type(5) {
	 animation-delay: 0.7s;
}
 .logo.is-animetion span:nth-of-type(6) {
	 animation-delay: 0.8s;
}

 .w3.is-animetion span:nth-of-type(1) {
	 animation-delay: 0.9s;
}
 .w4.is-animetion span:nth-of-type(1) {
	 animation-delay: 1s;
}
 .w4.is-animetion span:nth-of-type(2) {
	 animation-delay: 1.1s;
}
 .w4.is-animetion span:nth-of-type(3) {
	 animation-delay: 1.2s;
}
 .w4.is-animetion span:nth-of-type(4) {
	 animation-delay: 1.3s;
}
 .w4.is-animetion span:nth-of-type(5) {
	 animation-delay: 1.4s;
}
 .w4.is-animetion span:nth-of-type(6) {
	 animation-delay: 1.5s;
}
 .w4.is-animetion span:nth-of-type(7) {
	 animation-delay: 1.6s;
}
 @keyframes wave-text {
	 0% {
		 transform: translateY(0em);
	}
	 60% {
		 transform: translateY(-1em);
	}
	 100% {
		 transform: translateY(0em);
	}
}
 
		
div#our-story-content.content{
		display: flex;
		padding-top: 7vh;
		padding-right: 0;
	padding-left: 0;
		width: 100%;
		column-gap: 5%;
		position: relative;
			flex-wrap: nowrap;
}
.strap {
	position: relative;
	padding-bottom: 4.5%;
	background-color: white;
}
.rndl2 {
	width: 100%;
	height: 150px;

	background-size: contain;
position: relative;
display: block;
transform: translate(-50%);
text-align: center;
}
.spnr {	
	width: 150px;
	height: 150px;
	margin-right: auto;
	margin-left: auto;
}

/* PRO IMGS */
div#about-content.content div.clm-two img.product-img.img1,img.product-img.img2 {
	float: left;
	width: 50%;
	padding: 10px;
}
img.product-img {
		border-radius: 15%;
float: left;
}
img.product-img.img3,img.product-img.img4 {
	width: 25%;
	padding: 1%;
}
  /* Safari 4.0 - 8.0 */
    @-webkit-keyframes infiniteRotate {    
         0% { -webkit-transform: rotate(0deg); }
         100% { -webkit-transform: rotate(360deg); }
    }

    /* Standard syntax */
    @keyframes infinite-rotate {  
         0% { -webkit-transform: rotate(0deg); }
         100% { -webkit-transform: rotate(360deg); }
    }

.title {
	width: 40%;
}
.l-title {
	margin-left: 50%;
	margin-top: 10%;
	margin-bottom: 30px;
}
.r-title {
	margin-top: 10%;
	margin-bottom: 30px;
	margin-left: 10%;
}
.clm-one .copy {
	width: 60%;
	margin-left: 20%;
	margin-top: 20px;
	text-align: center;
}
.clm-one {
	width: 100%;
	opacity: 0;
	padding-bottom: 80px;
	text-align: center;
	color: var(--mainred);
}

.clm-two {
	width: 100%;
		overflow: auto;max-width: 90%;
		margin: auto;
	padding-bottom: 80px;
	opacity: 0;
}
.clm-two .copy {
	width: 50%;
	margin-left: 10%;
	text-align: left;
	margin-top: 20px;
	color: #3d3c8a;
}
div#range-content.content{
background: white;
padding: 4%;
text-align: center;
}

.navigation {
  width: 100%;
  	color: #fff;
  	right: 0;
  transition: all ease 0.4s;
  position: absolute;
  top: 0%;
  margin-right: 0;
  left: 0;
}
  
.scrolled .navigation {
	top: 20px;
}
.rndl {
	width: 12vw;
	position: absolute;
	top: 50%;
	min-width: 120px;
	margin-left: calc(50%);
	margin-bottom: 0;
	margin-top: 0;
	transform: translate(-50%,-50%);
	opacity: 1;
	transition: all ease 0.4s;
	max-width: 300px;
	z-index: 1;
}
.rndl img {
	position: relative;
	float: left;
}

img.logo {
	position: absolute;
	top: 20px;
	left: 50%;
	width: 55%;
	transform: translate(-50%);
}
.scrolled .rndl {
	
	transform: translate(-50% ,-200%);
}
.scrolled img.logo {

	width: 45%;

}
/* PAGE SPECIFIC LAYOUT */

	/* Homepage */
		/* currently no Hompage specific styles - feel free to add your own */

	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
		.searchResults ul#SearchResults li {
		    border-top: 1px solid #e5e5e5;
		    padding: 20px 0;
		    list-style-type: none;
		}
		.searchResults ul#SearchResults p {
		    margin-bottom: 10px;
		}
		.searchResults #PageNumbers a {
		    padding: 0 5px;
		}
		.searchResults #PageNumbers .pagination {
		   	border-bottom: 1px solid #e5e5e5;
		    padding: 20px 0;
		    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
		    width:100%;
		}
		.searchResults #PageNumbers .pagination span{
			display:table-cell; /* each element in the pagination div displays as a table cell */
		}
		.searchResults #PageNumbers p {
		    text-align: center;
		    padding:20px 0;
		}
		.searchResults #PageNumbers .next,
		.searchResults #PageNumbers .prev {
		    font-size: 14px;
		    padding: 0 20px;
		    display:table-cell; /* each element in the pagination div displays as a table cell */
		    vertical-align: middle;
		    border-bottom:0 !important;
		}
		.searchResults #PageNumbers .next {
		    margin-left: 15px;
		}
		.searchResults #PageNumbers .prev {
		    margin-right: 15px;
		}

/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
.scrolled .header .nav-open-button {
    display: block; /* removes the nav toggle button for desktop site */
}
.mobile,
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}
.typography h3 {
font: 10vw/6rem "obviously-compressed","Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
top: -6px;
}
/* MENU */

/* General styles for all menus */

.cbp-spmenu {
	background: #47a3da;
	position: fixed;
}

.cbp-spmenu h3 {
	color: #afdefa;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
}

.cbp-spmenu a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
}

.cbp-spmenu a:hover {
	background: #258ecd;
}

.cbp-spmenu a:active {
	background: #afdefa;
	color: #47a3da;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	border-bottom: 1px solid #258ecd;
	padding: 1em;
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (max-width: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em){

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -190px;
	}

	.cbp-spmenu-right {
		right: -190px;
	}

	.cbp-spmenu-push-toright {
		left: 190px;
	}
}

/* LOCOTMOTIVE */


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

.container-off {

  .hero {
    display: grid;
    grid-template-columns: 60% 40%;
    height: 100vh;
    
    .copy {
      display: grid;
      align-content: center;
      padding: 0 1rem;
      height: 100%;
      
      blockquote {
        font-size: 6vmin;
        font-weight: 300;

        span {
            font-style: italic;
            font-weight: 400;
}
        
        cite {
          font-weight: 300;
          font-style: italic;
          font-size: 4.5vmin;
          display: block;
          padding: 8px 0;
        }
      }
    }
    
    .image-wrapper {
      height: 100vh;
      width: 100%;
      
      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }
  }

  .section-0 {
      margin-top: 20vh;
      text-align: center;

      p {
          font-size: 5vw;
      }

      cite {
        //   display: block;
          font-size: 3vw;
      }
  }
  
  .section-1 {
    height: 100vh;
    display: grid;
    place-content: center;
    padding: 0 1rem;

    
    .image-mask {
        width: 80vw;
        height: 80vh;
        background: url('https://firebasestorage.googleapis.com/v0/b/hashnode-tutorials.appspot.com/o/bwimages%2Ftumblr_n92tblyC8d1s3sziio1_1280.jpg?alt=media&token=c5d75884-4bc3-46bb-815d-414d2ec68e4b');
        // background-attachment: fixed;
        background-size: cover;
        background-position-x: 50%;
        background-position-y: 90%;
        background-size: 100%;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }
    
    blockquote {
      font-size: 9vmin;
      font-weight: 300;

      span {
        font-style: italic;
        font-weight: 400;
      }
        
      cite {
        font-weight: 300;
        font-style: italic;
        font-size: 7.5vmin;
        display: block;
        padding: 8px 0;
      }
    }
  }
  
  .section-2 {
    height: calc(300vh + 32px + 16px);
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-columns: 40% 60%;

    blockquote {
        font-size: 5vmin;
        padding: 16px 16px 0 16px;

        cite {
            display: block;
        }
    }
    
    .images-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 0 8px;
      gap: 8px;
      margin-top: 16px;
      
      img {
        width: 100%;
        max-height: 75vh;
        height: 100%;
        align-self: stretch;
        object-fit: cover;
      }
    }
  }
  
  .section-3 {
    height: 100vh;
    display: grid;
    grid-template-columns: 40% 60%;
    position: relative;
    
    .image-wrapper {
      height: 100%;
      width: 100%;
      
      img {
          height: 100%;
          width: 100%;
          object-fit: cover;
      }
    }
    
    .copy {
      font-size: 8vmin;
      height: 100vh;
      width: 100%;
      display: grid;
      align-content: center;
      
      
      blockquote {
        margin: 0 32px;
      }
    }
    
    .copyright {
        position: absolute;
        bottom: 5%;
        left: 50%;
        font-size: 4vmin !important;
    }
  }
}*/
/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 1280px) {
	body {
	    max-width: 1280px;
	}
	#media-query-trigger {
	    visibility: visible;
	}
/* Navigation*/


	
	.header .primary .nav-open-button { /* styling and positioning of the nav toggle button */
		    z-index: 100;
		    width: 35px;
		    height: 25px;
		    position: absolute;
		    right: 3%;
			display: block;
		    cursor: pointer;
		    font-family: 'WebSymbolsRegular';
		    font-size: 20px;
		    color: #FFF;
			transform: translateY(-50%);
			top: 20px;
	}
		
		.tablet-nav .header .primary ul {
		    z-index: 10;
		    position: relative;
		    display: none; /* initially hiding the navigation */
		    float: left;
		    margin: 0;
		    padding: 0;
		    white-space: normal;
		    width: 100%;
		}
			.tablet-nav .header .primary ul li {
			    width: 100%;
			    margin: 0;
			    padding: 0;
			    float: none; /* displays list items vertically */
			    background: none;
			    position: relative;
			    text-shadow: 0 1px #fff;
			}
			.tablet-nav .header .primary ul li:after { /* creates the arrow for the primary nav links */
			    content: '\003e';
			    display: block;
			    position: absolute;
			    right: 20px;
			    top: 0px;
			    font-family: 'WebSymbolsRegular';
			    font-size: 14px;
			    color: #999;
			    text-align: center;
			    vertical-align: middle;
			    line-height: 38px;
			}
			.tablet-nav .header .primary ul li a,
			.tablet-nav .header .primary ul li.current a,
			.tablet-nav .header .primary ul li.section a { /* styling the  top level nav links */
			    padding: 10px 0 10px 22px;
			    font-weight: bold;
			    border-bottom: 1px solid #bbb;
			    color: #434343;
			    background: #e7e7e7;
			}
			.tablet-nav .header .primary ul li.current a,
			.tablet-nav .header .primary ul li.section a {
				background: #CCCCCC; /* makes background on current top level page slightly darker */
			}
			.tablet-nav .header .primary ul li a:hover {
			    color: inherit;
			}
			.tablet-nav .header .primary li.section:after,
			.tablet-nav .header .primary li.current:after {
			    display: none; /* hides the link arrow on current top level page */
			}
			.tablet-nav .tablet-nav .header nav.primary ul li {
				padding: 0;
			}
.product button {
	
}
.footer {
display:block;
	width: 100%;
padding: 0 4% 10px;
	font-size: 11px;
    line-height: 22px;
	align-items: flex-end;
overflow: auto;

}

.s-btn {
	width: 19rem;
	min-width: 250px;
	background: url('../images/shopbutton-13-2.svg') no-repeat 10px center;	
	
	text-transform: capitalize;
	font: 5rem/5.5px highrise,neue-haas-grotesk-display,"Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: center;
	color: white;
	box-shadow: none;
	position: absolute;
	transform: translateY(-50%) rotate(0deg);
	left: 8%;
	height: 19rem;
	letter-spacing: 2px;
	padding: 0;
	top: 50%;
	margin-top: -5px;
}


div#our-story.content-container.unit.size3of4.lastUnit.our-story-section.page-section {
}
#range .content {
	text-align: center;
	padding: 30px 10% 4%;
	position: relative;
}
.content-bottom {
		padding: 40px 10%;
		width: 100%;
}
	/* Search Form */
	.search-bar { /* adds new styling to mobile search bar */
	    width: 100%;
	    position: relative;
	    top: 0;
	    right: 0;
	    display: none; /* hides searchbar initially */
	    padding: 20px 0;
	    margin: 0;
	    background-color: #E7E7E7;
	}
	.search-dropdown-icon { /* styling for search toggle button */
	    display: block;
	    cursor: pointer;
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    right: 60px;
	    top: 34px;
	    font-family: 'WebSymbolsRegular';
	    font-size: 20px;
	    color: #ededed;
	    text-align: center;
	    line-height: 20px;
	}
	.search-bar form {
	    margin: 0;
	    width: 100%;
	}
		.search-bar form fieldset {
		    padding: 0 18px;
		    left: 0;
		    right: 0;
		    position: relative;
		}
	.search-bar div.field {
	    margin-bottom: 0;
	}
	.search-bar form input.text {
	    width: 89%; /* makes search input full width - allowing for space either side */
	    max-width: 89%;
	    padding: 8px 10% 8px 1%;
	    text-indent: 15px;
	    position: relative;
	    display: block;
	    right: 0;
	    left: 0;
	    border: 1px solid #e5e5e5;
	    background: #fff;
	    font-size: 17px;
	    border-radius: 20px; /* increase border radius due to increased padding */
	}
	.search-bar form input.action {
	    right: 5%;
	    top: 2px;
	    font-size: 18px;
	}

	/* Main Content */
	.main {
	    padding: 0; /* decrease padding so that more content can fit on screen */
	}
	.content-container,
	.sidebar {
	    width: 100%; /* sidenav is now shown above the page content */
	}
		.typography h1 { /* decrease size of page heading due to smaller screen */
		    margin-bottom: 15px;
		    padding-bottom: 10px;
		}
		.typography p {
		    font-size: 1.2rem;
		    line-height: 23px;
		}
	p.intro {
	    font-size: 19px;
	    line-height: 27px;
	}
	
	.header {
		margin-top: 0;
	}
	.navigation {
  /*width: auto;
  	position: fixed;
  	right: 0;
  	top: 33px;
  margin-right: 10px;*/
}
	.main .inner {
	    padding: 0 0px;
	}
	/* Secondry Nav */
	.secondary li a {
	    line-height: 24px;
	}
	.secondary li .arrow {
	    line-height: 26px;
	}
	/* Footer */
	.footer .right {
	    float: left;
	    width: 100%;
	}
}

/* BREAKPOINT 960px */

@media only screen and (max-width: 960px) {
	.content img {
	    max-width: 100%;
	    height: auto;
	}
	.r-bot {
	text-align: left;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	padding: 20px;
	line-height: 26px;
}
	.s-btn {
	width: 14rem;
	min-width: 250px;
	background: url('../images/shopbutton-13-2.svg') no-repeat 10px center;	
	
	text-transform: capitalize;
	font: 4rem/4px highrise,neue-haas-grotesk-display,"Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: center;
	color: white;
	box-shadow: none;
	position: absolute;
	transform: translateY(-50%) rotate(0deg);
	left: 8%;
	height: 14rem;
	letter-spacing: 2px;
	padding: 0;
	top: 50%;
	margin-top: -5px;
	}
	.content-bottom {
	padding-right: 10%;
	padding-bottom: 0;
	padding-left: 10%;
	width: 100%;
	color: white;
}
	.shop-items {
		width: 50%;
		margin-bottom: 0px;
	}
	.odd .buybutton {
	position: relative;
	transform: translate(-45%,-60%);
}
	.even .buybutton {
	position: relative;
	transform: translate(45%,-60%);
}
	
	.header .primary ul {
	    -webkit-padding-start: 0px; /* removes default webkit padding on ul items */
	}
	.wrp-r {
		width: 60%;
		display: block;
	align-items: center;
	justify-content: space-between;
	}


.clm-one .copy {
	width: 90%;
	margin-left: 5%;
	margin-top: 20px;
}
.clm-one {
	background-size: auto 100%;
	padding-bottom: 30px;
	text-align: center;
}

.clm-two {
	background-size: auto 100%;
	padding-bottom: 20px;
}
.clm-two .copy {
	width: 70%;
	margin-left: 20%;
	text-align: left;
	margin-top: 20px;
	color: #3d3c8a;
}

	* {
				flex-wrap: wrap;

	}
	.hero, .content {
		 background-attachment:scroll !important;
	}
	
	.typography h1.lrg  {
	font-size: 30vw;
	text-align: center;
	color: var(--font-on-dark);
	margin-bottom: 40px;
	line-height: 20vw;
	}
.products {
	display: flex;
	align-content: center;
	justify-content: space-around;
	align-items: center;
	padding: 0 0 6%;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	align-items: stretch;
	flex-wrap: wrap;
}
.product {
	text-align: center;
		position: relative;
	margin-bottom: 0;
}


div#process-and-quality .hero h1{
	font-size: 19vw;
}
}

/* BREAKPOINT 680px */
@media only screen and (max-width: 680px) {
	.mobile {
		display: block;
		visibility: visible;
	}
	.desktop {
		display: none;
		visibility: hidden;
	}
	header .brand {
		display: block;
		width: 33%;
		min-width: 150px;
		max-width: auto;
		margin-left: 0;
		margin-right: 0;
	}
	.pro-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vw;
	text-align: center;
	background-image: linear-gradient(-0deg, #f5dcea 0%, #f5dcea 50%, #e84133 50%, #e84133 50%);
	padding-bottom: 0;
	margin-top: 0;
		margin-bottom: 40px;
	}
	.pro-bk {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		border-radius: 55px;
		padding: 7% 0;
		//max-height: 80vh;
		width: 100%;
		margin-bottom: 50px;
	}
	.r-bot {
	text-align: center;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	padding: 30px 20px 20px;
	line-height: 20px;
	}
.buylink {
	position: absolute;
	color: var(--mainred);
	line-height: 25px;
	font-weight: bold;
	font-size: 20px;
}
.buylink a{
	color: white;
	position: absolute;
	transition: all ease 0.2s;
	transform: translate(-28px,-25px);
}
	.more-button .logo.is-animetion span {
	 display: inline-block;
	 animation: wave-text 1.5s ease-in-out infinite;
	 font-size: 4vw;
}
	div#quality.content-container.unit.size3of4.lastUnit.quality-section.page-section{
		background: #f5dcea;
	}
	.pro-bottom p {
		font-size: 14px;
		line-height: 18px;
		margin-bottom: 0;
	}
	.cocktail {
	display: inline-block;
	width: 46%;
}
.clm2 {
	float: left;
	font-size: 0.6rem;
	letter-spacing: 1px;
	color: white;
	line-height: 15px;
	padding-top: 0;
		padding-bottom: 4px;
}
img.titles {
		height: 80px;
		max-height: 200px;
		margin-right: auto;
		margin-left: auto;
		margin-top: 20px;
		padding-right: 15px;
	padding-left: 15px;
	}
.c-two {
width: 93%;
margin: auto;
position: relative;
transform: translate(0,-30%);
color: white;
max-width: 900px;
}
.pro-holdr {
	display: block;
	padding: 7% 3% 65px;
	align-items: stretch;
}
.typography h3 {
font: 22vw/6rem "obviously-compressed","Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
top: -6px;
}
.even .pro-l,.even .pro-r,.odd .pro-l,.odd .pro-r {
	width: 100%;
	position: relative;
	//container-type: size;
	float: none;
	clear: both;
}
	.sub {
	width: 100%;
	border-radius: 70px;
	
}
	.cans {
	position: absolute;
	max-width: 98%;
	margin: auto;
	animation: rotate 15s linear infinite;
	z-index: 0;
	pointer-events: none;
}
.bot-text {
	width: 65%;
	margin: auto;
	min-width: 280px;
	color: white;
	padding-top: 10px;
	position: relative;
	display: flex;
	align-content: center;
	align-items: center;
	z-index: 0;
}
.header  {
			width: calc(100%);
margin-left: 0px;
	}
	
	.footer-illustration {
	display: inline-block;
	margin-bottom: 10px;
	width: 100%;
}
	.product {
}
.strap {
	position: relative;
	padding-bottom: 60px;
	background-color: white;
}
div#perfect-serve-cocktails.content-container.unit.size3of4.lastUnit.perfect-serve-cocktails-section.page-section.is-inview article div.cocktail-products div.cocktail, .pro-img-holdr {
	width: 100%;
}
.cb-container {
	width: 100%;
	opacity: 0;
	display: block;
	margin-left: auto;
		margin-right: auto;
	padding: 0 0 20px;
	text-align: center;
	margin-top: -20px;
}
.s-btn {
	width: 14rem;
	min-width: 250px;
	background: url('../images/shopbutton-13-2.svg') no-repeat 10px center;	
	
	text-transform: capitalize;
	font: 4rem/4px highrise,neue-haas-grotesk-display,"Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: center;
	color: white;
	box-shadow: none;
	position: relative;
	transform: translate(-50%,-20%) rotate(0deg);
	left: 50%;
	height: 14rem;
	letter-spacing: 2px;
	padding: 0;
	top: 50%;
	margin-top: -5px;
	}
	.s-btn:hover {
	transform: translate(-50%,-20%) rotate(0deg);
}
.top-pic {
	
}
.wrp-l {
	width: 40%;
	min-width: 40px;
	display: block;
	align-items: center;
	text-align: center;
	clear: both;
	padding-bottom: 10px;
}
.wrp-l img {
	width: 100%;
}
.footer .roundal {
	width: 20%;
	max-width: 150px;
	min-width: 50px;
	margin-right: 40px;
	display: inline-block;
	float: none;
}
.footer .logo {
	max-width: 150px;
	min-width: 50px;
	float: none;
	display: inline-block;
}
.rndl {	
	transform: translate(-50% ,-200%);
}
}
/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: none !important;
	}
	a,
	a:visited {
	    text-decoration: underline
	}
	a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}

		
		@media screen and (orientation:portrait) {.hero-content-wrap {
			width: 98%;
			margin-right: auto;
	text-align: center;
			position: absolute;
			top: 20%;
			margin-left: 1%;
		}}
 @media screen and (orientation:landscape) { … }