/** Shopify CDN: Minification failed

Line 138:10 Expected ":"

**/
/* .flex-container {
  position: relative;
  display: grid;
  max-width: 100%;
  width: 100%;
  height: 80svh;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
} */
.flex-container {
  margin: 60px 0px;
  position: relative;
  display: none;
  max-width: 100%;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 30px;
}

@media (min-width: 768px) {
  .flex-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 70svh;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* .space-3 > * + * {
  margin-top: 30px;
  margin-left: 30px;
} */

/* .flex-container > * + *  {
  margin-top: 30px;
  margin-left: 30px;
} */

.flex-item {
  width: 100%;
  height: calc(35svh - 15px);
  background-color: #0000000d;
  border-radius: 20px;
}

.flex-item:nth-of-type(2n) .block {
  flex-direction: row-reverse;
  left: 0;
}

.flex-item:nth-of-type(2n-1) .block {
  right: 0;
}

.flex-item:nth-last-child(-n+2) .block {
  bottom: 0;
}

.flex-item:nth-last-child(-n+2) .block {
  bottom: 0;
}

.flex-item .block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 20px;
  animation-duration: .5s;
  transition: all .5s ease-in-out;
  overflow: hidden;
}

.flex-item .block:hover {
  position: absolute;
  background-color: #f2f2f2;
  z-index: 50;
  animation-name: hover-in;
}

.flex-item .block:not(:hover) {
  animation-name: hover-out;
}

.center-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 450px;
}

.center-item img {
  width: 100%;
  display: block;
}
.block .block-media {
  width: 40%;
  opacity: 0;
}
.flex-item .block:hover .block-media {
  opacity: 1;
}
.block .block-media img {
  width: 100%;
  height: 100%;
}

.block .block-body {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  justify-content: center;
  width: 60%;
}

.block .block-body > * + * {
  margin-top: 0.65rem;
}

.block .block-body h3 {
  margin-bottom: 0px;
}

.block .block-body img {
    width: 56px;
    height 56px;
}

@keyframes hover-in {
  0% {
    width: 50%;
    height: 50%;
    background-color: #f2f2f2;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes hover-out {
  0% {
    position: absolute;
    background-color: #f2f2f2;
    z-index: 50;
  }

  100% {
    position: relative;
  }
}