* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  header {
    position: fixed;
    top: 0;
    min-height: 75px;
    padding: 0px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #eee;
  }

  body {
    background-color: #eee;
    font-family:Verdana, 'lato';
  }

  #page-wrapper {
    position: relative;
  }

  li {
    list-style: none;
  }
  
  a {
    color: #000;
    text-decoration: none;
  }

  .container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }

  .grid {
    display: flex;
    column-gap: 80px;
  }

  .btn {
    padding: 0 15px;
    height: 30px;
    font-size: 1em;
    font-weight:900;
    text-transform: uppercase;
    border: 3.5px solid black;
    background: transparent;
    cursor: pointer;
  }

  .logo {
    width: 600px;
  }

  .logo img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 20px;
  }

  nav {
    font-weight: 500;
  }

  nav > ul {
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  #hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
    margin-top: 50px;
  }
  
  #hero > h2 {
    margin-top:30px;
    word-wrap: break-word;
  }
  
  #hero input[type='email'] {
    max-width: 300px;
    width: 100%;
    padding: 10px;
    border:0;
    margin:20px 0
  }
  
  #hero input[type='submit'] {
    max-width: 150px;
    width: 100%;
    height: 30px;
    border: 0;
    background-color: #f1c40f;
  }
  
  #hero input[type='submit']:hover {
    background-color: blue;
    border:solid 3px yellow;
  }

  #GEEKON-FASHION-HUB .icon img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 15vw;
    padding-top:10px;
    margin-top: 40px;
  }
  
  #GEEKON-DIGITAL-EXPERT .icon>img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 15vw;
    margin-top:40px;
  }
  
  #GEEKON-FASHION-HUB .description, #GEEKON-DIGITAL-EXPERT .description {
    display: flex;
    flex-direction: column;
    margin-top:30px;
  }

  #INTRODUCTORY-VIDEO {
    margin-top: 70px;
    margin-bottom:70px ;
    display: relative;
    text-align: center;
  }
  
  #INTRODUCTORY-VIDEO > iframe {
    max-width: 267px;
    width:100%;
    max-height:476px;
  }

h2,h3,h4{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h3{
  margin-bottom: 10px;
}

#PRICING {
  margin-top: 60px;
  display: flex;
  flex-direction:row;
  justify-items:center;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(100% / 3);
  margin: 10px;
  border: 1px solid #000;
  border-radius: 3px;
}

.service > .up {
  background-color: #5a62d1;
  color: black;
  padding: 15px 0;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

.service > h2 {
  margin-top: 15px;
  font-style: italic;
}

.service > ol {
  margin: 20px 0;
}

.service > ol > li {
  padding: 5px 0;
}

.service > button {
  border: 0;
  margin: 15px 0;
  background-color: #f1c40f;
  font-weight: 400;
}

.service > button:hover {
  background-color: blue;
  border:solid 3px yellow;
}

footer {
  margin-top: 20px;
  background-color: #e0e0e0;
  padding: 10px;
}

footer > ul {
  display: flex;
  justify-content: flex-end;
}

footer > ul > li {
  padding: 0 10px;
}

footer ul li a:hover{
color:blue;
border:solid 2px yellow;
}

footer > span {
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
  font-size: 0.7em;
  color: #555;
}


/* media rules */
  @media (max-width: 650px) {
    #GEEKON-FASHION-HUB >.description, #GEEKON-DIGITAL-EXPERT >.description {
      width: 100%;
      margin:0;
      padding:0;
      align-items: center;

    }
    .container{
      font-size:12px;
      display: block;
     align-content:center;
    }

    #GEEKON-FASHION-HUB .icon>img, #GEEKON-DIGITAL-EXPERT .icon>img {
      display: none;
    }
      .nav-link {
        display:inline-flex;
        justify-content: space-evenly;
        font-size:9px;
      font-weight:bold; 
      margin:5px;  
     }
      #hero {
        display:flex;
        margin-top:25px;
      }
    #hero > h2 {
      justify-content: space-evenly;
      font-size:14px;
    }
    .logo {
      width: 50%;
      position: relative;
    }
    .logo > img {
      margin: 0 auto;
    }
    .header {
      flex-wrap:wrap;
    }
    
  }
  