* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  padding-top: 70px;
  min-width: 330px;
}
header {
  padding: 0 30px;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 70px;
  max-height: 70px;
  background-color: rgb(5, 3, 4);
  z-index: 1000;
}
.logo {
  width: 60vw;
}
#header-img {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  max-width: 50px;
  pading: 0 20px;
}
/* Nav-bar */
#nav-bar {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  display: flex;
  justify-content: space-around;
}
#nav-bar ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 35vw;
  min-width: 280px;
}
.nav-link,
footer a {
  color: white;
  text-decoration: none;
}
li {
  list-style-type: none;
}

/*page content */
.container {
  position: relative;
}
#hero {
  background-image: url(https://skervesen.eu/wp-content/uploads/2016/04/IMG_8475-1.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 22vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  word-wrap: break-word;
  font-weight: bold;
  text-shadow: 2px 2px #000;
}
input[type="email"] {
  width: 100%;
  max-width: 275px;
  padding: 7px;
  font-size: 0.9em;
}
input[type="submit"] {
  width: 100%;
  max-width: 150px;
  border: 0;
  padding: 8px;
  margin: 10px 0;
  font-weight: bold;
  text-transform: uppercase;
  background-color: rgb(64, 139, 209);
  color: #fff;
}
.container {
  margin: 20px auto;
  width: 100%;
  max-width: 1000px;
}

/*features */
#features {
  scroll-margin-top: 90px;
}
.grid {
  display: flex;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
  width: 20vw;
  color: rgb(64, 139, 209);
}
.desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
  height: 100%;
  width: 80vw;
  min-height: 150px;
  min-width: 0px;
}
.desc h2 {
  margin: 0 0 5px 0;
}
/*showcase video */
#showcase {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  scroll-margin-top: 90px;
}
#showcase iframe {
  max-width: 100%;
  width: 560px;
  height: 315px;
}
#video {
  z-index: -1000;
}

/*pricing */
#pricing {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  scroll-margin-top: 90px;
}
.product {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  margin: 10px;
  border: 1px solid black;
  border-radius: 5px;
  width: calc(100% / 3);
  heigth: 400px;
}
.model {
  background-color: #ddd;
  width: 100%;
  padding: 15px 0;
  font-weight: 600;
  text-transform: uppercase;
}
.product h2 {
  margin-top: 15px;
  min-height: 10px;
}
.product ul {
  margin: 15px;
  flex-grow: 1;
}
.product ul li {
  padding: 5px 0;
}
.product button {
  margin: 15px;
  border: 0;
  padding: 10px;
  font-size: 1em;
  text-transform: uppercase;
  color: #fff;
  background-color: rgb(64, 139, 209);
  margin-top: auto;
}
/* footer */
footer {
  margin: 0;
  padding: 20px 50px;
  width: 100%;
  background-color: rgb(5, 3, 4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: end;
}
footer ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 20vw;
  min-width: 200px;
}
footer span {
  margin-top: 10px;
  font-style: italic;
  font-size: 0.75em;
}

@media (max-width: 700px) {
  #pricing {
    flex-direction: column;
    padding: 10px;
  }
  .product {
    width: 100%;
    heigth: 400px;
    margin: 10px 0;
  }
  .desc {
    font-size: 1em;
  }
  .desc h2 {
    font-size: 1.2em;
  }
  .icon {
    height: 100px;
    width: 20vw;
    color: rgb(64, 139, 209);
  }
  #hero {
    height: 150px;
  }
}
@media (max-width: 520px) {
  #hero {
    height: 200px;
  }
}
@media (max-width: 420px) {
  #nav-bar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  #header {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    min-height: 150px;
    max-height: 150px;
  }
  .logo {
    width: 100%;
  }
  #header-img {
    display: unset;
  }
  body {
    padding-top: 150px;
  }
}
