@charset "UTF-8";

/* fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;700;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');
@font-face {
  font-family: 'GenWanMin2TW';
  src: url('./GenWanMin2TW-SB.woff2') format('woff2'),
       url('./GenWanMin2TW-SB.woff') format('woff');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}

/* color schema */
:root {
  --color-primary: #8c1120;
  --color-secondary: #e52020;
  --color-info-text: #191919;
  --color-link: #3838c5;

  --color-shadow-rgb: 56, 56, 56;
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 0, 0, 0;
}

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  font-family: 'GenWanMin2TW', 'Noto Serif TC', sans-serif, 'Microsoft JhengHei', arial;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-info-text);
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  border: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  list-style: decimal;
  margin: 0;
  padding: 0;
}

p {
  margin: 1.2rem 0;
}

figure,
figcaption {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* layout */
body.fixed {
  overflow: hidden;
}

.container {
  position: relative;
  width: 94%;
  max-width: 1200px;
  margin: auto;
}

.wrapper {
  padding: 3rem 0;
  width: 94%;
  max-width: 900px;
  margin: auto;
}

.center {
  text-align: center;
}

.relative {
  position: relative;
}

.text-primary {
  color: var(--color-primary);
}

.decimal {
  list-style: decimal;
  list-style-type: decimal;
}

.description {
  display: flex;
  justify-content: center;
  text-align: left;
}

.title {
  font-size: 1.8rem;
  margin: 1.6rem 0;
  color: var(--color-primary);
  letter-spacing: 0.3rem;
}

.subtitle {
  font-size: 1.2rem;
  margin: 1.4rem 0;
  color: var(--color-primary);
  letter-spacing: 0.2rem;
}

.more {
  position: relative;
  display: inline-block;
  width: 170px;
  font-size: 1rem;
  color: white;
  background-image: url('../images/more.png?0209');
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: left top;
  margin-top: 1.5rem;
  padding: 0.7rem 0;
  border-radius: 999px;
  overflow: unset !important;
}

.more::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: solid 4px rgba(var(--color-white-rgb), .7);
  filter: blur(1px);
  -webkit-filter: blur(1px);
}

.more span {
  margin-right: -0.2em;
}

.more.shadow-style .shadow-style-content::after {
  border-radius: 999px;
}

.shadow-style {
  overflow: hidden;
  box-shadow:
    0 0 4px rgba(var(--color-white-rgb), .4),
    2px 2px 7px rgba(var(--color-shadow-rgb), .7);
}

.shadow-style .shadow-style-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.8rem;
  box-shadow: inset 0 0 8px white;
  pointer-events: none;
}

.radius-backdrop-top::before,
.radius-backdrop-center::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #eaeaea;
}

.radius-backdrop-top::before {
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
  height: 50%
}

/* header */
header {
  position: fixed;
  width: 96%;
  top: 1%;
  left: 2%;
  z-index: 2;
}

header > div {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  border: solid 1px white;
  border-radius: 999px;
  box-shadow: 3px 3px 10px rgba(63, 63, 63, .15);
  padding: 0.6rem 1rem;
  background: linear-gradient(
    60deg,
    rgba(var(--color-white-rgb), .5) 0,
    rgba(var(--color-white-rgb), 0) 17.5%,
    rgba(var(--color-white-rgb), .4) 41%,
    rgba(var(--color-white-rgb), 0) 75%,
    rgba(var(--color-white-rgb), .5) 100%
  );
  opacity: 1;
  transition: .5s;
}

header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}

header.hide {
  pointer-events: none;
}

header.hide::before {
  display: none;
}

header.dark > div {
  background: rgba(0, 0, 0, .6);
  border: solid 1px #adadad;
}

header.hide > div {
  top: -5%;
  opacity: 0;
  pointer-events: none;
}

header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 200px;
}

header .logo img {
  filter: drop-shadow(1px 1px 2px rgba(var(--color-shadow-rgb), .45));
}

nav {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(var(--color-black-rgb), .9);
}

nav.active {
  display: block;
  z-index: 99;
}

nav > ul {
  margin-top: 60px;
  text-align: center;
  height: calc(100% - 60px);
  overflow-x: auto;
}

nav ul li {
  position: relative;
}

nav ul li.active a {
  color: #bfa97a;
}

nav ul a {
  position: relative;
  display: block;
  color: white;
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
  text-shadow: 2px 2px 3px rgba(var(--color-shadow-rgb), .45);
}

