/* -------------------------------- 

Primary style

-------------------------------- */
.accordion-container *, .accordion-container *::after, .accordion-container *::before {
  box-sizing: border-box;
}

.accordion-container {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: Helvetica, Arial, '_sans';
  color: #ffffff;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.accordion-container a {
  color: #a0f6aa;
  text-decoration: none;
}

.accordion-container h1 {
  text-align: center;
  width: 90%;
  margin: 2em auto 0;
  font-size: 2.4rem;
  color: #507b55;
  font-weight: bold;
}
@media only screen and (min-width: 600px) {
  .accordion-container h1 {
    font-size: 3.2rem;
  }
}

.accordion-container input {
  font-family: Helvetica, Arial, '_sans';
  /*font-size: 1.2rem;*/
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-accordion-menu {
  background: #ffffff;
}

.cd-accordion-menu ul {
  /* by default hide all sub menus */
  display: none;
}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  position: absolute;
  opacity: 0;
}
.cd-accordion-menu label, .cd-accordion-menu a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 64px;
  background: #ffffff;
  box-shadow: inset 0 -1px #555960;
  color: #000000;
  /*font-size: 1.2rem;*/
}
.cd-accordion-menu label::before, .cd-accordion-menu label::after, .cd-accordion-menu a::after {
  /* icons */
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu label {
  cursor: pointer;
}
.cd-accordion-menu label::before {
  background-image: url(../img/arrow-icon.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
.cd-accordion-menu label:hover::before {
  background-image: url(../img/arrow-icon-neg.svg);
}
.cd-accordion-menu label.level-2-label::before {
  background-image: url(../img/arrow-icon-level-2.svg);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
}
.cd-accordion-menu label::before {
  /* arrow icon */
  left: 0px;
  background-position: 0 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-accordion-menu label::after {
  /* folder icons */
  left: 41px;
  background-position: -16px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label::before {
  background-image: url(../img/arrow-icon-neg.svg);
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label.level-2-label::before {
  background-image: url(../img/arrow-icon-level-2.svg);
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;
}
.cd-accordion-menu ul label,
.cd-accordion-menu ul a {
  background: #ffffff;
  box-shadow: inset 0 -1px #41444a;
  padding-left: 82px;
}
}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;
}
.cd-accordion-menu ul label::before {
  left: 40px;
}
.cd-accordion-menu ul label::after,
.cd-accordion-menu ul a::after {
  left: 64px;
}
.cd-accordion-menu ul ul label,
.cd-accordion-menu ul ul a {
  padding-left: 90px;
}
.cd-accordion-menu ul ul label::before {
  left: 54px;
}
.cd-accordion-menu ul ul label::after,
.cd-accordion-menu ul ul a::after {
  left: 77px;
}
.cd-accordion-menu ul ul ul label,
.cd-accordion-menu ul ul ul a {
  padding-left: 118px;
}
.cd-accordion-menu ul ul ul label::before {
  left: 72px;
}
.cd-accordion-menu ul ul ul label::after,
.cd-accordion-menu ul ul ul a::after {
  left: 95px;
}
@media only screen and (min-width: 600px) {
  .cd-accordion-menu label, .cd-accordion-menu a {
    padding: 10px 10px 10px 64px;
    /*font-size: 1.2rem;*/
  }
  .cd-accordion-menu label::before {
    left: 5px;
  }
  .cd-accordion-menu label::after {
    left: 53px;
  }
  .cd-accordion-menu ul label,
  .cd-accordion-menu ul a {
    font-size: 1.2rem;
    padding-left: 64px;
  }
  .cd-accordion-menu ul label::before {
    left: 40px;
  }
  .cd-accordion-menu ul label::after,
  .cd-accordion-menu ul a::after {
    left: 77px;
  }
  .cd-accordion-menu ul ul label,
  .cd-accordion-menu ul ul a {
    padding-left: 90px;
  }
  .cd-accordion-menu ul ul label::before {
    left: 72px;
  }
  .cd-accordion-menu ul ul label::after,
  .cd-accordion-menu ul ul a::after {
    left: 101px;
  }
  .cd-accordion-menu ul ul ul label,
  .cd-accordion-menu ul ul ul a {
    padding-left: 154px;
  }
  .cd-accordion-menu ul ul ul label::before {
    left: 96px;
  }
  .cd-accordion-menu ul ul ul label::after,
  .cd-accordion-menu ul ul ul a::after {
    left: 125px;
  }
}
.cd-accordion-menu.animated label::before {
  /* this class is used if you're using jquery to animate the accordion */
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-accordion-menu li ul li a{
  font-weight: normal;
}

/* -------------------------------- 

Sections 

-------------------------------- */

.is-home a{
  color:  #000000;
  background-color: #ffffff;
}

.is-home a:hover{
  color: #ffffff;
  background-color: #000000;
}

.is-home a::after {
  /* image icon */
  left: 24px;
  width: 30px;
  height: 24px;
  background: url(../img/01Home.svg) no-repeat 0 0;
}

.is-home.special a::after {
  /* image icon */
  background: url(../img/01HomeNeg.svg) no-repeat 0 0;
}

/*acc-top-1*/

.acc-top-1 label.level-1-label:hover{
  color: #ffffff;
  background-color: #a0052c;
}

.acc-top-1 input[type=checkbox]:checked + label.level-1-label {
  color: #ffffff;
  background-color: #a0052c;
}

.acc-top-1 input[type=checkbox]:checked + label.level-1-label::after {
  background: url(../img/02AcademicIntegrityNeg.svg) no-repeat 0 0;
}

.acc-top-1 li label.level-2-label:hover {
  color: #a0052c;
  background-color: #ffffff;
}

.acc-top-1 input[type=checkbox]:checked + label.level-2-label {
  color: #a0052c;
  background-color: #ffffff;
}

.acc-top-1 a:hover {
  color: #a0052c;
}

.acc-top-1 label.level-1-label::after {
  /* image icon */
  left: 29px;
  width: 30px;
  height: 24px;
  background: url(../img/02AcademicIntegrity.svg) no-repeat 0 0;
}

.acc-top-1.special label.level-1-label::after {
  /* image icon */
  background: url(../img/02AcademicIntegrityNeg.svg) no-repeat 0 0;
}

/*acc-top-2*/

.acc-top-2 label.level-1-label:hover {
  color: #ffffff;
  background-color: #005d98;
}

.acc-top-2 input[type=checkbox]:checked + label.level-1-label {
  color: #ffffff;
  background-color: #005d98;
}

.acc-top-2 input[type=checkbox]:checked + label.level-1-label::after {
  background: url(../img/03AcademicStudySkillsNeg.svg) no-repeat 0 0;
}

.acc-top-2 li label.level-2-label:hover {
  color: #005d98;
  background-color: #ffffff;
}

.acc-top-2 input[type=checkbox]:checked + label.level-2-label {
  color: #005d98;
  background-color: #ffffff;
}

.acc-top-2 a:hover {
  color: #005d98;
}

.acc-top-2 label.level-1-label::after {
  /* image icon */
  left: 28px;
  width: 30px;
  height: 24px;
  background: url(../img/03AcademicStudySkills.svg) no-repeat 0 0;
}

.acc-top-2.special label.level-1-label::after {
  /* image icon */
  background: url(../img/03AcademicStudySkillsNeg.svg) no-repeat 0 0;
}

/*acc-top-3*/

.acc-top-3 label.level-1-label:hover {
  color: #ffffff;
  background-color: #c19c1a;
}

.acc-top-3 input[type=checkbox]:checked + label.level-1-label {
  color: #ffffff;
  background-color: #c19c1a;
}

.acc-top-3 input[type=checkbox]:checked + label.level-1-label::after {
  background: url(../img/04AcademicWritingSkillsNeg.svg) no-repeat 0 0;
}

.acc-top-3 label.level-2-label:hover {
  color: #c19c1a;
  background-color: #ffffff;
}

.acc-top-3 input[type=checkbox]:checked + label.level-2-label {
  color: #c19c1a;
  background-color: #ffffff;
}

.acc-top-3 a:hover {
  color: #c19c1a;
}

.acc-top-3 label.level-1-label::after {
  /* image icon */
  /*top: 20px;*/
  left: 24px;
  width: 30px;
  height: 24px;
  background: url(../img/04AcademicWritingSkills.svg) no-repeat 0 0;
}

.acc-top-3.special label.level-1-label::after {
  /* image icon */
  background: url(../img/04AcademicWritingSkillsNeg.svg) no-repeat 0 0;
}

/*acc-top-4*/

.acc-top-4 label.level-1-label:hover {
  color: #ffffff;
  background-color: #900800;
}

.acc-top-4 input[type=checkbox]:checked + label.level-1-label {
  color: #ffffff;
  background-color: #900800;
}

.acc-top-4 input[type=checkbox]:checked + label.level-1-label::after {
  background: url(../img/05ItSkillsNeg.svg) no-repeat 0 0;
}

.acc-top-4 label.level-2-label:hover {
  color: #900800;
  background-color: #ffffff;
}

.acc-top-4 input[type=checkbox]:checked + label.level-2-label {
  color: #900800;
  background-color: #ffffff;
}

.acc-top-4 a:hover {
  color: #900800;
}

.acc-top-4 label.level-1-label::after {
  /* image icon */
  top: 20px;
  left: 26px;
  width: 30px;
  height: 24px;
  background: url(../img/05ItSkills.svg) no-repeat 0 0;
}

.acc-top-4.special label.level-1-label::after {
  /* image icon */
  background: url(../img/05ItSkillsNeg.svg) no-repeat 0 0;
}

/*acc-top-5*/

.acc-top-5 label.level-1-label:hover {
  color: #ffffff;
  background-color: #1b4c12;
}

.acc-top-5 input[type=checkbox]:checked + label.level-1-label {
  color: #ffffff;
  background-color: #1b4c12;
}

.acc-top-5 input[type=checkbox]:checked + label.level-1-label::after {
  background: url(../img/06NumericalSkillsNeg.svg) no-repeat 0 0;
}

.acc-top-5 label.level-2-label:hover {
  color: #1b4c12;
  background-color: #ffffff;
}

.acc-top-5 input[type=checkbox]:checked + label.level-2-label {
  color: #1b4c12;
  background-color: #ffffff;
}

.acc-top-5 a:hover {
  color: #1b4c12;
}

.acc-top-5 label.level-1-label::after {
  /* image icon */
  top: 20px;
  left: 27px;
  width: 30px;
  height: 24px;
  background: url(../img/06NumericalSkills.svg) no-repeat 0 0;
}

.acc-top-5.special label.level-1-label::after {
  /* image icon */
  background: url(../img/06NumericalSkillsNeg.svg) no-repeat 0 0;
}

/*acc-top-6*/

.acc-top-6 label.level-1-label:hover {
  color: #ffffff;
  background-color: #cc3600;
}

.acc-top-6 input[type=checkbox]:checked + label.level-1-label {
  color: #ffffff;
  background-color: #cc3600;
}

.acc-top-6 input[type=checkbox]:checked + label.level-1-label::after {
  background: url(../img/07ResearchSkillsNeg.svg) no-repeat 0 0;
}

.acc-top-6 label.level-2-label:hover {
  color: #cc3600;
  background-color: #ffffff;
}

.acc-top-6 input[type=checkbox]:checked + label.level-2-label {
  color: #cc3600;
  background-color: #ffffff;
}

.acc-top-6 a:hover {
  color: #cc3600;
}

.acc-top-6 label.level-1-label::after {
  /* image icon */
  top: 20px;
  left: 26px;
  width: 30px;
  height: 24px;
  background: url(../img/07ResearchSkills.svg) no-repeat 0 0;
}

.acc-top-6.special label.level-1-label::after {
  /* image icon */
  background: url(../img/07ResearchSkillsNeg.svg) no-repeat 0 0;
}