/* = General Styles
----------------------------------------------------------------------------- */


.shake:hover {
  animation: shake 1s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, -2px, 0) rotate(4deg) scale(.9);
  }
  
  20%, 80% {
    transform: translate3d(2px, -2px, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, -4px, 0) rotate(-4deg) scale(1);
  }

  40%, 60% {
    transform: translate3d(4px, -4px, 0);
  }
}


/* = General Styles
----------------------------------------------------------------------------- */

html {
	font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
	--global: #94d60a;
}

body {
	color: #969AA1;
	font-size: 1rem;
	font-family: 'Raleway', sans-serif;
	text-align: center;
	background: #000;
	overflow-x: hidden;
}

h1 {
	font-size: 4.5rem;
	font-weight: 700;
	padding-top: 50px;
	margin-bottom: 100px;
	color: #fff;
}

h1:after,
h2:after {
	content: '';
    height: 2px;
    width: 70px;
    margin: 35px auto 0 auto;
    display: block;
    background: #94d60a;
    background: var(--global);
}

h1 object {
	margin-bottom: 20px;
}

h2 {
	padding-top: 30px;
	margin-bottom: 40px;
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
}

h3 {
	font-size: .875rem;
	margin-bottom: 1.25rem;
	font-weight: 700;
	color: #fff;
}

a {
	transition: all .25s ease;
}

a:hover {
	color: #fff;
}


p {
	line-height: 1.4;
}

section,
footer {
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

/* = SECTION: HEAD
----------------------------------------------------------------------------- */

section#head {
	min-height: 1000px;
	background: url('../img/bg.jpg') center top no-repeat;
	background-size: 100%;
}

section#head h1 span {
	display: block;
}

section#head #slider {
	max-width: 880px;
	margin: 0 auto 50px auto;
	text-align: left;
}

section#head #slider div {
	outline: none;
}

section#head #slider img  {
	float: left;
	margin-right: 3rem;
	margin-left: 1rem;
}

section#head #slider h2  {
    color: #94d60a;
    color: var(--global);
    margin-bottom: 1.5rem;
}

section#head #slider h2:after {
	display: none;
}

section#head #slider p  {
	color: #fff;
	padding-right: 360px;
}


/* prev/next arrows */

section#head #slider .slick-prev,
section#head #slider .slick-next {
	font-size: 8rem !important;
	color: #fff;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	opacity: .75;
	z-index: 2;
    color: #94d60a;
    color: var(--global);
	cursor: pointer;
	transition: all .25s ease;
}

section#head #slider .slick-prev {
	left: -70px;
}

section#head #slider .slick-next {
	right: -70px;
}

section#head #slider .slick-prev:hover,
section#head #slider .slick-next:hover {
	opacity: 1;
	margin-top: -10px;
}

section#head #slider .slick-disabled {
	opacity: 0;
}

section#head #slider .slick-dots {
	text-align: center;
}

section#head #slider .slick-dots li {
	display: inline-block;
}

section#head #slider .slick-dots li button {
	 border: none;
	 border-radius: 50%;
	 height: 20px;
	 width: 20px;
	 margin: 0 .35rem;
	 padding: 0;
	 outline: none;
	 cursor: pointer;
	 line-height: 0;
	 box-sizing: border-box;
	border:  1px transparent solid;
}

section#head #slider .slick-dots li.slick-active button {
	border-color: #fff;
	box-shadow: inset 0 0 0 3px #000;
}

section#head #follow {
	max-width: 600px;
	margin: 50px auto 50px auto;
}

section#head #follow p {
	margin-bottom: 3.75rem;
}

section#head #follow .social li {
	display: inline-block;
}

section#head #follow .social li a {
	margin: 0 1rem;
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
}



/* = SECTION: NEWSLETTER
----------------------------------------------------------------------------- */

section#newsletter {
    background: #94d60a;
	background: var(--global);
	filter: saturate(60%);
}

section#newsletter:before,
section#newsletter:after {
    content: '';
    width: 572px;
    height: 1167px;
    display: block;
    background: url(../img/bg.svg);
    background-size: cover;
    position: absolute;
    top: -50%;
    left: 0;
    z-index: 1;
    transform: translateY(-25%);
    pointer-events: none;
}

section#newsletter:after {
	left: auto;
	right: 0;
	transform: rotate(180deg);
}

section#newsletter h2:after {
    background: #fff;
}

section#newsletter {
	padding: 75px 0 100px 0;
}

section#newsletter p {
	color: #fff;
}

section#newsletter p {
	margin-bottom: 2rem;
}

section#newsletter input[type="email"] {
	min-width: 250px;
	border-radius: 20px;
	border: none;
	font-size: 1rem;
	padding: .6rem 3rem .6rem 2rem;
	background: rgba(255,255,255,.6);
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
}

