
 .fadein { position:relative; height:332px; width:500px; overflow:hiddwn;}
 .highlight {
  column-count: 2;
  column-gap: 2rem;
}

@media screen and (max-width: 768px) {
  .highlight {
    column-count: 1;
   
  }
  }
.accordion {
  background-color: #f9f9f9;
    border: 2px solid #e6e6e6;
	border-radius:10px;
	margin-bottom:5px;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  font-weight:700;
}

.active, .accordion:hover {
  background-color: #eeeeee;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-left: 4px dashed #dfdfdf;
    padding-left: 10px;
	margin-bottom:5px;
}