nav ul a.hasChild:has(+ ul)::after  {
  content: '▾';
  position: absolute;
  letter-spacing: 0;
  top: 50%;
  transform: rotate(0) translate(0, -50%);
  text-shadow: none;
}

nav ul a.hasChild:has(+ ul.active)::after {
  transform: rotate(180deg) translate(0, 50%);
}

nav ul ul {
  display: none;
}

nav ul ul.active {
  display: block;
}

nav ul ul li {
  margin: 0.2rem 0;
}

nav ul ul li a {
  font-size: 1rem;
  display: inline-block;
  min-width: 75%;
  padding: 0.8rem 1.5rem;
  margin: auto;
  background: #474747;
  border-radius: 999px;
}

header .menuController {
  display: block;
  padding: 10px 5px;
  width: 40px;
  height: 40px;
}
header .menuController div {
  position: relative;
  height: 100%;
  border-top: solid 1px white;
}

header .menuController div::before,
header .menuController div::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background: white;
}

header .menuController div::before {
  top: 50%;
}

header .menuController div::after {
  bottom: 0;
}

header .menuClose {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  padding: 5px;
}

header .menuClose div {
  position: relative;
  height: 100%
}

header .menuClose div::before,
header .menuClose div::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: white;
}

header .menuClose div::before {
  transform: rotate(45deg);
}

header .menuClose div::after {
  transform: rotate(-45deg);
}

.goTop {
  position: fixed;
  display: none;
  width: 50px;
  right: 0.5rem;
  bottom: 0.5rem;
  transform: translate(0, -100%);
  z-index: 1;
}

#audioController {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  display: flex;
}

#audioController button {
  width: 50px;
  filter: grayscale(100%);
  opacity: .5;
}

#audioController button.active {
  filter: grayscale(0);
  opacity: 1;
}

#scrollHint {
  position: fixed;
  width: 60px;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
}

/* kv */
#kv {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: black;
}

#logo {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

#logo_left, #logo_right {
  position: absolute;
  width: 140%;
  opacity: .2;
  max-width: none;
  pointer-events: none;
}

#logo_left {
  bottom: 0;
  left: 0;
}

#logo_right {
  top: 0;
  right: -74%;
}

#logo_center {
  position: absolute;
  width: 42%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  opacity: 0;
  pointer-events: none;
}

#media {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: black;
}

#media .vedio-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 9 / 16;
  min-width: 100%;
  min-height: 100%;
}

#player {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#mediaMask {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1d242a;
}

#mediaMask.block {
  display: block;
}

#logoOut {
  height: 50vh;
}

/* highlights */
main {
  position: relative;
}

.horizontalArrow {
  position: absolute;
  width: 16px;
  height: 28px;
  top: 20px;
  opacity: 1;
  transition: 1s;
}

.horizontalArrow.hide {
  opacity: 0;
}

.horizontalArrow.arrowRight {
  transform: translate(0, -50%);
  right: 3rem;
}

.horizontalArrow.arrowLeft {
  transform: rotate(180deg) translate(0, 50%);
  left: 3rem;
}

.horizontalArrow img,
.horizontalArrow::before,
.horizontalArrow::after {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.horizontalArrow::before,
.horizontalArrow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url('../images/arrow-right.png');
  background-size: contain;
}

.horizontalArrow::before {
  right: -10px;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.horizontalArrow::after {
  right: -20px;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.pin-section {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.program_row {
  padding-left: 70px;
}

#innerRow {
  display: flex;
}

.program_card {
  position: relative;
  padding-top: 1rem;
  padding-right: 4rem;
  margin-top: 20px;
}

.program_card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: var(--color-info-text);
}

.program_card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  transform: translate(-25%, -50%);
  background-image: url('../images/ico-step.png');
  background-size: cover;
}

.program_card h4 {
  font-size: 2rem;
  font-family: 'Noto Sans TC';
  margin: 0.6rem 0;
}

.program_card ul {
  display: flex;
}

.program_card p,
.program_card h4 {
  display: block;
  width: 300px;
  line-height: 1.3;
}

.program_card .inner {
  width: 30vw;
  margin: 1rem 1.5rem 1rem 0;
  border-radius: 0.8rem;
}

