@charset "UTF-8";
/**
 * @package     OOP Templates
 * @subpackage  Template • Planet Clean Services
 * @version		1.0
 *
 * @author		Jonathan Coullet
 * @copyright	Copyright (C) 2020 Only One Prod
 * @link		www.onlyoneprod.com
 */



/******************************************************************************************\
	RESET
\******************************************************************************************/

/* FONTS */
@font-face { font-family: Myriad; font-display: auto; font-weight: 100; font-style: normal; src: url('../fonts/myriadpro_l.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 100; font-style: italic; src: url('../fonts/myriadpro_li.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 300; font-style: normal; src: url('../fonts/myriadpro_r.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 300; font-style: italic; src: url('../fonts/myriadpro_ri.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 500; font-style: normal; src: url('../fonts/myriadpro_sb.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 500; font-style: italic; src: url('../fonts/myriadpro_sbi.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 700; font-style: normal; src: url('../fonts/myriadpro_b.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 700; font-style: italic; src: url('../fonts/myriadpro_bi.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 900; font-style: normal; src: url('../fonts/myriadpro_bl.otf') }
@font-face { font-family: Myriad; font-display: auto; font-weight: 900; font-style: italic; src: url('../fonts/myriadpro_bli.otf') }


/* VARS */
:root {
	--color-blue-light: #68C4EB;
	--color-blue-mid: #009FE3;
	--color-blue-dark: #48788D;
	--color-green-ulight: #E3F5B3;
	--color-green-light: #C3E36C;
	--color-green-mid: #95C11F;
	--color-green-dark: #6C9305;
	
	--color-text: #48788D;
	--color-text-normal: rgba(255,255,255,.85);
	--color-text-hover: rgba(255,255,255,1);

	--menu-bckg-normal: rgba(255,255,255,0);
	--menu-bckg-scroll: rgba(255,255,255,.9);
}


/* MAIN LAYOUT */
* {
    box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	letter-spacing: .07em;
	font-feature-settings: "liga" 0;
	font-family: Myriad, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-weight: 300;
    outline: none;
}


/* TYPOGRAPHY */
h1 {
	margin: 0 0 25px;
	padding: 0 20px;
	color: var(--color-green-mid);
	font-size: 64px;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
}
h2 {
	color: var(--color-blue-mid);
	font-size: 48px;
	font-weight: 300;
	text-align: left;
	text-transform: uppercase;
	margin: 20px 0 0;
}
h3 {
	color: var(--color-blue-mid);
	font-size: 32px;
	font-weight: 300;
	text-align: left;
	margin: 10px 0 5px;
}


p {
	color: var(--color-text);
	font-size: 12px;
	font-weight: 100;
	line-height: 16px;
	margin: 0 0 10px;
	text-align: justify;
}
strong, b { font-weight: 500; }
em, i { font-style: italic; }

ul, ol { margin: 0 0 10px; }
li {
	margin: 0 0 5px 15px;
	color: var(--color-text);
	font-size: 12px;
	font-weight: 100;
	text-align: justify;
}


a {
	font-weight: 700;
	color: var(--color-green-mid);
	text-decoration: none;
}
a:hover { color: var(--color-blue-mid); }
a:active { color: var(--color-blue-dark); }


button,
a.btn {
	display: inline-block;
	padding: 12px 20px 10px;
	color: var(--color-text-normal);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	box-shadow: 0 3px 5px rgba(0,0,0,.15);
	border: none;
	background: linear-gradient(180deg, var(--color-green-mid), var(--color-green-dark));
}
button:hover,
a.btn:hover {
	color: var(--color-text-hover);
	box-shadow: 0 3px 5px rgba(0,0,0,.35);
	background: linear-gradient(180deg, var(--color-green-light), var(--color-green-mid), var(--color-green-dark));
}
button:active,
a.btn:active {
	color: var(--color-green-dark);
	box-shadow: none;
	background: linear-gradient(180deg, var(--color-green-dark), var(--color-green-mid));
}

#contact input[type=submit],
button.blue,
a.btn.blue {
	border: none;
	background: linear-gradient(180deg, var(--color-blue-mid), var(--color-blue-dark));
	border-radius: 0;
}

#contact input[type=submit]:hover,
button.blue:hover,
a.btn.blue:hover { background: linear-gradient(180deg, var(--color-blue-light), var(--color-blue-mid), var(--color-blue-dark)); }

#contact input[type=submit]:active,
button.blue:active,
a.btn.blue:active {
	color: var(--color-blue-dark);
	background: linear-gradient(180deg, var(--color-blue-dark), var(--color-blue-mid));
}

#contact input[type=submit]:disabled {
    color: #ccc;
	background: rgba(0,0,0,.1);
}


blockquote {
	border-top: 2px solid var(--color-green-mid);
	border-bottom: 2px solid var(--color-green-mid);
	color: var(--color-green-mid);
	background: rgba(149, 193, 31, .1);
	margin: 20px 0;
	padding: 12px 0 10px;
	font-size: 18px;
	font-style: italic;
	text-align: center;
}


hr {
	margin: 100px 20px;
	height: 2px;
	border: none;
	background: linear-gradient(90deg, var(--color-blue-mid), var(--color-green-mid));
}



/* Big screens */
@media screen and (min-width: 1200px) {
	h1 {
		padding: 0;
		margin: 0 0 50px;
	}
	h2 { margin-bottom: 40px; }
	h3 { margin-bottom: 20px; }
	p {
		font-size: 18px;
		line-height: 24px;
	}
	li {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 20px;
	}


	button,
	a.btn {
		padding: 22px 30px 20px;
		font-size: 24px;
	}

	hr { margin: 100px 0; }
}

/* Tablets */
@media screen and (max-width: 800px) {
	h1 { font-size: 48px; }
	h2 {
		font-size: 28px;
		margin: 10px 0 10px;
	}
	h3 { font-size: 22px; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	h1 { padding: 0 20px; }
}

/* Smartphones */
@media screen and (max-width: 480px) {
	h1 { font-size: 32px; }
	hr { margin: 100px 0px; }
}

/* Smartphones in landscape format  */
@media screen and (max-height: 480px) {
	hr { margin: 100px 0px; }
}



/******************************************************************************************\
	LAYOUT
\******************************************************************************************/
#main-header {}



/******************************************************************************************\
	TOP BAR
\******************************************************************************************/
#top-bar {
	position: fixed;
	display: grid;
	grid-template-columns: 1fr auto;
	width: 100vw;
	padding: 20px;
	z-index: 10;
	background: var(--menu-bckg-normal);
	transition: all 1s ease-out;
}
#top-bar.scroll { background: var(--menu-bckg-scroll); }

#logo a { display: block; }
#logo a img {
	display: block;
	height: 100px;
}

#main-nav-btn {
	display: none;
	margin: 0 20px;
	background: url(../images/menu.svg) 50% 50% no-repeat;
	height: 100%;
	width: 40px;
	opacity: 1;
}
#main-nav-btn.open { opacity: .35; }

#main-nav { text-align: right; }
#main-nav ul { list-style: none; }
#main-nav ul li {
	display: inline-block;
	margin: 37px 0 0 20px;
}
#main-nav ul li a {
	display: block;
	color: var(--color-green-mid);
	font-size: 28px;
	font-weight: 300;
	text-decoration: none;
	text-transform: uppercase;
}
#main-nav ul li:hover a { color: var(--color-green-light); }
#main-nav ul li:active a { color: var(--color-green-dark); }
#main-nav ul li.active a { color: var(--color-blue-mid); }


