/* 2021 Marie-Lou Lacombe */

/* ============== COLORS ============== 
	#233534 : Text
	#088C7E : All touch, navbar hightlight
	#D4EBE8 : Background blueprint
	#E6FBF1 : Footer contact background
	#ACF1D1 : not used				*/
:root {
	--text: #233534;
	--teal: #088C7E;
	--tealLight: #D4EBE8;
	--green: #ACF1D1;
	--greenLight: #E6FBF1;
}

/* ============== FONT WEIGHT MEMO ============== 
	100 = Thin	200 = Extra Light	300 = Light
	400 = Regular	500 = Medium	600 = Semi Bold
	700 = Bold	800 = Extra Bold	900 = Black		*/

/* ========================================== CONTENT ========================================== */
/*									 1- DISABLE SELECT AND DRAG
/*									 2- BODY
/*									 3- TYPO
/*									 4- PRELOADER
/*									 5- STICKY NAVBAR
/*									 	5.1- HAMBURGER
/*									 	5.2- MENU RIGHT
/*									 6- HEADER
/*									 7- PORTFOLIO
/*									 	7.1- PORTFOLIO FILTER
/*									 	7.2- PORTFOLIO IMAGES
/*									 	7.3- TEXT UNDER IMAGE FULL SCREEN
/*									 8- ABOUT
/*									 	8.1- ABOUT LOGOS
/*									 	8.2- ABOUT TEXT
/*									 	8.3- SERVICES TEXT
/*									 	8.4- CONTACT TEXT
/*									 9- HOME PAGE
/* ============================================================================================= */

/* ================================================ 1- DISABLE SELECT AND DRAG ================================================ */
.disableselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge*/
   user-select: none;          /* Non-prefixed version, currently not supported by any browser */
}

.disabledrag {
   -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
   user-drag: none;
}

.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;        
}

/* ================================================ 2- BODY ================================================ */
body {
	background: white;
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
    position: relative;
  	min-height: 100%;
	overflow-y: auto;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

html {
  height: 100%;	
  font-size: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

* {-moz-box-sizing: border-box; box-sizing: border-box;}

/* ================================================ 3- TYPO ================================================ */

h1 { /* CONTACT TITLE*/
	color: var(--teal);
	font-size: 1.4vmax;
	font-weight: 600;
	line-height: 2.3vmax;
}

h2 { /* CONTACT SUBTITLES*/
  color: var(--teal);
  font-size: 0.8vmax;
  font-weight: 400;
  letter-spacing: -0.04em;
}

p { /* TEXT BASE */
	color: var(--text);
	font-size: 12px;
}

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

b { font-weight: 600; }

span.nobr { white-space: nowrap; }

/* ================================================ 4- PRELOADER ================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #fff;
}

.preloader-img { height: 70px; }

/* ================================================ 5- STICKY NAVBAR ================================================ */
#sticky-navbar-accueil {
	display: block;
	position: fixed;
	width: 100%;
	height: 80px;
	background: white;
	opacity: 0.95;
	transition: all 0.7s ease-in-out;
	z-index: 1005;
}

#sticky-navbar-other {
	display: block;
	position: fixed;
	width: 100%;
	height: 80px;
	background-image:url(../images/rectangle_contact.svg);
	background-size: 500px;
	transition: all 0.7s ease-in-out;
	z-index: 1005;
}

.logo-left-img {
	padding-top: 10px;
	padding-left: 5%;
	height: 70px;
}

/* ------------------------------------------ 5.1- HAMBURGER ------------------------------------------ */
.hamburger {
  position: absolute;
  margin-top: -35px;
  right: 10%;
  background: transparent;
  border: 1px solid transparent;
  z-index: 2;
}

.hamburger:focus {
  outline-width: 0;
}

.hamburger [class*='bar-'] { /* HAMBURGER ANIMATION */ 
  background: var(--teal);
  display: block;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .2s ease all;
          transition: .2s ease all;
  border-radius: 2px;
  height: 2px;
  width: 25px;
  margin-bottom: 4px;
}

.hamburger .bar-bot { /* HAMBURGER ANIMATION */
  margin-bottom: 0;
}

