/* FONTS */
@font-face {
	font-display: swap;
	font-family: 'Clarendon LT Std';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/ClarendonLTStd-Light.eot');
	src: url('../fonts/ClarendonLTStd-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ClarendonLTStd-Light.woff2') format('woff2'),
		url('../fonts/ClarendonLTStd-Light.woff') format('woff'),
		url('../fonts/ClarendonLTStd-Light.ttf') format('truetype'),
		url('../fonts/ClarendonLTStd-Light.svg#ClarendonLTStd-Light') format('svg');
}

@font-face {
font-display: swap;
font-family: 'Clarendon LT Std Bold';
font-style: normal;
font-weight: bold;
src: url('../fonts/ClarendonLTStd-Bold.eot');
src: url('../fonts/ClarendonLTStd-Bold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/ClarendonLTStd-Bold.woff2') format('woff2'),
	url('../fonts/ClarendonLTStd-Bold.woff') format('woff'),
	url('../fonts/ClarendonLTStd-Bold.ttf') format('truetype'),
	url('../fonts/ClarendonLTStd-Bold.svg#ClarendonLTStd-Bold') format('svg');
}

@font-face {
font-display: swap;
font-family: 'GT America';
font-style: normal;
font-weight: bold;
src: url('../fonts/GTAmerica-Bold.eot');
src: url('../fonts/GTAmerica-Bold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/GTAmerica-Bold.woff2') format('woff2'),
	url('../fonts/GTAmerica-Bold.woff') format('woff'),
	url('../fonts/GTAmerica-Bold.ttf') format('truetype'),
	url('../fonts/GTAmerica-Bold.svg#GTAmerica-Bold') format('svg');
}

@font-face {
font-display: swap;
font-family: 'GT America Compressed';
font-style: normal;
font-weight: 500;
src: url('../fonts/GTAmerica-CompressedMedium.eot');
src: url('../fonts/GTAmerica-CompressedMedium.eot?#iefix') format('embedded-opentype'),
	url('../fonts/GTAmerica-CompressedMedium.woff2') format('woff2'),
	url('../fonts/GTAmerica-CompressedMedium.woff') format('woff'),
	url('../fonts/GTAmerica-CompressedMedium.ttf') format('truetype'),
	url('../fonts/GTAmerica-CompressedMedium.svg#GTAmerica-CompressedMedium') format('svg');
}

@font-face {
font-display: swap;
font-family: 'GT America Compressed Italic';
font-style: italic;
font-weight: 500;
src: url('../fonts/GTAmerica-CompressedMediumItalic.eot');
src: url('../fonts/GTAmerica-CompressedMediumItalic.eot?#iefix') format('embedded-opentype'),
	url('../fonts/GTAmerica-CompressedMediumItalic.woff2') format('woff2'),
	url('../fonts/GTAmerica-CompressedMediumItalic.woff') format('woff'),
	url('../fonts/GTAmerica-CompressedMediumItalic.ttf') format('truetype'),
	url('../fonts/GTAmerica-CompressedMediumItalic.svg#GTAmerica-CompressedMediumItalic') format('svg');
}

/* GLOBAL */
:root {
  --color-black: #000000;
  --color-orange: #E87722;
  --color-white: #FFFFFF;
  --color-yellow: #F1E6B2;
	--color-offwhite: #FEF7F1;
  --font-body: "Clarendon LT Std";
  --font-body-bold: "Clarendon LT Std Bold";
  --font-title: "GT America Compressed";
}

* {
  box-sizing: border-box;
}

body, html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
  font-smoothing: antialiased;
  font-variant-ligatures: none;
  height: 100%;
  text-rendering: optimizeLegibility;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
  background-attachment: fixed;
  background-color: var(--color-black);
  background-image: url('../images/bg-desktop.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  letter-spacing: -0.125px;
  line-height: 140%;
  margin: 0px;
}

.header__title {
	color: var(--color-white);
	font-family: var(--font-title);
	font-style: normal;
	font-weight: 500;
	text-align: center;
	text-shadow: 1.5px 1.5px 0 var(--color-black), 3px 3px 0 var(--color-orange);
	text-transform: uppercase;
}

