
.container-accordion {
    margin-left: 3em;
    margin-right: 3em; 
}

@media (max-width:768px) {
  .container-accordion {
    margin-left: 0px;
    margin-right: 0px; 
}

}

.container-question{
    margin-bottom: 5px;
}

.question {
    padding-left: 0px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: white;
    background: white!important;
    font-size: 28px;
    color: #16175E!important;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  /* 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) */
  .active, .accordion:hover {
    font-weight: 500;
    font-style: italic;
    background-color: white;
    background: white!important;
    color: #16175E!important;
  }

  .active, .accordion:hover .question{
    font-style: italic;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    text-align: left;
    font-size: 18px;
    color: #16175E;
    padding: 0 48px 0 48px;
    background-color:  rgba(80, 139, 202, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .accordion:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f055";
    font-size: 30px;
    color: #508BCA;
    float: right;
    margin-left: 5px;
    padding-right: 35px;
    font-style:normal!important;
  }
  
  .active:after {
    content: "\f057";
    color: #16175E;
  }