.opened .bar-top { /* HAMBURGER ANIMATION */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 15% 15%;
          transform-origin: 15% 15%;
}
.opened .bar-mid { /* HAMBURGER ANIMATION */
  opacity: 0;
}
.opened .bar-bot { /* HAMBURGER ANIMATION */
  -webkit-transform: rotate(45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 15% 95%;
          transform-origin: 15% 95%;
}

/* ------------------------------------------ 5.2- MENU RIGHT ------------------------------------------ */
.menu { /* MENU PANNEL */
	width: 240px;
	height: 100%;
	background: white;
	position: fixed;
	top: 0;
	right: -240px;
	transition: right .4s ease-in-out;
	opacity: 0.95;
}

.menu--open { /* MENU PANNEL */
	right: 0;
}

.menu-list { /* MENU LINKS ZONE */
	list-style-type: none;
	display: inline-block;
	padding-left: 5.5rem;
	padding-top: 70px;
	text-transform: uppercase;
}

a.menu-item {  /* MENU LINKS TEXT*/
	float: left;
    display: block;
	position: relative;
	color: var(--title);
	font-size: 16px;
	font-weight: 400;
	padding: 10px 0 0 0;
}

.current  { /* ACTIVE PAGE */
	color: var(--teal);
}

#sticky-navbar-accueil li.name, #sticky-navbar-other li.name { /* TEXT UNDER MENU LIST */
	list-style-type: none;
	text-align: center;
}

#sticky-navbar-accueil h1.title, #sticky-navbar-other h1.title  { /* MARIE BEAURAIN TEXT */
	margin-top: 60px;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--title);
}

#sticky-navbar-accueil h1.subtitle, #sticky-navbar-other h1.subtitle { /* HMONP TEXT */
	margin-bottom: 50px;
	font-size: 12px;
	color: var(--title);
	font-weight: 400;
}

#sticky-navbar-accueil h2.title2, #sticky-navbar-other h2.title2 { /* CONTACT TITLE */
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
}

#sticky-navbar-accueil h2.subtitle2, #sticky-navbar-other h2.subtitle2 { /* CONTACT TEXT */
	margin-top: 5px;
	font-size: 12px;
	font-weight: 400;
	color: var(--title);
}

#sticky-navbar-accueil a.subtitle2, #sticky-navbar-other a.subtitle2 { /* EMAIL ADDRESS */
	color: var(--text);
	text-decoration: none;	
}

#sticky-navbar-accueil a:hover, #sticky-navbar-other a:hover { /* EMAIL ADDRESS */
	color: var(--teal);
	text-decoration: none;	
}

#sticky-navbar-accueil span, #sticky-navbar-other span { /* CONTACT TEXT */
	font-size: 12px;
	font-weight: 600;
	color: var(--teal);
}

#sticky-navbar-accueil h2.subtitle3, #sticky-navbar-other h2.subtitle3 { /* COPYRIGHT TEXT */
	margin-top: 80px;
	font-size: 8px;
	font-weight: 400;
	color: var(--title);
	opacity: 25%;
}

#sticky-navbar-accueil a.social, #sticky-navbar-other a.social {
	color: var(--teal);
	text-decoration: none;
	font-size: 14px;
}

/* ================================================ 6- HEADER ================================================ */
#header { /* HEADER ZONE */
	position: absolute;
	width: 100%;
	height: 75px;
	z-index: 1005;
}

#header .logo-left { /* LOGO MARIE BEAURAIN */
	padding-left: 10%;
	padding-top: 1%;
    display: block;
	position: absolute;
	width: 11vw;
}

#header .right { /* SPACE WITH RIGHT BORDER */
	padding-right: 5%;
}

#header a { /* TEXT MENU */
	float: right;
    display: block;
	position: relative;
	color: var(--title);
	font-weight: 400;
	font-size: 1.2vmax;
	text-transform: uppercase;
	text-align: center;
	margin: 2vw 8vw 0 0;
	text-decoration: none;
}

