.headerOfAccordion, h2 {
  color: #124734;
}

.headerOfAccordion {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 400;
  background-color: white;

    }

.headerOfItemOfAccordion {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  background-color: #fefffa;
  margin: 0;
  cursor: pointer;
}

.usfullAccordion p {
  color: black;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  font-weight: 400;
  margin-left: 57px;
}

.usfullAccordion  {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
.usfullAccordion  li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px solid  #124734;
}
.usfullAccordion li:nth-of-type(1) {
  animation-delay: 0.5s;
}
.usfullAccordion li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.usfullAccordion li:nth-of-type(3) {
  animation-delay: 1s;
}
.usfullAccordion li:last-of-type {
  padding-bottom: 0;
}
.usfullAccordion li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
.usfullAccordion li i:before, .usfullAccordion li i:after {
  content: "";
  position: absolute;
  background-color: #124734;
  width: 3px;
  height: 9px;
}
 .usfullAccordion li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
 .usfullAccordion li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.usfullAccordion li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
 .usfullAccordion li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
 .usfullAccordion li input[type=checkbox]:checked ~ .nestedList {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
 .usfullAccordion li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
 .usfullAccordion li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

.headSpan {
  display: inline-block;
  background-color: white;
  position: relative;
  z-index: 2;
  padding-right: 50px;
  font-weight: 600;
}
.headSpan span:nth-of-type(1) {
  color: #124734;
}
.headSpan span:nth-of-type(2) {
  color: #8A8800;
}
.nestedList{
  /* list-style: square; */
  padding-left: 74px;
  padding-bottom: 15px;


}
.nestedList .nestedLI {
  border: none;
  font-weight: 600;

}
.borderText  {
  position: relative;
  z-index: 200;
  padding-right: 15px;
  background-color: white;
  color: #124734;
}
 .borderText::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 1px;
  background-color: #124734;
  z-index: 1;
  opacity: 0.5;
}
.imageIcon{
  margin-right: 10px;
}
  /* Hover Effect */
  .logout-btn:hover {
    background-color: #45b890 !important;
    color: #fff !important;
    }
