/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: 900;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  text-align: justify;
  text-justify: inter-word;
  color: black;
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.globe {
  position: absolute;
  padding: 24px;
}

.globe:before {
  font-size: 90px;
  color: black;
  opacity: 0.2;
  position: inherit;
  font-family: 'FontAwesome';
  top: -20%;
  content: "\f0ac";
}

.hand {
  position: absolute;
}

.hand:before {
  font-size: 80px;
  color: black;
  opacity: 0.2;
  position: inherit;
  top: -15%;
  font-family: 'FontAwesome';
  content: "\f256";
}

.recycle {
  position: absolute;
}

.recycle:before {
  font-size: 80px;
  color: black;
  opacity: 0.2;
  position: inherit;
  top: -15%;
  font-family: 'FontAwesome';
  content: "\f1b8";
}

