.cta-2 {
  padding: 53px 16px;
  position: relative;
  min-height: 800px;
}

.cta-2__media img {
  display: block;
  position: absolute;
  padding: 0;
  height: 345px;
  width: auto;
  z-index: 1;
  left: -20px;
  top: 115px;
}

.cta-2__media::after {
  border: solid 1px var(--brand-color);
  border-radius: 100%;
  content: "";
  display: block;
  height: 151px;
  left: 40px;
  position: absolute;
  top: 94px;
  width: 151px;
}

.cta-2__wrapper {
  display: grid;
  gap: 63px;
  grid-template-areas: 'title' 'content';
  grid-template-rows: 345px auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.cta-2__title {
  grid-area: title;
  /* display: flex; */
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2.1px;
  line-height: 72px;
  margin: 0;
}

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

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


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


.cta-2__description {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.48px;
  line-height: 35px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

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

.cta-2__link {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.cta-2__link a {
  align-items: center;
  color: var(--text-color);
  display: inline-block;
  font-size: 18px;
  font-style: normal;
  font-weight:500;
  gap: 20px;
  line-height: 32px;
  letter-spacing: -0.36px;
  text-decoration: none;
  padding-bottom: 10px;
  position: relative;
}

.cta-2__link a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brand-color);
  transition: width 0.3s ease-in-out;

}

.cta-2__link a::after {
  align-items: center;
  background-image: url(../../images/green-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--brand-color);
  content: "";
  display: inline-block;
  margin-left: 20px;
  height: 12.5px;
  width: 12.5px;
}

.cta-2__link a:hover::before {
  width: 100%;
}



@media only screen and (min-width: 768px) {
  .cta-2 {
    min-height: 900px;
    padding: 62px 60px 120px;
  }

  .cta-2__media img {
    height: 558px;
    left: -45px;
    top: 120px;
  }

  .cta-2__media::after {
    height: 247px;
    width: 247px;
    top: 100px;
    left: 50px;
  }

  .cta-2__wrapper {
    grid-template-rows: 558px auto;
    gap: 66px;

  }

  .cta-2__title {
    font-size: 67px;
    letter-spacing: -3.35px;
    line-height: 72px;
    margin-top: 130px;
    padding-left: 130px;
  }
  .cta-2__title p {
    margin: 0;
    line-height: inherit;
  }

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

  .cta-2__title p.text-align-right {
    transform: translateX(34px);
  }
  .cta-2__description {
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-2__link {
    max-width: 500px;
  }

}

@media only screen and (min-width: 1024px) {
  .cta-2 {
    min-height: 593px;
    padding: 105px;
  }

  .cta-2__wrapper {
    grid-template-areas: 'title title' '. content';
    grid-template-columns: auto 40%;
    grid-template-rows: min-content auto;
    gap: 0;
    row-gap: 94px;
  }
  .cta-2__content {
    gap: 64px;
  }

  .cta-2__title {
    font-size: 70px;
    margin-top: 120px;
    max-width: 750px;
    padding-left: 150px;
  }

  .cta-2__media img {
    height: 565px;
    left: 0px;
    top: 180px;
  }

  .cta-2__media::after {
    height: 286px;
    width: 286px;
    top: 105px;
    left: 76px;
  }

  .cta-2__wrapper {
    margin: 0;
  }

  .cta-2__link {
    max-width: unset;
  }

}

@media only screen and (min-width: 1366px) {
  .cta-2 {
    min-height: 608px;
    padding: 100px 130px
  }

  .cta-2__title {
    font-size: 82px;
    letter-spacing: -3.28px;
    line-height: 85px;
    margin-top: 130px;
    max-width: 950px;
    padding-left: 180px;
  }

  .cta-2__media img {
    height: 640px;
  }

  .cta-2__media::after {
    height: 337px;
    width: 337px;
    left: 90px;
  }

  .cta-2__title p.text-align-right {
    transform: translateX(76px);
  }
  .cta-2__wrapper {
    grid-template-columns: auto 39%;
}

}

@media only screen and (min-width: 1920px) {
  .cta-2 {
    min-height: 100vh;
    padding: 100px 300px;
  }

  .cta-2__media img {
    height: 932px;
    top: 105px;
  }

  .cta-2__media::after {
    height: 490px;
    width: 490px;
    left: 130px;
  }

  .cta-2__wrapper {
    grid-template-columns: auto 38%;
    row-gap: 115px;
  }

  .cta-2__content {
    gap: 100px;
    margin-right: 12px;
  }

  .cta-2__title {
    font-size: 102px;
    letter-spacing: -5.1px;
    line-height: 100px;
    margin-top: 120px;
    max-width: 1200px;
    padding-left: 190px;
  }

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


  .cta-2__description {
    font-size: 18px;
    letter-spacing: -0.54px;
    line-height: 40px;
  }

  .cta-2__link a {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 32px;
  }
  .cta-2__link a::after {
    height: 14px;
    width: 14px;
  }
}