/* Big screens */
@media screen and (min-width: 1200px) {
	#main-nav ul li { margin: 35px 0 0 30px; }
	#main-nav ul li a { font-size: 32px; }
}

/* Tablets */
@media screen and (max-width: 800px) {
	#top-bar { padding: 0; }
	#logo { margin: 10px; }

	#main-nav-btn { display: block; }
	#main-nav {
		display: none;
		position: fixed;
		top: 120px;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 0 10px;
		background: var(--menu-bckg-scroll);
		opacity: 0;
		transition: opacity 1s ease-out;
		animation-duration: .3s;
	}
	#main-nav.open {
		display: block;
		opacity: 1;
		animation-name: openmenu;
	}

	#main-nav ul {
		display: grid;
		height: 100%;
		place-items: center;
	}
	#main-nav ul li { margin: 0; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	#main-nav-btn { width: 24px; }
}

/* Smartphones */
@media screen and (max-width: 480px) {
	#logo a img { height: 50px; }

	#main-nav { top: 70px; }
	#main-nav-btn { margin: 0 10px; }
}

/* Smartphones in landscape format  */
@media screen and (max-height: 480px) {
	#logo a img { height: 50px; }

	#main-nav-btn {
		display: block;
		width: 24px;
	}
	#main-nav {
		display: none;
		position: fixed;
		top: 70px;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 0 10px;
		background: var(--menu-bckg-scroll);
		opacity: 0;
		transition: opacity 1s ease-out;
		animation-duration: .3s;
	}
	#main-nav.open {
		display: block;
		opacity: 1;
		animation-name: openmenu;
	}

	#main-nav-btn { margin: 0 10px; }

	#main-nav ul {
		display: grid;
		height: 100%;
		place-items: center;
	}
	#main-nav ul li { margin: 0; }
}

