section.reseau{
	width: 100%;
	opacity: 1;
	position: relative;
	height: auto;
	min-height:100vh;
	margin-top: 0;
	z-index: 128;
	background-color: #000;
}
section.intro.white {
    background: var(--blanc);
}
.intro .titre::after {
    background-color: var(--grismoyen);
	
}
section.reseau> div{
	top:0;
	width: 100%;
	overflow: hidden;
	position: relative;
	height: auto;
	min-height:100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-content: stretch;
}

section.reseau .right .titre .next{
	display: none;
	position: absolute;
	right: -20px;
    bottom: 20px;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	border: 1px solid white;
}
section.reseau .right .titre .next:after{
	position: absolute;
	content:"";
	width: 10px;
	height: 10px;
	border-right: 1px solid white;
	border-top: 1px solid white;
	transform: rotate(45deg);
	right: 11px;
    top: 9px;
}

section.reseau .sidepic{
	position: relative;
	z-index: 1;
	flex-basis: 40%;
	width: 40%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
section.reseau > div > svg{
	position: absolute;
}
section.reseau .sidepic > div{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
section.reseau .sidepic > div img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	clip-path: url(#myClip);
}
section.reseau .sidepic > div:not(.active){
	animation: hideDelay 1s 0.25s  1 ALTERNATE linear forwards;
	opacity: 1;
}
section.reseau .sidepic > div.active{
	animation: showDelay 1s 0.25s  1 ALTERNATE linear forwards;
	opacity: 0;
}
@keyframes showDelay{
	0% {
		opacity: 0;
	}
	0.001%{
		opacity: 1;
	}
	100% {
		opacity:1;
	}
}
@keyframes hideDelay{
	0% {
		opacity: 1;
	}
	0.001%{
		opacity: 0;
	}
	100% {
		opacity:0;
	}
}
section.reseau > div > .right{
	flex-basis: 60%;
	padding-right: 8vw;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
section.reseau .right .titre{
	margin-left: 290px;
	flex-basis: 100%;
	padding-left: 40px;
	margin-bottom: 20px;
}
section.reseau .right .titre h1{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	vertical-align: bottom;
	-ms-align-items: flex-end;
	align-items: flex-end;
	min-height:125px;
}
section.reseau .right .titre h1:not(.active){
    display: none;
}
section.reseau .right .content{
	flex-basis: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-start;
	align-items: flex-start;
	justify-content: flex-start;
}
section.reseau .right .content .text > div[data-slide]:not(.active){
	display: none;	
}
section.reseau .right .content .nav{
	padding-top: 30px;
	width: 290px;
	flex-basis: 290px;	
    position: relative;
    z-index: 1;
}
section.reseau .right .content .nav a{
	position: relative;
	text-transform: uppercase;
	color: var(--blanc);
	margin-bottom: 10px;
	display: block;
	text-align: right;
	padding-right: 40px;
	margin-right: -5.5px;
	height: 55px;
	align-content: center;
}
section.reseau .right .content .nav ul{
	list-style: none;
	padding-left: 0;
}
section.reseau .right .content .nav li.active a{
	color:var(--color1);
}
section.reseau .right .content .nav a:after{
	display: block;
	content:"";
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--blanc);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
section.reseau .right .content .nav li.active a::after{
	background-color: var(--color1);
}
section.reseau .right .content .text {
	padding-top: 30px;
	flex-basis: calc(100% - 290px);
}
section.reseau .right .content .text > *{
	padding-left: 40px;
}
section.reseau .right .content .topline{
	left: 0;
	width: 100vw;
	height: 1px;
	position: absolute;
}
section.reseau .right .content .text .leftline{
	height: 100%;
	top: 0;
	width: 1px;
	position: absolute;
}


@media screen and (max-width:1024px){

	section.reseau {
		border-top: 1px solid var(--grismoyen);
		height: auto;
/*		margin-top: -50vh;*/
	}
	section.reseau .right .content .nav{
		width: 200px;
		flex-basis: 200px;
	}
	section.reseau .right .titre{
		margin-left: 200px;
		position: relative;
	}
	section.reseau .right .content .text {
		flex-basis: calc(100% - 200px);
	}

}


@media screen and (max-width:960px){
/*
	section.reseau > div > .right {
		flex-basis: 100%;
        padding: 0 5vw;
	}
	
	section.reseau .right .titre {
 		margin-left: 0;
	}
	
	section.reseau .sidepic > div img{
		display: none;
	}

	section.reseau> div {

		flex-wrap: wrap;
	}
	
	section.reseau .sidepic {
		flex-basis: 100%;
		width: 100%;

	}
*/
}

@media screen and (max-width:780px){
	section.reseau> div{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	section.reseau .right .content .nav{
		display: none;
	}
	section.reseau .right .content .text{
		flex-basis: 100%;
		padding-bottom: 10vh;
	}
	section.reseau .right .titre{
		margin-left: 0;
		padding: 10vh 40px 0;
	}
	section.reseau .right .titre .next{
		display: block;
	}
	section.reseau .right .titre h1{
		min-height: 0;
	}
	section.reseau .right .titre > span{
		display: block;
		color:white;
	}
	section.reseau> div{
		height: auto;
	}
	section.reseau .sidepic > div img{
		clip-path:none;
	}
}


@media screen and (max-width:760px){
	section.reseau .right .content .nav {

		width: 190px;
		flex-basis: 190px;

	}
	
	section.reseau .right .content .text {
		
		flex-basis: calc(100% - 90px);
	}	
}


@media screen and (min-width:640px){
	.text .topline.toplinefromleft{
		display: none;
	}
}

@media screen and (max-width:640px){
	
	section.reseau .right .content .text .leftline{
		height: 100%;
	}
	
	section.reseau .right .content .nav {
        width: 130px;
        flex-basis: 130px;
    }
	
	section.reseau .right .titre {
		margin-left: 0;
		    padding-left: 11px;

	}
	

	section.local .left{
		width: 100%;
	}
	section.local .left .title{
		flex-basis: 50%;
		padding-right: 0;
	}
	section.local .spreadline .line{
		width: 100%;
	}
	section.reseau .right .titre {
        margin-left: 0;
        padding: 40px 40px 0;
	}
	section.reseau > div > .right{
		flex-basis: 100%;
		padding-left: 8%;
	}
	section.reseau .sidepic{
		flex-basis: 100%;
		width: 100%;
		aspect-ratio:1 / 1;
	}
	
	section.reseau .right .content{
		flex-wrap: wrap;
	}
	
	section.reseau .right .content .text > *{
		padding: 50px;
	}
	
	section.reseau .right .content .nav a:after {
		
		left: -4px;

	}
	
	section.reseau .right .content .nav a{
		text-align: left;
		    padding-left: 25px;
	}
	
	section.reseau .right .content .nav {

		width: 100%;
		flex-basis: 100%;

	}	
	
	section.reseau .right .content .text {
		flex-basis: 100%;
	}
}