#header .current { /* ACTIVE PAGE TEXT AND TRIANGLE */
	position: relative;
	margin-top: 0;
	margin-right: 3.1vw;
  	display: inline-block;
		
	background-image:url(../images/triangle_menu_haut.svg);
	background-origin: border-box;
	background-repeat: no-repeat;
	background-position: top;
	background-size: 15vw;
  	border-bottom: 5vw solid transparent;
  	border-left: 5vw solid transparent;
  	border-top: 5vw solid transparent;
  	border-right: 5vw solid transparent;
		
	cursor: -moz-default;
  	cursor: -webkit-default;  
 	cursor: default;
}

#header .previous {
	margin-right: 2.85vw;
}

#header .arrow-down{  /* ACTIVE PAGE TEXT */
  	position: relative;
  	color: var(--teal);
	font-weight: 600;
	top: -3vw;
	
	cursor: -moz-default;
  	cursor: -webkit-default;  
 	cursor: default;
}

#header a:hover { /* TEXT COLOR HOVER */
	color: var(--teal);
}

/* ================================================ 7- PORTFOLIO ================================================ */
#portfolio { /* POSITION TOTAL PORTFOLIO ZONE WITH BUTTONS */
	text-align: center;
	background: transparent;
	overflow: hidden;
	position: relative;
	width: 100%;	
	height: 100%;
	margin-top: 8%;
}

/* -------------------------------------------  7.1- PORTFOLIO FILTER ------------------------------------------- */
.button-group {
	display: flex;
    flex-direction: column;
	width: 100%;
	height: 145%;
	margin-top: 12%;
	text-align: left;

	
	background-image: url(../images/triangle_logo.svg);
	background-repeat: no-repeat;
	background-size: 30vw;
	background-position: top left;

	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;	
}

.filter { /* POSITION BLOCK BUTTON */
	padding-top: 40%;
	background: transparent;
	width: 40%;
	margin-left: 10%;
}

button { /* BUTTON SET UP */
	background: transparent;
	border: 4px solid var(--teal);
	border-top: 0;
	border-right: 0;
	
	font-size: 1.1vw;
    font-weight: 600;
	text-transform: uppercase;
    text-decoration: none;
	color: var(--text);
	white-space: nowrap; 
	
	cursor: pointer;
	margin-bottom: 22px;
	
  	-webkit-transition: all 0.6s ease-out;
  	-moz-transition: all 0.6s ease-out;
  	-ms-transition: all 0.6s ease-out;
  	-o-transition: all 0.6s ease-out;
  	transition: all 0.6s ease-out;
}

button a, a:hover { /* TEXT COLOR AND REMOVE BLUE AND UNDERLINE WHEN HOVER */
	color: var(--text);
	text-decoration: none;
}

button.button-effect { /* CONTAIN ANIMATION INSIDE BLOCK */
	overflow: hidden;
	position: relative;
}	

button.button-effect:after { /* ANIMATION WHEN HOVER */
	content: '';
 	position: absolute;
 	z-index: -1;
 	-webkit-transition: all 0.6s;
 	-moz-transition: all 0.6s;
 	transition: all 0.6s;
	width: 0;
	height: 100%;
 	top: 0;
 	left: -10px;
 	background: var(--teal);
	opacity: 50%;
	-webkit-transform: skewX(-15deg);
	transform: skewX(25deg);
}

button.button-effect:hover:after { /* FULL LENGHT END OF ANIMATION */
 	width: 120%;	
}

.button:active, .button-selected { /* SELECTED */
	background:  rgba(8, 140, 126, 50%);
	border: 4px solid var(--teal);
	margin-left: -4px;
}

#portfolio p.copyright { /* COPYRIGHT TEXT */
	font-size: 7px;
	font-weight: 400;
	text-transform: uppercase;
	opacity: 40%;
	text-align: center;
	color: var(--teal);
	margin-top: 88%;
	margin-left: 0;
}

/* -------------------------------------------  7.2- PORTFOLIO IMAGES ------------------------------------------- */
.hide { /* --- HIDE SPAN ON GALERY --- */
	display: none;
}

.grid { /* POSITION OF PICTURES ZONE */
	background: transparent;
	width: 100%;
	height: 100%;
	margin-top: 0%;
	margin-bottom: 0;
	margin-right: 4%;
	margin-left: 3.5%;
}

