/**
* Theme Name: Lycée d'Adultes
* Version: 1.0
* Author: Paul Milan
*/

@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700');

/************************************************
CORPS
*************************************************/

htm
{
	scroll-behavior: smooth;
}

html *
{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: graysc11le;
}

body
{
	margin: 0;
	font-family: 'Lato', sans-serif, Verdana, "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
	font-size: 14px;
	overflow-x: hidden;
	max-width: 100%;
}



/************************************************
BASE
*************************************************/

ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

section
{
	position: relative;
	background: white;
}

h1, h2
{
	
	font-weight: 900;
	margin: 0;
}

h1
{
	font-size: 30px;
}

h2
{
	font-size: 20px;
	line-height: 120%;
	text-align: center;
	color: var(--blue);
	margin-bottom: 30px;
}

p
{
	margin: 10px 0;
	line-height: 130%;
	color: var(--typo);
}

a
{
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

a {
text-decoration: none;
font-family:Verdana !important;
font-size:10pt;
}

a:hover {
text-decoration: underline;
}
*#a {
text-align: left;
margin-left: auto;
margin-right: auto;
width: 100%;
height: 89px;
}
#centrer {
margin-left:auto;
margin-right:auto;
width:100%;
}

@font-face {
font-family: 'rolling_no_oneregular';
src: url('fonts/RollingNoOne-ExtraBold.ttf') format('truetype'),
	 url('fonts/RollingNoOne-ExtraBold.eot?#iefix') format('embedded-opentype'),
	 url('fonts/rollingnoone-extrabold-webfont.woff2') format('woff2'),
     url('fonts/rollingnoone-extrabold-webfont.woff') format('woff'),
	 url('fonts/rollingnoone-extrabold-webfont.svg#rolling_no_oneregular')format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'handsean';
src: url('fonts/handsean.ttf') format('truetype'),
	 url('fonts/handsean.eot?#iefix') format('embedded-opentype'),
	 url('fonts/handsean-webfont.woff2') format('woff2'),
     url('fonts/handsean-webfont.woff') format('woff'),
	 url('images/fonts/handsean-webfont.svg#hand_of_seanregular') format('svg');
font-weight: normal;
font-style: normal;
}

::selection
{
	background: var(--blue);
	color: white;
}




/*************************
Outils
***************************/

.boxed
{
	position: relative;
	width: 80%;
	margin: 0 auto;
}