@keyframes openmenu {
	from { opacity: 0; }
	to { opacity: 1; }
}



/******************************************************************************************\
	MAIN PHOTO
\******************************************************************************************/
#main-photo {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

#main-photo .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
#main-photo .logo img {
	display: block;
	width: 80vw;
	min-width: 280px;
	max-width: 1200px;
}

#main-photo .bckg {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: 0;
}
#main-photo .bckg .custom {
	width: 100vw;
	height: 100vh;
}
#main-photo .bckg .custom p {
	position: absolute;
	display: block;
	width: 100vw;
	height: 100vh;
	margin: 0;
	object-fit: cover;
	overflow: hidden;
}
#main-photo .bckg .custom p img {
	position: absolute;
	left: 50%;
	height: 100vh;
	min-width: 100vw;
	transform: translate(-50%, 0);
}



/******************************************************************************************\
	MAIN CONTENT
\******************************************************************************************/
#content { text-align: center; }
#content > .wrapper {
	display: inline-block;
	max-width: 1200px;
	width: 100%;
	margin: 100px 0 0;
}



/******************************************************************************************\
	MAIN CONTENT ARTICLE
\******************************************************************************************/
#content .article {}
#content .article article {}

#content img {
	opacity: 0;
	transition: opacity 1s ease-out;
}
#content img.visible { opacity: 1; }


#content .article article .background { margin: 0 0 50px; }
#content .article article .background img { max-width: 100%; }


#content .article article .body { margin: 0 20px; }

#content .article article .body p button,
#content .article article .body p a.btn { margin: 20px 0 0; }


#content .article article .body .col-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}
#content .article article .body .col-2 p { padding: 0; }


/* Big screens */
@media screen and (min-width: 1200px) {
	#content .article article .body { margin: 0; }

	#content .article article .body p button,
	#content .article article .body p a.btn { margin: 50px 0 0; }


	#content .article article .body .col-2 { grid-gap: 50px; }
}

/* Tablets */
@media screen and (max-width: 800px) {
	#content .article article .background { margin: 0 0 20px; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	#content .article article .body { margin: 0 10px; }
	#content .article article .body .col-2 { display: block; }
	#content .article article .body .col-2 > div { margin: 0 0 20px; }
}



/******************************************************************************************\
	MAIN CONTENT BLOG
\******************************************************************************************/
#content section.blog { padding: 0 20px; }

#content section.blog .articles ul.list {
	display: grid;
	margin: 50px 0;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	list-style: none;
}
#content section.blog .articles ul.list li.item {
	display: inline-block;
	margin: 0;
	box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