.grid:after { /* CLEARFIX */
  content: '';
  display: block;
  clear: both;  
}

.img{
	size: 100%;
	display: block;
}

#portfolio img { /* --- IMAGES BLACK AND WHITE --- */
  filter: grayscale(100%) opacity(60%);
}

.grid-item {
	display: block;
	float: left;
	height: auto;
	width: 23%;
	padding: 3px;
}

/* -------------------------------------------  7.3- TEXT UNDER IMAGE FULL SCREEN ------------------------------------------- */
span.title {
	font-weight: 600;
	font-size: 16px;
	font-variant-caps: all-small-caps;
}

span.step {
	text-transform: none;
	font-weight: 600;		
	font-size: 12px;	
}

span.step small {
	font-size: 12px;	
	font-weight: 400;
}

/* ================================================ 8- ABOUT ================================================ */
#about { /* POSITION TOTAL ABOUT ZONE WITH LOGOS */
	background: transparent;
	overflow: hidden;
	position: relative;
	width: 100%;	
	height: 100%;
	margin-top: 9%;
}

/* -------------------------------------------  8.1- ABOUT LOGOS ------------------------------------------- */
.logos, .logos-services { /* POSITION BLOCK LOGOS */
	background: transparent;	
	display: flex;
    flex-direction: column;
	align-items: center;
	margin-top: 3%;

	background-image: url(../images/triangle_logo.svg);
	background-repeat: no-repeat;
	background-size: 30vw;
	background-position: top left;

	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;	
}

.membre { /* MEMBRE TEXT */
	background: transparent;
	border: 4px solid var(--teal);
	border-top: 0;
	border-right: 0;
	
	font-size: 16px;
    font-weight: 600;
	text-transform: uppercase;
    text-decoration: none;
	color: var(--text);
	
	cursor: default;
  	display: block;
	width: 115px;
	margin-bottom: 2%;
	margin-left: -50%;
	margin-top: 27%;
	padding-left: 7px;
	
  	-webkit-transition: all 0.6s ease-out;
  	-moz-transition: all 0.6s ease-out;
  	-ms-transition: all 0.6s ease-out;
  	-o-transition: all 0.6s ease-out;
  	transition: all 0.6s ease-out;
}

.logo-partenaire { /* LOGOS PARTENAIRES */
	margin-top: 12%;
	margin-left: -30%;
}

.oa { /* LOGO ORDRE  */
	width: 49%;
	margin-left: -25%; }

.isle { width: 42%; } /* LOGO ISLE  */
	
.avignon { width: 17%; } /* LOGO AVIGNON  */

p.copyright { /* COPYRIGHT TEXT */
	font-size: 7px;
	font-weight: 400;
	text-transform: uppercase;
	opacity: 40%;
	text-align: center;
	color: var(--teal);
	margin-top: 17%;
	margin-left: -35%;

}

/* -------------------------------------------  8.2- ABOUT TEXT ------------------------------------------- */

.text-about { /* BLOCK MARIE AND TEXT TOGETHER */
	background: transparent;
	left: 4%;
	height: 100%
}


.profil { /* PROFIL PICTURE */
	float: left;
	filter: opacity(85%);
	height: 190px;
	margin: 0 15px 5px 15px;
}

p.text-ab { /* PRESENTATION TEXT */
	color: black;
	text-align: justify;
	margin-top: 10px;
	margin-left: 15px;
	line-height: 14px;
}

#about span.list { /* LIST AT THE END OF TEXT */
	margin-left: 30px;
}

.biozone { /* PARTENAIRE PRIVILEGIE */
	border: 4px solid var(--teal);
	border-top: 0;
	border-right: 0;
	margin-left: -15px;
	
	font-size: 1.3em;
    font-weight: 600;
	text-transform: uppercase;
    text-decoration: none;
	color: var(--text);
	white-space: nowrap; 
	
	cursor: default;
  	display: block;
	width: 218px;
	height: 25px;

	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 20px;
}

.image-biozone { /* LOGO BIOZONE */
	float: left;
	margin: 20px 15px 5px 0;
	width: 37%;
}

