.site-hero {
  background: url(../images/assets/banner4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 25px solid goldenrod;
}

.hero-inner {
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.5), rgba(7, 7, 7, 0.918));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-item {
  padding: 20px;
}

.hero-item h1 {
  font-size: 80px;
  color: lightgray;
}

.hero-item p {
  color: white;
  font-size: 30px;
}

.hero-item button {
  width: 180px;
  height: 40px;
}

.intro-inner-grid {
  padding: 40px;
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: 30% 70%;
      grid-template-columns: 30% 70%;
  padding-bottom: 0px;
}

.sub-row {
  padding-top: 70px;
}

.sub-row li {
  font-family: 'Titillium Web';
}

.accordion-item-outter h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #777777;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: lighter;
  cursor: pointer;
  font-size: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.accordion-item-outter h3 span {
  font-size: 20px;
  margin-right: 10px;
}

.accordion-item-outter h3:hover {
  color: rgba(0, 155, 245, 0.966);
}

.accordion-inner {
  height: 0px;
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  padding-left: 30px;
}

.accordion-inner li div {
  font-family: "Titillium Web";
}

.accordion-inner-expanded {
  height: auto;
}

.aside-inner-fixed {
  -webkit-transition: .3s;
  transition: .3s;
  padding-bottom: 20px;
}

.aside-inner-fixed ul li {
  margin-top: 8px;
}

.aside-inner-fixed ul li div {
  font-family: "Titillium Web";
  font-size: 20px;
}

.fixed-true {
  position: fixed;
  top: 100px;
}

@media (max-width: 800px) {
  .intro-inner-grid {
    padding: 5px;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
  .aside-inner-fixed {
    display: none;
  }
}
/*# sourceMappingURL=faqs.css.map */