/* --------------------------------------------------------------------
* Defatul Stylesheet
* Author:		Mirko Cogo
* URL:			https://www.yumestudio.it/
-------------------------------------------------------------------- */
/*
* Normalize v8.0.1 / github.com/necolas/normalize.css
* General
* Smooth Scrollbar
* Remodal
*/


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

main {
	display: block
}

h1 {
	font-size: 2em;
	margin: 0.67em 0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -0.25em
}

sup {
	top: -0.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: 0.35em 0.75em 0.625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}


/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body {
	position: relative;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.noscroll {
	overflow: hidden;
}

p {
	margin: 0;
}

a {
	color: currentColor;
	text-decoration: none;
	outline: none
}

a:hover,
a:focus {
	color: currentColor;
	opacity: .7;
}

img {
	max-width: 100%;
	height: auto;
}

b,
strong {
	font-weight: bold;
}

section {
	position: relative;
}


button:focus {
	outline: none;
}

.small,
small {
	font-size: 80%;
}

hr {
	width: 100%;
	height: 0;
	border: none;
	border-bottom: 1px solid rgb(144 144 144 / 30%);
}

/* text selection */
::-moz-selection {
	background: #a7c104;
	color: #fff;
}

::selection {
	background: #a7c104;
	color: #fff;
}

::-moz-selection {
	background: #a7c104;
	color: #fff;
}

::-webkit-selection {
	background: #a7c104;
	color: #fff;
}


/* SCROLL */
/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #ccc;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #eee;
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #fff;
}


.error {
	background: #ed5050;
	color: #fff;
	padding: 5px;
}

.sent {
	background: #baf17a;
	color: #000;
	padding: 5px;
}

.full {
	width: 100%;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

/* ------------------------------------------------------------- *
 * Smooth Scrollbar
 * Source: https://github.com/idiotWu/smooth-scrollbar/
/* ------------------------------------------------------------- */

/* Hide default scrollbar */
body:not(.is-mobile).smooth-scroll {
	overflow: hidden !important;
	height: 100vh;
}

/* Scroll content (added if <body> contain class "smooth-scroll". Disabled on mobile devices!) */
body:not(.is-mobile).smooth-scroll #scroll-container {
	width: auto;
	height: 100vh;
	overflow: auto;
	margin: 0;
}

/* Styling scrollbar */
.scrollbar-track {
	background: transparent !important;
	z-index: 99999 !important;
}

.scrollbar-track:hover {
	/*background: rgba(222, 222, 222, 0.1) !important;*/
	opacity: 1;
}

.scrollbar-thumb {
	background: #DDD !important;
	opacity: .25;
	transition: opacity 0.2s ease-in-out;
}

.scrollbar-track:hover .scrollbar-thumb {
	opacity: .5;
}


/* ------------------------------------------------------------- *
 * Remodal - v0.5.0
 * Source: http://vodkabears.github.io/remodal/
/* ------------------------------------------------------------- */
.remodal-cancel,
.remodal-close:after,
.remodal-confirm {
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
	cursor: pointer;
	text-decoration: none
}

html.remodal-is-locked {
	overflow: hidden
}

.remodal,
[data-remodal-id] {
	visibility: hidden
}

.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none
}

.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch
}

.remodal-wrapper .left {
	text-align: left
}

.remodal-wrapper:after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	content: ""
}

.remodal-overlay,
.remodal-wrapper {
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}

.remodal-bg {
	-webkit-transition: -webkit-filter .2s ease-out;
	transition: -webkit-filter .2s ease-out;
	transition: filter .2s ease-out;
	transition: filter .2s ease-out, -webkit-filter .2s ease-out
}

body.remodal-is-active .remodal-bg {
	-webkit-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px)
}

.remodal-overlay {
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
	opacity: 0;
	background: rgba(33, 36, 46, .65)
}

body.remodal-is-active .remodal-overlay {
	opacity: 1
}

.remodal {
	position: relative;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	min-height: 100%;
	padding: 35px;
	-webkit-transition: -webkit-transform .2s ease-out, opacity .2s ease-out;
	-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
	-webkit-transform: scale(.95);
	transform: scale(.95);
	opacity: 0;
	color: #000;
	background: #FFF;
	background-clip: padding-box
}

body.remodal-is-active .remodal {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1
}

.remodal,
.remodal-wrapper:after {
	vertical-align: middle
}

