@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,600');

/* CSS Document */
/*------------------------------------------------------
CSS Created:	22/08/2019
CSS Author:		Alessandro Avallone
---------------------------------------------* GENERAL */

:root {
	--color-green-light: #97bf3c;
	--color-green-dark: #3c8c41;
}

html, body {
	padding:0;
	margin:0;
	font-family: 'Montserrat', sans-serif;
	font-weight:200;
	font-style:normal;
	background-image: url(../images/template/background.png);
	background-repeat: repeat-y;
	background-size: 100% auto;
}

body.menu-visible {
	overflow: hidden;
}

a {
	text-decoration:none;
}

svg {
	fill: currentColor;
}

button:focus {
	outline:0;
}

div {
	box-sizing: border-box;
}

img {
	display: block;
	box-sizing: border-box;
}

.clearfix::before,
.clearfix::after {
	content:"";
	display:table;
	clear:both;
}

.desktop {
	display:none;
}

.mobile {
	display:none;
}

.wrapper {
	margin: 0 auto;
	position: relative;
}

.grayscale {
	filter: grayscale(100%);
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* HEADER                  */
/*---------------------------------------------------------------------- */

header {
	position: fixed;
	z-index: 100;
	width: 100vw;
}

header #logo {
	position: absolute;
	z-index: 10;
	transform-origin: left top;
	transition: all 0.5s cubic-bezier(1,0,0,1);
}

header #logo img {
	position: absolute;
}

header #logo img:nth-of-type(1) {
	width: 100%;
	height: 100%;
	z-index: 9;
}

header #logo img:nth-of-type(2) {
	width: 100%;
	height: 100%;
	z-index: 8;
}

header #logo img:nth-of-type(3) {
	width: 100%;
	height: 100%;
	z-index: 7;
	opacity: 0.1;
	transform: translate(20px, 20px);
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* HAMBURGER               */
/*---------------------------------------------------------------------- */

#hamburgerWrapper {
    width: 140px;
    height: 70px;
	border-radius: 100px;
	background-color: var(--color-green-dark);
	position: absolute;
	z-index: 10;
	top: 40px;
	right: 60px;
	box-shadow: 0px 10px 0px 0px rgba(0,0,0,0.2);
	transform: translateY(0);
	transition: all 0.25s ease-in;
}

#hamburgerWrapper.search-visible {
	width: 50vw;
}

#hamburgerWrapper.menu-visible {
	background-color: var(--color-green-light);
	transform: translateY(10px);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
	transition: all 0.25s ease-out;
}

#hamburgerWrapper #hamburgerButton {
	display: block;
    position: absolute;
    width: 35px;
    left: 30px;
    top: 23px;
}

#hamburgerWrapper.search-visible #hamburgerButton {
	display: none;
}

#hamburgerWrapper #searchButton,
#hamburgerWrapper #backButton {
    position: absolute;
	display: block;
    width: 30px;
    height: 30px;
    right: 25px;
    top: 20px;
	cursor: pointer;
}

#hamburgerWrapper #backButton {
	display: none;
}

#hamburgerWrapper.menu-visible #searchButton {
	display: none;
}

#hamburgerWrapper img {
	width: 100%;
	height: 100%;
}

#hamburgerWrapper #searchForm {
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s linear;
	transition-delay: 0.25s;
	margin: 15px;
}

#hamburgerWrapper.search-visible #searchForm {
	visibility: visible;
	opacity: 1;	
}

#hamburgerWrapper #searchForm input[type="text"] {
	width: 94%;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
	background-color: transparent;
	font-family: 'Montserrat', sans-serif;
	font-weight: 200;
	font-size: 16px;
	color: white;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.4);
}

#hamburgerWrapper #searchForm input[type="text"]::placeholder {
  color: white;
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* NAV                     */
/*---------------------------------------------------------------------- */

#mainNav {
	position: absolute;
	z-index: 9;
	width: 100vw;
	height: 100vh;
	background-color: var(--color-green-light);
	transform: translateY(-100vh);

}

