@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.main {
  margin: 0 var(--small-space) 10em var(--small-space);
}

.images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 480px) {
  .images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 640px) {
  .images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .images {
    grid-template-columns: repeat(4, 1fr);
  }
}

.title {
  display: block;
}

.text {
  display: none;
}
.text p {
  margin-bottom: 1em;
}

.blocks > *:first-child {
  margin-top: 2em;
}
.blocks h2,
.blocks h3,
.blocks h4 {
  font-size: 1em;
  font-weight: normal;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.blocks p {
  margin-bottom: 0.5em;
}

.list {
  transition: opacity 0.3s ease;
  margin-bottom: 1em;
}
.list .list-item-wrapper {
  display: flex;
  justify-content: flex-start;
}
.list .track-clickable {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 1.5em;
}
.list .track-clickable > * {
  display: inline-block;
  white-space: nowrap;
  pointer-events: none;
}
.list .track-clickable .shape-wrapper {
  margin-right: 0.5em;
}
.list .track-clickable .shape {
  height: 1em;
  width: 1em;
  min-width: 1em;
  color: inherit;
  overflow: hidden;
  transition: background-color 0.2s ease, -webkit-clip-path 0.2s ease;
  transition: clip-path 0.2s ease, background-color 0.2s ease;
  transition: clip-path 0.2s ease, background-color 0.2s ease, -webkit-clip-path 0.2s ease;
}
.list .track-clickable .shape:hover {
  cursor: pointer;
}
.list .track-clickable .shape > div {
  position: absolute;
  transition: transform 0.2s ease;
}
.list .track-clickable .shape div:nth-child(1) {
  border-bottom: 1px solid;
  transition: transform 0.2s ease, margin-top 0.2s ease;
  width: 1em;
  margin-top: 0;
}
.list .track-clickable .shape div:nth-child(2) {
  border-left: 1px solid;
  height: 1em;
  margin-left: calc(1em - 1px);
  transition: margin 0.2s ease, height 0.2s ease;
}
.list .track-clickable .shape div:nth-child(3) {
  border-top: 1px solid;
  margin-top: calc(1em - 1px);
  transition: transform 0.2s ease, margin-top 0.2s ease;
  width: 1em;
}
.list .track-clickable .shape div:nth-child(4) {
  border-left: 1px solid;
  height: 1em;
  margin-left: 0;
  transition: margin 0.2s ease, height 0.2s ease;
}

.track-clickable:hover .shape {
  -webkit-clip-path: polygon(0 0, 100% calc(50% - 0.5px), 100% calc(50% + 0.5px), 0% 105%);
          clip-path: polygon(0 0, 100% calc(50% - 0.5px), 100% calc(50% + 0.5px), 0% 105%);
}
.track-clickable:hover .shape div:nth-child(1) {
  transform: skew(0deg, 25.3deg);
  margin-top: calc(0.25em);
}
.track-clickable:hover .shape div:nth-child(2) {
  height: 0;
  margin-top: 0.5em;
}
.track-clickable:hover .shape div:nth-child(3) {
  transform: skew(0deg, -25.3deg);
  margin-top: calc(0.75em - 1px);
}
.track-clickable:hover .shape div:nth-child(4) {
  height: calc(1em - 2px);
  margin-top: 1px;
}
.track-clickable.is-active .shape {
  -webkit-clip-path: polygon(0 0, 100% calc(50%), 100% calc(50%), 0% 100%) !important;
          clip-path: polygon(0 0, 100% calc(50%), 100% calc(50%), 0% 100%) !important;
  background-color: #000;
}
