/* .paragraph--type--call-to-action-2 {
  background: var(--bg-brand-gradient-color);
} */

.cta-2 {
  padding: 40px 16px 90px 16px;
  position: relative;
  min-height: 640px;
}

.cta-2:nth-of-type(even) {
  padding: 40px 16px 90px 16px;
  position: relative;
  min-height: 640px;
}

.cta-2__media img {
  display: block;
  height: 338px;
  left: 0px;
  margin: auto;
  padding: 0;
  position: absolute;
  right: 0px;
  top: 160px;
  width: auto;
  z-index: 1;
}

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

.cta-2__title {
  max-width: 430px;
  max-height: 100px;
}

.cta-2__title h2{
  color: var(--brand-color-blue);
  font-family: Poppins;
  font-size: 52px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -2.08px;
  margin: 0;
}
.cta-2__title h3{
  font-weight: 400;
}

.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: 50px;
  padding: 0px 26px;
}


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

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

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

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

.cta-2__link {
  align-items: center;
  border: 1px solid var(--brand-color-blue);
  border-radius: 40px;
  color: #474DAB;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 32px;
  padding: 14px 70px 14px 30px;
  position: relative;
  text-decoration: none;
  transition: padding 350ms cubic-bezier(0.4,0,0.2,1);
}

.cta-2__link::after {
  align-items: center;
  aspect-ratio: 1;
  background-position-x: center;
  background-position-y: center;
  background-size: initial;
  background-repeat: no-repeat;
  background-image: url(/themes/custom/grwpo/images/blue-arrow.svg);
  border-radius: 50%;
  content: "";
  height: 100%;
  position: absolute;
  right: 6px;
  transform: scale(1);
  transition: transform 350ms cubic-bezier(0.4,0,0.2,1);
}

.cta-2__link::before {
  align-items: center;
  aspect-ratio: 1;
  background-position-x: center;
  background-position-y: center;
  background-size: initial;
  background-repeat: no-repeat;
  background-image: url(/themes/custom/grwpo/images/white-arrow.svg);
  border-radius: 50%;
  content: "";
  height: 100%;
  position: absolute;
  left: 6px;
  transform: scale(0);
  transition: transform 350ms cubic-bezier(0.4,0,0.2,1);
}

.cta-2__link:hover {
  padding: 14px 30px 14px 70px;
  background-color: #474DAB;
  color: #EDF2F5;
}
.cta-2__link:hover::after {
  transform: scale(0);
}
.cta-2__link:hover::before {
  transform: scale(1) rotate(45deg);
}

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

  .cta-2__media img {
    height: 456px;
    left: 40px;
    margin: 0;
  }

  .cta-2__wrapper {
    gap: 380px;
  }

  .cta-2__title {
    /* padding-left: 300px; */
    padding-left: 50%;
    max-height: 160px;
  }

  .cta-2__title h2 {
    font-size: 70px;
    line-height: 70px;
    letter-spacing: -2.8px;
  }

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

  .cta-2__content {
    gap: 50px;
    margin: 0 auto;
    padding: 0 40px;
  }

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

  .cta-2__link {
    padding-left: 45px;
  }
  .cta-2__link:hover {
    padding-right: 45px;
  }
}

@media only screen and (min-width: 1024px) {
  .cta-2 {
    justify-content: end;
    justify-content: flex-end;
    -webkit-box-pack: end; /* Safari */
    display: -webkit-box; /* Safari */
    display: flex;
    min-height: 650px;
    padding: 50px;
  }

  .cta-2__media img {
    height: 520px;
    top: 100px;
    left: 47px;
  }

  .cta-2__wrapper {
    gap: 65px;
    min-width: 48%;
    width: 450px;
  }
  .cta-2__content {
    gap: 40px;
    margin: 0;
    padding: 0 55px;
  }

  .cta-2__title {
    max-height: fit-content;
    max-width: 570px;
    padding-left: 0px;
  }

}

@media only screen and (min-width: 1366px) {
  .cta-2 {
    min-height: 740px;
    padding: 80px 135px;
  }

  .cta-2__content {
    gap: 60px;
    padding: 0 25px 0 125px;
  }

  .cta-2__wrapper {
    /* width: 540px; */
    min-width: 49%;
  }

  .cta-2__title {
    font-size: 80px;
    letter-spacing: -4px;
    max-width: 950px;
    padding-right: 180px;
  }

  .cta-2__title h2 {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -3.2px;
  }

  .cta-2__media img {
    height: 605px;
    top: 85px;
    left: 120px;
  }

  .cta-2__media::after {
    height: 315px;
    width: 315px;
    left: 136px;
    top: 27px;
  }

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

}

@media only screen and (min-width: 1920px) {
  .cta-2 {
    min-height: 1000px;
    padding: 110px 190px 90px 190px;
  }

  .cta-2__wrapper {
    width: 760px;
    gap: 105px;
  }

  .cta-2__media img {
    height: 825px;
    top: 130px;
    left: 190px;
  }

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

  .cta-2__content {
    gap: 60px;
    padding: 0 85px 0 150px;
  }

  .cta-2__title {
    font-size: 102px;
    letter-spacing: -5.1px;
    max-width: 900px;
    padding-right: 190px;
  }

  .cta-2__title h2 {
    font-size: 100px;
    line-height: 110px;
    letter-spacing: -4px;
  }

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


  .cta-2__description {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

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


}
