.two-column-purpose {
  position: relative;
  padding: 100px 0;
  background-color: var(--two-column-purpose-bg, #f4f4f4);
  color: #1a1a1a;
  font-family: "Roboto", sans-serif;
}

.two-column-purpose--watermarked .two-column-purpose__content {
  position: relative;
  isolation: isolate;
}

.two-column-purpose__watermark {
  position: absolute;
  top: -40px;
  right: -20px;
  z-index: -1;
  width: 340px;
  max-width: 55%;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  user-select: none;
}

.two-column-purpose--watermarked .two-column-purpose__content > *:not(.two-column-purpose__watermark) {
  position: relative;
}

@media (max-width: 767px) {
  .two-column-purpose__watermark {
    top: -16px;
    right: -12px;
    width: 200px;
    max-width: 60%;
    opacity: 0.55;
  }
}

.two-column-purpose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.two-column-purpose__content {
  max-width: 650px;
}

/* .two-column-purpose__content .main_title {
  max-width: 500px;
} */

.two-column-purpose--image-left .two-column-purpose__media-wrap {
  order: -1;
}

.two-column-purpose--image-left .two-column-purpose__content {
  margin-left: auto;
}

.two-column-purpose__title {
  margin: 0;
  color: #002d72;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 120%;
}

.two-column-purpose__description p {
  color: #4A4A4A;
  font-weight: 400;
}

.two-column-purpose__lead p {
  margin: 20px 0 35px 0;
  color: #000000;
  font-size: 25px;
  font-weight: 300;
  line-height: 34px;
}

.two-column-purpose__description>*+* {
  margin-top: 20px;
}

.two-column-purpose__btn {
  margin-top: 36px;
}

.two-column-purpose__highlights {
  margin-top: 36px;
}

.two-column-purpose__highlights-title {
  margin: 0 0 20px;
  color: #002d72;
  font-size: 30px;
  font-weight: 300;
  line-height: 50px;
}

.two-column-purpose__highlights-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-purpose__highlights-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.two-column-purpose__highlights-item:last-child {
  margin-bottom: 0;
}

.two-column-purpose__highlights-icon {
  flex-shrink: 0;
  margin-top: 6px;
  color: #002d72;
  font-size: 14px;
  line-height: 1;
}

.two-column-purpose__highlights-item-title {
  margin: 0 0 4px;
  color: #002d72;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.two-column-purpose__highlights-item-text {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.two-column-purpose.two-column-purpose--dark {
  color: #ffffff;
}

.two-column-purpose.two-column-purpose--dark .main_title,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__content .main_title,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__title,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__highlights-title,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__highlights-item-title,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__highlights-icon {
  color: #ffffff;
}

.two-column-purpose.two-column-purpose--dark .two-column-purpose__description,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__description p,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__lead,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__lead p,
.two-column-purpose.two-column-purpose--dark .two-column-purpose__highlights-item-text {
  color: #ffffff;
  font-weight: 300;
}

.two-column-purpose.two-column-purpose--dark .two-column-purpose__media-clip {
  background-color: var(--two-column-purpose-bg, #002d72);
}

.two-column-purpose__media-wrap {
  width: 100%;
  height: 100%;
}

.two-column-purpose__media {
  position: relative;
  width: 100%;
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
  overflow: visible;
}

.two-column-purpose__media-reveal {
  width: 100%;
  height: 100%;
}

.two-column-purpose__media-clip {
  --shape-width: 24px;
  --shape-height: 220px;
  --shape-offset-y: 10%;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background-color: var(--two-column-purpose-bg, #f4f4f4);
}

.two-column-purpose__media-clip--shape-left {
  --shape-offset-x: -1px;
}

.two-column-purpose__media-clip--shape-right {
  --shape-offset-x: calc(100% + 1px - var(--shape-width));
}

.two-column-purpose__media-clip::after {
  content: "";
  position: absolute;
  left: var(--shape-offset-x, auto);
  top: var(--shape-offset-y);
  z-index: 2;
  width: 24px;
  height: var(--shape-render-height, var(--shape-height));
  background-image: url("../images/Subtract.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

.two-column-purpose__media-clip--shape-right::after {
  background-image: url("../images/Subtract-inv.svg");
}

.two-column-purpose__image-parallax {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.two-column-purpose__image {
  display: block;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1500px) {
  .two-column-purpose {
    padding: 80px 0;
  }

  .two-column-purpose__grid {
    gap: 48px;
  }
}

@media (max-width: 1200px) {
  .two-column-purpose__grid {
    gap: 40px;
  }

  .two-column-purpose__media-clip {
    --shape-height: 180px;
  }
}

@media (max-width: 1160px) {
  .two-column-purpose__grid {
    gap: 32px;
  }

  .two-column-purpose__content .main_title {
    max-width: none;
    font-size: 27px;
    line-height: 33px;
    margin-bottom: 10px;
  }

  .two-column-purpose__lead p {
    font-size: 22px;
    line-height: 27px;
    margin: 10px 0 10px 0;
  }
  .two-column-purpose__media-clip{
    --shape-width: 24px;
  }
  .two-column-purpose__description>*+* {
    margin-top: 5px;
  }
}

@media (max-width: 992px) {
  .two-column-purpose {
    padding: 60px 0;
  }

  .two-column-purpose__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-column-purpose__content {
    max-width: none;
  }
  .two-column-purpose__media-wrap,
  .two-column-purpose--image-left .two-column-purpose__media-wrap{
    order: -1;
  }
  .two-column-purpose--image-left .two-column-purpose__content {
    margin-left: 0;
  }

  .two-column-purpose__description {
    max-width: none;
  }

  .two-column-purpose__media {
    aspect-ratio: 710 / 532;
    height: auto;
    min-height: 0;
    max-width: 100%;
  }

  .two-column-purpose__btn {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .two-column-purpose__content .main_title{
    font-size: 22px;
    line-height: 28px;
  }
  .two-column-purpose__highlights-item-title {
    font-size: 14px;
    line-height: 1.3;
  }
  .two-column-purpose {
    padding: 50px 0;
  }

  .two-column-purpose__description {
    margin-top:10px;
  }

  .two-column-purpose__media {
    aspect-ratio: 710 / 530;
    height: auto;
    min-height: 0;
  }
  .two-column-purpose__media-clip{
    --shape-width: min(46vw, 322px);
    --shape-height: 40px;
    --shape-render-height: 40px;
    --shape-offset-x: 14px;
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 15px;
  }

  .two-column-purpose__media-clip::after {
    content: "";
    position: absolute;
    left: var(--shape-offset-x);
    top: auto;
    bottom: -9px;
    z-index: 2;
    width: 24px;
    height: var(--shape-render-height, var(--shape-height));
    background-image: url("../images/Subtract.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    transform: translate3d(var(--shape-scroll-x, 0px), 0, 0);
    pointer-events: none;
  }
  .two-column-purpose__lead p{
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0 15px 0;
  }
  .two-column-purpose__description>*+* {
    margin-top: 10px;
}
}

@media (max-width: 350px) {
  .two-column-purpose__media-clip{
    --shape-width: min(58vw, 280px);
  }
}
