/* Popup box BEGIN */
.collapsible {
	background-color: white;
	color: black;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: center;
	outline: none;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 32px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.collapsible::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.collapsible::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #18d26e;
  bottom: 0;
  left: calc(50% - 20px);
}

.active, .collapsible:hover {
	background-color: black;
  	color: green;
  	outline: green solid 10px;
  	text-decoration: none;
}

.content {
	padding: 0 18px;
	display: none;
	overflow: hidden;
	background-color: #f1f1f1;
}
/* Popup box BEGIN */
