/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #212121;
    color: #fff;
    cursor: pointer;
    padding: 22px 18px 18px 18px;
    width: 50%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 1.5rem;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  
  
  /* Style the collapsible content. Note: hidden by default */

  .innerContent {
    padding: 15px 18px 0px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    width: 47%;
    text-align: justify;
  }

.mainContent{
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    width: 100%;
}

.collapsible:after {
    content: url("../images/Vectors-Wrapper_4.svg");
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .active:after {
    content: url("../images/Vectors-Wrapper_5.svg");
  }
