.accordion {
  /*background-color: var(--white);*/ /*edit by fy 26.5.2021*/
  /*box-shadow: 0px 0px 50px rgb(104 152 188 / 20%);*/ /*edit by fy 26.5.2021*/
  padding: 50px 25px;
  /*border-radius: 25px;*/ /*edit by fy 26.5.2021*/
}

.accordion .title-wrapper{
  margin-bottom: 20px;
}

.accordion .title-wrapper:last-child{
  margin-bottom: 0;
}

/* .accordion .title-wrapper .title-collapse{
  margin-bottom: 15px;
} */


.description-text {
  color: var(--font);
  /* margin-bottom: 50px; */
}



.accordion div.collapsed .title-collapse {
  color: #808285;
  padding-right: 10px;
  font-weight: bold;
  cursor: pointer;
}

.accordion .title-collapse {
  color: var(--main-blue);
  padding-right: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}

.accordion .title-collapse .fa-chevron-down{
  transform: rotate(180deg);
}

.accordion .collapsed .title-collapse .fa-chevron-down{
  transform: unset;
}


.accordion .col-12>div .title-collapse-content {
  color: white;
  font-weight: 600;
  border: 2px solid #F03F3A;
  padding: 10px;
  border-radius: 5px;
  background-color: #F03F3A;
}

.accordion .col-12>div.collapsed .title-collapse-content {

  color: white;
  font-weight: 600;
  border: 2px solid #126F9D;
  padding: 10px;
  border-radius: 5px;
  background-color: #126F9D;
}