.bg-gradient-accent {
  background: linear-gradient(to bottom, #252E2D, #00BC66);
}

/* Create Custom "Colour Matrix" to use within the bootstrap utility classes
----------------------------------------------------------------------------- */
/* 
    Expanded spacing options 
    For example the margin and padding classes now have extended capability (.mb-8 now outputs margin-bottom: 3rem)
*/
/*
    This variable affects the `.h-*` and `.w-*` classes.
    You can now do w-25 or h-80 and have it output width: 25% or height: 80%
*/
p {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media only screen and (max-width: 769px) {
  p {
    font-size: 1rem !important;
    line-height: 1.6;
  }
}

/*
    Components variables
    When you create the component you should create the variables with colors for this compontnt
*/
/*
  Custom Components Variables
*/
/*
    We have no variables for alt buttons
    Because the styles depends on the design and can be unique for each project
*/
.accent-border {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  border-left: 8px solid #00BC66;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.16);
}

.accordion .accordion-item {
  border: none;
}
.accordion .accordion-button {
  position: relative;
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  background-color: #F9F9F9;
  border: none;
  box-shadow: none;
  padding: 24px 64px 24px 24px;
}
.accordion .accordion-button:after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  content: "\f4f9";
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: bootstrap-icons !important;
  background-image: none;
  font-size: 24px;
  line-height: 0;
}
.accordion .accordion-button:not(.collapsed)::after {
  content: "\f2e5";
}
.accordion .accordion-body {
  background-color: #F9F9F9;
  padding: 0px 24px 24px 24px;
}

/*# sourceMappingURL=accordion.css.map */