body {
  margin: 0;
  padding: 0;
}
/* Header */
.topnav {
  display: block;
  background-color: #196b9e;
  width: 100%;
  height: 75px;
}
.nav-thumbnail {
  margin: 20px;
  width: 200px;
  float: left;
}
.header {
  min-height: 600px;
  background-image: url('/include/img/support/web-header-graphic-v2.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Tag */
.tag-title {
  margin-top: 20px;
  color: #196b9e;
  text-align: center;
  font-size: 45px;
  font-family: Open Sans;
  font-weight: 600;
}
.tag-subtitle {
  margin-top: 10px;
  color: #898989;
  text-align: center;
  font-size: 20px;
  font-family: Open Sans;
}
/* FAQ Section */
.section {
  margin: 20px 20px 20px 40px;
  display: flex;
  justify-content: space-around;
}
.section-title {
  font-size: 35px;
  color: #747474;
  margin-bottom: 5px;
  font-family: Open Sans;
}
.container {
  margin: 30px;
}
.container-section {
  margin: 10px;
  max-width: 50%;
}
/* Accordion */
.accordion {
  cursor: pointer;
  text-align: left;
  border: none;
  width: 75%;
  font-size: 22px;
  transition: 0.4s;
  background-color: #fff;
  color: #747474;
  text-overflow: visible;
  padding: 10px;
  font-family: Open Sans;
}
.container-accordion {
  max-width: 100%;
  margin-bottom: 20px;
}
.panel {
  padding: 0 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  max-height: 0;
  overflow: scroll;
  transition: max-height 0.2s ease-out;
  font-size: 18px;
  font-family: Open Sans;
  text-decoration: none;
  color: #888888;
  line-height: 33px;
  width: 75%;
}
.link {
  color: #196b9e;
}
.accordion:after {
  color: #196b9e;
  height: 12px;
  width: 12px;
  font-weight: 900;
  content: '\002B';
  float: right;
  margin-left: 5px;
}
.accordion.active:after {
  content: '\2212';
  color: #196b9e;
  height: 12px;
  width: 12px;
  font-weight: 900;
}
.faq-list {
  list-style-type: disc;
  padding: 3px;
  line-height: 25px;
  text-indent: 10px;
}
@media screen and (max-width: 1024px) {
  .header {
    min-height: 400px;
  }
  .tag-subtitle {
    margin-bottom: 20px;
  }
  .section {
    flex-wrap: wrap;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .section-special {
    margin-left: 5%;
  }
  .container {
    margin: 5px;
  }
  .container-section {
    max-width: 100%;
  }
  .accordion {
    font-size: 30px;
    width: 100%;
  }
  .panel {
    width: 100%;
  }
}
