header {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 30px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #eee;
}

#header-img {
  width: 100%;
  height: 100%;
  max-width: 30px;
  justify-content: center;
  align-items: center;
  margin-left: 0px;
}

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

body {
background-color: #eee;
font-family: arabic, sans-serif;
}

#page-wrapper {
  position: relative;
}

.container {
  max-width: 100px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  padding: 0 20px;
  height: 40px;
  font-size: 1em;
  font-weight: 900;
  text-transform: uppercase;
  border: 4px green solid;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  justify-content: center;
}

.grid {
  display: flex;
}

a {
  font-size: 1.2em;
  color: black;
  list-style: none;
  }

  ul {
    list-style: none;
  }

@media (max-width: 600px) {
  header {
    flex-wrap: wrap;
  }
}

.logo {
  width: 60vw;
}

@media (max-width: 650px) {
  .logo {
    margin-top: 15px;
    width: 100%;
    position: relative;
  }
}

.logo > img {
  display: flex;
  text-align: center;
  margin-left: 30px;
}

@media (max-width: 650px) {
  .logo > img {
    margin: 0 auto;
  }
}

nav {
  font-weight: 400;
  list-style: none;
}

@media (max-width: 650px) {
  nav {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 50px;
  }
  nav li {
    padding-bottom: 5px;
    list-style: none;
  }
}

nav > ul {
  width: 50vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

@media (max-width: 650px) {
  nav > ul {
    flex-direction: row;
  }
}

#hero > h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
  margin-top: 50px;
}

#hero {
  margin-bottom: 20px;
  word-wrap: break-word;
  text-align: center;
  align-items: center;
}

#form {
  display: inline-block;
}

#hero > input [type="email"] {
  width: 100%;
  padding: 5px;
  position: center;
}

#hero input[type="submit"] {
  max-width: 200px;
  width: 100%;
  height: 50px;
  margin: 10px 0;
  border: 0;
  background-color: #f5c40f;
  justify-content: center;
  align-items: center;
}

#hero input[type="submit"]:hover {
  background-color: #aaa;
  transition: background-color 1s;
  
}

@media (max-width: 650px) {
  #hero {
    margin-top: 120px;
    align-items: center;
  }
}

#features {
  margin-top: 30px;
}

#features .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 125px;
  width: 20vw;
  color: purple;
  z-index: -1;
}


#features .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 125px;
  width: 80vw;
  padding: 5px;
}

@media (max-width: 550px) {
  #features .desc{
    width: 100%;
    text-align: center;
    padding: 0;
    height: 150px;
  }
}

@media (max-width: 650px) {
  #features {
    margin-top: 0;
  }
}

#how-it-works {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

#how-it-works > iframe {
  max-width: 560px;
  width: 100%;
  display: flex;
}

#pricing {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}


.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(100% / 3);
  margin: 10px;
  border: 1px solid #fcc;
  border-radius: 3px;
}

.product > .level {
  background-color: orange;
  color: green;
  padding: 15px 0;
  width: 100%;
  text-transform: uppercase;
  font-weight: 900;
}

.product > h2 {
  margin-top: 15px;
}

.product > ol {
  margin: 10px 0;
}

.product > ol > li {
  padding: 2px 0;
}

.product > button {
  border: 0;
  margin: 15px 0;
  background-color: #a5b;
  font-weight: 900;
}

.product > button:hover {
  background-color: green;
  transition: background-color 0.1s;
}

@media (max-width: 800px) {
  #pricing {
    flex-direction: column;
  }
  .product {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

footer {
  margin-top: 30px;
  background-color: #a2b4c2;
  padding: 20px;
}

footer > ul {
  display: flex;
  justify-content: flex-end;
}

footer > ul > li {
  padding: 0 10px;
}

footer > span {
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
  font-size: 0.9em;
  color: #111;
}