.remodal-close {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 28px;
	height: 28px;
	text-align: center;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
	text-decoration: none;
	border-radius: 50%
}

.remodal-close:after {
	font-size: 28px;
	line-height: 28px;
	display: block;
	content: "\00d7";
	transition: all .2s ease-out;
	color: #3e5368
}

.remodal-close:active,
.remodal-close:hover {
	background: #3e5368
}

.remodal-close:active.remodal-close:after,
.remodal-close:hover.remodal-close:after {
	color: #f4f4f4
}

.remodal-cancel,
.remodal-confirm {
	font-size: 10pt;
	display: inline-block;
	width: 120px;
	margin: 0 0 5px;
	padding: 9px 0;
	transition: all .2s ease-out;
	text-align: center;
	border-radius: 6px;
	background-clip: padding-box
}

.remodal-confirm {
	color: #16a085;
	border: 2px solid #16a085;
	background: #f4f4f4
}

.remodal-confirm:active,
.remodal-confirm:hover {
	color: #f4f4f4;
	background: #16a085
}

.remodal-cancel {
	color: #c0392b;
	border: 2px solid #c0392b;
	background: #f4f4f4
}

.remodal-cancel:active,
.remodal-cancel:hover {
	color: #f4f4f4;
	background: #c0392b
}

@media only screen and (min-width:40.063em) {
	.remodal {
		max-width: 700px;
		min-height: 0;
		margin: 20px auto;
		border-radius: 6px
	}
}

.lt-ie9 .remodal-overlay {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F021242E, endColorstr=#F021242E)
}

.lt-ie9 .remodal {
	width: 700px;
	min-height: 0;
	margin: 20px auto
}

.lt-ie9 .remodal-close:after {
	margin: auto;
	text-align: center
}

.lt-ie9 .remodal-close:active,
.lt-ie9 .remodal-close:hover {
	background: 0 0
}

.lt-ie9 .remodal-close:active.remodal-close:after,
.lt-ie9 .remodal-close:hover.remodal-close:after {
	color: #3e5368
}

/* ------------------------------------------------------------- *
 * GDPR Cookie Notice
 * Source: https://github.com/passatgt/gdpr-cookie-notice
/* ------------------------------------------------------------- */
.gdpr-cookie-notice {
	position: fixed;
	background: var(--dark-grey-color);
	left: 0;
	bottom: 0;
	right: 0;
	padding: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all ease 1s;
	transition: all ease 1s;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	z-index: 999
}

@media(max-width:768px) {
	body .gdpr-cookie-notice {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.gdpr-cookie-notice-loaded .gdpr-cookie-notice {
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

.gdpr-cookie-notice-description {
	margin: 0;
	padding: 0 16px 0 0;
	color: var(--secondary-p-color);
	font-size: 13px;
	line-height: 20px;
	text-align: left
}

@media(max-width:768px) {
	body .gdpr-cookie-notice-description {
		padding: 0;
		margin: 0 0 25px 0
	}

	body .gdpr-cookie-notice-nav {
		justify-content: center;
		margin: 0
	}
}

.gdpr-cookie-notice-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 0 auto;
	background: 0;
	width: auto;
	height: auto;
	padding: 0
}

a.gdpr-cookie-notice-nav-item:not(.btn) {
	text-decoration: none;
	display: block;
	white-space: nowrap;
	color: var(--primary-color);
	padding: 0 15px;
	font-weight: 600
}

.gdpr-cookie-notice-nav-item:hover {
	text-decoration: none
}

a.gdpr-cookie-notice-nav-item-btn:not(.btn) {
	padding: 10px 15px;
	background-color: var(--primary-color);
	border-radius: 2px;
	color: var(--primary-b-color);
	font-weight: 400;
	line-height: 1.2
}

.gdpr-cookie-notice-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1001;
	background: rgba(0, 0, 0, 0.5);
	overflow: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 10px;
	display: none
}

.gdpr-cookie-notice-show-modal .gdpr-cookie-notice-modal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.gdpr-cookie-notice-modal-content {
	width: 450px;
	border-radius: 2px;
	background: var(--primary-bg-color);
	margin: auto
}

.gdpr-cookie-notice-modal-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 25px
}

.gdpr-cookie-notice-modal-title {
	font-size: 22px;
	color: var(--dark-grey-color);
	font-weight: 600;
	margin: 0;
	padding: 0
}