.header__title.smaller {
	text-shadow: 1px 1px 0 var(--color-black), 2px 2px 0 var(--color-orange);
}

a {
  color: var(--color-orange);
  text-decoration: none;
}

ul {
	padding-left: 20px;
}

p {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* CONTAINERS */
.container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  margin: 0 auto;
  max-width: 90%;
  padding: 25px;
  position: relative;
  text-align: center;
  width: 100%;
}

.container__mobile {
	display: none;
	justify-content: flex-start
}

@media (max-width: 768px) {
  .container__desktop {
    display: none;
  }

  .container__mobile {
    display: flex;
  }
}

.container.fixed-height {
  height: 100%;
}

/* DESKTOP */
.desktop__grid {
	display: grid;
	grid-column-gap: 80px;
	grid-row-gap: 0px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
}

.desktop__grid--item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.desktop__tagline {
	max-width: 390px;
	width: 100%;
}

.desktop__textintro {
	max-width: 397px;
	width: 100%;
}

.desktop__bottle {
	max-width: 220px;
	width: 100%;
}

.desktop__qr {
	margin-bottom: 30px;
	max-width: 277px;
	width: 100%;
}

.desktop__qr--text {
	font-family: var(--font-body-bold);
	font-size: 2.2vw;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.225px;
	line-height: 1;
	text-align: center;
}

.footer__content {
	bottom: 20px;
	left: 0px;
	padding: 0px 30px;
	position: fixed;
	width: 100%;
}

.footer__content--first {
	display: inline;
	font-family: var(--font-body-bold);
	font-size: 1.5vw;
}

.footer__content--last {
	display: inline;
	font-family: var(--font-title);
	font-size: 1.2vw;
	letter-spacing: 0px;
	text-transform: uppercase;
}

.footer__content--star {
	position: relative;
	top: -1.5px;
}

/* BUTTONS */
.button {
	background: rgba(0, 0, 0, 0.66);
	border: 2.458px solid var(--color-yellow);
	color: var(--color-orange);
	display: inline-block;
	font-family: var(--font-title);
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	height: 57px;
	letter-spacing: -0.132px;
	line-height: 50px;
	max-width: 125px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.button.smaller {
	font-size: 24px;
	height: 40px;
	letter-spacing: -0.132px;
	line-height: 34px;
}

.small{
	font-size: 24px;
	line-height: 34px;
	height: 40px;
    margin-top: 10px;
    width: 50% !important;
}

.button.desktop {
	max-width: 225px;
	margin-top: 20px;
	font-size: min(1.5vw, 22px);
}

/* AGE GATE */
.container__agegate {
	align-items: center;
	background: var(--color-black);
	height: 100%;
	left: 0;
	max-width: 100%;
	position: fixed;
	top: 0;
	transition: opacity 600ms ease-in-out;
	width: 100%;
	z-index: 200;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
}

.agegate {
	background: var(--color-offwhite);
	color: var(--color-black);
	max-width: 600px;
	padding: 15px;
	width: 100%;
}

.agegate__logo {
	margin-bottom: 20px;
}

.agegate__inner {
	border: 1px solid var(--color-orange);
	padding: 40px 15px 40px;
}

.agegate__inner .header__title {
	color: var(--color-black);
	text-shadow: 1.5px 1.5px 0 var(--color-offwhite), 3px 3px 0 var(--color-orange);
}

.agegate__inner--buttons {
	margin-bottom: 30px;
	margin-top: 44px;
}

.agegate__inner--buttons .button {
	background: transparent;
}

.agegate__inner--buttons .button:first-child {
	margin-right: 4px;
}

.agegate__inner--buttons .button:last-child {
	margin-left: 4px;
}

/* HOME MOBILE */
.tagline__mobile {
	opacity: 0;
	margin-left: 3px;
	max-width: 290px;
	width: 100%;
}

.button__share {
	max-width: 40px;
	position: absolute;
	right: -10px;
	top: 10px;
	width: 100%;
	z-index: 99;
}


.home__content {
	margin-top: 80px;
}

.bottle__wrapper {
	-webkit-animation-fill-mode: forwards;
	-webkit-animation: scale 10s;
	-webkit-transform: scale(1.0); 
	align-items: center;
	animation-fill-mode: forwards;
	animation: scale 10s;
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	transform: scale(1.0);
	width: 100%;
	z-index: 9;
}

@-webkit-keyframes scale {
	from {
		-webkit-transform: scale(0.9);  
	}
	to {
		-webkit-transform: scale(1.0); 
	}
}

@keyframes scale {
	from {
		transform: scale(0.9);  
	}
	to {
		transform: scale(1.0); 
	}
}

.bottle__mobile--blur {
	position: absolute;
	z-index: 2;
	height: 100vh;
}

.bottle__mobile--blur img {
	height: 100vh;
}

.bottle__mobile--blur::before {
	backdrop-filter: blur(1px); 
	-webkit-animation-fill-mode: forwards;
	-webkit-animation: blur 10s;
	-webkit-backdrop-filter: blur(1px);
	animation-fill-mode: forwards;
	animation: blur 10s;
	clip-path: polygon(32.38% 4.34%, 67.11% 4.34%, 69.82% 30.04%, 94.02% 37.3%, 98.35% 93.97%, 1.28% 93.56%, 4.31% 37.3%, 27.05% 30.04%);
	content: " ";
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: -1;
}

@keyframes blur {
	from {
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px); 
	}
	to {
		-webkit-backdrop-filter: blur(1px);
		backdrop-filter: blur(1px); 
	}
}