#mainNav.is-visible {
	transform: translateY(0);
	transition: all 0.25s cubic-bezier(1,0,0,1);	
}

#mainNav .mainNavWrapper {
	display: flex;
	flex-flow: row nowrap;
}

#mainNav .mainNavWrapper .column {
	border-left: 1px solid rgba(255,255,255,0.20);
	transition: all 0.25s cubic-bezier(1,0,0,1);	
}

#mainNav .mainNavWrapper .column#columnNavigation {
	font-weight: 100;
	text-transform: uppercase;
}

#mainNav .mainNavWrapper .column#columnNavigation ul li {

}

#mainNav .mainNavWrapper .column#columnNavigation ul li[data-id="products"] {
    display: none;
}

#mainNav .mainNavWrapper .column#columnCategories {

	font-weight: 100;
}

#mainNav .mainNavWrapper .column ul {
	opacity: 0;
	display: block;
	transform: translateX(40px);
	transition: all 0.5s ease-out;
}

#mainNav.is-visible .mainNavWrapper .column ul {
	opacity: 1;
	transform: translateX(0px);
}

#mainNav.is-visible .mainNavWrapper .column#columnNavigation ul {
	transition-delay: 0.5s;
}

#mainNav.is-visible .mainNavWrapper .column#columnCategories ul {
	transition-delay: 0.7s;
}

#mainNav .mainNavWrapper .column#columnCategories ul li {
	padding-bottom: 20px;
}

#mainNav .mainNavWrapper .column#columnCategories ul li:first-of-type {
	font-size: 36px;
	opacity: 0.6;
	text-transform: uppercase;
}

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

#mainNav ul li a {
	color: white;
}



/*---------------------------------------------------------------------- */
/*---------------------------------------------* ABOVE                   */
/*---------------------------------------------------------------------- */

#above {
    position: relative;
    width: 100%;
}

#above .mask {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
}

#above .mask img {
	width: 100%;
	height: 100%;	
	object-fit: cover;
	object-position: bottom center;
}

#above .picture {
	width: 100%;
	height: 100%;
}

#above .picture img {
	width: 100%;
	height: 100%;	
	object-fit: cover;
	object-position: bottom center;	
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* CONTENT                 */
/*---------------------------------------------------------------------- */

#content a {
	color: var(--color-green-light);
}

#content .grid {
	display: flex;
	flex-flow: row wrap;
}

#content .grid img.rounded {
	width: 100%;
	padding: 0;
	height: auto;
	border-radius: 20px;
}

#content h1, h2, h3 {
	text-transform: uppercase;
	color: var(--color-green-dark);
	margin-top: 0;
}

#content .intro {
    font-weight: 300;
    margin: 0 auto;
}

#content p.breadcrumbs {
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}

#content p.breadcrumbs a {
}

#content .small {
	font-size: 16px;
	line-height: 24px;
    font-weight: 300;	
}

#content .small a {
	font-weight: 600;
}

#content a.button {
	background-image: url(../svg/leaf.svg);
	background-position: left center;
	background-size: 30px auto;
	background-repeat: no-repeat;
	padding: 10px 0 10px 40px;
}

#content .green {
	color: var(--color-green-dark);
	font-weight: 300;
}

#content .textBox {
	padding: 40px;
    background-color: rgba(255,255,255,0.60);
    border-radius: 30px;
}

/*---------------------------------------------* CONTENT > GRID-PRODUCTS */

#content #grid--products {	
	
}
	
#content #grid--products .product .productThumb {
	position: relative;
}
	
#content #grid--products .product .productThumb::before {
	content: "";
	width: 60%;
	height: 60%;
	left: 20%;
	top: 20%;
	border: 2px dashed var(--color-green-light);
	border-radius: 200px;
	z-index: 9;
	position: absolute;
}
	
#content #grid--products .product .productThumb img {
	width: 100%;
	z-index: 10;
	position: relative;
}

/*---------------------------------------------* CONTENT > GRID-FEATURES */

#content #grid--features img {
	width: 120px;
	height: 120px;	
	margin: 0 20px;
}

