
.section_accordion {
    padding-top: 160px;
    /* margin-top: 120px; */
    padding-top: 200px ;
}

.section_accordion h2{
  text-align: center;
  justify-content: center;
  margin-bottom: 30px;
}



/* // Collapse Style
// ============== */
.collapse {
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity, height;
  will-change: opacity, contents;

  &:not(.is-active) {
    height: 0;
    opacity: 0;
  }
}


/* // Acordion Demo Style
// =================== */
.accordion {
  background: repeating-linear-gradient(to right, #FF9933, #FFFFFF, #138808);
  /* --background: #fff; */
  --border-radius: 12px;
  border-radius: var(--border-radius);
  background: var(--background);
  box-shadow: 0 2px 6px rgba(#000, 0.075);
  border: 1px solid darken(#fff, 15);
  padding: 0px 250px;
 
}

  .card {
    overflow: hidden;
    margin: -1px -1px 1px;
    background: var(--background);
    border: 1px solid darken(#fff, 15);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: contents;
    text-align: left;
  

    &:first-child {
      border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    &:last-child {
      border-radius: 0 0 var(--border-radius) var(--border-radius);
      margin-bottom: -1px;
    }
    
    &:not(:last-child):not(.is-active) {
      border-bottom-color: transparent;
    }
    
    &.is-active {
      background:#e1e8f6;
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
      /* background: #f3f3f3; */
      border-radius: var(--border-radius);
      
      & + .card {
        border-top-color: transparent;
      }
    }
  }

  .card__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 3.5rem;
    margin: 0;
    margin-bottom: -1px;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    font-size: 18px;
    font-weight: 550;
    user-select: none;
    color: #06038d;

    &:hover {
      .icon {
        opacity: 0.8;
      }
    }

    &.is-active {
      .icon {
        transform: rotateX(180deg);
        opacity: 1;
      }
    }

    .icon {
      width: 28px;
      height: 28px;
      fill: currentColor;
      opacity: 0.3;
      transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-right: -0.25rem;
    }
  }

  .card__content {
    padding: 0 1.25rem 1.25rem;
    font-size: 1.7rem; 
    color: #06038d;
    line-height: 1.8;
  }

 


/* // Demo Style
// ========== */
* {
  box-sizing: border-box;
  line-height: calc(1em + 0.5rem);
  
}

h1 {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 400;
  color: lighten(#000, 50);
}
a {
  color: inherit;
  text-decoration: none;
  l
}
a,
[data-toggle] {
  cursor: pointer;
}
 .accordion p {
  font-size: 1.8rem;
 }

 .card__content p{
  line-height: 1.8;
 }

 .card__content ul li{
  line-height: 1.8;
 }
/* Mobile View */
@media (max-width: 600px) {
  .accordion {
    background: repeating-linear-gradient(to right, #FF9933, #FFFFFF, #138808);
       --border-radius: 12px;
    border-radius: var(--border-radius);
    background: var(--background);
    box-shadow: 0 2px 6px rgba(#000, 0.075);
    border: 1px solid darken(#fff, 15);
    padding: 0px 50px;
   
  }
}