/*FAQS*/
.accordion {
	position: relative;
  	width: 900px;
  	color: black;
  	background-color: white;
  	padding: 8px 45px;
    border-bottom: 1px solid #f3f3f3;
	z-index: 1;
	    margin: auto;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
  position: relative;
  padding: 10px 0;
    font-size: 24px;
    color: black;
    cursor: pointer;
    font-weight: 500 !important;
}

.accordion .label::before {
  content: '+';
  color: black;
  position: absolute;
  top: 50%;
  right: -5px;
  font-size: 30px;
  transform: translateY(-50%);
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
  position: relative;
  background: white;
  height: 0;
  font-size: 18px;
  text-align: justify;
  width: 780px;
  overflow: hidden;
  transition: 0.5s;
}

/* Adds a horizontal line between the contents */

.accordion hr {
  width: 100;
  margin-left: 0;
  border: 1px solid grey;
}

.accordion.active .content {
  	height: auto;
	padding-bottom: 25px;
}
.accordion.active {
	border-bottom: 0px;
	box-shadow: 0px 14px 18px 13px #f3f3f3;
	z-index: 99;
}

/* Changes from plus sign to negative sign once active */

.accordion.active .label::before {
  content: '-';
  font-size: 30px;
}





@media screen and (max-width: 994px) {
	.accordion {
		width: 100%;
		padding: 0;
		margin: 10px 0;

	}
}

@media screen and (max-width: 994px) {
	.accordion .label {
		font-size: 18px !important;
		padding: 10px;

	}
}

@media screen and (max-width: 994px) {
	.accordion .content {
		width: auto;
		font-size: 14px;
    text-align: inherit;
    width: auto;
		
	}
}
@media screen and (max-width: 994px) {
	.accordion.active .content {
		padding: 16px;
	}
}

@media screen and (max-width: 994px) {
	.accordion .label::before {
		font-size: 24px;
	}
}

@media screen and (max-width: 994px) {
	.accordion .label::before {
	  content: '+';
	  color: black;
	  position: absolute;
	  top: 50%;
	  right: 4px;
	  font-size: 25px;
	  
	}
	
	.accordion.active .label::before {
  content: '-';
  font-size: 25px;
}
}