.mockup_image {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: .25rem;
    border-radius: 2rem;
    border: 2px solid var(--stroke-default);
    background: #FFF;
    box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);

}
.mockup_image.img-mobile {
    transform: rotate(14deg);
    transform-origin: center;
    max-width: 76%;
    width: 20rem;
    margin-top:2rem
}
.mockup_shadow {
    border-radius: 1.75rem;
    padding: .25rem;
    background: #FFF;
    box-shadow: 0px 0px 6px 2px rgba(10, 13, 18, 0.08) inset, 0px 0px 4px 2px rgba(10, 13, 18, 0.03) inset;

}
.mockup_image img {
    border-radius: 1.5rem;
    border: 2px solid var(--menu-hover);
    background: var(--Background-Subtle);
}

.anim-overlap-top-img.anim-visible {
  -webkit-animation: anim-overlap-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: anim-overlap-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes anim-overlap-top {
  0%{
    -webkit-transform: translate(calc(-14% - 0.5rem), 34%);
    transform: translate(calc(-14% - 0.5rem), 34%);
    opacity: 0;
  }
  100%{
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
  }
}
.anim-overlap-bottom-img.anim-visible {
  -webkit-animation: anim-overlap-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: anim-overlap-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes anim-overlap-bottom {
  0%{
    -webkit-transform: translate(calc(14% + 0.5rem), -34%);
    transform: translate(calc(14% + 0.5rem), -34%);
    opacity: 0;
  }
  100%{
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
}
