/** Shopify CDN: Minification failed

Line 209:0 Unexpected "}"

**/
.akta-build-a-box {
  position: relative;
  overflow: visible;
  /* Allow image to break out if needed */
  padding: 4rem 0;
  /* Space for the image overlap */
}

.akta-build-a-box__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 70%;
  min-height: min(502px, 70%);
  /* Adjust this to control how much "thinner" the background is compared to the image */
  transform: translateY(-50%);
  background-color: var(--bg-color, #b8bfa8);
  z-index: 0;
  display: block !important;
}

.akta-build-a-box .page-width {
  position: relative;
  z-index: 1;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.akta-build-a-box__container {
  display: flex;
  align-items: center;
  gap: 6rem;
}

/* Image Side */
.akta-build-a-box__image-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.akta-build-a-box__image-wrapper {
  position: relative;
  max-width: 100%;
  padding-bottom: 100%;
  width: 554px;
  height: 541px;
  aspect-ratio: 554/541;
}

/* The thin border box behind the image */
.akta-build-a-box__image-wrapper::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -7px;
  right: 7px;
  bottom: -7px;
  border: 1px solid #DCD1CB;
  /* Light border color */
  pointer-events: none;
  z-index: 2;
}

.akta-build-a-box__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* subtle shadow for depth */
}

/* Text Side */
.akta-build-a-box__text-col {
  flex: 1;
  color: var(--text-color, #ffffff);
}

.akta-build-a-box__heading {
  color: var(--Color-Scheme-1-Foreground, #FFF);
  font-family: Freight;
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 24px;
}

.akta-build-a-box__text {
  margin-bottom: 44px;
  max-width: 648px;
  color: var(--text-color, #ffffff);
  font-family: Gilroy;
  font-size: var(--Text-Sizes-Text-Medium, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

.akta-build-a-box__btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--text-color, #ffffff);
  border-radius: 44px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;

  color: var(--text-color, #ffffff);
  font-family: Gilroy;
  font-size: var(--Text-Sizes-Text-Regular, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

.akta-build-a-box__btn:hover {
  background-color: var(--text-color, #4c503d);
  color: var(--bg-color, #ffffff);
}

.akta-build-a-box__icon {
  margin-top: 2rem;
  display: block;
  width: 40px;
  height: auto;
  opacity: 0.8;
  margin-left: auto;
  /* Align right as per image? Or maybe it's decorative */
}

/* Responsive */
@media screen and (max-width: 990px) {
  .akta-build-a-box {
    padding: 0 0 2rem 0;
  }

  .akta-build-a-box__bg {
    height: 60%;
    /* Cover bottom 60% of section */
    top: auto;
    bottom: 0;
    transform: none;
    border-radius: 0;
  }

  .akta-build-a-box__container {
    flex-direction: column;
    gap: 2rem;
  }

  .akta-build-a-box__image-col {
    flex: 0 0 100%;
    width: 288px;
    height: 281px;
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 2rem;
    aspect-ratio: 288/281;
    /* Push down to overlap background start */
  }

  /* Ensure image overlaps background */
  .akta-build-a-box__image-wrapper {
    margin-bottom: 2rem;
    width: 288px !important;
    height: 281px !important;
    aspect-ratio: 288/281 !important;
  }

  .akta-build-a-box__text-col {
    text-align: center;
    padding: 0 1rem 1rem;
    position: relative;
    z-index: 2;
  }

  .akta-build-a-box__text {
    margin-left: auto;
    margin-right: auto;
  }

  .akta-build-a-box__heading {
    font-size: 44px;
  }

  /* Adjust border offset for mobile to be contained */
  .akta-build-a-box__image-wrapper::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
}

/* Animations */
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}