.faqs-section {
  > .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    @media (width >= 768px) {
      padding-top: 3rem;
      padding-bottom: 6rem;
    }
  }
}

.bg-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/9;
  
  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  @media (width >= 768px) {
    aspect-ratio: initial;
    min-height: 32rem;
  }
}

.accordion-item {
	&:not(:last-child) {
		border-bottom: 1px solid #e9e9e9 !important;
	}
  .accordion-button { 
	  padding: 1.5em 0;
    color: var(--color-black) !important;
    font-weight: 600;

    &:focus {
      box-shadow: unset !important;
    }

    &:not(.collapsed) {
      background-color: #ffffff00 !important;
      color: var(--color-black) !important;
      font-weight: 600;
    }

    &:not(.collapsed) {
      box-shadow: unset !important;
    }
  }
	
  .accordion-body {
	  padding-inline: 0;
    p, li {
      font-size: 16px;
    }
  }
  &:las-child {
    border-bottom: 1px solid #e9e9e9 !important; 
  }
}

