/* FILEPATH: /Users/chris/Documents/projects/Maverick/Maverick/www/css/style.css */

.headline {
  position: relative;
  top:1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.headline-title {
  position: relative;
  top: -1em;
  width: 60%;
  color:#fff;
  font-weight: bold;
  font-size: 35px;
}

.headline-subtitle {
  position: relative;
  top: -2em;
  width: 60%;
  color:#fff;
  /* font-weight: bold; */
  font-size: 20px;
}

/* Countdown Timer Container */
.countdown-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: auto;
    width: 40%;
    background-color: #6b6b6b;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 2.5em;
    overflow: hidden;
}

.countdown-title {
    color: red;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1em;

}

/* Countdown Timer Text */
.countdown-text {
    font-size: 25px;
    font-weight: bold;
    color: #333333;
}

.countdown-timer {
    display: flex;
}

.embed_video {
  position: relative;
  width: 100%;
  height: 28em;
  
}

.embed_video iframe {
  position: relative;
  width: 50%;
  height: 100%;
  border: 10px solid #3a5979;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.box {
    width:28vmin;
    height: 14vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 5px;
}

.num {
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    font-weight: 600;
    font-size: 5em;
    color: #fff;
}

.box-title {
    font-size: 1.2em;
    /* background-color: #007bff; */
    display:block;
    width:100%;
    text-align: center;
    padding:0.2em 0;
    font-weight: 400;
}

.bottom-countdown {
    background-color: #dcdcdc;
    color: #333;
}

.bnum {
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    font-weight: 600;
    font-size: 5em;
    color: #333;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

#faq {
  max-width: 80%;
  margin: 20px auto;
  /* padding: 20px; */
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#faq h1 {
  text-align: center;
}

.faq-section {
  margin-bottom: 20px;
  padding: 20px;
}
.faq-section:nth-child(odd){
  background: #eaeaea;
}
.faq-question {
  font-weight: bold;
  margin: 10px 0;
}
.faq-answer {
  margin: 0 0 10px 20px;
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
  .countdown-container {
    width: 85vw;
  }
  .box {
    height: 10em;
    width: 26vmin;
    /* font-size: 10px; */
  }
  .num,
  .bnum {
    font-size: 3em;
  }
}




@media screen and (max-width: 768px){
    .countdown-container {
        width: 90vw;
    }
    .box {
        height: 8em;
        width: 26vmin;
        /* font-size: 10px; */
    }
    .num, .bnum {
      font-size: 3em;
      width:100%;
      height:100%;
      display:grid;
      place-items:center;
      font-weight: 600;
    }
}


