.title-with-columns {
  overflow: hidden;
  padding: 85px 16px;
}

.title-with-columns__title {
  font-weight: 300;
  margin: 0;

}

.title-with-columns__title h2 {
  font-family: Poppins;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1.68px;
  margin: 0;
}

.title-with-columns__title h3 {
  font-size: 1rem;
}

.title-with-columns__title strong {
  font-weight: 600;
}

.title-with-columns__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-right: 20px;
}

.title-with-columns__wrapper ~ .title-with-columns__content {
  padding-top: 40px;
}

.title-with-columns__first-column, .title-with-columns__second-column {
  color: #232834;
  font-family: "Karla";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.32px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.9px;
}

.title-with-columns__first-column h2, .title-with-columns__second-column h2 {
  font-family: Poppins;
  font-size: 2.0em;
  font-weight: 400;
  line-height: 1.2;
  margin: 0px 0 20px;
}

.title-with-columns__first-column h2 strong, .title-with-columns__second-column h2 strong {
  font-weight: 600;
}

.title-with-columns__first-column h3, .title-with-columns__second-column h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  margin: 0px 0 30px;
}

.title-with-columns__first-column p, .title-with-columns__second-column p {
  margin: 0;
  padding-bottom: 30px;
}

.title-with-columns__first-column p:first-child,
.title-with-columns__second-column p:first-child,
.title-with-columns__second-column ul:first-child {
  padding-top: 0px;
  margin-top: 0;
}

.title-with-columns__first-column p:last-child,
.title-with-columns__second-column p:last-child,
.title-with-columns__second-column ul:last-child {
  padding-bottom: 0px;
  margin-bottom: 0;
}

.title-with-columns ul li:first-child {
  padding-top: 0;
}

.title-with-columns ul li {
  border-bottom: 1px solid rgba(var(--rgb-color-purple), 0.60);
  padding: 25px 0;
}

.title-with-columns ul li::marker {
  /* content: "• "; */
  color: var(--brand-color-blue);
}

.title-with-columns__second-column {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.title-with-columns__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);
}

.title-with-columns__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);
}

.title-with-columns__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);
}

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

@media only screen and (min-width: 768px) {
  .title-with-columns {
    padding: 95px 93px;
  }
  .title-with-columns__content {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
    padding: 0px !important;
    gap: 20px;
  }
  .title-with-columns__title h2 {
    font-size: 60px;
    letter-spacing: -2.4px;
  }

  .title-with-columns__first-column h3, .title-with-columns__second-column h3 {
    font-size: 18px;
    letter-spacing: 3.6px;
  }

  .title-with-columns__second-column {
    gap: 60px;
  }

  .title-with-columns__link {
    padding-left: 45px;
  }
  .title-with-columns__link:hover {
    padding-right: 45px;
  }

  .title-with-columns__first-column {
    flex-grow: 1;
    flex-shrink: 1;
    align-self: flex-start;
  }
  .title-with-columns__second-column {
    line-height: 35px;
    flex-grow: 1;
    flex: 0 0 52%;
  }

}

@media only screen and (min-width: 1024px) {
  .title-with-columns {
    padding: 120px 130px 130px 108px;
  }

  .title-with-columns__title {
    padding-bottom: 0;
  }

  .title-with-columns__title h2 {
    font-size: 62px;
    letter-spacing: -2.48px;
    line-height: 62px;
  }

  .title-with-columns__wrapper ~ .title-with-columns__content {
    margin-top: 90px;
  }

  .title-with-columns__first-column, .title-with-columns__second-column{
    line-height: 32px;
    letter-spacing: -0.72px;
  }

  .title-with-columns__second-column {
    flex: 0 0 47%;
  }

}

@media only screen and (min-width: 1366px) {
  .title-with-columns {
    padding: 123px 130px 130px 188px;
  }

  .title-with-columns__title h2 {
    font-size: 72px;
    letter-spacing: -2.88px;
  }

  .title-with-columns__first-column, .title-with-columns__second-column {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1px;
  }

  .title-with-columns__first-column h3, .title-with-columns__second-column h3 {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .title-with-columns__second-column {
    flex: 0 0 49%;
  }

}

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

  .title-with-columns {
    padding: 200px 248px;
  }

  .title-with-columns__title h2 {
    font-size: 92px;
    letter-spacing: -3.68px;
    line-height: 80px;
  }

  .title-with-columns__wrapper ~ .title-with-columns__content {
    margin-top: 120px;
  }

  .title-with-columns__first-column h3, .title-with-columns__second-column h3 {
    font-size: 22px;
    letter-spacing: 4.4px;
  }

  .title-with-columns__second-column {
    gap: 50px;
  }

  .title-with-columns__first-column h2, .title-with-columns__second-column h2 {
    font-size: 2.5em;
    margin: 0px 0 30px;
  }
}