p.gloria {
	text-align: justify;
	color: black;
	line-height: 15px;
	padding-top: 5px;
}

/* -------------------------------------------  8.3- SERVICES TEXT ------------------------------------------- */

.text-services { /* BLOCK TEXT */
	display: flex;
	flex-direction: column;
	text-align: left;
	left: 4%;
	margin-top: 7%;
	margin-bottom: 2.5%;
	background: transparent;
	height: 100%;

}

p.text-se { /* SERVICES TEXT */
	color: black;
	text-align: justify;
	font-size: 14px;
}

.logo-services {
	width: 3.9vmax;
	margin-right: 10px;
	margin-bottom: 0.7vw;
}


/* -------------------------------------------  8.4- CONTACT TEXT ------------------------------------------- */

.contact-about { /* CONTACT ZONE */
	position: relative;
	display: block;
	height: auto;
	margin-top: 30px;
	margin-bottom: 40px;
		
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 1%;
	padding-bottom: 0;
	
	background-image: url(../images/rectangle_contact.svg);
	background-size: 100%;
	
	cursor: -moz-default;
  	cursor: -webkit-default;  
 	cursor: default;
}

.contact-services { /* CONTACT ZONE */
	position: relative;
	display: block;
	height: auto;
	margin-top: 60px;
	margin-bottom: 40px;
		
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 1%;
	padding-bottom: 0;
	
	background-image: url(../images/rectangle_contact.svg);
	background-size: 100%;
	
	cursor: -moz-default;
  	cursor: -webkit-default;  
 	cursor: default;
}

.contact-portfolio { /* CONTACT ZONE */
	position: absolute;
	display: block;
	height: auto;
	width: 100%;
	margin-top: 60%;
	margin-bottom: 40px;
	margin-left: -2%;
		
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 1%;
	padding-bottom: 0;
	text-align: left;
	
	background-image: url(../images/rectangle_contact.svg);
	background-size: 100%;
	
	cursor: -moz-default;
  	cursor: -webkit-default;  
 	cursor: default;
}

.contact-about:after, .contact-services:after, .contact-portfolio:after { /* CONTACT LINE DECOR */ 
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 27%;
  height: 72%;
  border-bottom: 5px solid var(--teal);
  border-left: 5px solid var(--teal);
  z-index: -1000;
}

p.contact { /* CONTACT TEXT */
	font-size: 12px;
	font-weight: 500;
	line-height: 30%;
	white-space: nowrap;	
}

a{ /* CONTACT TEXT MAIL */
  	color: var(--text);
	text-decoration: none;	
	cursor: -moz-pointer;
  	cursor: -webkit-pointer;  
 	cursor: pointer;
}

a:hover { color: var(--teal) }

.social { /* LINKEDIN LOGO */
	color: var(--teal);
	font-size: 20px;
}

/* ================================================ 9- HOME PAGE ================================================ */ 
#image-body {  /* CURBANS AND TRIANGLE */
	content: "";
	position: fixed;
	width: 108%;
	height: 100%;
	z-index: -1;
	top: 1vw;
	left: -8vw;
	overflow: hidden;
	
	background-image: url(../images/triangle_gauche.svg), url(../images/curbans_front.png) ;
	background-repeat: no-repeat;
	background-size: 55vw, 79%;
	background-position: top left, right;
	
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.contact-left { /* CONTACT ACCUEIL COPYRIGHT */
	position: absolute;
	display: block;
	margin-top: 47.5%;
	padding-left: 7%;
}

.contact-right { /* CONTACT ACCUEIL ZONE */
	position: absolute;
	display: block;
	height: auto;
	width: 58%;
	margin-top: 43%;
	margin-bottom: 40px;
	margin-left: 30%;
		
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 1%;
	padding-bottom: 0;
	
	background-image: url(../images/rectangle_contact.svg);
	background-size: 100%;
	
	cursor: -moz-default;
  	cursor: -webkit-default;  
 	cursor: default;
}

.contact-right:after { /* CONTACT LINE DECOR */ 
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 27%;
  height: 72%;
  border-bottom: 5px solid var(--teal);
  border-left: 5px solid var(--teal);
}


/* #mario.mushroom { transform: scale(200%); } */