* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
}

section {
  width: 100%;
  min-height: 100vh;
}
section:nth-of-type(1) {
  display: grid;
  grid-template-columns: auto 0.9fr;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  padding: 1vw;
  box-sizing: border-box;
}
section:nth-of-type(1) .left,
section:nth-of-type(1) .right {
  background-color: white;
  padding: 3vh;
  box-sizing: border-box;
}
section:nth-of-type(1) .left {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
section:nth-of-type(1) .left h1,
section:nth-of-type(1) .left button {
  width: 80%;
}
section:nth-of-type(1) .left h1 {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  color: #002631;
  font-size: 1.5vw;
  margin-bottom: 3vh;
}
section:nth-of-type(1) .left button {
  display: grid;
  grid-template-columns: 2vw auto;
  padding: 1vw;
  box-sizing: border-box;
  background-color: #e8e8e8;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  outline: unset;
  margin-bottom: 3vh;
}
section:nth-of-type(1) .left button:hover {
  background-color: #002631;
}
section:nth-of-type(1) .left button:hover span {
  color: white;
}
section:nth-of-type(1) .left button span {
  color: #002631;
}
section:nth-of-type(1) .left button span:nth-of-type(1) {
  font-size: 1vw;
}
section:nth-of-type(1) .left button span:nth-of-type(2) {
  font-size: 0.8vw;
  font-family: "Lilita One", sans-serif;
  text-transform: uppercase;
  text-align: left;
}
section:nth-of-type(1) .left button.active {
  background-color: #002631;
}
section:nth-of-type(1) .left button.active span {
  color: white;
}
section:nth-of-type(1) .right .panel {
  width: 100%;
  border-radius: 5px;
  padding: 3vw;
  box-sizing: border-box;
  margin-top: 2vh;
  height: 90vh;
  display: none;
  opacity: 0;
  background-color: #f0f0f0;
  flex-direction: column;
  overflow-y: scroll;
  font-family: "Roboto", sans-serif;
}
section:nth-of-type(1) .right .panel > h1 {
  font-size: 1.5vw;
  text-transform: uppercase;
  color: rgb(0, 78, 100);
}
section:nth-of-type(1) .right .panel article {
  display: flex;
  flex-direction: column;
}
section:nth-of-type(1) .right .panel article h1 {
  font-size: 1.2vw;
  margin-top: 5vh;
  color: #003a4b;
}
section:nth-of-type(1) .right .panel article p,
section:nth-of-type(1) .right .panel article li {
  font-size: 1.2vw;
  font-family: "Roboto", sans-serif;
  margin-top: 1.5vh;
  list-style: square;
}
section:nth-of-type(1) .right .panel article li {
  margin-left: 3vw;
}
section:nth-of-type(1) .right .panel figure {
  margin-top: 3vh;
}
section:nth-of-type(1) .right .panel figure figcaption {
  font-size: 1vw;
  color: rgb(0, 78, 100);
}
section:nth-of-type(1) .right .panel figure img {
  width: 30vw;
}
section:nth-of-type(1) .right .panel:nth-of-type(1) {
  display: flex;
  opacity: 1;
}

@media only screen and (max-width: 750px) {
  section:nth-of-type(1) {
    grid-template-columns: 1fr;
  }
  section:nth-of-type(1) .left h1 {
    font-size: 4vw;
  }
  section:nth-of-type(1) .left button {
    padding: 2.5vw;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
  }
  section:nth-of-type(1) .left button span:nth-of-type(1) {
    font-size: 3.5vw;
  }
  section:nth-of-type(1) .left button span:nth-of-type(2) {
    font-size: 3.2vw;
  }
  section:nth-of-type(1) .right .panel {
    padding: 3vw;
    margin-top: 2vh;
  }
  section:nth-of-type(1) .right .panel > h1 {
    font-size: 3.5vw;
  }
  section:nth-of-type(1) .right .panel article h1 {
    font-size: 3.2vw;
    margin-top: 5vh;
  }
  section:nth-of-type(1) .right .panel article p,
  section:nth-of-type(1) .right .panel article li {
    font-size: 3.2vw;
    margin-top: 1.5vh;
    width: 90%;
  }
  section:nth-of-type(1) .right .panel figure {
    margin-top: 3vh;
  }
  section:nth-of-type(1) .right .panel figure figcaption {
    font-size: 2.5vw;
  }
  section:nth-of-type(1) .right .panel figure img {
    width: 50vw;
  }
}
/*

@media only screen and (max-width: 750px) {
  section {
    &:nth-of-type(1) {
      #mygrid {
        //   border: 2px solid red;
        width: 90%;
        grid-template-columns: 1fr;
        .left,
        .right {
          margin-left: auto;
          margin-right: auto;
        }
        .left {
          display: flex;
          margin-top: 5vh;
          justify-content: center;
        }
        .right {
          > h1 {
            font-size: 4vw;
            padding: 0.8vw 2vw;
          }
          .content {
            p {
              font-size: 3.5vw;
            }
          }
        }
      }
    }
  }
}

*//*# sourceMappingURL=guide.css.map */