@charset 'UTF-8';

@font-face {
font-family: 'Lato';
src: url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600|Arvo:700');
}

/*
	METEO
*/

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

.global {
	overflow: hidden;
}

body {
	background: linear-gradient(135deg, #d5f5a2 0%, #6ab9f3 100%) fixed;
	padding: 0;
	margin: 0;
}

#container {
	width: 100%;
	text-align: center;
}

nav ul {
	padding-top: 0;
}

nav li {
	font-family: Lato;
	list-style: none;
	margin-top: 10px;
	font-size: 22px;
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 30px;
	line-height: inherit;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	width: 100%;
}

nav li.categorie {
	color: white;
	opacity: .35;
	padding-top: 30px;
	font-weight: 900;
}

nav li.categorie2 {
	color: white;
	opacity: .2;
	padding-top: 0px;
}

nav li.categorie-select {
	color: #ffd200;
}

nav li.categorie-select a {
	color: #ffd200;
	cursor: pointer;
}

nav li.categorie-select a:hover {
	color: black;
}

.main-navigation {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #d94304;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}

.main-navigation.open {
	transform: translateX(50%);
	box-shadow: 80px 0px 80px 50px black;
	z-index: 2;
}

.lecteur {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

video {
	margin-top: inherit;
    /* min-width: 100%; */
    /* min-width: 600px; */
	object-fit: cover;
	margin-bottom: 0;
}

h1 {
	font-family: 'DM Sans', sans-serif;
	color: black;
	font-size: 30;
	font-weight: 400!important;
}

input {
	font-family: 'DM Sans', sans-serif;
	padding-left: 20px;
	font-weight: bolder;
	color: black;
	width: 90%;
	font-size: 25px;
	height: 80px;
	background-color: rgb(255 255 255 / 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

input::placeholder {
	color: grey;
	opacity: .7; /* Firefox */
	font-weight: normal!important;
}

a {
	color: white;
	text-decoration: none;
	font-weight: 400!important;
}

a:hover {
	color: black;
}

.btn {
	font-family: 'DM Sans', sans-serif;
	width: 80px;
	color: white;
	background-color: #d94304;
	border-radius: 0 10px 10px 0;
	border: none;
	font-size: 25;
	height: 80px;
}

.btn:hover {
	background-color: black;
	cursor: pointer;
}

.btn2 {
	color: white!important;
	background-color: #d94304;
	border-radius: 10px;
	border: none;
	font-size: 25;
	padding: 20px;
	display: flex;
	height: 40px;
	width: 40px;
	margin: 5px;
}

.btn2:hover {
	background-color: black;
	cursor: pointer;
}

.round {
	border-radius: 10px 0 0 10px;
	border: none;
}

.choix {
	display: flex;
	margin-bottom: 50px;
	justify-content: center;
}

form {
	display: inline-flex;
	margin-left: 10px;
	margin-right: 10px;
	height: 100%;
}

form#ville {
	width: 40px;
	height: 40px;
}


.logopetit {
	right: 30;
	position: fixed;
	z-index: 200;
	bottom: 15;
}

.plus {
	cursor: pointer;
	font-size: 30px;
	z-index: 100000;
}

.titre {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.image-wrapper {
  max-width: 100%;
  max-height: 100%;
}

.image-wrapper img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.titre img {
	width: 750px;
	margin: auto;
}

.wrapform {
	height: 70px;
	position: fixed;
	bottom: 70px;
	width: 100%;
	display: block;
}

.choix {
	display: flex;
    /* margin-top: 2.5%; */
	justify-content: center;
	position: fixed;
	bottom: 100px;
	width: 100%;
}

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

	.main-navigation.open {
		transform: translateX(0%);
		box-shadow: 80px 0px 80px 50px black;
		z-index: 2;
	}
	
	.logopetit {
		right: inherit;
		text-align: center;
		width: 100%;
	}

}

