body{
  font-family: 'Cabin';
}
 
h1 {
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 
Sets the width for the accordion body
*/
.accordian-body {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.accordion {
  width: auto;
  color: black;
  padding: 45px 45px;
}

.accordion .container {
    position: relative;
    margin: 10px 10px;
  }
  
.accordion .label {
  position: relative;
  padding: 10px 0;
  font-size: 24px;
  color: black;
  cursor: pointer;
}

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

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

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

.accordion .container.active .content {
  height: auto;
}

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