.js-menu-card {
  transition: all 0.3s;
  cursor: pointer;
}

.p-menu__img {
  transition: all 0.3s;
}

.js-menu-card:hover .p-menu__img {
  opacity: 0.8;
}

.p-menu__modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s;
}

.p-menu__modal.is-active {
  opacity: 1;
  visibility: visible;
}

.p-menu__modal picture {
  max-width: calc(100% - 3.125rem);
  width: 50rem;
  position: relative;
  z-index: 1;
}

.p-menu__modal a {
  display: block;
  margin-top: 1rem;
}

.p-menu__modalbg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.6;
}

.p-about::after {
  display: none;
}/*# sourceMappingURL=modal.css.map */