#content #grid--features img.not-active {
	opacity: 0.4;
	filter: grayscale(100%);
}

#content input[type='text'], #content input[type='email'] {
	width: 80%;
	border: 0;
	border-bottom: 1px dashed rgba(0,0,0,0.2);
	background-color: transparent;
	padding: 10px;
	margin-bottom: 40px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--color-green-dark);	
}

#content input[type='checkbox'] {
	width: 20px;
	height: 20px;
	
}

/*---------------------------------------------* CONTENT > GRID-WEIGHTS  */
	
#content #grid--weights {
	padding: 40px;
	text-align: center;
	justify-content: center;
}
	
#content #grid--weights div {
	text-align: center;
	font-weight: 600;
	padding: 0 20px;
}
	
#content #grid--weights img {		
	padding: 20px;
	border-radius: 60px;
	border: 2px dotted var(--color-green-light);
	background-color: white;
	margin-bottom: 10px;
}

/*---------------------------------------------* CONTENT > GRID-BOX */

#content #grid--box .row {
	margin-bottom: 80px;
}

#content #grid--box .row:last-of-type {
	margin-bottom: 0px;
}

#content #grid--box .row .col {
	position: relative;
}

#content #grid--box .row .col:nth-of-type(1) {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

#content #grid--box .row:nth-of-type(even) {
	flex-flow: row wrap;	
}

#content #grid--box .row:nth-of-type(odd) {
	flex-flow: row-reverse wrap;	
}

#content #grid--box .row .col .circle {
	margin: 0 auto;
	border-radius: 200px;
	border: 4px solid var(--color-green-light);
	color: var(--color-green-light);
}

#content #grid--box .row .col .circle img {
	width: 100%;
	height: 100%;
}

#content #grid--box .row .col .circle img.highlight {
	padding: 0px;
	z-index: 10;
	position: relative;
}

#content #grid--box .row .col .circle.date {
	display: flex;
	position: relative;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
}

#content #grid--box .row .col .circle.date span {
	display: block;
	font-weight: 600;
	text-transform: uppercase;
}

#content #grid--box .row .col.col-image .circle.date span {
	color: white;
}

#content #grid--box .row .col.col-image .thumb {
	position: relative;
}

#content #grid--box .row .col.col-image .thumb.overlay::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.40);
	left: 0;
	top: 0;
	position: absolute;
	z-index: 10;
	border-radius: 20px;
}

#content #grid--box .row .col.col-image .circle {
	position: absolute;
	z-index: 10;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	border-color: white;
	color: white;
}

#content #grid--gallery .col {
	margin-bottom: 40px;	
}

/*---------------------------------------------* CONTENT > PRODUCT       */

#content #productImage {
    position: relative;
    height: calc(40vw - 240px);
}

#content #productImage img {
	width: 40vw;
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
	top: -240px;
}

#content ul.benefits  {
	list-style: none;
	margin: 0;
	margin-top: 20px;
	padding: 0;
}

#content ul.benefits li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

#content ul.benefits.small li {
	line-height: 18px;
}

#content ul.benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
	transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: var(--color-green-light);
    font-weight: bold;
    display: inline-block;
}

#content .parsley-errors-list {
	display: none;
}

#content .parsley-error {
	border: 1px solid red;
}

#content input[type='text'].parsley-error, #content input[type='email'].parsley-error {
	border: 1px solid red;
}

#content p.parsley-error {
	width: 83%;
	border: 1px solid red;
}


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

footer {
	
}
	
footer #info {
	text-align: center;
}

footer #info .info {
	padding: 40px 0;
}

footer #info .info h3 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

footer #info .info p {
	font-size: 14px;
	font-weight: 300;
}

footer #info .info p.credits {
	font-size: 12px;
}

footer #info .info a {
	font-weight: 600;
	color: var(--color-green-light);
}

footer #waves {
	position: relative;
	margin: 0 auto;
	width: 80vw;
	height: 10vw;	
}

footer #waves svg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}



/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ LARGE ]   */
/*---------------------------------------------------------------------- */

