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

body {
    background-color: #ddd;
    font-family: 'Prompt', sans-serif;
}

a, a:hover {
    text-decoration: none;
}

.d-flex {
    display: flex;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.logo {
    position: absolute;
    top: 4vw;
    left: 7vh;
}

.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;
  right: 0;
  opacity: 1;
  /*width: 70%;
  background-color: rgba(255, 255, 255, 0.8);*/
  color: #fff;
}

.slide .content h1 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: 58px;
  padding-right: 40px;
  display: inline-block;
}

.slide .content h1 + h1 {
    border-left: 2px solid #fff;
    padding-left: 40px;
}

.slide.current .content {
  opacity: 1;
  /*transform: translateX(600px);*/
  transition: all 0.7s ease-in-out 0.3s;
}

.email {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin-left: 50px;
    padding: 15px;
}

.email a, .email a:hover {
    color: #fff;
}

.email a:hover {
    font-weight: 600;
}

.fb-logo {
  float: right;
  margin-top: 12px;
}

.buttons {
    display: none;
}

/*.buttons button#next {
  position: absolute;
  top: 40%;
  right: 15px;
}

.buttons button#prev {
  position: absolute;
  top: 40%;
  left: 15px;
}

.buttons button {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 13px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: #fff;
  color: #333;
}*/

/* Backgorund Images */

.slide:first-child {
  background: url('images/coming-soon-01.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(2) {
  background: url('images/coming-soon-02.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(3) {
  background: url('images/coming-soon-03.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(4) {
  background: url('images/coming-soon-04.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(5) {
  background: url('images/coming-soon-05.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(6)  {
  background: url('images/coming-soon-06.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(7)  {
  background: url('images/coming-soon-07.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(8)  {
  background: url('images/coming-soon-08.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(9)  {
  background: url('images/coming-soon-09.jpg') no-repeat
    center top/cover;
}
.slide:nth-child(10)  {
  background: url('images/coming-soon-10.jpg') no-repeat
    center top/cover;
}

@media (max-width: 767px) {
    .logo {
        top: 10vw;
    }
    .logo img {
        width: 100%;
        top:
    }
    .d-flex {
        display: block;
    }
    .slide .title {
        margin-bottom: 80px;
    }
    .slide .content {
        top: 60%;
        bottom: auto;
    }
    .slide .content h1 {
        text-align: center;
        padding: 0;
        width: 100%;
    }
    .slide .content h1 + h1 {
        border-left: 0;
        padding: 0;
    }
    .email {
        text-align: center;
        margin-left: 43%
    }
}

@media (max-width: 500px) {
  /*.slide .content {
    bottom: -300px;
    left: 0;
    width: 100%;
  }

  .slide.current .content {
    transform: translateY(-300px);
  }*/
}
