html {
  scroll-behavior: smooth;
  scroll-padding-top: 81px;
}

.tc-two-cards {
  padding: 24px 0 128px; 
  width: 100%;
  margin: 0 auto;
}

.two-cards-box {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.tc-cards {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  justify-content:space-between;
  border-radius: 32px;
  background: var(--neutral-000-ffffff, #FFF);
  box-shadow: 0px 24px 24px -2px rgba(149, 76, 220, 0.20), 0px 4px 24px -2px rgba(24, 39, 75, 0.04), 0px 4px 4px -2px rgba(24, 39, 75, 0.04);
  max-width: 650px;
  height: 464px;
  margin: 0 20px;

}



h2.tc-cards-title {
  color: var(--spectrum-600684-dcc, #684DCC);
  text-align: center;
  /* Headline 2/🖥 Desktop */
  font-family: 'proxima-bold', 'Proxima Nova', Arial;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
  letter-spacing: -0.8px;
  margin-bottom: 32px;
}


.tc-cards-content p {
  color: var(--neutral-1000000000, #000);
  font-family: 'proxima-regular', 'Proxima Nova', Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
}

.tc-cards-button {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;
}

.tc-cards-button a.anchor-to-content {
  display: inline-block;
  border-radius: 48px;
  border: 1px solid var(--spectrum-600684-dcc, #684DCC);
  background: var(--neutral-000-ffffff, #FFF);
  padding: 16px 20px;
  color: var(--neutral-90034393-f, #34393F);
  text-align: center;
  /* Button/🖥 Desktop */
  font-family: 'proxima-bold', 'Proxima Nova', Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  text-decoration: none;
}

a.anchor-to-content:hover {
  text-decoration: none;
  background: #8260ff;
  border: 1px solid #fff;
  color: #fff;
}


@media screen and (max-width: 1080px) {
  h2.tc-cards-title {
    font-size: 34px;
  }
  .tc-cards {
    width: 50%;
    padding: 40px;
  }
  .two-cards-box {
    flex-direction: column;
    justify-content: center;
    padding: 0 32px;
  }
  .tc-cards {
    height: auto;
    margin: 20px;
    max-width: 100%; 
    padding: 40px;
}
}

@media screen and (max-width: 780px) {
  .tc-cards {
    width: 70%;
  }
}

@media screen and (max-width: 600px) {
  .tc-cards {
    width: 100%;
    padding: 32px;
  }
  .tc-two-cards {
    padding: 24px 0 88px; 
  }
   h2.tc-cards-title {
     font-size: 30px;
    }
}

}