@media screen and (min-width:1600px) {

	html, body {
		background-position: top var(--top-offset) right 0;
	}	
	
	.desktop {
		display: block;
	}	
	
	.wrapper {
		width: 1480px;
	}
	
	header #logo {
		width: 400px;
		height: 229px;
		left: -90px;
		top: -45px;
	}	
	
	header #logo.small {
		transform: scale(0.8) translate(30px, 0px);
	}	
	
	#mainNav .mainNavWrapper {
		padding-left: 480px;
		padding-top: 80px;
	}

	#mainNav .mainNavWrapper .column#columnNavigation {
		font-size: 36px;
	}	
	
	#mainNav .mainNavWrapper .column#columnNavigation {
    	font-size: 32px;
	}
	
	#mainNav .mainNavWrapper .column#columnCategories {
    	font-size: 24px;
    	margin-left: 160px;
	}		
	
	#mainNav .mainNavWrapper .column#columnNavigation ul li,
	#mainNav .mainNavWrapper .column#columnCategories ul li {
		padding-left: 40px;
	}
	
	#mainNav .mainNavWrapper .column#columnNavigation ul li {
		padding-bottom: 40px;
	}
	
	#mainNav .mainNavWrapper .column#columnCategories ul li {
		padding-bottom: 20px;
	}	
	
	#mainNav .mainNavWrapper .column#columnCategories ul li:first-of-type {
    	font-size: 32px;
	}	
	
	#above {
		height: 640px;
	}
	
	#content {
		padding-top: 80px;
	}
	
	#content section {
		padding-bottom: 40px;
	}
	
	#content .intro {
		font-size: 18px;
    	line-height: 24px;
	}
	
	#content h1 {
		font-weight: 100;
		font-size: 48px;
	}

	#content h2 {
		font-weight: 200;
		font-size: 32px;
		line-height: 32px;
	}	
	
	#content h3 {
		font-weight: 600;
		font-size: 24px;
		line-height: 24px;
	}	
	
	#content .col-lg-6 {
		width: 50%
	}	
	
	#content .col-lg-4 {
		width: 33.33%
	}
	
	#content .col-lg-3 {
		width: 25%
	}	
	
	#content #grid--box .row .col {
		padding: 0 80px;
	}	
	
	#content #grid--box .row .col .circle {
		width: 300px;
		height: 300px;
	}
	
	#content #grid--box .row .col .circle img {
		padding: 60px;
	}
	
	#content #grid--box .row .col .circle img.highlight {
		width: 360px;
		height: 360px;
		transform: translate(-30px, -30px);
	}	

	#content #grid--box .row .col .circle.date span:nth-of-type(1) {
		font-size: 60px;
		line-height: 40px;
	}

	#content #grid--box .row .col .circle.date span:nth-of-type(2) {
		font-size: 100px;
		line-height: 80px;
	}	
	
	#content #grid--products .product .productInfo {
		height: 30%;
	}

	#content #grid--products .product {
    	padding: 40px;
	}
	
	#content #grid--products .product .productInfo {
    	height: 40%;
	}
	
	#content #grid--weights img {		
		width: 180px;
		height: 180px;
	}	
	

}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ MEDIUM ]  */
/*---------------------------------------------------------------------- */

