body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #efefef; }

p {
  color: #b3b3b3;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

/*Accordion style*/
.accordion-wrap {
  max-width: 300px;
  margin: 0 auto;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2); }

.custom-accordion .custom-menu, .custom-accordion .custom-menu li {
  display: block;
  padding: 0;
  margin: 0; }

.custom-accordion .custom-menu li a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  font-size: 13px;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  .custom-accordion .custom-menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    background: #f16947;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .custom-accordion .custom-menu li a:hover {
    padding-left: 30px;
    color: #fff; }
    .custom-accordion .custom-menu li a:hover:before {
      width: 8px;
      opacity: 1;
      visibility: visible; }

.custom-accordion .accordion-item {
  position: relative;
  background: #4b4142; }
  .custom-accordion .accordion-item .btn-link {
    display: block;
    width: 100%;
    border-radius: 0;
    padding: 15px;
    text-decoration: none;
    text-align: left;
    position: relative;
    background: #f16947;
    color: #fff;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px; }
  .custom-accordion .accordion-item.active .btn-link {
    background: #f16947;
    color: #fff; }
  .custom-accordion .accordion-item .accordion-body {
    color: #888; }
