/* Imports fonts and gives it name */
/* Passion Conflict - Passion */
@font-face {
  font-family: 'Sofia Sans';
  src: url('fonts/Sofia_Sans_Condensed/SofiaSansCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.collapsible2 {
  font-family:'Sofia Sans', Times New Roman; 
  font-size: 1.2vw;
  color: white;
  text-align: center;
  margin: 5px;
  border-radius: 25px;

  background-color: #B598CC;
  cursor: pointer;
  padding: 18px;
  width: 98%;
  border: none;
  text-align: left;
}

.collapsible2:after {
  content: '\2228';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active2:after {
  content: "\2227";
}

.content2 {
  font-family:'Sofia Sans', Times New Roman;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #6d76a700;
  font-size: 1.2vw;
}