/******************** GENERAL ********************/                                                                  
body, html {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
	overflow-x: hidden;
	background-color: white;
}

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

/* text adjustments */
h1, h2, h3, h4, p, a {
	font-family: 'Montserrat', sans-serif;
}

.curlyworld {
	font-family: 'Crimson Text', serif;
}

.fira {
	font-family: 'Fira Sans Condensed', sans-serif;
}

/* link */
a, a:hover {
	text-decoration: none;
	color: inherit;
}

/* background */
.background {
	background-size: cover;
	background-position: 50% 50%;
}

/* fill parent */
.fill-parent {
	width: 100%;
	height: 100%;
}

/* opacityShow */
.parallax-element.opacityShow {
	opacity: 0;
}

/* animate parallax */
.parallax-element.animate {
	transition: 3s;
}

/* input */
input {
	font-family: 'Fira Sans Condensed', sans-serif;
	font-size: 16px;
    -webkit-appearance: none;
	background-color: transparent;
    border-radius: 0;
	border: none;
	outline: none;
}

button {
	background-color: transparent;
	border: none;
	outline: none;
}

/* placeholder */
::-webkit-input-placeholder {
   position: relative;
   top: 1px;
   font-weight: 300;
   font-size: 16px;
   font-style: italic;
   color: white;
}

::-moz-placeholder {
   position: relative;
   top: 1px;
   font-weight: 300;
   font-size: 16px;
   font-style: italic;
   color: white;
}

:-ms-input-placeholder {
   position: relative;
   top: 1px;
   font-weight: 300;
   font-size: 16px;
   font-style: italic;
   color: white;
}

:-moz-placeholder {
   position: relative;
   top: 1px;
   font-weight: 300;
   font-size: 16px;
   font-style: italic;
   color: white;
}








/******************** PRELOADER ********************/
#Preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999999999;
	background-color: white;
}

/* loader */
#Preloader img {
	display: block;
	height: 150px;
	position: relative;
	top: 50%;
	margin-top: -75px;
    animation: preload 1.5s linear infinite;
    -webkit-animation: preload 1.5s linear infinite;
}







 
/******************** NAVIGATE ANIMATION ********************/
.navigateanimation {
	display: none;
	position: fixed;
	z-index: 999999999;
	background-color: white;
}

/* overlay */
.navigateanimation.overlay {
	width: 100%;
	height: 100vh;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
    opacity: 0;
	background-color: black;
}

/* position and dimension */
.navigateanimation.top,
.navigateanimation.bottom {
	width: 100%;
	height: 0px;
}

.navigateanimation.left,
.navigateanimation.right {
	width: 0px;
	height: 100vh;
}

.navigateanimation.top {
	top: 0px;
}

.navigateanimation.bottom {
	bottom: 0px;
}

.navigateanimation.left {
	left: 0px;
}

.navigateanimation.right {
	right: 0px;
}








/******************** HEADERS / CONTENT ********************/
.cwip-header {
    width: 100%;
    height: auto;
}  

.cwip-header.left {
    text-align: left;
}

.cwip-header.center {
    text-align: center;
}

/* one */
.cwip-header .cwiph-one {
    font-size: 8px;
    color: rgb(200,200,200);
}

.cwip-header .cwiph-one span {
    padding-left: 10px;
}

/* two */
.cwip-header .cwiph-two {
    margin-top: 18px;
    padding-bottom: 25px;
    line-height: 1;
    font-size: 42.5px;
    font-weight: bold;
    border-bottom: 1px solid rgb(225,225,225);
    color: #ab182d;
}

.cwip-header .cwiph-two strong {
    opacity: 0.3;
}

/* three */
.cwip-header .cwiph-three {
    margin-top: 25px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 300; 
    color: black;
}

.cwip-header .cwiph-three strong {
    font-weight: bold;
}

.cwip-header .cwiph-three.more-margin {
    margin-top: 60px;
}







   
/******************** WELCOME SECTION ********************/         
#WelcomeSection {   
    width: 100%;
    height: 800px;
    margin-top: 100px;
    position: relative; 
    background-color: #D7D7D7;
}

/* cols */
#WelcomeSection .welcome-col {
    display: inline-block;
    width: calc(50% - 100px);
    height: 600px;
    position: relative;
    top: 100px;
    z-index: 2; 
    float: left; 
}