.gdpr-cookie-notice-modal-close {
	width: 24px;
	height: 24px;
	margin: 0 0 0 auto;
	background: 0;
	border: 0;
	outline: 0;
	padding: 0;
	position: relative;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.gdpr-cookie-notice-modal-close:before,
.gdpr-cookie-notice-modal-close:after {
	width: 18px;
	height: 2px;
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: var(--dark-grey-color)
}

.gdpr-cookie-notice-modal-close:after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg)
}

.gdpr-cookie-notice-modal-close:hover {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 1
}

.gdpr-cookie-notice-modal-cookies {
	display: block;
	margin: 0;
	padding: 0 10px;
	list-style-type: none
}

.gdpr-cookie-notice-modal-cookie {
	display: block;
	list-style-type: none;
	padding: 0;
	margin: 0
}

.gdpr-cookie-notice-modal-cookie-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 16px
}

.gdpr-cookie-notice-modal-cookie-title {
	font-weight: normal;
	font-size: 1rem;
	color: var(--primary-p-color);
	margin: 0;
	padding: 0;
	line-height: 1;
	position: relative;
	cursor: pointer
}

.gdpr-cookie-notice-modal-cookie-title:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #bdbdbd transparent transparent transparent;
	content: '';
	display: block;
	position: absolute;
	right: -17px;
	top: 50%;
	margin-top: -2px;
	-webkit-transition: all ease .3s;
	transition: all ease .3s
}

.open .gdpr-cookie-notice-modal-cookie-title:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.gdpr-cookie-notice-modal-cookie-state {
	color: var(--primary-color);
	margin-left: auto;
	font-size: 1rem
}

.gdpr-cookie-notice-modal-cookie-input {
	opacity: 0
}

.gdpr-cookie-notice-modal-cookie-input:checked+.gdpr-cookie-notice-modal-cookie-input-switch {
	background: var(--primary-color);
	-webkit-box-shadow: inset 0 0 0 1px var(--primary-color);
	box-shadow: inset 0 0 0 1px var(--primary-color)
}

.gdpr-cookie-notice-modal-cookie-input-switch {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	-webkit-box-shadow: inset 0 0 0 1px #999;
	box-shadow: inset 0 0 0 1px #999;
	margin: 0 0 0 auto;
	position: relative;
	-webkit-transition: all ease .3s;
	transition: all ease .3s;
	cursor: pointer
}

.gdpr-cookie-notice-modal-cookie-input-switch:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: url('data:image/svg+xml;utf8,<svgheight="11"viewBox="001411"width="14"xmlns="http://www.w3.org/2000/svg"><pathd="m510.42-5-51.41-1.413.593.587.59-7.591.411.42z"fill="rgb(255,255,255)"fill-rule="evenodd"/></svg>') no-repeat center 7px;
	content: '';
	display: block
}

.gdpr-cookie-notice-modal-cookie-info {
	margin: 0;
	padding: 0 16px 12px 16px;
	font-size: 16px;
	color: var(--primary-p-color);
	line-height: 16px;
	display: none
}

.open .gdpr-cookie-notice-modal-cookie-info {
	display: block
}

.gdpr-cookie-notice-modal-footer {
	background: var(--primary-bg-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 25px;
	border-radius: 0 0 2px 2px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

a.gdpr-cookie-notice-modal-footer-item:not(.btn) {
	font-weight: 400;
	font-size: 1rem;
	margin: 0;
	padding: 0;
	color: var(--primary-color);
	position: relative
}

a.gdpr-cookie-notice-modal-footer-item-btn:not(.btn) {
	padding: 10px 25px;
	background-color: var(--primary-color);
	border-radius: 2px;
	color: var(--primary-b-color);
	font-weight: 400
}

.gdpr-cookie-notice-modal-footer-item-btn span {
	-webkit-transition: all ease .3s;
	transition: all ease .3s
}

.gdpr-cookie-notice-modal-footer-item-btn:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	content: '';
	opacity: 0;
	-webkit-transition: all ease .3s;
	transition: all ease .3s;
	display: block;
	background: url('data:image/svg+xml;utf8,<svgheight="11"viewBox="001411"width="14"xmlns="http://www.w3.org/2000/svg"><pathd="m510.42-5-51.41-1.413.593.587.59-7.591.411.42z"fill="rgb(255,255,255)"fill-rule="evenodd"/></svg>') no-repeat center
}

.gdpr-cookie-notice-modal-footer-item-btn.saved span {
	opacity: 0
}

.gdpr-cookie-notice-modal-footer-item-btn.saved:after {
	opacity: 1
}

.gdpr-cookie-notice-modal-footer-item:hover {
	text-decoration: none;
	opacity: 1
}






/* ELLEART CUSTOM CSS */


@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-Thin.ttf') format('truetype');
	font-style: normal;
	font-weight: 100;
}

