/* ===========================================================
General Styling
=========================================================== */

body,
html {
  height: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  line-height: 180%;
  color: #666666;
  text-align: center;
}

img {
  width: 100%;
}
/* ===========================================================
Header
=========================================================== */

#header-img {
  position: fixed;
}

.header {
  background-color: #ffffff;
  color: #000000;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  list-style: none;
  overflow: hidden;
}

.header ul a {
  display: block;
  padding: 0.2rem;
  text-decoration: none;
  color: #000;
}

.header ul a:hover {
  background-color: #f2f2f2;
  color: #008080;
}

.header .logo {
  display: block;
  max-width: 5rem;
  margin: 1rem 0 0 1rem;
}

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  padding-left: 0;
}

.header .menu-icon {
  padding: 3rem 2rem;
  position: relative;
  cursor: pointer;
  float: right;
}

.header .menu-icon .nav-icon {
  background: #000;
  display: block;
  height: 2px;
  width: 18px;
  position: relative;
  transition: background 0.2s ease-out;
}

.header .menu-icon .nav-icon:before {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 5px;
  transition: background 0.2s ease-out;
}

.header .menu-icon .nav-icon:after {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -5px;
  transition: background 0.2s ease-out;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.menu-icon ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

/* ===========================================================
Main
=========================================================== */

.banner {
  background-color: #323232;
  color: #f2f2f2;
  padding-top: 7.2rem;
  text-transform: uppercase;
  text-shadow: 0 0 0.5rem #008080;
  font-family: sans-serif;
  animation-name: flashing;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 5s;
}

.banner h1 {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.banner h4 {
  margin: 0;
}

.parallax1 {
  background: url(images/img1.jpg);
  min-height: 100%;
}

.parallax2 {
  background: url(images/flowers2.jpg);
  min-height: 60%;
}

.parallax3 {
  background: url(images/product3.jpg);
  min-height: 40%;
}

.parallax4 {
  background: url(images/general-soap1.jpg);
  min-height: 100%;
}

.parallax1,
.parallax2,
.parallax3,
.parallax4 {
  position: relative;
  opacity: 0.75;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 30rem;
}

.heading,
.heading-sm {
  position: absolute;
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  text-shadow: 0 0 10px #000;
}

.heading {
  font-size: 2rem;
  top: 18%;
  letter-spacing: 8px;
}

.two-col p,
.two-col video,
.dark p,
form {
  font-size: 0.7rem;
  text-align: justify;
  line-height: 1.3rem;
  margin: 1rem 0 0 0;
  width: 100%;
}

.heading-sm {
  top: 45%;
  color: #ffffff;
  font-size: 2.5rem;
  letter-spacing: 5px;
}

.dark {
  overflow: auto;
  background-color: #323232;
  color: #f2f2f2;
}

.img-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.product-img img {
  margin: 0 0.5rem;
  transition: all 1s;
}

.product-img p,
.form-container p {
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.form-container {
  max-width: 500px;
  padding: 0;
}

.form-box input,
.form-box textarea {
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  border-radius: 0.25rem;
  resize: none;
  padding: 0.5rem 0 0.5rem 0.2rem;
  margin-bottom: 0.3rem;
  font-family: "Courier New", Courier, monospace;
}

.form-box textarea {
  padding: 0.5rem 0 3rem 0.2rem;
}

img:hover {
  opacity: 0.5;
  transform: scale(1.1);
}

section {
  overflow: auto;
  padding: 1rem 2rem;
  margin-bottom: 0;
}

video {
  width: 100%;
}

button {
  font-weight: 700;
  border-radius: 0.5rem;
  text-transform: uppercase;
  background-color: #008080;
  border-color: #008080;
  border-width: 0.2rem;
}

button:hover {
  background-color: #000;
  border-color: #000;
  color: #ffffff;
  border-width: 0.2rem;
}

input[type="submit"] {
  width: 100%;
  background-color: #fff;
  color: #000000;
  padding: 1rem;
  margin-bottom: 0.3rem;
  border: none;
  border-radius: 0.2rem;
  cursor: pointer;
}

/* ===========================================================
Media Query
=========================================================== */

@media (min-width: 768px) {
  .parallax1,
  .parallax2,
  .parallax3,
  .parallax4 {
    padding-top: 50rem;
  }

  .heading {
    font-size: 6rem;
    top: 2%;
  }

  .header li {
    float: left;
  }

  .header li a {
    padding: 1rem 1.5rem;
  }

  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }

  .header .menu-icon {
    display: none;
  }

  .two-col {
    float: left;
    width: 42%;
    padding: 0 4%;
    text-align: left;
  }

  .two-col p {
    font-size: 100%;
    line-height: 1.5rem;
  }

  .dark {
    overflow: auto;
    padding: 2.5rem 4rem;
    background-color: #323232;
    color: #f2f2f2;
  }

  nav,
  body {
    max-width: 960px;
  }

  section {
    padding: 1rem;
  }
}
/* ===========================================================
Keyframes
=========================================================== */

@keyframes flashing {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