.bottom__content {
	align-items: center;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	left: 0;
	min-height: 120px;
	padding: 25px;
	position: fixed;
	width: 100%;
	z-index: 99;
}

.bottom__content .button {
	max-width: 260px;
	width: 100%;
}

.bottom__content .button.smaller {
	max-width: 200px;
	width: 100%;
}

.bottom__content .button {
	margin-bottom: 10px;
}

.link__terms {
	color: #FFF;
	font-family: var(--font-title);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: -0.161px;
	margin-bottom: 10px;
	text-align: center;
	text-decoration-line: underline;
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.66);
	text-transform: uppercase;
}

.bottom__content .footer__content--first {
	font-size: 11px;
	line-height: 0.5;
}

.bottom__content .footer__content--first .footer__content--star {
	top: -0.5px;
	width: 7px;
}

.bottom__content .footer__content--last {
	font-size: 8px;
}

/* OVERLAY CONTENT */
.container__overlay, .container__cocktail {
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	background: rgba(0, 0, 0, 0.7);
	display: none;
	height: 100%;
	justify-content: flex-start;
	left: 0;
	max-width: 100%;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 1s ease-in-out;;
	width: 100%;
	z-index: 100;
}

.container__overlay .header__title {
	font-size: 30px;
	letter-spacing: -0.125px;
	line-height: 45px;
	margin-bottom: 15px;
}

.container__overlay .content__wrapper {
	font-size: 10px;
	line-height: normal;
	overflow: scroll;
	padding-bottom: 100px;
	text-align: left;
}

.bottom__content--alt {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 20.79%);
}

.bottom__content--alt .button {
	margin-bottom: 0px;
}

/* COCKTAILS */
.container__cocktail {
	background: none;
	display: flex;
	opacity: 1;
	padding: 25px 0px;
}

.container__cocktail .content__wrapper {
	line-height: 20px;
	overflow: scroll;
}

.container__cocktail .content__wrapper--text {
	padding: 25px 25px 100px 25px;
}

.container__cocktail .header__title {
	font-size: 50px;
	letter-spacing: -0.125px;
	line-height: 45px;
	margin-bottom: 30px;
}

.cocktail__image {
	max-width: 100%;
	width: 100%;
}

.container__cocktail .method__title {
	font-size: 30px;
	letter-spacing: -0.125px;
	line-height: 45px;
	margin-bottom: 10px;
}

/* iphone se  */
@media only screen 
  and (min-device-width: 300px) 
  and (max-device-width: 375px) {

	.container__cocktail .header__title {
		margin-bottom: 10px;
	}
	.container__cocktail .content__wrapper--text {
		padding: 0px 25px 100px 25px;
	}

	.home__content {
		margin-top: 50px;
	}
}