.program_card .inner figure {
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.program_card .inner.is-cover {
  width: 16.875vw;
}

.program_card .inner.is-cover figure {
  aspect-ratio: 3/4;
}

.program_card .inner figure figcaption {
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  color: white;
  padding-bottom: 0.8rem;
  background: linear-gradient(
    180deg,
    rgba(var(--color-black-rgb), 0) 0,
    rgba(var(--color-black-rgb), 1) 100%
  );
}

.program_card .inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scroll-container {
  max-height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* figures */
.figures-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.figures-list li {
  width: 30%;
  border-radius: 0.8rem;
  margin: 0 1.5% 1.2rem 1%;
}

.figures-list li figure {
  position: relative;
  aspect-ratio: 25 / 56;
}

.figures-list li figure .name {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 2rem;
  color: white;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  background: linear-gradient(
    180deg,
    rgba(var(--color-black-rgb), 0) 36%,
    rgba(var(--color-black-rgb), .8) 100%
  );
  writing-mode: vertical-rl;
}

.figures-list li figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.figures-list li figure figcaption {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding: 0.8rem;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  writing-mode: vertical-rl;
  color: white;
  transition: .5s;
  background: rgba(var(--color-black-rgb), .9);
}

/* tribute */
.tribute-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  margin-top: 2rem;
}

.tribute-list li {
  width: 44%;
  margin-left: 3%;
  margin-right: 3%;
  margin-bottom: 20px;
}

.tribute-list li figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.flip-card {
  position: relative;
  background-color: transparent;
  aspect-ratio: 100 / 163;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.card-inner.is-flipped {
  transform: rotateY(180deg);
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0.8rem;
  cursor: pointer;
  background: #999;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  overflow: hidden;
}

.back {
  transform: rotateY(180deg);
}

/* footer */
footer {
  font-size: 0.8rem;
  padding: 4rem 1rem;
  background: #1d242a;
  color: white;
}

footer p {
  margin: 0.7rem 0;
}

/* lightbox */
#lightbox {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

#lightbox.active {
  display: block;
}

#lightbox > div {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#lightbox .popup-mask {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--color-black-rgb), .65);
}

#lightbox .popup-wrapper {
  position: relative;
  width: 90%;
  height: 80%;
  max-width: 900px;
  border-radius: 0.8rem;
  background: white;
}

#lightbox .popup-content {
  position: relative;
  height: 100%;
  padding: 2rem 1.2rem;
  overflow-y: auto;
  background: linear-gradient(
    180deg,
    rgba(var(--color-white-rgb), 1) 50%,
    rgba(var(--color-white-rgb), .6) 100%
  );
}

#lightbox .popup-content article {
  max-width: 600px;
  margin: auto;
}

#lightbox .popup-content h5 {
  font-size: 1.2rem;
  margin: 2.5rem 0 0.5rem;
}

#lightbox .popup-content ul {
  list-style: disc;
  margin-left: 1.5rem;
}

#lightbox .popup-content ul li,
#lightbox .popup-content ol li {
  padding: 0.6rem 0;
  line-height: 1.3;
  color: var(--color-link);
}

#lightbox .popup-content a {
  text-decoration: underline;
  color: var(--color-link);
  opacity: 1;
}

#lightbox .popup-content h4 {
  font-size: 1.6rem;
  font-family: 'Noto Sans TC';
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

#lightbox .content-bg {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  
}

#lightbox .content-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .6;
  -o-object-fit: cover;
  object-fit: cover;
}

#lightbox .popup-close {
  position: absolute;
  width: 45px;
  top: 0;
  right: 0;
  z-index: 1;
}

@media screen and (width >= 640px) {
  .wrapper {
    padding: 5rem 0;
  }

  #media .vedio-wrapper {
    aspect-ratio: 16 / 9;
  }

  #logo_left, #logo_right {
    width: 70%;
  }

  #logo_right {
    right: -37%;
  }
  
  #logo_center {
    width: 17.5%;
  }

  #logoOut {
    height: 80vh;
  }

  .program_row {
    padding-left: 200px;
  }

  .program_card p,
  .program_card h4 {
    width: 450px;
  }

  .radius-backdrop-top::before {
    border-top-left-radius: 6rem;
    border-top-right-radius: 6rem;
    height: 35%
  }

  .figures-list {
    margin-top: 3rem;
  }

  .figures-list li {
    width: 18%;
    margin: 0 1%;
  }

  .figures-list li:nth-child(even) {
    margin-top: 10%;
  }

  .figures-list li:nth-child(3) {
    margin-top: -10%;
  }

  .tribute-list {
    justify-content: center;
    margin-top: 10%;
  }

  .tribute-list li:nth-child(2),
  .tribute-list li:nth-child(4),
  .tribute-list li:nth-child(7),
  .tribute-list li:nth-child(9) {
    transform: translate(0, -15%);
  }

  .tribute-list li:nth-child(1),
  .tribute-list li:nth-child(5),
  .tribute-list li:nth-child(6),
  .tribute-list li:nth-child(10) {
    transform: translate(0px, -30%);
  }

  .tribute-list li {
    width: 18%;
    margin-left: 1%;
    margin-right: 1%;
  }

  #lightbox .popup-wrapper {
    width: 70%;
    height: 80%;
  }
}