/* img col */
#WelcomeSection .welcome-col.image-col {
    margin-left: 100px; 
    overflow: hidden;
    background-color: white;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px; 
}

#WelcomeSection .welcome-col.image-col .image {
    height: calc(100% + 100px);
    position: absolute;
    bottom: 0px;
    object-fit: cover;  
}

/* content col */
#WelcomeSection .welcome-col.content-col {
    margin-left: 50px;
}

/* inner content col */
#WelcomeSection .welcome-col.content-col .content-col-inner {
    width: 500px; 
    padding-top: 100px;
}

/* blocks */
#WelcomeSection #WelcomeSectionBlockOne {
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: #E6E6E6;
}

#WelcomeSection #WelcomeSectionBlockTwo {
    width: 75%;
    height: calc(100% - 100px);
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1; 
    background-color: #F5F5F5;
}








/******************** NO HARM SECTION ********************/
#NoHarmSection { 
    width: 1200px;
    height: auto;
    padding: 200px 0px 200px;
}

/* header */
#NoHarmSection .cwip-header {
    width: 800px;
}

#NoHarmSection .cwip-header .cwiph-three {
    padding: 0px 50px 0px;
}

/* cols */
#NoHarmSection  #NoHarmSectionCols {
    margin-top: 100px;
}

/* col el */
#NoHarmSection #NoHarmSectionCols .nhs-col {
    display: inline-block;
    height: auto;
    float: left;
    text-align: center;
    vertical-align: top;
}

/* col el - four */
#NoHarmSection #NoHarmSectionCols .nhs-col.four {
    width: calc(25% - 37.5px);
    margin-right: 50px;
}

#NoHarmSection #NoHarmSectionCols .nhs-col.nhsc4 {
    margin-right: 0px !important;
}

/* col el - three */
#NoHarmSection #NoHarmSectionCols .nhs-col.three {
    width: calc(33.333333% - 100px);
    margin-top: 75px;
    margin-left: 75px;
}

/* col el - img */
#NoHarmSection #NoHarmSectionCols .nhs-col img {
    width: auto;
    height: 50px;
}

/* col el - p */
#NoHarmSection #NoHarmSectionCols .nhs-col p {
    margin-top: 25px;
    padding-top: 30px;
    font-size: 15px;
    font-weight: bold;
    border-top: 1px solid rgb(225,225,225);
    color: #ab182d;
}

/* clear float */
#NoHarmSection .no-harm-sec-clear-float {
    width: 100%;
    height: 1px;
    clear: both;
}

#NoHarmSection .no-harm-sec-clear-float.mobile {
    display: none;
}





 


/******************** WATER SOLUBLE SECTION ********************/
#WaterSolubleSection {   
    width: calc(100% - 40px);
    height: 800px;
}

/* col */
#WaterSolubleSection .watersol-col {
    display: inline-block;
    width: calc(50% - 10px);
    height: 100%;
    float: left;
}

/* col - content */
#WaterSolubleSection .watersol-col.content-col {
    margin-right: 20px;
    background-color: #F5F5F5;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;   
}

/* col - content - inner */
#WaterSolubleSection .watersol-col .content-col-inner {
    width: 550px;
    padding-top: 150px;
}

/* col - image */
#WaterSolubleSection .watersol-col.image-col {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;     
}

#WaterSolubleSection .watersol-col.image-col .image {
    height: calc(100% + 100px);
    position: absolute;
    bottom: 0px;
    object-fit: cover;  
}








/******************** NOT ARTIFICIAL SECTION ********************/
#NotArtificialSection {    
    width: 100%;
    height: auto;
    padding: 200px 0px 200px;
    border-bottom: 1px solid rgb(225,225,225);
}

/* header */
#NotArtificialSection .cwip-header {
    width: 1000px;
}

#NotArtificialSection .cwip-header .cwiph-three {
    padding: 0px 100px 0px;
}
 







/******************** INGREDIENTS SECTION ********************/
#IngredientsSection {        
    width: 1200px;   
    height: auto;
    padding-top: 200px;
}

/* ing el */
#IngredientsSection .ing-el {
    width: 100%;
    height: 500px;
    position: relative;
}

/* ing el - cols */
#IngredientsSection .ing-el .ing-img,
#IngredientsSection .ing-el .ing-cont {
    height: 500px;
    position: absolute;
    top: 0px;
}

