@charset "UTF-8";

.blocks-keys-toggle {
    padding: 2rem 0;
  }

.blocks-keys {
    display: flex;
    gap: 1rem;
  }
  .blocks-keys > a {
    width: 100%;
    min-height: 250px;
    text-decoration: none;
    background: red;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    color:#ffffff;
    text-transform: uppercase;
    transition: all ease-in 150ms;
  }

  .blocks-keys > a:hover {
    transform: scale(1.05);
  }

  .blocks-keys > a:after {
    content:"";
    display: block;
    height: 20px;
    width: 100%;
    position: absolute;
    bottom: 0;


    display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: red transparent transparent;
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
  }

  .blocks-keys > a.active:after {
    bottom: -20px;
  }


  .blocks-content > div {
    padding: 2rem;
    background: red;
    color:#ffffff;
    visibility: hidden;
    display: none;
    transition: all ease-in 250ms;
    margin-top: -30px;
  }

  .blocks-content > div.hidden {
    visibility: hidden;
    margin-top: -30px;
  }

  .blocks-content > div.visible {
    visibility: visible;
    display: block;
    margin-top: 0;
    }


  .blocks-content {
    margin-top: 2rem;
  }

  .blocks-content > div.active {
    display: block;
  }