#content section.blog .articles ul.list li.item a {
	position: relative;
	display: block;
	text-decoration: none;
}
#content section.blog .articles ul.list li.item a div.bckg {
	height: 400px;
	width: 100%;
}
#content section.blog .articles ul.list li.item a div.bckg div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
#content section.blog .articles ul.list li.item a div.bckg div img {
	position: relative;
	height: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}
#content section.blog .articles ul.list li.item a div.title {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,.95);
	z-index: 1;
}
#content section.blog .articles ul.list li.item a div.title span {
	padding: 0 10px;
	color: var(--color-blue-mid);
	font-size: 18px;
	font-weight: 300;
	text-align: center;
}

#content section.blog .articles ul.list li.item a:hover span { color: var(--color-blue-light); }
#content section.blog .articles ul.list li.item a:active span { color: var(--color-blue-dark); }



/* Big screens */
@media screen and (min-width: 1200px) {
	#content section.blog { padding: 0; }
	#content section.blog .articles ul.list { grid-gap: 50px; }
	#content section.blog .articles ul.list li.item a div.bckg { height: 520px; }
	#content section.blog .articles ul.list li.item a div.title { height: 120px; }
	#content section.blog .articles ul.list li.item a div.title span { font-size: 24px; }
}

/* Tablets */
@media screen and (max-width: 800px) {
	#content section.blog .articles ul.list li.item a div.bckg { height: 300px; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	#content section.blog .articles ul.list { grid-template-columns: 1fr; }
	#content section.blog .articles ul.list li.item a div.title { height: 65px; }
	#content section.blog .articles ul.list li.item a div.title span { font-size: 16px; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	#content section.blog { padding: 0 10px; }
}



/******************************************************************************************\
	CONTENT STYLES
\******************************************************************************************/
.hover {
	margin: 100px 0;
	text-align: left;
}
.hover:nth-child(2n) { text-align: right; }

.hover .bckg {
	width: 100%;
	text-align: right;
}
.hover:nth-child(2n) .bckg { text-align: left; }

.hover .bckg img {
	display: inline-block;
	width: auto;
	max-width: 100%;
}


.hover .content {
	display: inline-block;
	margin: -40px 20px 0;
	width: 640px;
	padding: 5px 20px 20px;
	background: rgba(255,255,255,.95);
	box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.hover .content p { text-align: justify; }


/* Big screens */
@media screen and (min-width: 1200px) {
	.hover .content {
		position: absolute;
		width: 640px;
		margin: -340px 0 0;
	}
	.hover:nth-child(2n) .content { transform: translate(-100%, 0); }
}

/* Tablets */
@media screen and (max-width: 800px) {
	.hover { margin: 50px 0; }
	.hover .content {
		width: 100%;
		margin: 0;
		padding: 0;
		box-shadow: none;
	}
}


/******************************************************************************************\
	CONTENT MODS
\******************************************************************************************/
.content-mod {}

#content-top {}
#content-bottom {}

.moduletable { padding: 0 20px; }



/* Big screens */
@media screen and (min-width: 1200px) {
	.moduletable { padding: 0; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	.moduletable { padding: 0 10px; }
}



/* Smartphones */
@media screen and (max-width: 480px) {
	.moduletable { padding: 0; }
}

/* Smartphones in landscape format  */
@media screen and (max-height: 480px) {
	.moduletable { padding: 0; }
}


/******************************************************************************************\
	MAIN CONTENT MODS
\******************************************************************************************/
ul.mod-category {
	display: grid;
	margin: 50px 0;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	list-style: none;
}
ul.mod-category li {
	display: inline-block;
	margin: 0;
	box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
ul.mod-category li a {
	position: relative;
	display: block;
	text-decoration: none;
}
ul.mod-category li a div.bckg {
	height: 400px;
	width: 100%;
}
ul.mod-category li a div.bckg div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
ul.mod-category li a div.bckg div img {
	position: relative;
	height: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}
ul.mod-category li a div.title {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,.95);
	z-index: 1;
}
ul.mod-category li a div.title span {
	padding: 0 10px;
	color: var(--color-blue-mid);
	font-size: 18px;
	font-weight: 300;
	text-align: center;
}

ul.mod-category li a:hover span { color: var(--color-blue-light); }
ul.mod-category li a:active span { color: var(--color-blue-dark); }



/* Big screens */
@media screen and (min-width: 1200px) {
	ul.mod-category { grid-gap: 50px; }
	ul.mod-category li a div.bckg { height: 520px; }
	ul.mod-category li a div.title { height: 120px; }
	ul.mod-category li a div.title span { font-size: 24px; }
}

/* Tablets */
@media screen and (max-width: 800px) {
	ul.mod-category li a div.bckg { height: 300px; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	ul.mod-category { grid-template-columns: 1fr; }
	ul.mod-category li a div.title { height: 65px; }
	ul.mod-category li a div.title span { font-size: 16px; }
}



/******************************************************************************************\
	CONTACT MOD
\******************************************************************************************/
#contact {
    margin: 50px 0 0;
    padding: 200px 0 0;
	background: url(../images/buildings.svg) 90% 0 no-repeat;
    background-size: 430px;
}
#contact .form {
	padding: 50px 10px;
	text-align: center;
	background: linear-gradient(0deg, var(--color-green-light), var(--color-green-mid));
}
#contact .form > div {
	display: inline-block;
	max-width: 640px;
}
#contact .form h3 {
	color: #fff;
	font-size: 48px;
	font-weight: 100;
	text-align: center;
	text-transform: uppercase;
}
#contact .form p {
	color: #fff;
	text-align: center;
}
#contact .form .errors p { color: #ce0000; }
#contact .form .success p {
    padding: 10px;
    color: var(--color-green-mid);
	border: 1px solid var(--color-green-mid);
    background: rgba(255,255,255,.5);
}

