
.acorn-cards-title {
  font: normal normal bold 38px/41px Signika;
  color: #002A51;
  text-align: center;
  margin-bottom: 5rem;
}

.acorn-cards-title-highlight {
  color: #743bfc;
}

.acorn-card-root { 
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.acorn-card-wrapper { 
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}

@media screen and (max-width: 1000px) {
  .acorn-card-wrapper {
    flex-direction: column;
  }
}

/* handles the color and shape of a small card*/
.acorn-card-small {
  width: 33.3%;
  max-width: 425px;
  min-width: 350px;
  height: 435px;
  z-index: 1;
  padding: 27px 30px;
  
  background: #FBFBFB 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 4px #00000029;
  border-radius: 5px;
  opacity: 1;

  color: #002A51;
}

/* handles the color and shape of a large card */
.acorn-card-large {
  z-index: 2;
  width: 33.3%;
  max-width: 450px;
  min-width: 350px;
  height: 477px;
  padding: 58px 64px;

  background: #743BFC 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #0000004D;
  border-radius: 5px;
  opacity: 1;

  color: white;
}

@media screen and (max-width: 1400px) {
  .acorn-card-large {
    padding: 30px;
  }
}

/* handles font size, relys on the acorn-card-small and acorn-card-large for color*/
.acorn-card-title {
  color: inherit;
  text-align: left;
  font: normal normal bold 30px/37px Signika;
  letter-spacing: 0px;
  margin-bottom: 8px;
  opacity: 1;
}

/* handles font size, relys on the acorn-card-small and acorn-card-large for color*/
.acorn-card-description {
  text-align: left;
  font: normal normal normal 18px/27px Roboto;
  letter-spacing: 0px;
  color: inherit;
  opacity: 1;
}

/* the background svg */
.a-cards-blob { 
  position: absolute;
  z-index: -10;
  width: 800px;
  top: 0;
  right: -5%;
}

