.content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-right: 20px;

  h1 {
    margin: 0;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 130%;
    color: #1d1d1d;
  }

  ul {
    padding: 0;
    padding-left: 25px;
    margin: 10px 0px;

    li {
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 300;
      font-size: 16px;
      line-height: 130%;
      color: #1d1d1d;
    }
  }

  span {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: #1d1d1d;
  }
}

.hidden_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s;
  height: 100%;
  transition: opacity 0.2s;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 111 !important;
  background: #fff;

  a {
    transition: all 0.2s;
    display: flex;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 130%;
    padding: 14px 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid #004225;
    border-radius: 10px;
    color: #004225;
    margin-top: 15px;

    &:hover {
      color: #fff;
      background: #004225;
    }
  }
  //   &::after {
  //     content: '';
  //     position: absolute;
  //     bottom: -7px;
  //     right: 11px;
  //     width: 20px;
  //     z-index: -1;
  //     right: 11px;
  //     height: 20px;
  //     background: #fff;
  //     transform: rotate(45deg);
  //     border-radius: 4px;
  //   }
}

@media (max-width: 1024px) {
  .hidden_content {
    flex-direction: column;
    bottom: 70px;
    left: 0px;
    width: 100%;
    height: auto;
    top: unset;
  }
  .content {
    flex-direction: column;

    ul {
      flex-direction: column;
    }
  }
}