.centerV
{
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.btn
{
	display: block;
	color: var(--typo);
	text-transform: uppercase;
	padding: 8px;
	font-size: 11px;
	width: 140px;
	text-align: center;
	margin: 30px 0 0;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	border: 2px solid var(--typo);
}

.btn:hover
{
	color: var(--blue);
	border: 2px solid var(--blue);
}

div:target, strong:target
{
	padding-top: 110px;
	margin-top: -110px;
}

.responsive
{
	display: none;
}

article.container
{
	display: flex;
	overflow: hidden;
}

article.container:last-child
{
	margin-bottom: 0;
}

article.container .left, article.container .right
{
	position: relative;
}

article.container .left
{
	margin: 0;
	width: 65%;
}

article.container .left img
{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 5px;
}

article.container .right
{
	margin: auto;
	width: 45%;
}

article.container .right .text
{
	width: 60%;
	margin-left: 50px;
}

article.container .right .text h2
{
	clear: both;
	text-align: left;
	color: var(--blue);
	margin-bottom: 20px!important;
	letter-spacing: 1px;
}

article.container .right .text img
{
	width: 100%;
	margin: 20px auto;
	display: block;
}

article.container .right a
{
}

#sticky-posts article.container .left
{
	width: 53%;
}

#sticky-posts article.container .left img
{
	max-height: 350px;
}

#sticky-posts article.container:nth-child(even), #list-articles article.container:nth-child(even)
{
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

#sticky-posts article.container:nth-child(even) .right .text, #list-articles article.container:nth-child(even) .right .text
{
	float: right;
	text-align: right;
	margin: 0 50px 0 0;
}

#sticky-posts article.container:nth-child(even) .right .text h2, #list-articles article.container:nth-child(even) .right .text h2
{
	text-align: right;
}

#sticky-posts article.container:nth-child(even) .right .text a, #list-articles article.container:nth-child(even) .right .text a
{
	float: right;
}

.animated
{
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-duration: 4s;
	-moz-animation-duration: 4s;
	-moz-animation-timing-function: ease-out;
	-moz-animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.fadeIn
{
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeIn
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}

@-moz-keyframes fadeIn
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}

@keyframes fadeIn
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}

.wpcf7-form input, form.searchandfilter input
{
	border: 1px solid var(--typo);
	padding: 10px 20px;
	margin: 0;
	outline: none;
}

.wpcf7-form input[type="submit"], form.searchandfilter input[type="submit"]
{
	background: var(--red);
	border: 0;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
}




/************************************************
HEADER
*************************************************/

header
{
	position: fixed;
	background: white;
	width: 100%;
	height: 90px;
	z-index: 10;
	top: 0;
}

header #subnav
{
	background: rgb(90,90,90);
	width: 100%;
	height: 25px;
	float: left;
}

header #subnav .socialnet
{
	position: absolute;
	left: calc(10% + 8px);
	margin-top: 3px;
}

header #subnav .socialnet a
{
	margin-right: 10px;
	color: white;
	font-size: 12px;
}

header #subnav .socialnet a:last-child
{
	margin-right: 0;
}

header #subnav .inner
{
	float: right;
}

header #subnav .inner a
{
	float: none;
	color: white;
	text-decoration: none;
	margin-right: 60px;
	font-size: 12px;
	vertical-align: -2px;
}

header #subnav form
{
	float: right;
	margin-top: -2px;
	height: 26px;
}

header #subnav form #searchpicto
{
	position: relative;
}

header #subnav form #searchpicto:before
{
	position: absolute;
	content: '\f002';
	font-family: 'Font Awesome 5 Pro';
	left: 11px;
	top: 3px;
}

header #subnav form #searchpicto label
{
	display: none;
}

header #subnav form input[type="text"]
{
	border: 0;
	outline: none;
	padding: 6px 5px 6px 30px;
	height: 15px;
}

header #subnav form input[type="submit"]
{
	border: 0;
	padding: 6px 10px 5px;
	text-transform: uppercase;
	font-weight: 700;
	background: var(--blue);
	color: white;
	margin: 0 0 0 -5px;
	cursor: pointer;
}

header nav ul
{
	float: right; 
	/*float: left;*/
	width: auto;
}

header nav li.menu-item-3319, header nav li.menu-item-9211
{
	position: absolute;
	left: 0;
	margin: 0;
}

header nav li.menu-item-3319 img, header nav li.menu-item-9211 img
{
	display: none;
	height: 50px;
	margin-top: 10px;
	filter: brightness(0);
}


header nav li
{
	position: relative;
	float: none;
	display: inline-block;
	margin: 20px 20px 0;
	padding-bottom: 20px;
}

header nav li a
{
	color: var(--darkgrey);
	/*text-transform: uppercase;*/
	text-decoration: none;
	font-weight: bold;
	letter-spacing: .3px;
}

header nav li a:hover, header nav li.current-menu-item a
{
	color: var(--black);
	font-weight:bold;
}

header nav li.menu-item-3179 a:before
{
	/*content: '\f015';*/
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	font-size: 12px;
	margin-right: 10px;
}

header nav li.menu-item-3179
{
	margin-left: 10px;
}

header nav li:last-child
{
	margin-right: 0;
}

header nav li:last-child ul.sub-menu li ul.sub-menu
{
	margin: -25px 0 0 calc(-100% - 95px);
}

header nav li ul.sub-menu
{
	display: none;
	position: absolute;
	background: white;
	margin: 18px 0 0 -40px;
	width: calc(100% + 55px);
	padding: 5px 10px;
	border: 2px solid rgb(176, 13, 56);
	/*box-shadow: 5px 5px 0 var(--blue);*/
	-webkit-transform: translate(-5px, -5px);
	-moz-transform: translate(-5px, -5px);
	transform: translate(-5px, -5px);
}

header nav li.menu-item-has-children:hover > ul.sub-menu
{
	display: block;
	min-width: 135px;
}

header nav li ul.sub-menu li
{
	display: block;
	text-align: center;
	padding: 0 15px;
	margin: 0;
	padding-bottom: 10px;
}

header nav li ul.sub-menu li a
{
	font-weight:normal;
}

header nav li ul.sub-menu li ul.sub-menu
{
	background: white;
	z-index: 2;
	margin: -24px 0 0 calc(100% - 10px);
}

header nav li ul.sub-menu li:last-child
{
	padding-bottom: 0;
}

header .wpml-ls-statics-shortcode_actions
{
	padding: 0;
	border: 0;
	clear: none;
	float: right;
	margin-top: 5px;
}

/*header .wpml-ls-statics-shortcode_actions li:nth-of-type(1):after
{
	display: inline-block;
	content: '|';
	margin-right: 5px;
}*/

header .wpml-ls-statics-shortcode_actions li.wpml-ls-current-language a
{
	color: var(--blue);
}

header .wpml-ls-statics-shortcode_actions a
{
	padding: 0 3px;
}

header .wpml-ls-statics-shortcode_actions .wpml-ls-display
{
	display: none;
}







 


/*===========================
Bandeau
============================*/

#bg-index
{
	background: transparent;
	width: 100vw;
	height: calc(68vh + 20px);
	margin-top: 100px;
	overflow: hidden;
	z-index: 0;
}

#bg-index #logoCA
{
	position: relative;
	z-index: 1;
	width: 20%;
	height: 46vh;
}


#bg-index #logoCA img
{
	height: 15%;
}

#bg-index .owl-carousel
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
}