#contact .oop_form { margin: 20px 0 0; }


/* Typography */
#contact label {
	font-size: 12px;
	font-weight: 300;
	color: #fff;
}
#contact input[type=text],
#contact input[type=email],
#contact input[type=tel],
#contact textarea {
	border-radius: 0;
}

#oop_form_captcha_img { border: 1px solid #666; }

#contact .oop_form_madatory { margin: 50px 0 0; }
#contact .oop_form_madatory p em { font-weight: 100; }



/* Big screens */
@media screen and (min-width: 1200px) {
	#contact label { font-size: 18px; }
}

/* Tablets */
@media screen and (max-width: 800px) {
	#contact {
		padding: 150px 0 0;
		background-size: 325px;
	}
}

/* Small tablets */
@media screen and (max-width: 600px) {
	#contact {
		padding: 100px 0 0;
    	background-size: 215px;
	}
	#contact .form h3 { font-size: 32px; }
}



/******************************************************************************************\
	BREADCRUMB
\******************************************************************************************/
#breadcrumb {
	text-align: center;
	margin: 100px 0;
}
#breadcrumb > .wrapper {
	display: inline-block;
	max-width: 1200px;
	width: 100%;
	margin: 20px 0;
}

#breadcrumb hr {
	margin-top: 0;
	margin-bottom: 0;
}
#breadcrumb ul {
	display: inline-block;
	list-style: none;
	margin: 15px 0 13px;
}
#breadcrumb ul li {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0;
}

#breadcrumb ul li span,
#breadcrumb ul .divider {
	display: inline-block;
	font-size: 14px;
	font-weight: 100;
	padding: 7px 10px 0;
}
#breadcrumb ul .divider { color: var(--color-green-mid); }

#breadcrumb ul li .home {
	display: block;
	width: 20px;
	height: 28px;
	margin: 0 10px;
	padding: 0;
	background: url(../images/home.svg) 50% 50% no-repeat;
}
#breadcrumb ul li.active span { color: var(--color-blue-mid); }



/* Smartphones */
@media screen and (max-width: 480px) {
	#breadcrumb > .wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* Smartphones in landscape format  */
@media screen and (max-height: 480px) {
	#breadcrumb > .wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}
}



/******************************************************************************************\
	FOOTER
\******************************************************************************************/

hr.footer { margin-bottom: 20px; }

#main-footer {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 50% auto auto auto 1fr;
	margin: 0 0 20px;
	padding: 0 20px;
	border-top: 1px solid linear-gradient(90deg, var(--color-blue-mid), var(--color-green-mid));
}