@media screen and (min-width:769px) and (max-width:1599px) {
	
	html, body {
		background-position: top 0 right 0;
	}	
	
	.desktop {
		display: block;
	}	
	
	.wrapper {
		width: 90%;
	}	
	
	header #logo {
    	width: 360px;
    	height: 206px;
    	left: -60px;
    	top: -40px;
	}	
	
	header #logo.small {
		transform: scale(0.6) translate(30px, 30px);
	}	
	
	#mainNav .mainNavWrapper {
		padding-left: 320px;
		padding-top: 160px;
	}	
	
	#mainNav .mainNavWrapper .column#columnNavigation {
    	font-size: 32px;
	}
	
	#mainNav .mainNavWrapper .column#columnCategories ul li:first-of-type {
    	font-size: 32px;
	}
	
	#mainNav .mainNavWrapper .column#columnCategories {
    	font-size: 21px;
    	margin-left: 90px;
	}
	
	#mainNav .mainNavWrapper .column#columnNavigation ul li,
	#mainNav .mainNavWrapper .column#columnCategories ul li {
		padding-left: 40px;
	}

	#mainNav .mainNavWrapper .column#columnCategories ul li {
		padding-bottom: 20px;
	}	
	
	#above {
		height: var(--above-height);
	}
	
	#content {
		padding-top: 60px;
	}
	
	#content section {
		padding-bottom: 30px;
	}	
	
	#content h1 {
		font-weight: 100;
		font-size: 42px;
	}

	#content h2 {
		font-weight: 200;
		font-size: 32px;
		line-height: 32px;
	}
	
	#content h3 {
		font-weight: 600;
		font-size: 21px;
		line-height: 21px;
	}	
	
	#content p.intro {
		font-size: 18px;
    	line-height: 24px;
	}	
	
	#content .small {
		font-size: 14px;
		line-height: 18px;
	}	
	
	#content .col-md-6 {
		width: 50%
	}	
	
	#content .col-md-4 {
		width: 33.33%
	}
	
	#content .col-md-3 {
		width: 25%
	}	
	
	#content #grid--box .row .col {
		padding: 0 60px;
	}	
	
	#content #grid--box .row .col .circle {
		width: 240px;
		height: 240px;
	}	
	
	#content #grid--box .row .col .circle img {
		padding: 40px;
	}	
	
	#content #grid--box .row .col .circle img.highlight {
		width: 320px;
		height: 320px;
		transform: translate(-50px, -30px);
	}
	
	#content #grid--box .row .col .circle.date span:nth-of-type(1) {
    	font-size: 40px;
    	line-height: 40px;
	}
		
	#content #grid--box .row .col .circle.date span:nth-of-type(2) {
    	font-size: 60px;
    	line-height: 60px;
	}		
	
	#content #grid--products .product .productInfo {
		height: 50%;
	}

	#content #grid--products .product {
    	padding: 20px;
	}
	
	#content #grid--weights img {		
		width: 140px;
		height: 140px;
	}	
	
}

/*---------------------------------------------------------------------- */
/*---------------------------------------------* MEDIA QUERY [ MOBILE ]  */
/*---------------------------------------------------------------------- */

