.accordionn {
  font-family: Montserrat, sans-serif;
  background: none;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordionn__icon {
  transition: .3s ease;
}

.active, .accordionn:hover {
  /* background-color: #ccc; */
}

.panel {
  padding: 0 18px;
  /* background-color: white; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #c89f43;
  color: #fff;
}

.panel p {
  font-weight: 400;
  line-height: 30px;
  padding: 1.5rem 0;
}

.panel .highlight {
  font-weight: 700;
  color: #c89f43;
}

.rotate {
  transform: rotate(180deg);
}