h1 {
  font-size: 40px;
  text-align: center;
}

.get_look {
  margin-top: 60px;
}
.get_look .holder {
  padding: 30px;
  max-width: 1340px;
  margin: 0 auto;
}
.get_look .holder .grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
.get_look .holder .grid .box {
  aspect-ratio: 3/4;
  position: relative;
  z-index: 0;
}
.get_look .holder .grid .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.get_look .holder .grid .box .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.get_look .holder .grid .box .canvas .marker {
  position: absolute;
  z-index: 1;
  width: 16px;
  aspect-ratio: 1;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-6px, -6px);
}
.get_look .holder .grid .box .canvas .marker::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 16px;
  aspect-ratio: 1;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  border: 1px solid #fff;
  animation-name: marker_animation;
  animation-fill-mode: backwards;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.get_look .holder .grid .box .canvas .marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 44px;
  }
  .get_look {
    margin: 80px 0 0;
  }
  .get_look .holder {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 1400px) {
  .get_look .holder {
    padding: 40px 0;
  }
}/*# sourceMappingURL=get_the_look.css.map */