@media screen and (min-width:320px) and (max-width:768px) {

	.mobile {
		display: block;
	}
	
	.wrapper {
		width: 90%;
	}	

	header #logo {
		width: 50vw;
    	height: 25vw;
    	left: -10vw;
    	top: -5vw;
	}
	
	header #logo.small {
		transform: scale(1) translate(0px, 0px);
	}
	
	header #logo img:nth-of-type(3) {
    	transform: translate(0px, 10px);
	}
	
	.menu-visible header #logo {
		transform: translate(-50vw, -25vw);
	}
	
	#hamburgerWrapper {
    	width: 100px;
    	height: 50px;
    	border-radius: 20px;
    	z-index: 10;
    	top: 20px;
    	right: 20px;
		box-shadow: 0px 5px 0px 0px rgba(0,0,0,0.2);
	}
	
	#hamburgerWrapper #hamburgerButton,
	#hamburgerWrapper #searchButton {		
		transform: scale(0.75);	
	}
	
	#hamburgerWrapper #hamburgerButton {
    	left: 20px;
    	top: 12px;
	}
	
	#hamburgerWrapper #searchButton,
	#hamburgerWrapper #backButton {
    	right: 15px;
    	top: 10px;
	}
	
	#hamburgerWrapper #backButton {
		display: block;
		visibility: hidden;
		opacity: 0;
	}
	
	#hamburgerWrapper #backButton.visible {
		visibility: visible;
		opacity: 1;
	}	
	
	#hamburgerWrapper #searchForm {
		margin: 5px;
	}	
	
	#hamburgerWrapper.search-visible {
		width: calc(100vw - 40px);
	}	
	
	#mainNav .mainNavWrapper {
		display: block;
	}	
	
	#mainNav .mainNavWrapper .column {
		width: 100vw;
		height: calc(var(--vh, 1vh) * 100);
		border: none;
	}	
	
	#mainNav .mainNavWrapper .column ul {
    	padding: 40px;
	}	
	
	#mainNav .mainNavWrapper .column#columnNavigation {
    	font-size: 24px;
		font-weight: 400;
	}
	
	#mainNav .mainNavWrapper .column#columnNavigation ul li[data-id="products"] {
		display: block;
	}	
	
	#mainNav .mainNavWrapper .column#columnCategories {
    	font-size: 18px;
		position: fixed;
		left: 0;
		top: 0;
		background-color: var(--color-green-dark);
		z-index: 100;
		transform: translateY(-100vh);
	}
	
	#mainNav .mainNavWrapper .column#columnCategories.visible {
		transform: translateY(0);

	}
	
	#mainNav .mainNavWrapper .column#columnNavigation ul li {
    	padding-bottom: 80px;
    	padding-left: 20px;
	}
	
	#mainNav .mainNavWrapper .column#columnCategories ul li {
		padding-bottom: 20px;
	}
	
	#mainNav .mainNavWrapper .column#columnCategories ul li:first-of-type {
    	font-size: 32px;
		color: white;
		opacity: 1;
	}
	
	#above {
		height: 640px;
	}
	
	#content {
    	padding-top: 40px;
	}
	
	#content section {
		padding-bottom: 40px;
	}
	
	#content h1 {
		font-weight: 100;
		font-size: 32px;
		line-height: 32px;
	}

	#content h2 {
		font-weight: 200;
		font-size: 24px;
		line-height: 24px;
	}
	
	#content h3 {
		font-weight: 600;
		font-size: 16px;
		line-height: 21px;
	}	
	
	#content .intro {
		font-size: 18px;
    	line-height: 24px;
	}	
	
	#content .small {
    	font-size: 12px;
    	line-height: 18px;
	}	
	
	#content .col-sm-6 {
		width: 50%
	}	
	
	#content .col-sm-4 {
		width: 33.33%
	}
	
	#content .col-sm-3 {
		width: 25%
	}	
	
	#content #grid--box .row .col:nth-of-type(1) {
		margin-bottom: 40px;
	}
	
	#content #grid--box .row .col .circle {
		width: 200px;
		height: 200px;
	}
	
	#content #grid--box .row .col .circle img {
		padding: 20px;
	}
	
	#content #grid--box .row .col .circle img.highlight {
    	width: 80vw;
    	height: 80vw;
		transform: translate(-14vw, -14vw);
	}	

	#content #grid--box .row .col .circle.date span:nth-of-type(1) {
		font-size: 60px;
		line-height: 40px;
	}

	#content #grid--box .row .col .circle.date span:nth-of-type(2) {
		font-size: 100px;
		line-height: 80px;
	}	
	
	#content #grid--products .product .productInfo {
		height: 30%;
	}

	#content #grid--products .product {
    	padding: 10px;
	}
	
	#content #grid--products .product .productInfo {
    	height: 200px;
	}		
	
	#content .col-sm-12 {
		width: 100%;
	}
	
	#content #grid--box .row .col .circle.date span:nth-of-type(1) {
    	font-size: 36px;
    	line-height: 36px;
	}
	
	#content #grid--box .row .col .circle.date span:nth-of-type(2) {
    	font-size: 36px;
    	line-height: 36px;
	}
	
	#content .textBox {
    	padding: 10px;
    	background-color: rgba(255,255,255,0.60);
    	border-radius: 20px;
	}
	
	#content #productImage {
		height: 120px;
	}	
	
	#content #productImage img {
   		width: 80vw;
    	top: -140px;
	}	
	
	#content #grid--weights {
    	padding: 20px;
	}
	
	#content #grid--weights img {
		width: 28vw;
    	height: 28vw;
	}
	
	footer #waves {
		position: relative;
		margin: 0 auto;
		width: 100vw;
		height: 20vw;
	}	


}
