*{
    box-sizing: border-box;
}
html{
    height: 100%;
}
body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header{
    background-color: #8f7001;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

p{
    color: #040405;
    margin: 0;
    font-size: 17px;
}
svg{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.logo{
    height: 50px;
    margin: 7px;
}

.social{
    width:30%;
    display: flex;
    justify-content: space-around;

}


.dropbtn {
  margin-right: 15px;
  margin-top: 5px;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #171515;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    right: 0;
    left: 0;
    top: 68.17px;
    z-index: 1;
}


.dropdown-content a {
  color: #8f7001;
  padding: 12px 16px;
  text-decoration: none;
  font-size: large;
  display: flex;
}


.dropdown:hover .dropdown-content {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  
}


hr{
    width: 80%;
    border-color: #8f7001;
    opacity: 0.2;
    height: 1px;
}

article{
    position: relative;

}
article div{
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 5px;
    height: 100%;
}

article h1{
    font-style: italic;
}

article p{
    font-family: "Space Mono","Courier", sans-serif;
    font-size: 18px;
    font-weight: 550;
}

p span{
    font-weight: 600;
}


article img{
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 97%;
    filter: blur(7px);
    border-radius: 0;
}




















.custom-slider { display: none; }
.slide-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;        
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.6s ease;
}
.prev{ left: 15px; }
.next { right: 15px; }
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}
.slide-text {
  position: absolute;
  color: #ffffff;
  font-size: 15px;
  padding: 15px;
  bottom: 15px;
  width: 100%;
  text-align: center;
}
.slide-index {
  color: #ffffff;
  font-size: 13px;
  padding: 15px;
  position: absolute;
  top: 0;
}
.slide-img{ 
    width: 100%;
    object-fit: cover;
    object-position: center;
 }
.slide-dot{ text-align: center; }
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover { background-color: #111111; }
.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}
@keyframes fade {
  from {opacity: 0.7;} 
  to {opacity: 1;}
}


.res{
    color: #8f7001;
    margin-right: auto;
    margin-left: auto;
    font-size: 30px;
    width: 150px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.res svg{
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}


.pp{
    font-family: "Space Mono","Courier", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
    text-align: center;
}

.gg img{
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.heure{
  margin: 10px;
}


.menu{
  text-align: center;
}

.menu a{
  color: #8f7001;
  text-decoration: underline overline;
  text-underline-offset: 9px;
  font-family: 'Times New Roman', Times, serif;
}

.menu a::before{
  content: url('img/r.svg');
  margin-right: 10px;
}

.menu a::after{
  content: url('img/l.svg');
  margin-left: 10px;
}

#pos iframe{
  width: 100%;
}


section{
  margin: 5px;
}


@media only screen and (min-width:740px)  {

  .social{
    display: block;
    transform: translate(840px);
  }
  .dropbtn{
    transform: translate(-60px);
  }
  
}