html, body {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    text-wrap: wrap;
  }

  *, *:before, *:after {
    box-sizing: border-box;
  }

  header {
    background-color: #343434;
    color: #fff;
    padding: 5px;
    text-align: center;
  }

  header img {
    position: relative;
    top: 0em;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .pre-headline {
    width:60%;
  }

  .sub-heading-container {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    justify-content: center;
    /* margin-bottom: 1em; */
  }

  .sub-heading {
    width: 40%;
    text-wrap: wrap;
    margin: 0 auto;
  }

  section {
    max-width: 100%;
    height: auto;
    background-color: #fff;
    display: flex;
  }
  
  .section-title {
    background-color: #fff;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 30px;
  }

  .section-title-odd {
    background-color: #c4c4c4;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 30px;
  }


  .odd {
    flex-direction: row-reverse;
    background-color: #c4c4c4;
  }

  h1,
  h2 {
    color: #007bff;
    text-wrap: wrap;
  }

  h2 {
    /* border-bottom: 2px solid #007bff; */
    padding-bottom: 10px;;
  }

  p {
    line-height: 1.6;
    text-wrap: wrap;
    padding:1em;
  }

  ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }

  .lists {
    display: flex;
    width: 40%;
    flex-direction: column;
  }

  .lists ol li {
    display: flex;
    /* justify-content: center; */
    margin-bottom: 10px;
    font-size: 30px;
  }

  .stack-description {
    margin: 0;
    font-size: 20px;
    margin-bottom: 2em;
  }

  li {
    margin-bottom: 10px;
  }
  li:nth-child(odd) {
    font-weight: bold;
    color: #007bff;
  }


  a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
  }

  a:hover {
    text-decoration: underline;
  }

  button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 150px 10px 150px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 26px;
    margin-bottom:2em;
  }

  button:hover {
    background-color: #0056b3;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
  }

  footer {
    position: relative;
    padding-top: 2em;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px;
    /* top:-2em; */
    bottom: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }

  .image-text-container {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border:1px solid black; */
  }

  .text-container {
    position: relative;
    width: 40%;
    padding: 20px;
    text-align: center;
    /* border:1px solid black; */
  }

  .image-container {
    position: relative;
    justify-content: center;
    padding: 20px;
    width: 70%;
    height: auto;
    margin-bottom: 2em;
  }

  .bottom-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    margin-top: 2em;
  }

  .offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 2em; */
    /* background-color: #c4c4c4; */
  }

  .logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    background: transparent;
  }

  .system-requirements-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2em;
  }

  .list-requirements-container {
    display: flex;
    flex-direction: column;
    width: 40%;
    padding:1em;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2em;
  }

  .list-requirements-container ul li {
    margin-bottom: 1em;;
  }

  .os-logo {
    width: 15%;
    height: auto;
    margin-bottom: 2em;
    background: transparent;
  }

  .os-logo-win {
    width:13%;
    height: auto;
    margin-bottom: 2em;
    background: transparent;
  }

  .eo-logo {
    width: 15%;
    height: auto;
    margin-bottom: 2em;
    background: transparent;
  }

  @media screen and (min-width: 769px) and (max-width: 1024px) {

    .headline-title {
      font-size: 30px;
    }

    .headline-subtitle {
      font-size: 15px;
    }
    .image-text-container {
      width: 100%;
    }
    .text-container {
      width: 100%;
    }

    .lists {
      display: flex;
      width: 60%;
      flex-direction: column;
    }

    .list-requirements-container {
      width: 50%;
    }

    .eo-logo {
      width: 35%;
      height: auto;
      margin-bottom: 2em;
      background: transparent;
    }

    .embed_video {
      height: 18em;
    }
  
    .embed_video iframe {
      width: 60%;
      height: 100%; 
      border: 5px solid #3a5979;
    }
  }

  @media screen and (max-width: 768px) {
    header {
      width: 100%;
    }

    .pre-headline {
      width: 90%;
      font-size: 15px;
    }

    .headline-title {
      font-size: 20px;
      width: 90%;
    }

    .headline-subtitle {
      font-size: 12px;
      width: 90%;
    }

    header img {
      position: relative;
      top: 1em;
      max-width: 95%;
      height: auto;
    }

    .sub-heading {
      width: 100%;
      text-wrap: wrap;
      margin: 0 auto;
      font-size: 16px;
    }

    .system-requirements-container {
      flex-direction: column;
    }

    .os-logo, .os-logo-win, .eo-logo{
      width: 35%;
    }

    .list-requirements-container {
      width: 80%;
      margin-bottom: 1em;
    }

    button {
      background-color: #007bff;
      color: #fff;
      padding: 20px 100px 20px 100px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 20px;
    }

    section {
      position: relative;
      flex-direction: column;
      height: 100%;
      width: 100%;
    }

    .odd {
      flex-direction: column;
      background-color: #c4c4c4;
    }

    .image-text-container {
      justify-content: center;
      width: 100%;
      height: auto;
    }

    .text-container {
      width: 100%;
    }
    .section-title { 
      font-size: 15px;
    
    }
    .section-title-odd { 
      font-size: 15px;
    
    }

    .lists {
      display: flex;
      width: 80%;
      flex-direction: column;
    }

    .lists ol li {
      display: flex;
      margin-bottom: 10px;
      font-size: 23px;
    }
  
    .stack-description {
      margin: 0;
      font-size: 15px;
      margin-bottom: 1.5em;
    }
    .embed_video {
      height: 15em;
    }
  
    .embed_video iframe {
      width: 90%;
      height: 90%; 
      border: 5px solid #3a5979;
    }
  }
