/*

Tooplate 2113 Earth

https://www.tooplate.com/view/2113-earth

*/

@keyframes seq-preloader {
  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

:root {
  --white-color: #ffffff;
  --primary-color: #BC6C25;
  --secondary-color: #DDA15E;
  --section-bg-color: #b78752;
  --custom-btn-bg-color: #BC6C25;
  --custom-btn-bg-hover-color: #DDA15E;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #E76F51;

  --body-font-family:'Plus Jakarta Sans', sans-serif;

  --h1-font-size: 68px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --btn-font-size: 16px;
  --form-btn-font-size: 18px;
  --menu-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}

.seq-preloader {
  background: white;
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 99999999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.seq-preloader.seq-preloaded {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s .5s, opacity .5s;
}

.seq-preload-indicator {
  overflow: visible;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seq-preload-circle {
  display: inline-block;
  height: 12px;
  width: 12px;
  fill: #7a7a7a;
  opacity: 0;
  animation: seq-preloader 1.25s infinite;
}

.seq-preload-circle-2 {
  animation-delay: .15s;
}

.seq-preload-circle-3 {
  animation-delay: .3s;
}

.seq-preload-indicator-fallback {
  width: 42px;
  overflow: visible;
}

.seq-preload-indicator-fallback .seq-preload-circle {
  width: 8px;
  height: 8px;
  background-color: #f4f4f4;
  border-radius: 100%;
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
}

.seq-preload-indicator-fallback .seq-preload-circle-2 {
  margin-left: 3px;
  margin-right: 3px;
  width: 12px;
  height: 12px;
}

.seq-preload-indicator-fallback .seq-preload-circle-3 {
  width: 16px;
  height: 16px;
}


/* MAIN CSS */

@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }

  50% {
    width: 100%;
    height: 1px;
  }

  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}

@keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }

  50% {
    width: 100%;
    height: 1px;
  }

  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}

@-webkit-keyframes fillColour {
  0% {
    color: #fff;
  }

  50% {
    color: #fff;
  }

  100% {
    color: #333;
  }
}

@keyframes fillColour {
  0% {
    color: #fff;
  }

  50% {
    color: #fff;
  }

  100% {
    color: #333;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  overflow: hidden;
}

body {
  overflow: hidden;
  font-size: 100%;
}

nav {
  top: 15%;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  z-index: 100;
  height: 90%;
  left: 0;
  width: 15%;
  font-weight: 300;
  font-size: 1rem;
}

nav em {
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-top: 15px;
  color: #fff;
}

nav ul li a {
  text-align: center;
}

nav ul {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  list-style-type: none;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

nav ul li {
  text-align: center;
  margin: 5px 0px;
}

nav a,
nav a:visited,
nav a:active {
  color: #fff;
}

nav a {
  text-decoration: none !important;
  display: inline-block;
  width: 140px;
  padding: 15px 0px;
  position: relative;
  z-index: 0;
  transition: all .5s;
}

nav a.active {
  background-color: rgba(0, 0, 0, 0.8);
}

nav a::before {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
}

.logo {
  margin-top: 0px;
  top: 0;
  left: 0;
  z-index: 999999;
  position: fixed;
  display: inline-block;
  text-align: center;
  background-color: #faf5b2;
  height: 15%;
  width: 15%;
}

.logo h1 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.logo h2 {
  display: none;
}

.logo img{
  width:271px;
}


.slides {
  width: 500vw;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.slides .slide {
  height: 100vh;
  width: 100vw;
  float: left;
  text-align: center;
  background-size: cover;
}

.slides .slide .content {
  overflow-y: scroll;
  position: relative;
  width: 80%;
  height: 80%;
  left: 20%;
  top: 10%;
}

.content::-webkit-scrollbar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Add a thumb */
.content::-webkit-scrollbar-thumb {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.slides .slide {
  background-position: center center;
  background-size: cover;
  background-position: fixed;
}

/* FONDS DU site */
.slides .slide:nth-child(1) {
  background-image: url(../images/banana_camp_swing_haut_rhinois.jpg);
  background-position: top;
}

.slides .slide:nth-child(2) {
  background-image: url(../images/IMG_7468_DxO.jpg);
  background-position: fixed;
}

.slides .slide:nth-child(3) {
  background-image: url(../images/IMG_7639_DxO.jpg);
  background-position: fixed;
}

.slides .slide:nth-child(4) {
  background-image: url(../images/banana_camp_swing_haut_rhinoi_full.jpg);
  background-position: fixed;
}

/* Slide 1 Stlye */
#slider-wrapper {
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

#image-slider {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: auto;
  display: block;
}

#image-slider ul {
  margin-bottom: 0;
  width: 100%;
  height: 100vh;
  position: relative;
}

#image-slider ul li {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
}

#image-slider ul li {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

#image-slider ul li.active-img {
  left: 0;
}

