
*
{
	padding:0;
	margin:0;
	box-sizing: border-box;
}

html
{
	font-size:16px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@font-face
{
	font-family: PMU;
	src: url("https://s3-eu-west-1.amazonaws.com/pmu-fonts/PMU-Titre.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face
{
	font-family: "PMU Bold";
	src: url("https://s3-eu-west-1.amazonaws.com/pmu-fonts/PMU-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

body
{
	background-color:#FFFFFF;
	font-family: 'Roboto', arial, sans-serif;
}

.overflow
{
	overflow: hidden;
}

a
{
	text-decoration: none;
	color:#000000;
	transition:opacity .2s ease-in-out;
}

a:hover
{
	opacity:0.8;
}

h1
{
	font-family:PMU, 'Roboto', arial, sans-serif;
	font-size:3.5em;
}

header
{
	background-color:#000000;
	font-size:0;
	padding:10px 0;
}

header.fixed
{
	z-index: 40;
	position: fixed;
	top:0;
	left:0;
	right:0;
}

header .header-left > *
{
	margin-left:1em;
	margin-left:20px;
}

.visuels-header
{
	margin-left:0 !important;
}

header img.logo-pmu
{
	width:80px;
}

header a.pmu-account-btn
{
	color:#FFFFFF;
	font-size:1rem;
	font-weight:400;
	background-color:#223535;
	display:inline-block;
	padding:0.6em 1.2em;
	border-radius: 50px;
}

header nav ul li
{
	color:#FFFFFF;
	list-style-type: none;
	font-size:1rem;
	margin-left:20px;
}

header nav ul li:first-child
{
	margin-left:0;
}

header nav ul li a
{
	color:#FFFFFF;
	text-decoration: none;
}

.container
{
	max-width:1280px;
	width:100%;
	margin:auto;
}

.big-container
{
	max-width:1500px;
	width:100%;
	margin:auto;
}

.item-container
{
	max-width:880px;
	width:100%;
	margin:auto;
}

.flex
{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.row-reverse
{
	flex-direction: row-reverse;
}

.grid
{
	display: grid;
}

.grid-2
{
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.grid-3
{
	grid-template-columns: repeat(3, 1fr);
}

.grid-4
{
	grid-template-columns: repeat(4, 1fr);
}

.top-content
{
	position: relative;
	margin: auto;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	z-index: 1;
	background-color:#005049;
	padding:7em 0;
}

.top-content::after
{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background: rgb(0,203,137);
	background: linear-gradient(280deg, rgba(0,203,137,0) 0%, rgba(0,80,73,1) 50%);
	z-index:2;
}

.top-content .elements-header
{
	position:relative;
	z-index: 3;
	color:#FFFFFF;
}

.top-content .elements-header p
{
	font-size:1.3em;
}

.item.item-hippique .item-infos, .item.item-poker .item-infos
{
	padding-right:5em;
}

.item.item-sport .item-infos
{
	padding-left:5em;
}

img.item-app-icon
{
	width:92px;
	height:92px;
	display: inline-block;
	vertical-align: middle;
}

img.item-app-icon-small
{
	width:80px;
}

span.sub
{
	padding-left:0.5em;
}

img.item-app-icon, span.sub
{
	display: inline-block;
	vertical-align: middle;
}

.item:first-child
{
	padding-top:5em;
}

.item
{
	padding:4em 0;
}

.item .item-infos span.sub
{
	font-size:1.2em;
	font-family:PMU, 'Roboto', arial, sans-serif;
}

.item .item-infos span.sub span.hero
{
	font-size:1.2em;
}

.item .item-infos p
{
	font-size:1.2em;
	padding:1em 0;
}

.item-infos .apps-icons img
{
	height:45px;
}

.item a.btn-action
{
	background-color:#00B87C;
	color:#FFFFFF;
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-style: italic;
	font-size:1.1em;
	padding:0.8em 2em;
	border-radius: 50px;
	display: inline-block;
	vertical-align: middle;
	margin-top:1em;
}

.item .item-screenshot
{
	height:450px;
	height:513px;
}

.item.item-sport
{
	background-color:#F8F8F8;
}

.item .bloc-offer
{
	width:280px;
	height:200px;
	background-color: darkgrey;
	border-radius:20px;
	text-align:center;
	position:relative;
}

.item.item-hippique .bloc-offer
{
	background-color:#005049;
}

.item.item-sport .bloc-offer
{
	background-color:#DC4605;
}

.item.item-poker .bloc-offer
{
	background-color:#1E5091;
}

.item .bloc-offer span.text-offer
{
	color:#FFFFFF;
	font-family:PMU, 'Roboto', arial, sans-serif;
	font-size:2em;
	padding-top:0.3em;
	padding-bottom:0.5em;
	display: inline-block;
}

.item .bloc-offer span.text-offer span.price
{
	font-size:1.4em;
}

.item .bloc-offer img.app-screenshot
{
	width:185px;
	height:392px;
	display: block;
	margin:auto;
	box-shadow: 0px 10px 40px 23px rgba(0,0,0,0.1);
	border-radius: 20px;
}

section.apps-others
{
	background-color:#F8F8F8;
	padding:5em 0;
}

.blocs
{
	box-shadow: 0px 10px 36px 10px rgba(0,0,0,0.1);
	padding:2em;
	box-sizing: border-box;
	border-radius: 20px;
}

.blocs h3
{
	font-size:1.6em;
	font-family:PMU, 'Roboto', arial, sans-serif;
}

.blocs p
{
	padding:1em 0;
}

@media screen and (max-width: 1310px)
{
	.container
	{
		padding:0 2em;
	}
}

.flex-header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer {
	padding-top:2em;
	background-color:#081516;
}
.social-apps {
	text-align: center;
	border-bottom: 1px solid #333;
	padding-bottom: 2em;
}
p.footer-title {
	color:#FFFFFF;
}
.social-apps img.rs {
	width:30px;
	margin:0 5px;
}
.liens {
}
.liens, .logos-anj {
	text-align: center;
	color:#FFFFFF;
	margin-top:2em;
}
.liens a {
	text-decoration: none;
	color:#FFFFFF;
	padding:0 10px;
	margin-top:1em;
	padding-bottom:5px;
	display: inline-block;
}
.logos-anj {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom:2em;				
	border-bottom: 1px solid #333;

}
.logos-anj a {
	padding: 0 10px;
}
.logos-anj img {
	height:30px;
}
.reminder {
	align-items: flex-start;
	margin-top:2em;
	flex-direction: inherit;
}
.reminder p {
	color:#FFFFFF;
	margin-left:1em;
	font-size:0.8em;
}
.reminder img {
	height:30px;
}
.agrement p {
	color:#FFFFFF;
	font-size:0.8em;
	text-align:center;
	padding-top:2em;
}
.message {
	text-align: center;
	padding-top:1em;
}
.message p {
	text-transform: uppercase;
	color:#FFFFFF;
}

.mob-visible
{
	display:none;
}

.menu-none
{
	display:none;
}

@media screen and (max-width: 1501px)
{
	.big-container
	{
		padding: 0 15px;
	}
}

@media screen and (max-width: 881px)
{
	.big-container
	{
		padding:0;
	}

	.top-content
	{
		padding:2em 0 !important;
	}

	.top-content .elements-header
	{
		text-align:center;
	}

	h1
	{
		font-size:2.5em;
		padding-bottom:0.5em;
	}

	.top-content .elements-header p
	{
		font-size:1.1em !important;
	}

	.item-container
	{
		padding:0 2em;
	}

	.item
	{
		text-align: center;
	}

	.item-app-icon
	{
		width:100% !important;
		display: inline-block !important;
	}

	.item-infos
	{
		padding-left:0 !important;
		padding-top:2em !important;
	}

	.item.item-hippique .item-infos, .item.item-poker .item-infos
	{
		padding-right:0 !important;
	}

	.flex
	{
		flex-direction: column;
	}

	.grid-2
	{
		grid-template-columns: auto;
		gap: 30px;
	}

	.item .item-screenshot
	{
		height:auto;
	}

	.item-infos
	{
		font-size:80% !important;
	}

	.item .bloc-offer img.app-screenshot
	{
		width: 90px !important;
		height: auto !important;
		border-radius: 6px !important;
	}

	img.item-app-icon
	{
		width:50px !important;
		height:50px !important;
	}

	span.sub
	{
		padding-left:0 !important;
		display: block !important;
	}

	.top-content::after
	{
		background: rgb(0,203,137);
		background: linear-gradient(180deg, rgba(0,203,137,0) 0%, rgba(0,80,73,0.9107843821122199) 50%);
	}

	.item-infos .apps-icons img
	{
		height:35Px !important;
	}

	section.apps-others
	{
		padding:3em 0 !important;
	}

	.mob-hidden
	{
		display: none;
	}

	.mob-visible
	{
		display: block;
	}

	.flex-header
	{
		padding:0 15px;
		width:100%;
		justify-content: inherit;
	}

	header
	{
		padding:15px 0;
	}

	header .header-left > *
	{
		margin-left:0;
	}

	header nav
	{
		position:absolute;
		width:100%;
		z-index:50;
		background-color: #FFFFFF;
		height:100vh;
		top:0;
		left:0;
	}

	header img.logo-menu
	{
		width:120px;
	}

	header nav ul li
	{
		display: block;
		margin-left:0;
		height:8em;
		border-bottom:1px solid #f0f0f0;
		width:100%;
		text-align:center;
		color:#000000;
	}

	header nav ul li:first-child
	{
		height:auto;
		padding-top:2em;
		font-weight: bold;
		font-size:2rem;
		color:#4a4a4a;
	}

	header nav ul li:first-child, header nav ul li:last-child
	{
		border-bottom:none;
	}

	header nav ul li a
	{
		display:block;
		width:100%;
		height:100%;
		text-align:center;
	}

	header nav ul li a img
	{
		margin:auto;
	}

	header a.logo-link
	{
		display: inherit;
	}

	header a.pmu-account-btn
	{
		font-size:0.8rem;
		width:170px;
		text-align:center;
		padding:0.6em 0;
	}

	header img.visuels-header
	{
		margin-right:10px;
	}

	header img.open
	{
		cursor: pointer;
	}

	header img.close
	{
		position:absolute;
		top:0;
		left:0;
		width: 16px;
		top: 22px;
		left: 30px;
		cursor: pointer;
	}

	header img.logo-communaute
	{
		width:145px;
	}

	nav.slide-in
	{
		animation: slideIn 0.3s forwards;
	}

	nav.slide-out
	{
		animation: slideOut 0.3s forwards;
	}

	.item .bloc-offer
	{
		width: 280px;
		height: auto;
		background-color: darkgrey;
		border-radius: 20px;
		text-align: center;
		position: relative;
		display: flex;
		padding: 1em;
		align-content: center;
		align-items: center;
	}

	.item .bloc-offer span.text-offer
	{
		font-size:1.5em;
		text-align: left;
		padding-right:0.2em;
	}

	h2
	{
		display: flex;
		text-align: left;
		align-items: center;
		justify-content: center;
	}

	.item .item-infos span.sub
	{
		font-size:1em;
		padding-left:1em !important;
	}

	@keyframes slideIn
	{
		0%
		{
			transform: translateX(-100%);
		}

		100%
		{
			transform: translateX(0);
		}
	}

	@keyframes slideOut
	{
		0%
		{
			transform: translateX(0);
		}

		100%
		{
			transform: translateX(-100%);
		}
	}

	.side
	{
		transform: translateX(-100%);
	}
}
