
  
  .wrapper {
    margin: 0px auto;
    width: 100%;
    display: block;
    text-align: center;
    transition: 0.15s ease;
    border-bottom: 1px solid rgba(139, 139, 139, 0.64);
    /* border-top:  1px solid rgba(139, 139, 139, 0.64); */
    padding-top: 20px;
    padding-bottom: 5px;
  }
  .wrapper.active .arrow {
    transform: rotate(45deg) translate(-5px, -5px);
  }
  .wrapper.active .arrow:before {
    transform: translate(10px, 0);
  }
  .wrapper.active .arrow:after {
    transform: rotate(90deg) translate(10px, 0);
  }
  .wrapper.active ul {
    opacity: 1;
    height: auto;
  }

  
  .wrapper3 .arrow {
    transform: rotate(0);
    left: 0;
  }
  .wrapper3 .arrow:before, .wrapper3 .arrow:after {
    background-color: transparent;
    width: 3px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid rgb(0, 0, 0);
    top: 0;
    left: 0;
    transform: rotate(0);
    border-radius: 10px;
  }
  .wrapper3 .arrow:before {
    transform: rotate(-135deg);
  }
  .wrapper3 .arrow:after {
    transform: rotate(135deg);
  }
  .wrapper3.active .arrow {
    transform: rotate(0);
    transform: translate(0, -6px);
  }
  .wrapper3.active .arrow:before {
    transform: rotate(-45deg);
  }
  .wrapper3.active .arrow:after {
    transform: rotate(45deg);
  }
  
  .arrow {
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    bottom: 0px;
    left: -10px;
    transition: 0.4s ease;
    margin-top: 2px;
    text-align: left;
    transform: rotate(45deg);
    float: right;
  }
  .arrow:before, .arrow:after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 12px;
    height: 3px;
    background-color: #000000;
    transition: 0.4s ease;
  }
  .arrow:after {
    position: absolute;
    transform: rotate(90deg);
    top: -5px;
    left: 5px;
  }
  
  .click-text {
    display: block;
    text-align: left;
    padding: 0 0px 16px;
    margin: 0;
    cursor: pointer;
    color: rgb(0, 0, 0);
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    transition: 0.15s ease;
  }
  .click-text:hover {
    color: rgb(0, 0, 0);
    border-bottom-color: rgba(0, 0, 0, 0.4);
  }
  
 .wrapper3 ul {
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.4s ease;
  }
  
 .wrapper3 ul li {
    list-style-type: none;
    margin: 0 auto;
    padding: 4px 12px;
    text-align: left;
    cursor: pointer;
    color:black!important;
  }
  /* .wrapper3 ul li:first-child {
    margin-top: 12px;
  } */
  .wrapper3 ul li:last-child {
    margin-bottom: 12px;
  }

  .wrapper3 ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }