

/*#================================================================================================
OVERIDES
================================================================================================*/
#default_hero, #breadcrumbs{
    display: none;
}

/* ===============================================================================================
SECTION 1
===============================================================================================*/

#section1 {
    padding: 50px 0;
    position: relative;
    z-index: 2;
    background-size: cover;
    background: #1A1A1A;
}
#section1 h1 {
    color: #fff;
}
#section1 p {
    color: #fff;
}

/* ===============================================================================================
SECTION 2
===============================================================================================*/



.parent-container {
    padding: 0 20px 0 20px;
    width: 100%;
  }
  
  .faq {
    list-style: none;
    padding-left: 40px;
    padding-right: 20px;
  }
  .faq li {
    border-bottom: 1px solid #F98805;
    margin-bottom: 15px;
  }
  .faq li.active .answer {
    max-height: 350px !important;
    padding-bottom: 25px;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease;
  }
  .faq li.active .question {
    color: #F98805;
    transition: color 0.5s ease;
  }
  .faq .answer {
    color: #090909;
    font-size: 16px;
    line-height: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease;
  }
  .faq .plus-minus-toggle {
    cursor: pointer;
    height: 21px;
    position: absolute;
    width: 21px;
    left: -40px;
    top: 50%;
    z-index: 2;
  }
  .faq .plus-minus-toggle:before, .faq .plus-minus-toggle:after {
    background: #F98805;
    content: '';
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 21px;
    transition: transform 500ms ease;
  }
  .faq .plus-minus-toggle:after {
    transform-origin: center;
  }
  .faq .plus-minus-toggle.collapsed:after {
    transform: rotate(90deg);
  }
  .faq .plus-minus-toggle.collapsed:before {
    transform: rotate(180deg);
  }
  .faq .question {
    color: #F98805;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    padding: 20px 0;
    transition: color 0.5s ease;
  }
  @media screen and (max-width: 767px) {
    .faq .question {
      font-size: 18px;
    }
    .faq {
        list-style: none;
        padding-left: 0;
        padding-right: 0;
    }
    .faq li.active .answer {
        max-height: 100% !important;
      }
  }