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

.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: 28px;
  --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);
  -webkit-mask-image: linear-gradient(#fff 0 0), var(--two-column-purpose-subtract);
  mask-image: linear-gradient(#fff 0 0), var(--two-column-purpose-subtract);
  -webkit-mask-size: 100% 100%, var(--shape-width) var(--shape-render-height, var(--shape-height));
  mask-size: 100% 100%, var(--shape-width) var(--shape-render-height, var(--shape-height));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.two-column-purpose__media-clip--shape-left {
  -webkit-mask-position: 0 0, -1px var(--shape-offset-y);
  mask-position: 0 0, -1px var(--shape-offset-y);
}

.two-column-purpose__media-clip--shape-right {
  -webkit-mask-position: 0 0, calc(100% + 1px) var(--shape-offset-y);
  mask-position: 0 0, calc(100% + 1px) var(--shape-offset-y);
}

.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;
  }

  .two-column-purpose__lead p {
    font-size: 22px;
    line-height: 30px;
  }
  .two-column-purpose__media-clip{
    --shape-width: 24px;
  }

}

@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--image-left .two-column-purpose__media-wrap{
    order:initial;
 }
  .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 {
    padding: 50px 0;
  }

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

  .two-column-purpose__media {
    aspect-ratio: 710 / 532;
    height: auto;
    min-height: 0;
  }
  .two-column-purpose__media-clip{
    border-radius: 15px;
  }
  .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: 22px;
  }
}