#bg-index h1
{
	position: fixed;
	z-index: 1;
	bottom: 36vh;
	font-weight: 300;
	font-size: 35px;
	letter-spacing: 1px;
	line-height: 150%;
	color: white;
	text-align: center;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

#bg-index .bg
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 100px;
}

#bg-index .bg img
{
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}


/************************************************
OWL CAROUSEL
*************************************************/

.owl-carousel, .owl-carousel .owl-item
{
	-webkit-tap-highlight-color: transparent;
	position: relative;
}

.owl-carousel
{
	display: none;
	width: 100vw;
	margin: 0 auto;
	z-index: 1;
}

.owl-carousel .owl-stage
{
	position: relative;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	height: 100%;
}

.owl-carousel .owl-stage:after
{
	content: '.';
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer
{
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	height: auto;
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper
{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item
{
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}

/*.owl-carousel .owl-item img
{
	display: block;
	max-width: 200px;
	max-height: 60px;
	margin: 0 auto;
}*/

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled
{
	display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded
{
	display: block;
}

.owl-carousel .owl-dot
{
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.owl-carousel button.owl-dot
{
	background: 0 0;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit;
}

.owl-carousel.owl-loading
{
	opacity: 0;
	display: block;
}

.owl-carousel.owl-drag .owl-item
{
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	height: 100%;
}

.owl-carousel.owl-drag .owl-item .item
{
	height: calc(70vh + 120px);
}

#last-prod .owl-carousel.owl-drag .owl-item .item
{
	height: auto;
}

.owl-carousel.owl-drag .owl-item img
{
	width: 100%;
	height: auto;
}

.owl-theme .owl-dots
{
	display: none;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	margin: 20px 0 0;
}

.owl-theme .owl-dots .owl-dot
{
	display: inline-block;
	zoom: 1;
}

.owl-theme .owl-dots .owl-dot span
{
	width: 7px;
	height: 7px;
	margin: 5px 3px;
	background: transparent;
	border: 1px solid var(--typo);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span
{
	background: var(--typo);
}

/*fancybox */

#fancybox-left, #fancybox-right
{
	display: block!important;
}

#fancybox-left-ico
{
	left: -50px!important;
}

#fancybox-right-ico
{
	left: auto!important;
	right: -50px!important;
}



/*****************************
Logo et encadré
*******************************/


#logophone {
background: url('images/logoLActblanc.svg') no-repeat;
width: 450px; height: 450px;
display: block;
-webkit-transform: scale(0.4);
-moz-transform: scale(.4);
transform: scale(.4);
opacity: 1;
position: absolute;
z-index: 1;
left: -50px; top: -50px;
margin: 20px 680px 0 0;
}





.content {
margin: 320px 0 0 0;
padding: 0;
}

#liens-index {
z-index: 1;
position:fixed;
width: 150px;
left: 30px !important; 
top: 400px;
background: white ;  /*rgb(239,234,228)*/
border-radius: 15px;
border-style:solid;
border-color: white;  /*rgb(251,246,240)*/
padding: 40px;
padding-bottom: 20px;
padding-top: 10px;
}

#liens-index a {
text-align:left;
clear: both;
float: left;
color:black;
font-weight: bold;
text-transform: uppercase;
font-family:'Lato', sans-serif;
font-size:10pt;
padding-bottom: 15px;
/*font-size: 14px;*/
}

#liens-index a:last-child {
padding-bottom: 0px;
}

#liens-index a:hover {
color: rgb(176,13,56);
}

#actu-index {
	position: fixed;
	z-index: 10;
	width: 250px;
	padding:20px 30px 30px 30px;
	top: 400px;
	right: 35px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	margin-bottom: 20px;
	background:white  ;
	
}