/* ing el - img */
#IngredientsSection .ing-el .ing-img {
    width: 40%;
    left: 0px;
    overflow: hidden;
    background-color: rgb(125,125,125);
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

#IngredientsSection .ing-el .ing-img img {
    opacity: 0.9;
    object-fit: cover;
}

/* ing el - cont */
#IngredientsSection .ing-el .ing-cont {
    display: flex;
    width: 60%;  
    right: 0px; 
    padding-left: 150px;
    padding-right: 75px;
    flex-direction: column;
    justify-content: center;   
    text-align: left;   
}

/* ing el - cont - general */
#IngredientsSection .ing-el .ing-cont p,
#IngredientsSection .ing-el .ing-cont h1,
#IngredientsSection .ing-el .ing-cont h2 {
    width: 100%;
}

/* ing el - cont - p */
#IngredientsSection .ing-el .ing-cont p {
    font-size: 12px;
    color: rgb(200,200,200);
}

#IngredientsSection .ing-el .ing-cont p span {
    padding-left: 10px;
}

/* ing el - cont - h1 */
#IngredientsSection .ing-el .ing-cont h1 {
    margin-top: 10px;
    padding-bottom: 15px;
    font-size: 30px;
    border-bottom: 1px solid rgb(225,225,225);
    color: #ab182d;
}

/* ing el - cont - h2 */
#IngredientsSection .ing-el .ing-cont h2 { 
    margin-top: 30px;
    line-height: 1.4;
    font-size: 15px;
    font-weight: 300;
    color: black;
}

#IngredientsSection .ing-el .ing-cont h2.first {
    margin-top: 60px;
}

#IngredientsSection .ing-el .ing-cont h2 strong {
    font-weight: bold;
}

/* ing divider */
#IngredientsSection .ing-divider {
    width: 100%;
    height: 1px;
    margin: 75px auto 75px;
    background-color: rgb(225,225,225);
}








/******************** VERTICAL DIVIDER ********************/
.vertical-divider {
	width: 100%;
	height: 250px;
	padding-top: 50px;
}

.vertical-divider .divider {
	width: 2px;
	height: 75px;
	background-color: rgb(225,225,225);
}
 







/******************** MF SECTION ********************/
#MFSection {
	width: 100%;
	height: 600px;
	overflow-y: hidden;    
}

/* col */
#MFSection .col {
	display: inline-block;
	width: 50%;
	height: 100%;
	position: relative;
	float: left;
}

/* map */
#MapSection #Map {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
}

/* overlay */
#MapSection .overlay {
	position: absolute;
	z-index: 9;
}

#MapSection .overlay.one {
	width: 100%;
	height: 300px;
}

#MapSection .overlay.two {
	width: 50%;
	height: 100%;
}

#MapSection #OverlayUpper {
	top: 0px;
	background: linear-gradient(to bottom, white, rgba(255,255,255,0));
}

#MapSection #OverlayLower {
	bottom: 0px;
	background: linear-gradient(to top, white, rgba(255,255,255,0));
}

#MapSection #OverlayRight  {
	right: 0px;
	background: linear-gradient(to left, white, rgba(255,255,255,0));
}

#MapSection #OverlayLeft {
	left: 0px;
	background: linear-gradient(to right, white, rgba(255,255,255,0));
}

/* footer inner */
#FooterSection #FooterInner {
	height: 84px;
	position: relative;
	top: calc(50% - 42px);
}

/* social media */
#FooterSection #SocialMedia {
	width: 100%;
	height: 50px;
	text-align: center;
}

/* box */
#FooterSection #SocialMedia .box {
	display: inline-block;
	width: 50px;
	height: 50px;
	margin: 0px 10px;
	background-color: rgb(240,240,240);
	border-radius: 100%;
	transition: 500ms;
}

#FooterSection #SocialMedia .box:hover {
	background-color: #AB182D;
	transform: rotate(360deg);
}

/* logo */
#FooterSection #SocialMedia .box img {
	width: 40px;
	height: 40px;
	margin-top: 5px;
}

/* content */
#FooterSection h2 {
	width: 100%;
	margin-top: 10px;
	text-align: center;
	font-weight: 300;
	font-size: 10px;  
	color: black;
}

#FooterSection h2 span {
	padding: 0px 5px;
} 