@-webkit-keyframes blurin {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  20% {
    opacity: 1;
  }
  100% {
    filter: blur(0);
  }
}
@keyframes blurin {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  20% {
    opacity: 1;
  }
  100% {
    filter: blur(0);
  }
}
body#shop .pagetitle {
  background-image: url("../images/shop/pagetitle_bg.jpg");
}
body#shop .main .section .container {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (max-width: 768px) {
  body#shop .main .section .container {
    gap: 8.3333333333vw;
  }
}
body#shop .main .section picture {
  width: 100%;
  aspect-ratio: 5/2;
}
body#shop .main .section picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body#shop .main .section .googlemap {
  width: 100%;
  height: 30rem;
}
@media (max-width: 768px) {
  body#shop .main .section .googlemap {
    height: 100vw;
  }
}
body#shop .main .section .googlemap iframe {
  width: 100%;
  height: 100%;
}