#pk_flex_content .flex_layout.cta {
  max-width: 100%;
}
.flex_layout.cta .pk-cta__wrapper {
  position: relative;
  padding: 90px 0;
  border-radius: 20px;
  border: 1px solid #ffffff1a;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('./bg.png');
}

.flex_layout.cta .pk-cta__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 1240px;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  aspect-ratio: 972/581;
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('./bg-pattern.png');
}

.flex_layout.cta .pk-cta__wrapper .pk-heading {
  color: var(--white);
}

.flex_layout.cta .pk-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.flex_layout.cta .pk-row .pk-col__left {
  max-width: 686px;
}

.flex_layout.cta .pk-row .pk-col__left h2 {
  font-size: clamp(
    28px,
    28px + (40 - 28) * ((100vw - 320px) / (1215 - 320)),
    40px
  );
}

.flex_layout.cta .pk-row .pk-col__right {
  max-width: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.flex_layout.cta .pk-cta__wrapper .pk-btn__cta {
  max-width: fit-content;
  display: inline-block;
  padding: 14px;
  opacity: 0;
  border-radius: 999px;
  box-shadow: 0px 4.4px 44px 0px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6.600000381469727px);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-100px);
}

.flex_layout.cta .pk-cta__wrapper .pk-btn__tertiary {
  position: relative;
  gap: 16px;
  padding-left: 30px;
  padding-right: 30px;
  min-height: 48px;
}

@media screen and (max-width: 992px) {
  .flex_layout.cta .pk-row {
    display: grid;
    gap: 40px;
  }

  .flex_layout.cta .pk-row .pk-col__right .top-btn__wrap {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 990px) {
  /* .flex_layout.cta .pk-row .pk-col__right {
    padding: 24px 40px 0 24px;
  } */
}

@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}
