/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** get breakpoint */
/** font size */
/** keyframe */
.sc-grid .grid-wrapper {
  gap: 40px;
  align-items: center;
}
@media only screen and (min-width: 96rem) {
  .sc-grid .grid-wrapper {
    gap: 80px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .sc-grid .grid-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.sc-grid .cell {
  flex: 1;
  width: 50%;
}
@media only screen and (max-width: 63.99875rem) {
  .sc-grid .cell {
    width: 100%;
    flex: none;
  }
}
.sc-grid .cell-text .heading-title {
  margin-bottom: 20px;
}
.sc-grid .cell-text .content {
  font-size: 16px;
  line-height: 1.65;
  color: #6e6e6e;
}
.sc-grid .cell-image .img-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.sc-grid .cell-image .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}
.sc-grid.layout-center_title .heading-center {
  max-width: 800px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-grid.layout-center_title .heading-center {
    margin-bottom: 24px;
    max-width: 100%;
  }
}
.sc-grid.layout-center_title .heading-center span {
  color: #000000;
}
.sc-grid.layout-center_title .grid-wrapper {
  gap: 40px;
}
@media only screen and (min-width: 96rem) {
  .sc-grid.layout-center_title .grid-wrapper {
    gap: 60px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .sc-grid.layout-center_title .grid-wrapper {
    gap: 30px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .sc-grid.layout-image_left .grid-wrapper {
    flex-direction: column-reverse;
  }
}

.sc-gallery .heading-center {
  max-width: 1000px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-gallery .heading-center {
    margin-bottom: 24px;
    max-width: 100%;
  }
}
.sc-gallery .gallery-wrapper {
  background-color: #f8f8f8;
  border-radius: 14px;
  padding: 14px 14px 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-gallery .gallery-wrapper {
    padding: 12px 0 30px;
  }
}
.sc-gallery .gallery-wrapper .gallery-batches {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sc-gallery .gallery-wrapper .gallery-batches {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .sc-gallery .gallery-wrapper .gallery-batches {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .sc-gallery .gallery-wrapper .gallery-batches {
    margin-bottom: 2.8125rem;
  }
}
.sc-gallery .gallery-wrapper .gallery-batch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sc-gallery .gallery-wrapper .gallery-batch .batch-row {
  display: grid;
  gap: 12px;
}
.sc-gallery .gallery-wrapper .gallery-batch .batch-top {
  grid-template-columns: repeat(2, 1fr);
}
.sc-gallery .gallery-wrapper .gallery-batch .batch-bottom {
  grid-template-columns: 1.4fr 0.85fr 1.6fr 1.35fr;
}
@media only screen and (max-width: 63.99875rem) {
  .sc-gallery .gallery-wrapper .gallery-batch .batch-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sc-gallery .gallery-wrapper .gallery-batch .batch-bottom .item-small {
  aspect-ratio: unset;
  height: 280px;
}
@media only screen and (max-width: 63.99875rem) {
  .sc-gallery .gallery-wrapper .gallery-batch .batch-bottom .item-small {
    height: 220px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .sc-gallery .gallery-wrapper .gallery-batch .batch-bottom .item-small {
    height: auto;
    aspect-ratio: 4/3;
  }
}
.sc-gallery .gallery-wrapper .gallery-batch .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #f4f4f4;
}
.sc-gallery .gallery-wrapper .gallery-batch .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.sc-gallery .gallery-wrapper .gallery-batch .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
.sc-gallery .gallery-wrapper .gallery-batch .gallery-item:hover img {
  transform: scale(1.04);
}
.sc-gallery .gallery-wrapper .gallery-batch .item-big {
  aspect-ratio: 2/1;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-gallery .gallery-wrapper .gallery-batch .item-big {
    aspect-ratio: 4/3;
  }
}
.sc-gallery .gallery-wrapper .gallery-batch .item-small {
  aspect-ratio: 4/3;
}
.sc-gallery .gallery-wrapper .btn-wrap {
  display: flex;
  justify-content: center;
}
.sc-gallery .gallery-wrapper .btn-wrap .btn-main {
  margin-top: 0;
}
.sc-gallery .gallery-wrapper .btn-wrap .btn-main svg {
  transition: transform 0.3s ease;
}
.sc-gallery .gallery-wrapper .btn-wrap .btn-main.is-collapse svg {
  transform: rotate(-90deg);
}
.sc-gallery .gallery-wrapper .btn-wrap .btn-main.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.sc-gallery .gallery-wrapper .btn-wrap .btn-main.is-loading svg {
  display: none !important;
}
.sc-gallery .gallery-wrapper .btn-wrap .btn-main.is-loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-spinner 0.6s linear infinite;
}

@keyframes btn-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}