@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-ExtraLight.ttf') format('truetype');
	font-style: normal;
	font-weight: 200;
}

@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-Light.ttf') format('truetype');
	font-style: normal;
	font-weight: 300;
}


@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-Regular.ttf') format('truetype');
	font-style: normal;
	font-weight: 400;
}


@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-Medium.ttf') format('truetype');
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-SemiBold.ttf') format('truetype');
	font-style: normal;
	font-weight: 600;
}


@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-Bold.ttf') format('truetype');
	font-style: normal;
	font-weight: 700;
}


@font-face {
	font-family: 'AdventPro';
	src: url('../fonts/AdventPro-ExtraBold.ttf') format('truetype');
	font-style: normal;
	font-weight: 800;
}


:root {
	--col1: #326ab2;
	--col2: #878787;
	--col3: #64666B;
}


html,
body {
	overflow-x: hidden;
}

body {
	font-family: 'AdventPro', helvetica, arial, sans-serif;
	color: var(--col2);
}


#mainlogo {
	max-width: 300px;
	margin: 25px auto;
	display: block;
}

/* MENU */
/*********** MENU **************/
#menu {
	background: #000;
	position: fixed;
	width: 0px;
	height: 100vh;
	display: block;
	top: 0;
	left: 0;
	-webkit-transition: width .35s;
	transition: width .35s;
	z-index: 100;
}

#menu.open {
	width: 100%;
	background: transparent;
	pointer-events: none;
}

.menulogo {
	width: 50px;
	position: fixed;
	top: 50%;
	left: 9px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	opacity: 1;
	visibility: visible;
}

.button_container {
	position: absolute;
	bottom: 7px;
	right: 10px;
	height: 47px;
	width: 40px;
	cursor: pointer;
	z-index: 100;
	text-align: center;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}

.button_container span {
	background: rgb(135 135 134);
	border: none;
	height: 2px;
	width: 80%;
	position: absolute;
	top: 11px;
	left: 4px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}

.button_container span:nth-of-type(2) {
	top: 18px;
}

.button_container span:nth-of-type(3) {
	top: 26px;
}

.button_container.active .top {
	-webkit-transform: translateY(5px) translateX(0) rotate(45deg);
	transform: translateY(5px) translateX(0) rotate(45deg);
	background: var(--col1);
}

.button_container.active .middle {
	opacity: 0;
	background: var(--col1);
}

.button_container.active .bottom {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: var(--col1);
}


.button_container.active {
	right: 15px;
	left: auto;
	pointer-events: auto;
}



#menu.open .menulogo {
	opacity: 0;
	visibility: hidden;
}

.socials {
	white-space: nowrap;
	position: fixed;
	left: 13px;
	bottom: 30px;
	writing-mode: vertical-rl;
	/*transform: rotate(180deg);*/
	font-size: 14px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	opacity: 1;
	visibility: visible;
}

.socialmenu2 a {
	margin-right: 20px;
	font-size: 20px;
}

.socialmenu2 a:last-child {
	margin-right: 0px;
}

#menu.open .socials {
	opacity: 0;
	visibility: hidden;
}

.darkbg {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;

	-webkit-transition: opacity .35s, visibility .35s, width .35s;
	transition: opacity .35s, visibility .35s, width .35s;
	overflow: hidden;
	transition-delay: 0s;
}

.darkbg.open {
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 8;
	transition-delay: 0.3s;
}


.darkbg2 {
	position: fixed;
	background: var(--col1);
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;

	-webkit-transition: opacity .35s, visibility .35s, width .35s;
	transition: opacity .35s, visibility .35s, width .35s;
	overflow: hidden;
}

.darkbg2.open {
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 7;
}

.overlay {
	display: none;
	position: fixed;
	background: transparent;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0s, visibility 0s, width .65s;
	transition: opacity 0s, visibility 0s, width .65s;
	overflow: hidden;
	overflow-y: auto !important;
	transition-delay: 0s;
}

.overlay.open {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	overflow: hidden;
	z-index: 9;
	-webkit-transition: opacity 1.35s, visibility 1.35s, width .65s;
	transition: opacity 1.35s, visibility 1.35s, width .65s;
	transition-delay: 0.3s;

}