/*#actu-index article { 
position: absolute;
z-index: 1;
min-width:300px;
right: -0px;
bottom: 50px;
font-family: 'Lato', sans-serif;
background:white  ;   
border-radius: 15px;
border-style:solid;
border-color: white; 
padding-bottom: 20px;
padding-top: 10px;
}*/

#actu-index .date-event {
text-align: center;
font-weight: 300;
font-family: 'Lato', sans-serif;
color: rgb(176,13,56);
font-size:20pt;
border-bottom: 0px solid black;
padding-bottom: 0px;
}

#actu-index h2 {
color: black;
text-align: center;
margin: 5px 5px 0 0;
letter-spacing: 0;
font-size:14pt;
}

/*#actu-index h2:before {
content: '';
border-top: solid 1px black;
display: block;
width: 60px;
margin: 10px auto 10px;
}*/

#actu-index p {
color:rgb(176,13,56);
text-align: center;
font-size: 12pt;
font-weight:normal;
line-height:40%;
margin-bottom:30px;
}

#important
{
	position: fixed;
	z-index: 1;
	width: 220px;
	padding-bottom:10px;
	top: 250px;
	right: 25px;
	border-radius: 10px;
	box-shadow: 0 0 0px rgba(0,0,0,.1);
}

#important span
{
	color: var(--red);
}

#important .titre-imp
{
	color: rgb(176,13,56);
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
}

/*#important a
{
	display: block;
	color: var(--red);
	border-bottom: 0;
	font-size: 12px;
	text-align: center;
	margin-bottom: 5px;
	border-bottom: 1px dotted var(--red);
	padding-bottom: 5px;
}

#important a:last-child
{
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}*/

#important p
{
	margin-top: 15px;
	text-align: center;
	line-height:100%;
	margin-bottom: 30px;
}


/*=====================
En savoir plus
=======================*/

a.btn-ensavoirplus {
text-transform: uppercase;
color: black;
font-weight:bold;
display: block;
font-family: 'Lato', sans-serif;
font-size:7pt;
padding: 8px;
width: 150px;
text-align: center;
margin: 20px auto 0;
text-decoration: none !important;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
border: 2px solid black;
-webkit-box-shadow: 5px 5px 0 black;
-moz-box-shadow: 5px 5px 0 black;
box-shadow: 5px 5px 0 black;
-webkit-transform: translate(-5px, -5px);
-moz-transform: translate(-5px, -5px);
-ms-transform: translate(-5px, -5px);
-o-transform: translate(-5px, -5px);
transform: translate(-5px, -5px);
}

