html {
  font-size: 10px;
}

@media (max-width: 1550px) {
  html {
    font-size: 7px;
  }
}
.tabs_wrapper {
  align-items: flex-start;
  background-color: #EBF8FF;
  border-radius: 30px;
  padding: 3rem;
  width: 100%;
}

ul.tabs {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  justify-content: center;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

ul.tabs li {
  cursor: pointer;
  background-color: #fff;
  border-radius: 30px;
  color: #000;
  display: block;
  padding: 1rem 3.2rem;
  text-decoration: none;
  border-bottom: none;
}

ul.tabs li:hover {
  background-color: #D64544;
  color: #fff;
}

ul.tabs li.active {
  background-color: #D64544;
  color: #fff;
}

.tab_content {
  height: 100%;
  display: none;
}

.tab_drawer_heading {
  display: none;
}

@media screen and (max-width: 991px) {
  ul.tabs {
    display: none;
  }
  .tab_container {
    display: block;
    margin: 0 auto;
    border-top: none;
    border-radius: 0;
    width: 100%;
  }
  .tab_drawer_heading {
    background-color: #4A8DB1;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
    padding: 1.8rem 3rem;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 1rem 0;
    border-radius: 2rem;
  }
  .tab_content {
    padding: 2rem;
    border: 1px solid #D64544;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
  }
  .tab_drawer_heading:hover {
    background-color: #D64544;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem 2rem 0 0;
    margin: 0;
  }
  .d_active {
    background-color: #D64544;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem 2rem 0 0;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .tab_content .heading {
    flex-wrap: wrap;
  }
  .tab_content .heading .name {
    width: 100%;
  }
  .tab_content .heading .price {
    width: 100%;
  }
}/*# sourceMappingURL=faqs.css.map */