.overlay.open ul {
	list-style: none;
	maring: 0;
	padding: 0;
}

.overlay.open li {
	-webkit-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
	position: relative;
	opacity: 0;
	font-size: 30px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 70px;
}

.overlay.open li:nth-of-type(2) {
	-webkit-animation-delay: .40s;
	animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
	-webkit-animation-delay: .45s;
	animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
	-webkit-animation-delay: .50s;
	animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
	-webkit-animation-delay: .55s;
	animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
	-webkit-animation-delay: .60s;
	animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
	-webkit-animation-delay: .65s;
	animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
	-webkit-animation-delay: .70s;
	animation-delay: .70s;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		top: 20%;
	}

	100% {
		opacity: 1;
		top: 0;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		top: 20%;
	}

	100% {
		opacity: 1;
		top: 0;
	}
}

.overlayvideo {
	display: none;
	position: fixed;
	background: transparent;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0s, visibility 0s, width .65s;
	transition: opacity 0s, visibility 0s, width .65s;
	overflow: hidden;
	overflow-y: auto !important;
	transition-delay: 0s;
}

.overlayvideo.open {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	overflow: hidden;
	z-index: 9;
	-webkit-transition: opacity 1.35s, visibility 1.35s, width .65s;
	transition: opacity 1.35s, visibility 1.35s, width .65s;
	transition-delay: 0.3s;

}

.overlayvideo.open .videos {
	display: none;
	-webkit-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
}


.menulogopen {
	top: 30px;
	left: 5%;
	position: absolute;
	max-width: 300px;
}

.contentmenu {
	/*top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		position: absolute;*/
	width: 100%;
	padding: 5%;
	text-align: left;
}

.contentmenu h5,
.contentmenu2 h5 {
	font-weight: lighter;
	font-style: italic;
	color: var(--col1) !important;
	margin-bottom: 30px;
	width: 100%;
	display: block;
}

.contentmenu a {
	margin-bottom: 15px;
	width: 100%;
	display: block;
	font-size: 20px;
}

.menucontent {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-height: 100vh;
	height: 100vh;
}

.contentmenu2 {
	/*top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		position: absolute;*/
	width: 100%;
	padding: 50px 5%;
	font-size: 16px;
	font-weight: lighter;
}

.contentmenu2 h5 {
	margin: 0;
}

.lingue {
	font-size: 14px;
	padding-right: 100px;
}

.bordereb {
	border-bottom: 1px solid #666;
	padding-bottom: 5px;
}



#menu .socials a {
	color: #fff !important;
	margin-bottom: 15px;
	font-size: 22px;
}

#menu .socials a:hover {
	color: var(--col1) !important;
}


/* MENU interactive image */
.menu-item .pi-item-image {
	display: none;
}

.pi-item-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	margin: 0;
}

@media (min-width: 1025px) {
	.menu-item .pi-item-image {
		display: none;
	}
}

@media (max-width: 1024px) {
	.pi-item-image {
		overflow: hidden;
	}

	.pi-item-image::before {
		position: absolute;
		display: block;
		content: "";
		top: -1px;
		left: -1px;
		bottom: -1px;
		right: -1px;
		background-color: #040404;
		opacity: .7;
	}
}







#back-to-top {
	position: absolute;
	display: block;
	z-index: 7;
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 12px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	line-height: 45px;
	background-color: rgb(0 0 0 / 60%);
	border-radius: 50%;
	border: 1px solid rgb(255 255 255 / 10%);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
	cursor: pointer;
}



