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

.cta-2__media
{
  position: relative;
  height: 340px;
  overflow: hidden;
}

.cta-2__media img {
  display: block;
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0px;
  transform: translateX(-50px) scale(1.3);
  width: auto;
  z-index: 1;
}

.cta-2 .cta-2__wrapper {
  padding: 80px 16px 80px 16px;
  display: flex;
  flex-flow: column;
  gap: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.cta-2__container {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.cta-2__title h2{
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 48px;
  text-transform: uppercase;
  margin: 0;
}

.cta-2__title h3{
  font-family: "IBMPlexSans";
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 3.6px;
  margin: 0;
  text-transform: uppercase;
}

.cta-2__title h2 strong, .cta-2__title h3 strong{
  font-weight: 600;
}

.cta-2__title p {
  margin: 0;
  line-height: 1;
  padding-bottom: 15px;
}

.cta-2__title p.text-align-right {
  transform: translateX(21px);
}

.cta-2__content {
  grid-area: content;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-2__description {
  font-family: "Inter", serif, sans-serif;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 1.8;
  width: 100%;
}

.cta-2__description p {
  font-family: "IBMPlexSans";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 26px;
}

.cta-2__description p:first-child {
  margin-top: 0;
}

.cta-2__description p:last-child {
  margin-bottom: 0;
}

.cta-2__description p strong{
  font-weight: 500;
}

.cta-2__link{
  align-items: center;
  display: flex;
  position: relative;
  text-decoration: none;
}
.cta-2__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;
}

.cta-2__link::after, .cta-2__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;
}

.cta-2__link::before {
  height: 0;
  transform: scale(0);
  width: 0;
}

.cta-2__link:hover::after {
  height: 0;
  transform: scale(0);
  width: 0;
}
.cta-2__link:hover::before {
  height: 53px;
  transform: scale(1);
  width: 53px;
}

.cta-2-alignment-right .cta-2 {
  flex-direction: column;
  text-align: end;
}

.cta-2-alignment-left .cta-2 {
  flex-direction: column-reverse;
  text-align: start;
}

.cta-2-alignment-right .cta-2__media img {
  left: 0px;
}

.cta-2-alignment-left .cta-2__media img {
  transform: translateX(50px) scale(1.3);
  right: 0px;
}

.cta-2-alignment-right .cta-2__wrapper {
  align-items: flex-end;
  padding-top: 0;
}

.cta-2-alignment-left .cta-2__wrapper {
  align-items: flex-start;
  padding-bottom: 0;
}

.cta-2-alignment-right .cta-2__content {
  justify-content: end;
}

.cta-2-alignment-left .cta-2__content {
  justify-content: start;
}

@media only screen and (min-width: 768px) {

  .cta-2 {
    justify-content: space-between;
  }

  .cta-2__media {
    position: initial;
    width: auto;
    display: flex;
    height: auto;
  }

  .cta-2__media img {
    margin: 0;
    transform: scale(1.0);
    z-index: -1;
  }

  .cta-2 .cta-2__wrapper {
    gap: 35px;
    justify-content: space-between;
    padding: 77px 24px;
    min-height: 700px;
  }

  .cta-2__container {
    gap: 25px;
    max-width: 500px;
  }

  .cta-2__description {
    width: 315px;
  }

  .cta-2__description::after{
    background-color: var(--brand-color-orange);
    bottom: -35px;
    content: "";
    height: 5px;
    position: absolute;
    width: 60px;
  }

  .cta-2__title h2 {
    font-size: 56px;
    line-height: 58px;
    letter-spacing: -1.12px;
  }

  .cta-2__title h3 {
    font-size: 20px;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 4px;
  }

  .cta-2__title p {
    margin: 0;
    line-height: inherit;
  }

  .cta-2__description p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
  }

  .cta-2__content {
    gap: 50px;
  }

  .cta-2__title p.text-align-right {
    transform: translateX(34px);
  }

  .cta-2-alignment-right .cta-2 {
    flex-direction: row;
  }

  .cta-2-alignment-left .cta-2 {
    flex-direction: row-reverse;
  }

  .cta-2-alignment-right .cta-2__media img {
    left: -170px;
  }

  .cta-2-alignment-left .cta-2__media img {
    right: -170px;
  }

  .cta-2-alignment-right .cta-2__description::after {
    right: 0;
  }

  .cta-2-alignment-left .cta-2__description::after {
    left: 0;
  }

}

@media only screen and (min-width: 1024px) {
  .cta-2 .cta-2__wrapper {
    gap: 50px;
    padding: 110px 60px 140px 60px;
    min-height: 770px;
  }

  .cta-2__container {
    gap: 20px;
    max-width: 550px;
  }

  .cta-2__title h2 {
    font-size: 68px;
    line-height: 58px;
    letter-spacing: -1.36px;
  }

  .cta-2__title h3 {
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 4.4px;
  }

  .cta-2__description {
    width: 390px;
  }
  .cta-2__description::after {
    bottom: -30px;
    width: 50px;
  }

  .cta-2__description p {
    font-size: 18px;
    font-style: normal;
    line-height: 28px;

  }

  .cta-2__media img {
    transform: scale(1.1);
  }

  .cta-2-alignment-right .cta-2__media img {
    left: -130px;
  }

  .cta-2-alignment-left .cta-2__media img {
    right: -130px;
  }

}

@media only screen and (min-width: 1366px) {

  .cta-2 {
    justify-content: end;
  }
  .cta-2 .cta-2__wrapper {
    padding: 125px 0px 160px 0px;
    width: 1150px;
    margin: 0 auto;
  }

  .cta-2__container {
    gap: 30px;
    max-width: 600px;
  }

  .cta-2__title h2 {
    font-size: 72px;
    line-height: 62px;
  }

  .cta-2__title h3 {
    font-size: 24px;
    letter-spacing: 4.8px;
    line-height: 45px;
  }

  .cta-2__description::after {
    bottom: -35px;
    width: 60px;
  }

  .cta-2__media img {
    transform: scale(1.2);
  }

  .cta-2-alignment-right .cta-2__media img {
    left: 25px;
  }

  .cta-2-alignment-left .cta-2__media img {
    right: 25px;
  }

}

@media only screen and (min-width: 1920px) {

  .cta-2 .cta-2__wrapper {
    padding: 175px 0px 255px 0px;
    min-height: 1070px;
    width: 1600px;
  }

  .cta-2__container {
    max-width: 850px;
  }

  .cta-2__title h2 {
    font-size: 102px;
    line-height: 92px;
    letter-spacing: -2.04px;
  }

  .cta-2__title h3 {
    font-size: 30px;
    line-height: 60px;
    letter-spacing: 6px;
  }

  .cta-2__description {
    width: 440px;
  }

  .cta-2__description p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.4px;
  }

  .cta-2__link::after, .cta-2__link::before {
    width: 58px;
    height: 58px;
  }
  .cta-2__link::before {
    transform: scale(0);
    width: 0;
    height: 0;
  }

  .cta-2__link-title {
    padding: 13px 40px 13px 40px;
  }

  .cta-2__media img {
    transform: scale(1.15);
  }

  .cta-2-alignment-right .cta-2__media img {
    left: 80px;
  }

  .cta-2-alignment-left .cta-2__media img {
    right: 80px;
  }

}
