@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600;700&display=swap);
p, h1 {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.faq_wrapper {
  padding: 80px 0px 100px 0px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.faq_wrapper .faq_container h1 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 30px;
}
.faq_wrapper .faq_container .faq_tabs__tab {
  padding: 0 32px;
  font-size: 21px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  display: inline-flex;
  margin: 10px 14px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
}
.faq_wrapper .faq_container .faq_tabs__tab.active {
  background: #ffffff;
  color: #131313;
  font-weight: 700;
}
.faq_wrapper .faq_container .line {
  display: block;
  width: 100%;
  height: 3px;
  background: #414141;
  margin: 30px 0 40px 0;
}
.faq_wrapper .faq_container .faq_itemWrapper {
  columns: 2;
  column-gap: 40px;
  display: none;
}

@media screen and (max-device-width: 768px) {
  .faq_wrapper {
    padding: 40px 15px 80px 15px;
  }
  .faq_wrapper .faq_container .faq_itemWrapper {
    columns: 1;
  }
  .faq_wrapper .faq_container h1 {
    font-size: 32px;
    line-height: 32px;
  }
  .faq_wrapper .faq_container .line {
    margin: 30px auto 30px auto;
    width: 100%;
  }
  .faq_wrapper .faq_container .faq_tabs__tab {
    height: 48px;
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (max-device-width: 500px) {
  .faq_wrapper .faq_container h1 {
    padding: 0 28px;
    text-align: center;
  }
  .faq_wrapper .faq_container .line {
    margin: 20px auto 40px auto;
    width: 100%;
  }
}
