/* 2018 Marie-Lou Lacombe */

/* ============== FONT WEIGHT ============== 
	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- HEADER
/*									 6- BACKGROUND
/*									 7- TEXT
/*									 8- SOCIAL
/*									 9- FOOTER
/* ============================================================================================= */

/* ================================================ 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 {
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    position: relative;
  	min-height: 100%;
	background-color: rgba(40,40,40,1.00);
}

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

html {
  height: 100%;	
  min-height: 600px !important;
  font-size: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* ================================================ 3- TYPO ================================================ */
b { font-weight: 400; }

h1, h2, p, a{
	font-family: 'Source Sans Pro', sans-serif;
	color: black;
	outline: none;
	text-decoration: none;
}

h1 {	
	font-size: 2.8em;
	font-weight: 400;
	line-height: normal;	
}

h2 {
	font-size: 1.8em;
	font-weight: 200;
	text-transform: uppercase;
}

p {
	color: black;
	font-size: 13px;
	font-weight: 300;
}

.visible-small {
	display: none !important;
}
/* ================================================ 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: 150px;
	opacity: 0.8; }

/* ================================================ 5- HEADER ================================================ */
#header {
	position: absolute;
	width: 100%;
	z-index: 1005;
}

#header a.logo {
	float: left;	
	color: black;
	font-size: 3.5em;
	font-weight: 500;
	padding-top: 30px;
	padding-left: 75px;
	outline: none;
	text-decoration: none;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	
	cursor: url("../images/cursorzoomb.cur") 16 16, -moz-crosshair;
  	cursor: url("../images/cursorzoomb.cur") 16 16, -webkit-crosshair;  
 	cursor: url("../images/cursorzoomb.cur") 16 16, auto;	
}

#header a.logo:hover {
	color: grey;
}

/* ================================================  6- BACKGROUND ================================================ */
#background {
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;	
	justify-content: center;
	-ms-align-items: center;
	align-items: center;	
	
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.logoAL {
	position: absolute;
	background-image: url(../images/logo-anne-laure-lacombe.svg);
	height: 100%;
	width: 60%;
	padding: 50px 50px 150px 320px;
	top: 0;
	right: 0;
	z-index: -1003;	
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
}

.logoAL::after { /* --- white hover skew --- */
  content: "";
  display: block;
  position: absolute;
  z-index: -1004;
  top: 0;
  right: 100%;
  margin-right: 20%;
  width: 10000px;
  height: 100%;
  background-color: white;
  transform-origin: bottom right;
  -webkit-transform: skewX(156deg);
  -moz-transform: skewX(156deg);
  -ms-transform: skewX(156deg);
  -o-transform: skewX(156deg);
  transform: skewX(156deg);
}

/* ================================================  7- TEXT ================================================ */
#text {
	max-width: 650px;
	min-height: 100vh; 
	padding-top: 5em;
	padding-left: 75px; 
	padding-right: 75px; 
	justify-content: space-between;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	overflow: hidden;
}


h1 {
	padding-top: 3em;
}

h2 {
	margin-left: 60px;
}

p.contact {
	margin-top: 75px;
	line-height: 35px;
	font-size: 18px;
}

.block-text {
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
		
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

/* ================================================  8- SOCIAL ================================================ */
#social-icon {
  position: absolute;
  bottom: 20px;
  min-height: 35px;
  left: 9%;
  text-align: center;
  margin-top:auto;
  padding-top: 20px;
  overflow: hidden;
  
	cursor: url("../images/cursorzoomb.cur") 16 16, -moz-crosshair;
  	cursor: url("../images/cursorzoomb.cur") 16 16, -webkit-crosshair;  
 	cursor: url("../images/cursorzoomb.cur") 16 16, auto;  
}

.social {
	vertical-align: middle;
	text-align: center;
	font-size: 14px;
	padding: 0;
	display: inline;
}
	    
#social-icon a {
	color: black;
	
	cursor: url("../images/cursorzoomb.cur") 16 16, -moz-crosshair;
  	cursor: url("../images/cursorzoomb.cur") 16 16, -webkit-crosshair;  
 	cursor: url("../images/cursorzoomb.cur") 16 16, auto;		
}

#social-icon a,
a:hover,
a.hover_effect,
a:focus {
	color: inherit;
	text-decoration: none;
	outline: 0;
}
  
#social-icon li {
    color: black;
	list-style-type: none;
 	display: inline-block;
	border: 1px solid black;
    width: 35px;
    height: 35px;
    line-height: 35px !important;
	position: relative;
    margin-left: 5px;
    margin-bottom: 25px;	

	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
		
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#social-icon .social:hover > li, .social.hover_effect {
	display: inline-block;
	opacity: 0.5;
}

#social-icon .social:hover > li:hover, .social.hover_effect {
	display: inline-block;
	opacity: 1;
	color: blakc;
	border-color: black; 
}

/* ================================================  9- FOOTER ================================================ */
#footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 5px;  
  text-align: center;
  overflow: hidden;
}

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