/* ------------------------------------------------------------------------------
	Template Name: Mount
	Author: Designstub
	Author URI: http://www.designstub.com

/* ------------------------------------------------------------------------------
	generel Style
-------------------------------------------------------------------------------*/

:root{
	--bleu : #334bfd;
	--bleu-gris : #23527c;
	--rouge : #ff4c34;
	--gris:  #a3a3a3;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
	min-height: 100vh;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	color:var(--gris);
	background: #000;
	  font-size: 14px;
  line-height: 1.42857143;
}

h1 {
	font-size: clamp(34px, 4vw, 48px);
	color: #fff;
	letter-spacing:-2px;
	font-family: 'Roboto Slab', serif;
}
h2 {
	font-size: clamp(22px, 4vw, 28px);
	margin: 0.9em 0 0.5em 0;
	color: #fff;
	letter-spacing:3px;
	text-transform:uppercase;
	font-family: 'Roboto Slab', serif;
}
h3 {
	font-size: clamp(20px, 4vw, 22px);
	margin: 0.9em 0 0.5em 0;
	color: #fff;
	font-family: 'Roboto Slab', serif;
}
h4 {
	font-size: 22px;
	color: #2d3033;
	font-weight: 400;
	font-family: 'Roboto Slab', serif;
}
h5 {
	font-size: 14px;
	color: #2d3033;
	text-transform: uppercase;
	font-weight: 700;
}
p {
	font-size: 14px;
	line-height: 22.4px;
}

.text-center {
	text-align:center;
}

.container{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

a{
 text-decoration: none;
 color: var(--bleu-gris);
}
a:hover{
  text-decoration: none;
  color: var(--bleu);
}
.d-none{
  display: none;
}

ul{
  list-style: none;
  padding: 0; 
  margin: 0;  
}

/* ------------------------------------------------------------------------------
	menu top
-------------------------------------------------------------------------------*/

.top{
	text-align: center;
	position: relative;
}


@media (max-width: 767px){
	.top-menu{
		display: none;
	}
	.top-menu.show{
		display: block;
	}
}

.top-btn{
		background: white;
		padding: 10px 14px;
		border-radius: 50%;
		width: 50px;
		height: 50px;
		position: absolute;
		right: 0;
		top: 0px;
}
.top-btn:hover{
	cursor: pointer;
}

.top-btn-span{
	width: 100%;
	height: 4px;
	display: block;
	margin: 2px 0;
	background: var(--bleu);
}

.top-menu-link{
    font-size: 1.3em;
    color: #23527c;
}
.top-menu-link:hover, .top-menu-link-active{
  color: var(--bleu);
}

@media (max-width: 768px){
	.top-menu > *+*{
    margin-top: 10px;
  }
}


@media (min-width: 768px){
	.top-btn{
		display: none;
	}
	.top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }

  .top-menu{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .top-menu > *+*{
  	margin-top: 0;
    margin-left: 20px;
  }

}



/* ------------------------------------------------------------------------------
	home h1
-------------------------------------------------------------------------------*/

 .home-main-titre{
    margin: 1.5em 0;
  }

/* ------------------------------------------------------------------------------
	grid
-------------------------------------------------------------------------------*/
  .grid{
     display: grid;
     grid-gap: 10px;
  }

  .grid-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .grid-video{
    position: relative;
  }
  
  .grid-flag{
    position: absolute;
    top: 0;
    left: 0;
  }

  @media (min-width: 500px){
    .grid{
      grid-template-columns: repeat(2, 1fr );
      grid-template-rows: repeat(2, 200px) ;
    }
  }

/* ------------------------------------------------------------------------------
	footer
-------------------------------------------------------------------------------*/

.footer{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr );
    text-align: center;
  }

  .footer-copyright{
    grid-column: 1/-1;
  }


  @media (min-width: 640px){
    .footer{
      grid-template-columns: repeat(4, 1fr );
      margin: 4em 0;
      text-align: left;
    }
  }

/* ------------------------------------------------------------------------------
  page sponsor
-------------------------------------------------------------------------------*/


.grille-partenaire{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
}

.grille-partenaire img{
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}