*,
*::before,
*::after{
  margin:0;
  padding: 0;
  box-sizing: inherit;
}

/* html {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  box-sizing: border-box;
}
 */



/*Section used for centering process*/

.dynamic-container {
    /* Optional: Adding styling to visually frame the accordion */
   /*  border: 0px solid #ccc; */
    padding: 0px;
    border-radius: 0px;
   /*  background-color: rgba(27, 31, 34, 0.85); */

    /* The core part: block elements expand naturally. 
       This container will be as tall as the accordion content. */
   /*  width: fit-content; */ /* Optional: Adjusts width to content, if not using full width */
    max-width: 110%;
}
section {
  width: 100%;
  height: auto;
/*   background-color: rgba(27, 31, 34, 0.85); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.container{
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accordion-item{
  /* background-color: rgba(27, 31, 34, 0.85); */
  border-radius: .4rem;
}

.accordion-item hr{
  border: -1px solid rgba(27, 31, 34, 0.85);
}

.accordion-link{
  font-size: 1.6rem;
  color: rgba(27, 31, 34, 0.85);
  text-decoration: none;
  /* background-color: rgba(27, 31, 34, 0.85); */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
 /*  padding: 1rem 0; */
}

.accordion-link h3{
  font-weight:500;
  font-size: 20px;
}

.accordion-link i{
  color: #e7d5ff;
  padding: .5rem;
  
}

.accordion-link ul{
  display:flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li{
  font-size: 10px;
/*   color: rgba(27, 31, 34, 0.85); */
  padding: 0 0 1px 5px;
}

.accordion-link div{
  display: flex;
}

.accordion-link .ion-md-arrow-down{
  display: none;
}

.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
 /*  background-color: #000; */
  transition: max-height 650ms;
}



.answer p{
  color: #f4c871;
  font-size: 20px;
  padding: 0rem;

  
}

.accordion-item:target .answer{
  max-height: 20rem;
}

.accordion-item:target .accordion-link .ion-md-arrow-forward{
  display: none
}

.accordion-item:target .accordion-link .ion-md-arrow-down{
  display: block;
}

.no-margin {
    margin: 0; 
	font-weight: bold;
}