section#newsletter input[type="submit"] {
    margin-left: -40px;	
	padding: .5rem 1rem;
    border-radius: 20px;
	border: 2px #fff solid;
	font-size: 1rem;
	text-transform: uppercase;
	color: #fff;
    background: #94d60a;
    background: var(--global);
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	transition: all .25s ease;
}

section#newsletter input[type="submit"]:hover {
    color: #94d60a;
    color: var(--global);
	background: #fff;
}

section#newsletter .message {
    border: 3px #fff solid;
    width: 300px;
    margin: 2rem auto -2rem auto;
    padding: 1rem;
    color: #fff;
    font-weight: 700;
}

section#newsletter .message.error {
	border-color: #b71e1e;
	color: #b71e1e;
}

/* = SECTION: INSTAGRAM
----------------------------------------------------------------------------- */

section#instagram {
	padding-top: 75px;
	padding-bottom: 100px;
}

section#instagram .instagram_gallery {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

section#instagram .instagram_gallery .instagram-image {
	padding: .25rem;
}

section#instagram .instagram_gallery .instagram-image img {
	width: 100% !important;
	height: auto !important;
	max-width: 310px;
	float: none !important;
	margin: 0 !important;
	display: block;
}


/* = SECTION: VIDEOS
----------------------------------------------------------------------------- */

#videoCanvasWrapper {
	max-width: 1280px;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	margin: 0 auto;
	height: 0;
	overflow: hidden;
}

#videoCanvas {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

 #videos #videoSlider {
	max-width: 1280px;
	margin: 0 auto;
}

 #videos #videoSlider a {
 	cursor: pointer;
	outline: none;
	transition: all .25s ease;
}

 #videos #videoSlider a img {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 0 auto;
	filter: grayscale(100%);
	transition: all .25s ease;
}

 #videos #videoSlider a.active img {
	filter: grayscale(0);
}

 #videos #videoSlider a h3 {
 	margin-top: .75rem;
	color: #94d60a;
	color: var(--global);
}

 #videos #videoSlider .slick-prev,
 #videos #videoSlider .slick-next {
	font-size: 8rem !important;
	color: #fff;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	opacity: .75;
	z-index: 2;
	color: #94d60a;
	color: var(--global);
	cursor: pointer;
	transition: all .25s ease;
}

 #videos #videoSlider .slick-prev {
	left: -70px;
}

 #videos #videoSlider .slick-next {
	right: -70px;
}

 #videos #videoSlider .slick-prev:hover,
 #videos #videoSlider .slick-next:hover {
	opacity: 1;
	margin-top: -10px;
}

 #videos #videoSlider .slick-disabled {
	opacity: 0;
}

/* = SECTION: FOOT
----------------------------------------------------------------------------- */

section#foot #ingredients  {
	padding-top: 215px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

section#foot #ingredients li  {
    width: 25%;
    padding: 0 3.5rem;
    position: relative;
    box-sizing: border-box;
}

section#foot #ingredients li:before  {
	content: '';
	display: block;
	background-size: cover;
	margin: 0 auto;
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	transform: translateY(-100%);
}

section#foot #ingredients li:nth-child(1):before  {
	width: 87px;
	height: 129px;
	background-image: url(../img/ingredient_1.svg);
}

/* section#foot #ingredients li:nth-child(2):before  {
	width: 142px;
	height: 142px;
	background-image: url(../img/ingredient_2.svg);
}

 */

section#foot #ingredients li:nth-child(2):before  {
	width: 74px;
	height: 176px;
	background-image: url(../img/ingredient_3.svg);
}

section#foot #ingredients li:nth-child(3):before  {
	width: 105px;
	height: 105px;
	background-image: url(../img/ingredient_4.svg);
}



section#foot #ingredients li em  {
    margin-bottom: 2rem;
    display: block;
    color: #94d60a;
    color: var(--global);
    font-size: 3.75rem;
}

section#foot #ingredients li p  {
    font-size: .8125rem;
    line-height: 1.75;
}

section#foot h2 {
	max-width: 790px;
	margin-top: 65px;
	margin-left: auto;
	margin-right: auto;
}

section#foot #cans {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

section#foot #cans li {
	max-width: 50px;
	margin: 0 1.5rem;
}

section#foot #cans li img {
	width: 100%;
	height: auto;
}


/* = FOOTER
----------------------------------------------------------------------------- */


footer {
	max-width: 1440px;
	margin: 150px auto 0 auto;
	padding: 0 3rem;
	font-size: .75rem;
	text-align: center;
}

footer object {
    transform: scale(.6);
}
