@import url("https://fonts.googleapis.com/css?family=Roboto");

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

body {
  font-family: "Roboto", sans-serif;
  /* background: #333; */
  /* color: #fff; */
  /* line-height: 1.6; */
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* We are going to make the slides invisible by default */
  opacity: 0;
  /* We used transition to make it fade */
  transition: opacity 0.4s ease-in;
  background: #333;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: 170px;
  right: -600px;
  opacity: 0;
  z-index: 99;
  /* width: 600px; */
  /* background-color: rgba(0, 0, 0, 0.2); */
  color: #ffffff;
  padding: 35px;
}

.slide .content h1 {
  margin-bottom: 10px;
}

.slide.current .content {
  opacity: 1;
  transform: translateX(-700px);
  /* Making the above happen in an animated way */
  transition: all 0.7s ease-in-out 0.3s;
}

.buttons button#next {
  position: absolute;
  top: 40%;
  right: 10px;
  z-index: 100;
  opacity: 0.7;
}

.buttons button#prev {
  position: absolute;
  top: 40%;
  left: 10px;
  z-index: 100;
  opacity: 0.7;
}

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

@media (min-width: 768px) {
  .buttons button#prev {
    position: relative;
    top: -50px;
    left: 45%;
    bottom: 0;
    /* top: 95%; */
  }
  .buttons button#next {
    position: relative;
    top: -50px;
    right: 45%;
    bottom: 0;
    /* top: 95%; */
  }
}
.buttons button:hover {
  scale: 1.2;
}

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

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

/* Background Images */

.slide:first-child {
  background: url("../images/smokingman.jpg") no-repeat center center/cover;
}

@media (min-width: 768px) {
  .slide:first-child {
    background: url("../images/smokingman.jpg") no-repeat center center/cover;
  }
}
.slide:nth-child(2) {
  background: url("../images/wedding_dress.jpg") no-repeat center center/cover;
}

.slide:nth-child(3) {
  background: url("../images/wedding_dress2.jpg") no-repeat center center/cover;
}

/* FORM CSS */
.thank-you-page {
  color: #e67317;
  font-size: 2em;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.php-email-form {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.row {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

input {
  padding: 10px;
  width: 100%;
  border: 1px solid #e67317;
  border-radius: 4px;
}

.form-control {
  width: 100%;
  border: 1px solid #e67317;
  border-radius: 4px;
  padding: 10px;
}
.form-group.mt-3,
.row {
  width: 90%;
}
