:root {
  --font-size-50: 11px;
  --font-size-75: 14px;
  --font-size-100: 17px;
  --font-size-200: 21px;
  --font-size-250: 22px;
  --font-size-300: 27px;
  --font-size-400: 33px;
  --font-size-500: 42px;
  --font-size-600: 52px;
  --font-size-700: 65px;
  --font-size-800: 81px;
  --font-size-900: 101px;
  --font-size-1000: 127px;
  --font-size-1100: 158px;
  --font-size-1200: 198px;
  --font-size-1300: 247px;
  --font-size-1400: 309px;
  --font-size-1500: 387px;
  --line-height-50: 17px;
  --line-height-75: 19px;
  --line-height-100: 23px;
  --line-height-200: 27px;
  --line-height-250: 30px;
  --line-height-300: 33px;
  --line-height-400: 39px;
  --line-height-500: 48px;
  --line-height-600: 72px;
  --line-height-700: 63px;
  --line-height-800: 79px;
  --line-height-900: 98px;
  --line-height-1000: 123x;
  --line-height-1100: 154px;
  --line-height-1200: 192px;
  --line-height-1300: 240px;
  --line-height-1400: 300px;
  --line-height-1500: 375px;
}

.masonry-gallery .load-container {
  display: flex;
  justify-content: center;
}
.masonry-gallery .load-container.toggled {
  animation: toggle 1s forwards;
}
.masonry-gallery button {
  margin-top: 30px;
  background: #F0ECEC;
  color: #83859F;
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 21px;
  padding: 13px 18px;
  border-radius: 8px;
}

.masonry-outer {
  overflow: hidden;
  position: relative;
  transition: 2s;
  height: 100%;
  max-height: 575px;
}
.masonry-outer.toggled {
  max-height: 5000px;
}
.masonry-outer.toggled .masonry-overlay {
  animation: toggle 1s forwards;
  display: none;
}
.masonry-outer .masonry { /* Masonry container */
  column-count: 2;
  transition: 2s;
}
@media (min-width: 768px) {
  .masonry-outer .masonry {
    column-count: 4;
    column-gap: 1em;
  }
}
.masonry-outer .masonry .masonry-item { /* Masonry bricks or child elements */
  background-color: #eee;
  margin: 0 0 1em;
  width: 100%;
}
.masonry-outer .masonry .masonry-item, .masonry-outer .masonry .masonry-item img {
  border-radius: 20px;
}
.masonry-outer .masonry-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(246, 246, 246);
  background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, rgba(246, 246, 246, 0) 70%, rgb(246, 246, 246) 100%);
}
.masonry-outer h2 {
  color: #42445C;
  font-size: var(--font-size-200);
  line-height: var(--line-height-200);
}
@media (min-width: 768px) {
  .masonry-outer h2 {
    font-size: var(--font-size-300);
    line-height: var(--line-height-300);
  }
}
.masonry-outer h3 {
  color: #42445C;
  font-size: var(--font-size-400);
  line-height: var(--line-height-400);
}

@keyframes toggle {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

/*# sourceMappingURL=masonry-gallery.css.map */