a.btn-ensavoirplus:hover {
color: rgb(176,13,56);
border: 2px solid rgb(176,13,56);
-webkit-box-shadow: 0 0 0;
-moz-box-shadow: 0 0 0;
box-shadow: 0 0 0;
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}


/*===========================================
MILIEU PAGE
============================================*/
#presentation, #valeurs, #posts, .foot-sponsors
{
	padding: 80px 0 90px;
	text-align: center;
}

#presentation
{
	padding: 20px 0 0;
	/*height: calc(30vh - 140px);*/
	height: auto;
}

#presentation:before, #sticky-posts:before
{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 60vw 120px 0;
	/*border-width: 0 0 120px 100vw;*/
	border-color: transparent transparent white transparent;
	position: absolute;
	top: -120px;
}

#presentation .boxed
{
	width: 40%;
}

#presentation p, #valeurs p
{
	line-height: 160%;
}

#presentation h1
{
	font-weight: 300;
	font-size: 35px;
	letter-spacing: 1px;
	text-align: center;
	color: black;
	margin-top: 20px;
	line-height:100%

}

#presentation p
{
	font-size: 18px;
	margin: 5px 0 0;
}


#presentation strong
{
	color: rgb(176,13,56);
}

#presentation, #valeurs, #posts, .foot-sponsors
{
	padding: 80px 0 90px;
	text-align: center;
}

#presentation
{
	padding: 20px 0 0;
	/*height: calc(30vh - 140px);*/
	height: auto;
}

#presentation:before, #sticky-posts:before
{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 120px 100vw;
	border-color: transparent transparent white transparent;
	position: absolute;
	top: -120px;
}

#posts
{
	clear: both;
	overflow-x: hidden;
	padding: 30px 0 160px;
	/*padding: 0;
	background: transparent;*/
}



/*=============================
FOOT
==============================*/

footer
{
	position: relative;
	clear: both;
	padding: 40px 0 10px;
	background: rgb(70,70,70);
	width: 100%;
}

footer .boxed
{
	display: flex;
}

footer .left, footer .right
{
	color: white;
	width: 50%;
	font-size: 12px;
	display: inline-block;
}

footer .left h2, footer .right h2
{
	font-size: 12px;
	color: white;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
	text-align: left;
	text-transform: uppercase;
}

footer .left p, footer .right p
{
	color: white;
	line-height: 130%;
	font-weight: 300;
	text-transform: none;
}

footer .left span, footer .right span
{
	font-weight: 900;
}

footer .left a, footer .right a
{
	text-decoration: none;
	color: white;
	font-size:12px;
	font-weight: normal;
}


/************************************************
RESPONSIVE
*************************************************/

/* RESPONSIVE 13 POUCES */

@media (min-width : 1340px) and (max-width : 1450px)
{
	header #subnav .socialnet
	{
		left: calc(5% + 8px);
	}

	header nav.boxed.computer
	{
		width: 90%;
	}
}

/* RESPONSIVE 12 POUCES */

@media (min-width : 1150px) and (max-width : 1339px)
{
	header #subnav .socialnet
	{
		left: calc(5% + 8px);
	}

	header nav.boxed.computer
	{
		width: 90%;
	}

	header nav.boxed.computer ul li
	{
		margin-right: 0;
	}
}

/* RESPONSIVE 10-11 POUCES */

@media (min-width : 1001px) and (max-width : 1149px)
{
	header #subnav .socialnet
	{
		left: calc(2.5% + 8px);
	}

	header nav.boxed.computer
	{
		width: 95%;
	}

	header nav.boxed.computer ul li
	{
		margin-left: 10px;
		margin-right: 0;
	}
}