video {
	width: 100% !important;
	max-width: 100%;
	height: auto;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* ############################SLIDER HOMEPAGE */

/* OWL */

.homeslide {
	font-family: var(--font1);
}

.owl-carousel .owl-item .item {
	cursor: grab;
}

.owl-carousel .owl-item img {
	opacity: 0;
	transition: ease-in-out 1s;
}

.owl-carousel .owl-item.active img {
	opacity: 1;
}

.owl-carousel .owl-item figcaption,
.imagehead figcaption {
	position: absolute;
	width: 95%;
	text-align: center;
	left: 50%;
	top: 52%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: ease-in-out 1.2s;
}

.owl-carousel .owl-item.active figcaption,
.imagehead figcaption {
	top: 50%;
	opacity: 1;
}

.owl-carousel figcaption .subtit,
.imagehead figcaption .subtit {
	display: block;
	color: #fff;
}



@media (min-width: 1300px) {

	.owl-carousel figcaption .tit,
	.imagehead figcaption .tit {
		margin-top: 40px;
	}
}

.owl-carousel figcaption .tit,
.imagehead figcaption .tit {
	display: block;
	font-size: 40px;
	line-height: auto;
	text-transform: uppercase;
	color: #000;
	margin-top: 20px;
}



.owl-nav {
	font-size: 13px;
	text-align: center;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	width: 100%;
	cursor: e-resize;
}

.owl-nav * {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.owl-prev {
	left: 15px;
	position: absolute;
}

.owl-next {
	right: 15px;
	position: absolute;
}

.owl-prev div,
.owl-next div {
	padding: 8px;
	background: rgba(255, 255, 255, 0.3);
	min-width: 60px;
	font-size: 30px;
	border-radius: 50%;
}

.owl-prev div:hover,
.owl-next div:hover {
	background: rgb(255, 255, 255);
	color: #000;
}

.owl-carousel .owl-dots {
	width: 100%;
	position: absolute;
	bottom: 5%;
	text-align: center;
}

.owl-carousel button.owl-dot {
	border: 1px solid rgba(0, 0, 0, 30%) !important;
	width: 15px;
	height: 15px;
	background: rgb(255 255 255 / 50%);
	display: inline-block;
	border-radius: 50% !important;
	margin: 0 5px;
}

.owl-carousel button.owl-dot.active {
	background: #fff;
}

img.logoslide {
	max-width: 800px !important;
	margin: auto;
	margin-bottom: -50px;
}

@media (max-width: 991px) {
	img.logoslide {
		margin-bottom: 0px;
	}
}

@media (max-width: 991px) {
	.owl-carousel figcaption .subtit {
		font-size: 14px;
	}

	.owl-carousel figcaption .tit {
		font-size: 35px;
		line-height: 35px;
	}
}

@media (max-width: 575px) {
	.owl-carousel .owl-item.active figcaption {
		bottom: 5%;
	}

	.owl-carousel figcaption .subtit {
		font-size: 13px;
	}

	.owl-carousel figcaption .tit {
		font-size: 25px;
		line-height: 25px;
	}

	.owl-prev div,
	.owl-next div {}

	.owl-carousel .owl-item figcaption {
		position: relative;
		margin-top: 120px;
	}

	.owl-carousel button.owl-dot {
		width: 10px;
		height: 10px;
	}

}

@media (max-width: 400px) {
	.owl-nav {
		display: none;
	}
}



.thumbs {
	width: 50px;
}

a.iphonethumb {
	width: 150px;
	height: 150px;
	overflow: hidden;
	margin: 2% 2% 0 0;
	display: inline-block;
	padding: 0;
	border: 1px solid #ddd;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	/* align horizontal */
	align-items: center;
	/* align vertical */
}



.snip1585 {
	background-color: #FFF;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-family: "Ek Mukta", sans-serif;
	margin: 1%;
	width: 150px;
	height: 150px;
	overflow: hidden;
	position: relative;
	text-align: center;
	border: 1px solid #ddd;
}



.snip1585 div {
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	/* align horizontal */
	align-items: center;
	/* align vertical */

}




@media (max-width: 424px) {

	.snip1585 {
		width: 100px;
		height: 100px;
		font-size: 9px;
	}

	.snip1585 div {
		width: 100px;
		height: 100px;
	}

	a.iphonethumb {
		width: 100px;
		height: 100px;
	}

}

@media (max-width: 409px) AND (min-width: 362px) {

	.snip1585 {
		width: 85px;
		height: 85px;
		font-size: 9px;
	}

	.snip1585 div {
		width: 85px;
		height: 85px;
	}

	a.iphonethumb {
		width: 85px;
		height: 85px;
	}



}

.snip1585 * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.45s ease;
	transition: all 0.45s ease;
	cursor: pointer;
}

.snip1585:before,
.snip1585:after {
	background-color: rgba(0, 0, 0, 0.5);
	border-top: 50px solid rgba(0, 0, 0, 0.5);
	border-bottom: 50px solid rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 1;
	opacity: 0;
}

.snip1585:before {
	-webkit-transform: scaleY(2);
	transform: scaleY(2);
}

.snip1585:after {
	-webkit-transform: scaleY(2);
	transform: scaleY(2);
}

.snip1585 img {
	vertical-align: top;
	max-width: 100%;
	backface-visibility: hidden;
}

.snip1585 figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.1em;
	opacity: 0;
	z-index: 2;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.snip1585 h3 {
	font-size: 1em;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
	text-transform: uppercase;
}

.snip1585 h3 span {
	display: block;
	font-weight: 700;
}

.snip1585 a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	margin: 0;
	padding: 0;
}

