:root {
	--white: #e4e4e4;
	--black: #000;
	--wine: hsl(348, 60%, 20%);
	--dark-wine: hsl(348, 60%, 15%);
	--light-wine: hsl(348, 60%, 25%);
	--leaf: hsl(153, 28%, 27%);
	--dark-leaf: hsl(153, 28%, 17%);
	--light-leaf: hsl(153, 28%, 37%);
	--sand: hsl(29, 42%, 50%);
	--dark-sand: hsl(29, 42%, 40%);
	--light-sand: hsl(29, 42%, 60%);
	--soil: hsl(23, 81%, 29%);
	--dark-soil: hsl(23, 81%, 19%);
	--light-soil: hsl(23, 81%, 39%);
}

@font-face {
	font-family: 'carla-light';
	src: url('../fonts/carlasanslight-webfont.woff2') format('woff2'), url('../fonts/carlasanslight-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'carla';
	src: url('../fonts/carlasansregular-webfont.woff2') format('woff2'), url('../fonts/carlasansregular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'carla-semi';
	src: url('../fonts/carlasanssemibold-webfont.woff2') format('woff2'), url('../fonts/carlasanssemibold-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'carla-bold';
	src: url('../fonts/carlasansbold-webfont.woff2') format('woff2'), url('../fonts/carlasansbold-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}

html {
	font-size: 22px;
}
body {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'carla-bold', sans-serif;
}

b {
	font-weight: 900;
}

ul {
	margin: 0;
	padding-left: 0;
	list-style: inside;
}

.hide {
	display: none;
}
.loader {
	display: inline-block;
	width: 20px;
	height: 20px;
}
.loader::after {
	content: " ";
	display: block;
	width: 15px;
	height: 15px;
	margin: 0px;
	border-radius: 50%;
	border: 3px solid var(--wine);
	border-color: var(--wine) transparent var(--leaf) transparent;
	animation: lds-dual-ring 0.7s linear infinite;
}

.lds-dual-ring {
	display: inline-block;
	width: 100px;
	height: 100px;
}
.lds-dual-ring::after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid var(--wine);
	border-color: var(--wine) transparent var(--leaf) transparent;
	animation: lds-dual-ring 0.7s linear infinite;
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.bg-white {
	background-color: var(--white) !important;
}
.bg-black {
	background-color: var(--black) !important;
}
.bg-wine {
	background-color: var(--wine) !important;
}
.bg-dark-wine {
	background-color: var(--dark-wine) !important;
}
.bg-light-wine {
	background-color: var(--light-wine) !important;
}
.bg-leaf {
	background-color: var(--leaf) !important;
}
.bg-dark-leaf {
	background-color: var(--dark-leaf) !important;
}
.bg-light-leaf {
	background-color: var(--light-leaf) !important;
}
.bg-sand {
	background-color: var(--sand) !important;
}
.bg-dark-sand {
	background-color: var(--dark-sand) !important;
}
.bg-light-sand {
	background-color: var(--light-sand) !important;
}
.bg-soil {
	background-color: var(--soil) !important;
}
.bg-dark-soil {
	background-color: var(--dark-soil) !important;
}
.bg-light-soil {
	background-color: var(--light-soil) !important;
}

.uppercase {
	text-transform: uppercase !important;
}
.text-white {
	color: var(--white) !important;
}
.text-black {
	color: var(--black) !important;
}
.text-wine {
	color: var(--wine) !important;
}
.text-dark-wine {
	color: var(--dark-wine) !important;
}
.text-light-wine {
	color: var(--light-wine) !important;
}
.text-leaf {
	color: var(--leaf) !important;
}
.text-dark-leaf {
	color: var(--dark-leaf) !important;
}
.text-light-leaf {
	color: var(--light-leaf) !important;
}
.text-sand {
	color: var(--sand) !important;
}
.text-dark-sand {
	color: var(--dark-sand) !important;
}
.text-light-sand {
	color: var(--light-sand) !important;
}
.text-soil {
	color: var(--soil) !important;
}
.text-dark-soil {
	color: var(--dark-soil) !important;
}
.text-light-soil {
	color: var(--light-soil) !important;
}

.hover-text-white:hover {
	color: var(--white) !important;
}
.hover-text-black:hover {
	color: var(--black) !important;
}
.hover-text-wine:hover {
	color: var(--wine) !important;
}
.hover-text-dark-wine:hover {
	color: var(--dark-wine) !important;
}
.hover-text-light-wine:hover {
	color: var(--light-wine) !important;
}
.hover-text-leaf:hover {
	color: var(--leaf) !important;
}
.hover-text-dark-leaf:hover {
	color: var(--dark-leaf) !important;
}
.hover-text-light-leaf:hover {
	color: var(--light-leaf) !important;
}
.hover-text-sand:hover {
	color: var(--sand) !important;
}
.hover-text-dark-sand:hover {
	color: var(--dark-sand) !important;
}
.hover-text-light-sand:hover {
	color: var(--light-sand) !important;
}
.hover-text-soil:hover {
	color: var(--soil) !important;
}
.hover-text-dark-soil:hover {
	color: var(--dark-soil) !important;
}
.hover-text-light-soil:hover {
	color: var(--light-soil) !important;
}

.text-900 {
	font-weight: 900 !important;
}
.text-400 {
	font-weight: 400 !important;
}

.text-carla {
	font-family: 'carla', sans-serif !important;
}
.text-carla-light {
	font-family: 'carla-light', sans-serif !important;
}
.text-carla-semi {
	font-family: 'carla-semi', sans-serif !important;
}
.text-carla-bold {
	font-family: 'carla-bold', sans-serif !important;
}

.border-white {
	border-color: var(--white) !important;
}
.border-black {
	border-color: var(--black) !important;
}
.border-wine {
	border-color: var(--wine) !important;
}
.border-dark-wine {
	border-color: var(--dark-wine) !important;
}
.border-light-wine {
	border-color: var(--light-wine) !important;
}
.border-leaf {
	border-color: var(--leaf) !important;
}
.border-dark-leaf {
	border-color: var(--dark-leaf) !important;
}
.border-light-leaf {
	border-color: var(--light-leaf) !important;
}
.border-sand {
	border-color: var(--sand) !important;
}
.border-dark-sand {
	border-color: var(--dark-sand) !important;
}
.border-light-sand {
	border-color: var(--light-sand) !important;
}
.border-soil {
	border-color: var(--soil) !important;
}
.border-dark-soil {
	border-color: var(--dark-soil) !important;
}
.border-light-soil {
	border-color: var(--light-soil) !important;
}

.hover-bg-white:hover {
	background-color: var(--white) !important;
}
.hover-bg-black:hover {
	background-color: var(--black) !important;
}
.hover-bg-wine:hover {
	background-color: var(--wine) !important;
}
.hover-bg-dark-wine:hover {
	background-color: var(--dark-wine) !important;
}
.hover-bg-light-wine:hover {
	background-color: var(--light-wine) !important;
}
.hover-bg-leaf:hover {
	background-color: var(--leaf) !important;
}
.hover-bg-dark-leaf:hover {
	background-color: var(--dark-leaf) !important;
}
.hover-bg-light-leaf:hover {
	background-color: var(--light-leaf) !important;
}
.hover-bg-sand:hover {
	background-color: var(--sand) !important;
}
.hover-bg-dark-sand:hover {
	background-color: var(--dark-sand) !important;
}
.hover-bg-light-sand:hover {
	background-color: var(--light-sand) !important;
}
.hover-bg-soil:hover {
	background-color: var(--soil) !important;
}
.hover-bg-dark-soil:hover {
	background-color: var(--dark-soil) !important;
}
.hover-bg-light-soil:hover {
	background-color: var(--light-soil) !important;
}

.transition-bg-color-linear {
	transition: background-color 0.3s linear, color 0.3s linear;
}

.text-lato {
	font-family: 'Lato', sans-serif !important;
}

.hidden {
	display: none !important;
}
.hidden-ni {
	display: none;
}

form {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
}
form .input-container {
	border: 2px solid var(--leaf);
	margin: 1rem;
	padding: 0.25rem 1rem;
}
form .input-container label {
	color: var(--leaf);
	display: block;
}
form .input-container input {
	border: 0;
	background-color: transparent;
	width: 100%;
}

section.section-1 {
	background-image: url("../images/bg-pattern.png");
	background-color: var(--white);
}
section.section-1 .section-1-container  {
	min-height: 700px;
	background-image: url("../images/vi-oliver-mirror.png"), url("../images/bg-white-alpha.png");
	background-repeat: no-repeat, repeat-y;
	background-position: top right, top center;
	background-size: 50%, 100%;
	text-align: left;
}
section.section-1 .section-1-container .section-1-content {
	padding: 2rem 0.5rem 0 2rem;
}

section.section-2 {
	color: var(--white);
	background-color: var(--leaf);
	background-image: url("../images/bg-leaf.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

section.section-3 {
	margin: 5rem 0 0;
	background-color: var(--sand);
	background-image: url("../images/bg-pattern2.png");
}
section.section-3 .section-3-container {
	background-image: url("../images/bg-sand-alpha.png");
	background-repeat: repeat-y;
	background-position: top center;
	background-size: 100%;
	height: 100%;
	position: relative;
}

section.section-3 .section-3-container .logo-method {
	position: absolute;
	top:  3rem;
	left: 2rem;
}

section.section-4 {
	background-color: var(--soil);
	background-image: url("../images/bg-leaf.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin: 0;
}

section.section-5 {
	margin: 5rem 0 0;
	background-color: var(--leaf);
	background-image: url("../images/bg-pattern3.png");
}
section.section-5 .section-5-container  {
	height: 100%;
	min-height: 500px;
	background-image: url("../images/vi-oliver-smile.png"), url("../images/bg-leaf-alpha.png");
	background-repeat: no-repeat, repeat-y;
	background-position: top right, top center;
	background-size: 50%, 100%;
	text-align: left;
}
section.section-5 .section-5-container .section-5-content {
	color: var(--white);
}
section.section-5 .section-5-container .section-5-content .logo-simple {
	color: var(--white);
	margin: 0 0 2rem;
}

section.section-6 {
	margin: 0;
	background-color: var(--wine);
}

section.section-1 h1, 
section.section-1 h2 {
	color: var(--wine);
}

.btn.bg-wine:hover {
	background-color: var(--dark-wine) !important;
}
.btn.bg-leaf:hover {
	background-color: var(--dark-leaf) !important;
}

.btn.squared {
	border-radius: 0 !important;
}

.parallax {
	padding: 5rem 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
}

.parallax.parallax-1 {
	background-image: url("../images/vi-oliver-microscope.jpg");
}
.parallax.parallax-2 {
	background-image: url("../images/vi-oliver-protocols.jpg");
}

.carousel {
	margin: 2rem 0;
	padding: 0 30px 0;
}

.carousel .carousel-description {
	text-align: center;
	margin: 0.5rem 0 1.5rem;
}

.carousel .carousel-description .beforeAfter {
	margin: 0 1rem;
}

.progress-container {
	width: 100%;
	background-color: var(--white);
	border: 1px solid var(--white);
	position: relative;
	height: 35px;
}
.progress-container .progress-text {
	width: 100%;
	position: relative;
	text-align: center;
	z-index: 2;
}
.progress-container .progress-bar {
	width: 85%;
	height: 33px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: var(--wine);
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
	color: var(--white);
}

footer {
	color: var(--leaf);
}

.grecaptcha-badge { 
    visibility: hidden;
}

@media only screen and (max-width: 991px) {
	section.section-1 .section-1-container {
		background-size: 100%, 100%;
		text-align: center;
	}
	section.section-1 .section-1-container .section-1-content h2 {
		margin-top: 85vw !important;
	}
	section.section-2 .section-2-title {
		text-align: center;
	}
	section.section-3 .section-3-container .logo-method {
		position: relative;
		display: block;
		top:  auto;
		left: auto;
		margin: 1rem auto;
	}
	section.section-5 .section-5-container {
		background-position: center bottom, 100%;
		text-align: center;
		height: 1040px;
	}
	section.section-5 .section-5-container .logo-simple {
		display: block;
		margin: 0 auto 2rem;
	}
}


@media only screen and (max-width: 555px) {
	section.section-1 .section-1-container .section-1-content {
		padding: 2rem 0.5rem;
	}
	section.section-1 .section-1-container .section-1-content h2 {
		margin-top: 75vw !important;
	}
	h2 {
		font-size: 1rem;
	}
	h3 {
		font-size: 0.9rem;
	}
	h4 {
		font-size: 0.8rem;
	}
	p,
	input,
	label,
	a.btn,
	button.btn {
		font-size: 0.7rem;
	}
	.parallax {
		background-size: cover;
	}
}	
