.product-with-cta {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-with-cta__media {
  position: relative;
  width: 100%;
  height: 300px;
}

.product-with-cta__svg-parallelogram-E {
  display: none;
}
.product-with-cta__svg-parallelogram-F {
  display: none;
}

.product-with-cta__image,
.product-with-cta__image div {
  position: relative;
  height: inherit;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-with-cta__media img {
  display: block;
  height: 100%;
  padding: 0;
  position: absolute;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.product-with-cta .product-with-cta__wrapper {
  padding: 40px 16px 100px;
  display: flex;
  flex-flow: column;
  gap: 60px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.product-with-cta__container {
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.product-with-cta__title div {
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.product-with-cta__title h2{
  font-family: "Inter";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -1.68px;
  line-height: 48px;
  margin: 0;
}

.product-with-cta__title h3{
  font-family: "IBMPlexSans";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4.8px;
  margin: 0;
  text-transform: uppercase;
}

.product-with-cta__title h2 strong, .product-with-cta__title h3 strong{
  font-weight: 600;
}

.product-with-cta__title p {
  margin: 0;
  line-height: 1;
  padding-bottom: 15px;
}

.product-with-cta__description {
  font-family: "IBMPlexSans", serif, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.54px;
  line-height: 32px;
  width: 100%;
}

.product-with-cta__description p {
  font-family: "IBMPlexSans";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.54px;
  line-height: 32px;
}

.product-with-cta__description p:first-child {
  margin-top: 0;
}

.product-with-cta__description p:last-child {
  margin-bottom: 0;
}

.product-with-cta__description p strong{
  font-weight: 500;
}

.product-with-cta__link{
  align-items: center;
  justify-content: end;
  display: flex;
  position: relative;
  text-decoration: none;
}
.product-with-cta__link-title {
  align-items: center;
  border: 1px solid rgba(var(--rgb-text-color), 0.20);
  border-radius: 100px;
  color: var(--text-color);
  display: flex;
  font-family: "IBMPlexSans";
  font-size: 18px;
  font-weight: 500;
  margin: 0 5px;
  letter-spacing: -0.18px;
  line-height: 32px;
  padding: 10px 40px 10px 40px;
  text-transform: capitalize;
}

.product-with-cta__link::after, .product-with-cta__link::before {
  aspect-ratio: 1;
  background: var(--brand-color-orange) no-repeat center center;
  background-image: url('/themes/custom/grwpo/images/white-arrow.svg');
  content: "";
  border-radius: 50%;
  display: inline-block;
  height: 54px;
  transform: scale(1);
  transition: 0.3s all cubic-bezier(0.61, 1, 0.88, 1);
  width: 54px;
}

.product-with-cta__link::before {
  height: 0;
  transform: scale(0);
  width: 0;
}

.product-with-cta__link:hover::after {
  height: 0;
  transform: scale(0);
  width: 0;
}
.product-with-cta__link:hover::before {
  height: 53px;
  transform: scale(1);
  width: 53px;
}

@media only screen and (min-width: 768px) {
  .product-with-cta__media {
    height: 440px;
  }
  .product-with-cta__svg-parallelogram-E {
    display: block;
  }
  .product-with-cta__svg-parallelogram-E svg {
    position: absolute;
    bottom: -42px;
    right: -11px;
    width: 289px;
    height: 126px;
  }
  .product-with-cta .product-with-cta__wrapper {
    gap: 70px;
    padding: 90px 94px 74px 58px;
  }
  .product-with-cta__container {
    gap: 40px;
  }
  .product-with-cta__title div {
    gap: 40px;
  }
  .product-with-cta__title h2{
    font-size: 62px;
    letter-spacing: -2.48px;
    line-height: 58px;
  }
  .product-with-cta__title p {
    margin: 0;
    line-height: inherit;
  }
  .product-with-cta__description {
    padding-right: 243px;
  }
}

@media only screen and (min-width: 1024px) {
  .product-with-cta {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .product-with-cta .product-with-cta__wrapper {
    gap: 80px;
    padding: 110px 0 201px 83px;
    flex: 0 0 512px;
    height: 700px;
  }
  .product-with-cta__title h2{
    font-size: 52px;
    letter-spacing: -2.08px;
    line-height: 48px;
  }
  .product-with-cta__description {
    padding-right: 83px;
  }
  .product-with-cta__link{
    justify-content: start;
  }
  .product-with-cta__media {
    height: 700px;
    flex: 0 0 50%;
  }
  .product-with-cta__svg-parallelogram-E {
    display: none;
  }
  .product-with-cta__svg-parallelogram-F {
    display: block;
  }
  .product-with-cta__svg-parallelogram-F svg {
    position: absolute;
    bottom: -88px;
    left: -55px;
    width: 289px;
    height: 296px;
  }
  .product-with-cta__image {
    transform: skew(-13deg) translateX(82px);
  }
  .product-with-cta__media img {
    transform: skew(13deg) translateX(-82px);
  }
}

@media only screen and (min-width: 1366px) {
  .product-with-cta .product-with-cta__wrapper {
    gap: 90px;
    padding: 138px 0 189px 135px;
    flex: 0 0 683px;
    height: 770px;
  }
  .product-with-cta__container {
    gap: 50px;
  }
  .product-with-cta__title div {
    gap: 50px;
  }
  .product-with-cta__title h2{
    font-size: 52px;
    letter-spacing: -2.08px;
    line-height: 48px;
  }
  .product-with-cta__title h3{
    font-size: 18px;
    letter-spacing: 5.4px;
  }
  .product-with-cta__description {
    padding-right: 150px;
  }
  .product-with-cta__description ,
  .product-with-cta__description p {
    font-size: 20px;
    letter-spacing: -0.6px;
    line-height: 34px;
  }
  .product-with-cta__media {
    height: 770px;
    /* flex: 0 0 50%; */
  }
  .product-with-cta__svg-parallelogram-F svg {
    bottom: -25px;
    left: -45px;
  }
  .product-with-cta__image {
    transform: skew(-13deg) translateX(90px);
  }
  .product-with-cta__media img {
    transform: skew(13deg) translateX(-90px);
  }
}

@media only screen and (min-width: 1920px) {
  .product-with-cta .product-with-cta__wrapper {
    padding: 151px 0 353px 249px;
    flex: 0 0 960px;
    height: 980px;
  }
  .product-with-cta__container {
    gap: 60px;
  }
  .product-with-cta__title h2{
    font-size: 72px;
    letter-spacing: -2.88px;
    line-height: 68px;
  }
  .product-with-cta__title h3{
    font-size: 20px;
    letter-spacing: 6px;
  }
  .product-with-cta__description {
    padding-right: 330px;
  }
  .product-with-cta__media {
    height: 980px;
    /* flex: 0 0 50%; */
  }
  .product-with-cta__svg-parallelogram-F svg {
    bottom: 0;
    left: -40px;
  }
  .product-with-cta__image {
    transform: skew(-13deg) translateX(115px);
  }
  .product-with-cta__media img {
    transform: skew(13deg) translateX(-115px);
  }
}
