*{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
::-webkit-scrollbar{
	width: 12px;
}
::-webkit-scrollbar-track{
	background-color: transparent;
}
::-webkit-scrollbar-thumb{
	background-color: grey;
	border-radius: 20px;
}
body{
	background-color: #202020;
	font-family: Jost,sans-serif;
	color: white;
	cursor: url(https://discretize.eu/images/cursors/default.png),default;
}
header{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100vw;
	height: 10vh;
	background-color: #171717;
}
nav{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height:  10vh;
}
ul{
	width: 600px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	list-style-type: none;
}
li a{
	font-size: 20px;
	text-decoration: none;
	color: white;
	transition: 0.3s;
}
li a:hover{
	color: rgb(254 215 170);
}
a{
	color: rgb(254 215 170);
	cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
	text-decoration: none;
}
.active a{
	font-weight: bold;
	color: rgb(254 215 170);
}
footer{
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 10vh;
	background-color: #111111;
	font-size: 18px;
}
footer li{
	 list-style-type: none;
}
footer a{
	color: rgb(254 215 170);
}
main{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.page1{
	display: flex;
	width: 100vw;
	height: 92vh;
	background: url(https://heartofthorns.guildwars2.com/assets/images/content/raids/gallery/raids_03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    flex-direction: column;
	align-items: center;
	justify-content: center;
}
.page1 h1{
	font-size: 75px;
	height: 100px;
	color: white;
	text-align: center;
}
.page1 p{
	text-align: center;
	margin-top: 10px;
	margin-left: 50px;
	margin-right: 50px;
	padding: 15px;
	line-height: 28px;
	max-width: 600px;
	font-size: 22px;
	color: white;
	text-shadow: 1px 2px 3px black;
}
.arow{
	display: flex;
	margin-top: 75px;
	justify-content: center;
	width: 70px;
	height: 70px;
	overflow-y: hidden;
}

.arow span{
  width: 6px;
  height: 40px;
  background: white;
  border-radius:6px;
  margin: 9.5px;
  animation: move 2s infinite ease-in-out;
}
.arow span:nth-of-type(1){
  transform: rotate(-45deg);
}

.arow span:nth-of-type(2){
  transform: rotate(45deg);
}
@keyframes move{
  0%{margin-top:0;}
  50%{margin-top:30px;}
  100%{margin-top:0;}
}
.highlight {
    color: #FED7AA;
    font-size: 75px;
    text-shadow: 
    	1px 1px #B19676,
    	1px 2px #B19676,
    	1px 3px #B19676,
    	1px 3px #B19676,
    	1px 5px #B19676,
    1px 6px 6px rgba(16,16,16,0.4),
    1px 7px 7px rgba(16,16,16,0.4),
    1px 8px 8px rgba(16,16,16,0.4),
    1px 8px 9px rgba(16,16,16,0.2);

}
.titre2{
	display: flex;
	width: 100vw;
	height: 90vh;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #171717;
}
.AM{
	width: 100vw;
	height: 15vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 20px;
}
.container{
	display: flex;
    width: 100vw;
    height: 75vh;
    justify-content: center;
    align-items: center;
    background-color: #242424;
    flex-wrap: wrap;
    gap: 30px;
}

.ilu{
	width: 425px;
	height: 40vh;
	display: flex;
	padding: 20px;
	justify-content: center;
	align-items: center;
	background-color: #131313;
	border-radius: 0.5rem;
	background: url(https://discretize.eu/static/1be393b03f0822ff6f0dc2150ac0540d/eea4a/turret_room.jpg) ; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.presentation{
	width: 425px;
	height: 40vh;
	display: flex;
	padding: 20px;
	justify-content: space-evenly;
	flex-direction: column;
	background-color: #131313;
	border-radius: 0.5rem;
}
.presentation h2{
	margin-left: 10px;
	color: white;
	margin-bottom: 10px;
	font-size: 48px;
}
.presentation p{
	margin-left: 10px;
	font-size: 24px;
	color: #ddd;
}
.direction{
	margin-left: 10px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	font-size: 26px;
	color: white;
}
.direction a{
	color: rgb(254 215 170);
}
.titregal{
	width: 100%;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.uploadd{
	background-color: #242424;
	color: rgb(254 215 170);
	padding: 6px;
	margin-top: 10px;
	width: 300px;
	height: 35px;
	border: none;
	border-radius: 20px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
  transition: 200ms;
}
.uploadd:hover{
	background-color: #111111;
}
.galup{
	width: 1000px;
	padding-bottom: 40px;
	padding-right: 40px;
	padding-left: 40px;
	padding-top: 20px;
	margin: 20px auto;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: #131313;
	gap: 20px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
}
.imup{
	width: 310px;
	height: 310px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	border: 5px solid rgb(254 215 170);
	border-radius: 25px;

}
.imup img{
	object-fit: cover;
	filter: grayscale(00%);
	transition: 300ms ease-in-out;
	cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
}
.imup img:hover{
	transform: scale(1.2);
	filter: grayscale(100%);
}







table{
	margin: 20px;
	width: 75vw;
	height: 72vh;
}	
th{
	font-size: 25px;
	height: 50px;
}
td{
	text-align: center;
	height: 25px;
}
option{
	background-color: #202020;
	cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
}


form{
	width: 300px;
	background-color: #131313;
	padding: 25px;
	margin-top: 5vh;
	margin-bottom: 2.5vh;
	border-radius: 20px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
	border-right: 3px solid rgba(0, 0, 0, 0.3);

}
form h1{
	margin-bottom: 15px;
}
#en-tete{
	display: flex;
	gap:  10px;
}
#en-pied{
	display: flex;
	flex-direction: column;
}
form label{
	display: block;
	margin-bottom: 5px;
	margin-top: 15px;
	cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
	text-transform: uppercase;
}
#email{
	box-sizing: border-box;
	width: 100%;
	height: 35px;
}
#message{
	box-sizing: border-box;
	width: 100%;
}
.lesradio{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.butt-envoyer{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 11px;
	background-color: #242424;
	color: white;
	height: 40px;
	transition: 200ms;
	border-radius: 20px;
	border: none;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}
.butt-envoyer:hover {
	background-color: #181818;
}
input{
	height: 30px;
	cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
}
textarea{
	height: 210px;
	cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
}
.messphp{
	height: 50px;
	width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2.5vh;
	overflow-y: hidden;
}
.messphp p{
	text-align: center;
}






.allpre{
	display: flex;
	width: 100vw;
	height: 700px;
	align-items: center;
	flex-direction: column;
}
.Ppre{
	display: flex;
	width: 100vw;
	height: 325px;
	align-items: center;
	justify-content: center;
	overflow-y: hidden;
}
.containpre{
	  display: flex;
    width: 750px;
    height: 200px;
    padding: 20px;
    gap: 20px;
    background-color: #171717;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.3);
 	  border-right: 3px solid rgba(0, 0, 0, 0.3);
}

.containpre button{
	background-color: #242424;
	color: rgb(254 215 170);
	padding: 6px;
	width: 175px;
	height: 35px;
	border: none;
	border-radius: 20px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
  transition: 200ms;
}
.containpre button:hover{
	background-color: #111111;
}
.containvi{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 500px;
}

.galpartenaire{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 1080px;
}
.vin{
	width: 250px;
	height: 200px;
	transition: 200ms ease-in-out;
	border-radius: 20px;
	overflow-y: hidden;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
}
.tete{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 200px;
	overflow-y: hidden;
	position: relative;
}
.nompart h2{
		position: absolute;
		bottom: 0;
		left: 5px;
		opacity: 0;
		transition: 200ms ease-in-out;
}
.tete img{
	object-fit: cover;
	width: 250px;
	height: 200px;
	opacity: 1;
	transition: 200ms ease-in-out;
}
.profil{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-direction: column;
	width: 100%;
	height: 0px;
	background-color: #171717;
	transition: 200ms ease-in-out;
	overflow-y: hidden;
}
.navprof{
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	overflow-y: hidden;
}
.profil p{
	overflow-y: hidden;
	width: 220px;
	height: 115px;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 15px;
	font-size: 16.5px;
}
.sae{
	background-color: #242424;
	color: rgb(254 215 170);
	padding: 6px;
	width: 175px;
	height: 35px;
	border: none;
	border-radius: 20px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
  transition: 200ms;
}
.sae:hover{
	background-color: #111111;
}
.portefolio{
	background-color: #242424;
	color: rgb(254 215 170);
	padding: 6px;
	width: 35px;
	height: 35px;
	border: none;
	border-radius: 20px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  cursor: url(https://discretize.eu/images/cursors/green.png),pointer;
  transition: 200ms;
}
.portefolio:hover{
	background-color: #111111;
}
.vin:hover {
	height: 400px;
}
.vin:hover .profil{
	height: 200px;
}
.vin:hover .tete img{
	opacity: 0.5;
}
.vin:hover .tete h2{
	opacity: 1;
}

@media only screen and (max-width: 1400px) {
  .ilu{
	width: 450px;
	height: 40vh;
	display: flex;
	padding: 20px;
	justify-content: center;
	align-items: center;
	background-color: #131313;
	border-radius: 0.5rem;
	background: url(https://discretize.eu/static/1be393b03f0822ff6f0dc2150ac0540d/eea4a/turret_room.jpg) ; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	}
.presentation{
	width: 450px;
	height: 40vh;
	display: flex;
	padding: 20px;
	justify-content: space-evenly;
	flex-direction: column;
	background-color: #131313;
	border-radius: 0.5rem;
	}
}

.ref{
	width: 100vw;
	height: 100px;
	margin-top: 10px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.helppeur{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1080px;	
	gap: 10px;
}
.card{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 245px;
	height: 300px;
	background-color: #171717;
	color: white;
	border-radius: 20px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
}
.imhelp{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 125px;
	background-color: black;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	transition: height 400ms ease-in-out ;
}

.texthelp{
	display: block;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 175px;
	gap: 30px;
	transition: all 400ms ease-in-out;
	overflow: hidden;
	text-decoration: none;
	
}
.texthelp h2{
	overflow: hidden;
	text-decoration: none;
}
.texthelp p{
	text-align: center;
	overflow: hidden;
	text-decoration: none;
	margin: 0 10px;
}   


.card:hover .imhelp{
	height: 300px;
}
.card:hover .texthelp{
	height: 0px;
}

.alllink{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:  18px;
	width: 1080px;
	height: 525px;
	margin: 10px auto;
}
.HD{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 520px;
	gap: 20px;
	height: 500px;
}
.Home{
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 15px;
	width: 480px;
	height: 125px;
	border-radius: 20px;
	background-color: #171717;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
}
.Home p a{
	font-size: 12px;
}
.Data{
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 15px;
	width: 480px;
	height: 375px;
	border-radius: 20px;
	background-color: #171717;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
}
.Data h2{
	margin-bottom: 10px;
}
.Data a{
	line-height: 25px;
}
.Data p{
	height: 270px;
}