#main-footer .spacer {
	display: block;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, var(--color-blue-mid), var(--color-green-mid));
}



/* Logo */
#main-footer .logo {
	display: grid;
	place-content: center;
}
#main-footer .logo a { display: inline-block; }
#main-footer .logo a img {
	display: block;
	width: 100%;
	max-width: 500px;
}



/* Menu */
#main-footer .menu ul {
	margin: 10px 0 0;
	list-style-type: none;
}
#main-footer .menu ul li { margin: 0 0 10px; }

#main-footer .menu ul li a {
	font-size: 20px;
	font-weight: 100;
	text-transform: uppercase;
}
#main-footer .menu ul li.active a { color: var(--color-blue-mid); }



/* Infos */
#main-footer .infos {
	display: grid;
	place-content: center;
	text-align: center;
}
#main-footer .legal p {
	margin: 0 0 5px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	color: var(--color-green-mid);
}



/* Tablets */
@media screen and (max-width: 800px) {
	#main-footer { grid-template-columns: 1fr auto 1fr; }
	
	#main-footer .logo {
		grid-column-start: 1;
		grid-column-end: 5;
	}

	#main-footer .spacer.first {
		grid-column-start: 1;
		grid-column-end: 5;
		height: 2px;
		width: 100%;
		background: linear-gradient(90deg, var(--color-blue-mid), var(--color-green-mid));
	}
	
	#main-footer .menu ul { text-align: center; }
}

/* Small tablets */
@media screen and (max-width: 600px) {
	#main-footer {
		grid-template-columns: 1fr;
		padding: 0 10px;
	}
	#main-footer .spacer {
		height: 2px;
		width: 100%;
		background: linear-gradient(90deg, var(--color-blue-mid), var(--color-green-mid));
	}
	#main-footer .menu ul li { text-align: center; }
}

/* Smartphones */
@media screen and (max-width: 480px) {
	hr.footer {
		margin-left: 10px;
		margin-right: 10px;
	}

	#main-footer { display: block; }
	#main-footer .spacer,
	#main-footer .menu,
	#main-footer .legal,
	#main-footer .links { margin: 20px 0 0; }
}

/* Smartphones in landscape format  */
@media screen and (max-height: 480px) {
	hr.footer {
		margin-left: 10px;
		margin-right: 10px;
	}

	#main-footer {
		display: block;
		padding: 0 10px;
	}
	#main-footer .spacer,
	#main-footer .menu,
	#main-footer .legal,
	#main-footer .links { margin: 20px 0 0; }

	#main-footer .spacer {
		height: 2px;
		width: 100%;
		background: linear-gradient(90deg, var(--color-blue-mid), var(--color-green-mid));
	}
	#main-footer .menu ul li { text-align: center; }
}



/******************************************************************************************\
	COOKIES MOD
\******************************************************************************************/
#oop_cookie {
	position: fixed;
	bottom: 0;
	left: 0;
	height: 0;
	width: 0;
    max-width: 100vw;
    max-width: 500px;
	background: linear-gradient(0deg, var(--color-green-light), var(--color-green-mid));
	z-index: 9;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	transition: all 1s ease-out;
	opacity: 0;
	overflow: hidden;
}
#oop_cookie.open {
    bottom: 50px;
	left: 50px;
	height: auto;
	width: auto;
    padding: 20px;
	opacity: 1;
}

#oop_cookie .message p { color: #fff; }
#oop_cookie .message p a { color: var(--color-blue-mid); }
#oop_cookie .message p a:hover { color: var(--color-blue-light); }
#oop_cookie .message p a:active { color: var(--color-blue-dark); }

#oop_cookie .message .btn { text-align: center; }



/* Small tablets */
@media screen and (max-width: 600px) {
	#oop_cookie.open {
		bottom: 0;
		left: 0;
	}
}