.slide-caption {
  text-align: right;
  right: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slide-caption h6 {
  margin-top: 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.slide-caption h2 {
  margin-top: 0px;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}


/* Slide 2 Style */
.second-content {
  top: 120% !important;
  transform: translateY(-120%);
  opacity: 1;
  /*background-color: #000;*/
  color: #fff;
}

.aboutus {
  margin-left: 60px;
  width: 80%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  margin-right: 30px;
  padding: 60px;
}

.aboutus h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin-top: 0px;
}

.aboutus span {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.aboutus p {
  font-size: 14px;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 0px;
}



/* Slide 3 Style */
.third-content {
  top: 100% !important;
  transform: translateY(-120%);
  overflow: scroll-y;
  scrollbar-color: red white;
  scrollbar-width: thin;
}

.events {
  margin-left: 60px;
  width: 80%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  margin-right: 30px;
  padding: 60px;
}

.event {
  position: relative;
  color: white;
  padding-left: 100px;
  margin-bottom: 100px;
}

.event .entry-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  background: #fd5927;
  background: -webkit-linear-gradient(90deg, #fd5927, #fd5927) top left, -webkit-linear-gradient(90deg, #fd5927, #fd5927) top right, -webkit-linear-gradient(135deg, transparent 10px, #fd5927 0) bottom right, -webkit-linear-gradient(90deg, #fd5927, #fd5927) bottom left;
  background: linear-gradient(0deg, #fd5927, #fd5927) top left, linear-gradient(0deg, #fd5927, #fd5927) top right, linear-gradient(315deg, transparent 10px, #fd5927 0) bottom right, linear-gradient(0deg, #fd5927, #fd5927) bottom left;
  background-size: 55% 55%;
  background-repeat: no-repeat;
  color: white;
  padding: 10px;
  text-align: center;
}

.event .entry-date .date {
  font-size: 36px;
  font-size: 2.25em;
  font-weight: 900;
}

.event .entry-date .month {
  font-size: 14px;
  font-size: 0.875em;
  text-transform: uppercase;
}

.event h2.entry-title {
  margin-top: 0;
  font-size: 18px;
  font-size: 1em;
  font-size: bold;
  font-weight: 400;
}

.event .entry-title a {
  color: white;
  text-decoration: none;
}

/* Slide 4 Style */
.fourth-content {
  top: 120% !important;
  transform: translateY(-120%);
  opacity: 1;
  /*background-color: #000;*/
  color: #fff;
}

.contact {
  margin-left: 60px;
  width: 80%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  margin-right: 30px;
  padding: 60px;
}

.contact h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 50px;
}


/* Responsive Style */
@media (max-width: 1024px) {

  .slides .slide .content {
    width: 100%;
    height: 90%;
    left: 0;
  }
  .second-content {
    top: 250%!important;
    transform: translateY(-250%);
  }
  .third-content {
    top: 140%!important;
    transform: translateY(-140%);
  }
  .fourth-content {
    top: 220%!important;
    transform: translateY(-220%);
  }

  .logo img{
    width:150px;
  }
  

  .events {
    margin-left: 10px;
    width: 95%;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    margin-right: 10px;
    padding: 10px;
  }
  
  .event {
    position: relative;
    color: white;
    padding-left: 40px;
    margin-bottom: 10px;
  }

  .event .entry-date {
    width: 35px;
    padding : 2px;
  }

  .event .entry-date .date {
    font-size: 22px;
    font-weight: 900;
  }
  
  .event .entry-date .month {
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .event h2.entry-title {
    margin-top: 0;
    font-size: 16px;
    font-size: bold;
    font-weight: 400;
  }

  .logo h1 {
    display: none;
  }

  .logo h2 {
    margin-top: 0px;
    line-height: 100px;
    height: 100px;
    width: 15vw;
    top: 0;
    left: 0;
    z-index: 999999;
    position: fixed;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    color: #111;
    display: inline-block;
    text-align: center;
    background-color: #faf5b2;
  }

/* MENU */

  nav {
    top: 0vh;
    height: 100px;
    width: 85vw;
    margin-left: 15vw;
  }

  nav ul {
    flex-direction: row;
  }

  nav ul li {
    display: inline;
    margin: 0px;
  }

  nav ul li img {
    width: 35%;
  }

  nav ul li em {
    display: none;
  }

  nav a {
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 30px;
    display: inline-block;
  }
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON             
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
  text-align: center;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  border-radius: 100%;
  color: #dbdbdb;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-align: center;
  position: relative;
  margin: 4px 8px 0 8px;
}

.social-icon li a:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}