.snip1585:hover>img,
.snip1585.hover>img {
	opacity: 0.7;
}

.snip1585:hover:before,
.snip1585.hover:before,
.snip1585:hover:after,
.snip1585.hover:after {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.snip1585:hover figcaption,
.snip1585.hover figcaption {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

body:not(.is-mobile) #content-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*min-height: calc(100vh - 169px);*/
	min-height: 100vh;
}




.menu-lang {
	position: absolute;
	z-index: 99;
	left: 20px;
	bottom: 23px;
	font-weight: 200;
	font-size: 17px;
	color: #333;
}

.menu-lang a.active {
	font-weight: 700;
}

.menu-lang a:first-child {
	padding-left: 0px;
}
.menu-lang a {
	border-right: 1px solid rgb(0, 0, 0);
	padding-right: 10px;
	padding-left: 10px;
}

.menu-lang a:last-child {
	padding-right: 0px;
	border-right: 0px solid rgb(0, 0, 0);
}

body {
	font-size: 20px;
	line-height: 25px;
}

.footer {
	font-size: 15px;
}



.emailico a:before {
	content: "";
	display: block;
	background: url(../img/mailico.png) no-repeat;
	width: 35px;
	height: 19px;
	float: left;
	margin-top: 5px;

}

.emailico a i {
	padding: 0px 2px;
}

.deletecookies {
	padding: 10px;
	border: 2px solid #efefef;
	background: #efefef;
}

.deletecookies:hover {
	border: 2px solid #2c69b2;
}

.socials2 {
	font-size: 25px;
}

.socials2 a {
	margin-right: 5px;
}



/* OWL KEN BURNS EFFECT TRANSITION */
.owl-item.active .item img {
	animation: mobileburns 30s infinite;
}

@media screen and (min-width: 800px) {
	.owl-item.active .item img {
		animation: kenburns 30s infinite;
	}
}

@keyframes kenburns {
	5% {
		transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
		animation-timing-function: ease-in;
	}

	45% {
		transform: scale3d(1.5, 1.5, 1.5) translate3d(-100px, -30px, 0px);
		animation-timing-function: ease-in;
	}

	60% {
		transform: scale3d(1.5, 1.5, 1.5) translate3d(-100px, -30px, 0px);
		animation-timing-function: ease-in;
	}

	100% {
		transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
		animation-timing-function: ease-in;
	}
}

@keyframes mobileburns {
	5% {
		transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
		animation-timing-function: ease-in;
	}

	65% {
		transform: scale3d(2.5, 2.5, 2.5) translate3d(-100px, -30px, 0px);
		animation-timing-function: ease-in;
	}

	80% {
		transform: scale3d(2.5, 2.5, 2.5) translate3d(-100px, -30px, 0px);
		animation-timing-function: ease-in;
	}

	100% {
		transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
		animation-timing-function: ease-in;
	}
}

@keyframes noburns {
	100% {
		transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
		animation-timing-function: ease-in;
	}
}

.owl-carousel .animated {
	-webkit-animation-duration: 50ms;
	animation-duration: 50ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}


#header {
	position: relative; margin-bottom: 20px;
}
.bordered { border-bottom: 1px solid var(--col2);}
.menus { margin-top: 50px;}

#slider { margin-bottom:20px;}



@media (max-width: 767.9px) {
	#mainlogo {
		max-width: 250px;
		    margin-bottom: 70px;
	}
}

@media (max-width: 480px) {
	#mainlogo {
		max-width: 250px;
	}
}
@media (max-width: 430px) {
	#mainlogo {
		margin-bottom: 70px;
	}
}


body.home:not(.is-mobile) #content-wrap { justify-content: flex-start; }
body.video:not(.is-mobile) #content-wrap {
	justify-content: flex-start;
}

@media (min-width: 992px) {
	#wowslider-container1 .ws_images {

		max-height: 450px !important;

	}
}


.videoclose { }
.videoclose img {
	opacity:0.45;
}
.videoclose img:hover {
	opacity: 1;
}