
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Oswald;
  background: white;
  line-height: 1.6;
  overflow-x: hidden;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: 70px;
  left: -600px;
  opacity: 0;
  width: 600px;
  background-color: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  color: #333;
  padding: 35px;
}

.slide .content h1 {
  
}

.slide.current .content {
  opacity: 1;
  transform: translateX(600px);
  transition: all 0.7s ease-in-out 0.3s;
}

.buttons button#next {
  position: absolute;
  top: 40%;
  right: 1%;
  color: white;
}

.buttons button#prev {
  position: absolute;
  top: 40%;
  left: 1%;
  color: white;
}

.buttons button#close {
  position: absolute;
  top: 1%;
  right: 1%;
  color: grey;
}

.buttons button {
  border: 0px solid #fff;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  border-radius:5em;
  outline: none;
}

.buttons button:hover {

}

@media  {
  .slide .content .slider .img {
     
    left: 0;
    width: 100%;
    height: 100%;
   
  }

  .slide.current .content {
    transform: translateY(-300px);
  }
}



#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: Oswald;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #F1D600;
    color: #000;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #E0C91F;
}