@media screen and (width >= 768px) {
  html, body {
    font-size: 17px;
  }

  .goTop {
    width: 60px;
    right: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
  }

  #audioController {
    right: 3rem;
  }

  #audioController button {
    width: 60px;
  }

  .shadow-style {
    box-shadow:
      0 0 6px rgba(var(--color-white-rgb), .4),
      4px 4px 10px rgba(var(--color-shadow-rgb), .7);
  }

  .shadow-style .shadow-style-content::after {
    box-shadow: inset 0 0 12px white;
  }

  .figures-list {
    padding: 0 6%;
  }

  .program_card p,
  .program_card h4 {
    width: 550px;
  }

  #lightbox .popup-wrapper {
    height: 70%;
  }

  #lightbox .popup-content h4 {
    font-size: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .description {
    text-align: center;
  }

  header {
    width: 90%;
    top: 3%;
    left: 5%;
  }

  header > div {
    box-shadow: 5px 5px 15px rgba(63, 63, 63, .15);
    padding: 0.8rem 2rem;
  }

  header .logo {
    width: 300px;
  }

  nav {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    background: none;
  }

  nav > ul {
    display: flex;
    margin-right: -1rem;
    margin-top: 0;
    height: auto;
    overflow-x: unset;
  }

  nav ul a {
    font-size: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  nav ul li::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0;
    top: -1px;
    background-color: white;
    box-shadow: 2px 2px 3px rgba(var(--color-shadow-rgb), .45);
  }

  nav ul li:last-child::after,
  nav ul ul li::after {
    display: none;
  }

  nav ul ul {
    position: absolute;
    bottom: -1.2rem;
    left: 50%;
    transform: translate(-50%, 100%);
    white-space: nowrap;
  }

  nav ul ul li a {
    width: 100%;
    background: rgba(var(--color-white-rgb), .2);
    border: solid 1px white;
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
  }

  header.dark nav ul ul li a {
    background: rgba(0, 0, 0, .6);
    border: solid 1px #adadad;
  }

  header .menuController,
  header .menuClose {
    display: none;
  }
}

@media screen and (width >= 1280px) {
  .wrapper {
    max-width: 1024px;
  }

  .more {
    font-size: 1.2rem;
    width: 210px;
  }

  .radius-backdrop-top::before {
    border-top-left-radius: 12rem;
    border-top-right-radius: 12rem;
  }

  .program_card p,
  .program_card h4 {
    width: 650px;
  }

  #lightbox .popup-close {
    width: 60px;
    right: 1rem;
    top: 0.6rem;
  }

  #lightbox .popup-content {
    padding: 4rem 2.5rem;
  }

  #lightbox .popup-content > div {
    max-width: 600px;
    margin: auto;
  }

  #lightbox .popup-content p {
    line-height: 1.8;
  }
}

@media screen and (width >= 1536px) {
  html, body {
    font-size: 19px;
  }

  .container {
    max-width: 1400px;
  }

  .radius-backdrop-top::before {
    border-top-left-radius: 15rem;
    border-top-right-radius: 15rem;
  }

  header > div {
    padding: 0.8rem 3rem;
  }

  .program_card p,
  .program_card h4 {
    width: 800px;
  }

  .program_card .inner {
    width: 25vw;
  }

  .program_card .inner.is-cover {
    width: 14.0625vw;
  }
}

@media (pointer: coarse) and (hover: none) {
  .program_card:last-child::before {
    width: 92%;
  }

  .program_card .inner {
    width: 60vw;
    margin: 1rem 1.2rem 1rem 0;
  }

  .program_card .inner.is-cover {
    width: 33.75vw;
  }
}

@media (pointer: coarse) and (hover: none) and (width >=  480px) {
  .program_card .inner {
    width: 40vw;
  }

  .program_card .inner.is-cover {
    width: 22.5vw;
  }
}

@media (hover: hover) {
  nav ul a:hover {
    color: #bfa97a;
  }

  .dark nav ul a:hover {
    filter: initial;
  }

  #lightbox .popup-content a:hover {
    opacity: 0.7;
  }

  .figures-list li:hover figure figcaption {
    opacity: 1;
  }
}

/* animation */
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-20px, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(20px, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-20px, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(20px, 0);
  }
}