* {
      box-sizing: border-box;
      margin: 0%;
      padding: 0%;
      font-family: 'Montserrat';
	  font-weight: 300;
}

body { 
	overflow-x: hidden; 
	font-size: 100%;
	line-height: 1.8;
	background: #fff;
	color: #818285;
	min-width: (layout width)px;
}

#cover { 
	position: fixed; 
	height: 100%; 
	width: 100%; 
	top:0; 
	left: 0;
	background: #fff; 
	z-index:99999999999999; 
}

a { 
	color: #818285;
	text-decoration: underline;
}

p { 
	font-weight: 300 !important;
	font-size: 14px;
}

h1, h2 {
	color: #94368d;
	font-weight: bold;
	font-size: 18px;
	margin: 0 0 3px 0;
}

li { list-style: none; }

img { max-width: 100%; }

/*--------------- navigation --------------- */

.nav {
      width: 100%;
      position: fixed;
	  text-align: center;
      z-index: 2;
	  background: none;
	  height: auto;
}

.nav.scrolled {
	height: 68px;
	/*background: rgba(255,255,255,.8);*/
	transition: all 1s;
}

.nav #brand {
	width: 120px;
	position: fixed;
	top: 0px;
	left: 0px;
	padding: 20px;
	margin-left: -120px;
	opacity: 0;
	z-index: 999999999;
	transition: all .6s;
	background: none;
}

.nav.scrolled #brand {
	opacity: 1;
	margin: 0;
	transition: all .6s;
	background: #fff;
}

.close-btn {
      position: absolute;
      right: 30px;
      font-weight: 300;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      z-index: 2;
      top: -6px;
      line-height: 80px;
	  font-size: .8em !important;
	  cursor: pointer;
}

#resize {
      top: 0px;
      position: fixed;
      background: #94368d;
      width: 100%;
      height: 100%;
      visibility: hidden;
      opacity: 0;
      transition: all 1s ease-out;
	  z-index: 999999999999999;
	  overflow-x: hidden;
}

#resize h1, #resize h2, #resize p { text-align: center; }
#resize h1 { font-size: 30px; margin: 12% 0 30px 0; color: #fff; }
#resize h2, #resize p {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
}
#resize h2 { margin-top: 5%; }
#resize a { color: #fff; }

#resize #menu li {
      display: block;
      text-align: center;
      padding: 10px 0;
      font-size: 15px;
      min-height: 30px;
      font-weight: bold;
      transition: all 0.3s ease-out;
	  color: #fff;
}

#resize #menu li li {
	display: inline-block;
}

#resize #menu li a {
      color: #fff;
}

#resize #menu li a:hover {
      text-decoration: none;
}

#resize.active {
      visibility: visible;
      opacity: 1;
}


/*--------------- intro copy section starts  --------------- */

.content {
      width: 100%;
}

section {
      padding: 50px 0;
}

section#intro {
	padding: 15% 0 0 0;
}

#logo {
	width: 18%;
	margin: 0 auto;
	display: block;
	max-width: 200px;
}
#tagline {
	width: 66%;
	margin: 30px auto;
	display: block;
	max-width: 500px;
}

.intro {
	width: 85%;
	padding: 5px 15% 0 0;
	margin: 0 auto;
}

#art {
  	align-items: start;
	display: flex;
}

#bottle { 
	display: block; 
	margin: 0 auto; 
	padding: 0; 
	max-width: 1600px; 
	width: 100%; 
	height: auto !important; 
}

#assets img {
	display: block;
	margin: 0 auto -20px auto;
}
#assets h2, #assets p {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
}

#assets .col-md-6 div { text-align: center; }

.cta {
      background: #94368d;
      font-size: 16px;
      color: #fff !important;
	  font-weight: bold;
      padding: 12px 36px;
	  display: inline-block;
	  margin: 10px 0;
	  cursor: pointer;
	  min-width: 200px;
	  transition: all 200ms ease-out;
	  border: 1px solid #fff;
	  text-decoration: none !important;
}
.cta:hover {
	background: #fff;
	border: 1px solid #94368d;
	color: #94368d !important;
}


/*--------------- footer section starts here --------------- */

.footer {
      background: #fff;
}

.footer .col-md-4 {
      text-align: center !important;
	  margin: 0 auto;
}

.footer .container {
      padding: 180px 0 0 0;
}

.footer .copyright { padding: 120px 0 40px 0; }

.footer .copyright p { 
	font-size: 12px !important; 
	text-align: center;
}

/*--------------- media queries --------------- */

@media(max-width: 768px) {

	.intro {
		width: 100%;
		padding: 30px 10% 0 10%;
		margin: 0 auto;
	}
	#assets .cta {
		  margin-bottom: 50px;
	}
	#bottle { height: auto; }
	img { max-width: 100%; }
	#resize h1 { margin: 30% 0 30px 0; }
	#resize h2 { margin-top: 15%; }

}

