#faq-page {
  padding: 150px 0;
}

.header-section {
  margin: 3.5rem 0;
}

.header-section h1 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  color: #1b262c;
}

.header-section h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #006a4e;
}

.faq-section .faq-wrapper {
  display: flex;
}

.faq-section .faq-tabs-wrapper {
  width: 100%;
  max-width: 250px;
}

.faq-section .faq-tabs-wrapper .collapsible-item {
  display: none;
}

.faq-section .faq-tabs-wrapper .faq-tabs-text {
  margin-right: 2.5rem;
  white-space: nowrap;
}

.faq-section .faq-tabs-wrapper .faq-tabs-text {
  padding: 1rem;
  border-left: 3px solid #d6d6d6;
  cursor: pointer;
  color: #52575d;
  font-weight: 600;
}

.faq-section .faq-tabs-wrapper .faq-tabs-item.active .faq-tabs-text,
.faq-section .faq-tabs-wrapper .faq-tabs-item:hover .faq-tabs-text {
  border-left-color: #006a4e;
  color: #1b262c;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}

.faq-section .faq-content-wrapper {
  width: 100%;
}

.faq-section .faq-content-item:not(:last-child):not(.active) {
  margin-bottom: 1.5rem;
}

.faq-section .faq-content-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  color: white;
  border-radius: 0px;
  color: #1b262c;
  cursor: pointer;
  background-color: #f6fff8;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.faq-section .faq-content-item.active .faq-content-heading {
  border-radius: 0px 24px;
}

.faq-section .faq-content-heading p {
  margin: 0;
}

.faq-section .faq-content-item.active .faq-content-heading {
  color: white;
  background-color: #82cd1f;
}

.faq-section .faq-content-body {
  color: #52575d;
  font-weight: 300;
  padding: 1.25rem;
}

.collapsible-item {
  transition: clip-path 0.4s ease-in-out;
  -webkit-transition: clip-path 0.4s ease-in-out;
  -moz-transition: clip-path 0.4s ease-in-out;
  -ms-transition: clip-path 0.4s ease-in-out;
  -o-transition: clip-path 0.4s ease-in-out;
}

.collapsible:not(.active) > .collapsible-item {
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.collapsible.active > .collapsible-item {
  max-height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 1199px) {
  #faq-page {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .breadcrumb {
    margin-bottom: 0;
  }

  .header-section {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .header-section {
    margin-bottom: 1.5rem;
  }

  .faq-section .faq-content-wrapper {
    display: none;
  }

  .faq-section .faq-tabs-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .faq-section .faq-tabs-wrapper .faq-content-wrapper {
    display: block;
  }

  .header-section h1 {
    font-size: 20px;
  }

  .header-section h2 {
    font-size: 12px;
  }

  .faq-section .faq-content-heading {
    padding: 0.75rem 1rem;
  }

  .faq-section .faq-content-heading,
  .faq-section .faq-content-body {
    font-size: 12px;
  }

  .faq-section .faq-content-item .faq-content-body {
    padding: 1rem;
  }

  .faq-section .faq-tabs-text {
    font-size: 12px;
  }

  .faq-section .faq-tabs-wrapper .collapsible-item {
    display: block;
  }

  .faq-tabs-item > .collapsible-item {
    margin: 1rem 0;
  }
}
