
/* Practice Areas Styles */
.practiceAreasContainer {
  background-color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.practiceAreasContainer h1 {
  font-size: 2em;
}

.practiceAreasList {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 1em 0;
  flex-grow: 1;
}

.practiceAreasList li {
  background-color: rgb(242, 217, 6);
  padding: 1em 1.5em;
  font-size: 1.2em;
}

.reasonsContainer {
  display: flex;

  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;

  padding: 1.5rem;
}

.reasonsTitle {
  justify-content: center;
  margin: auto 0;
  font-weight: 600;
}

.reasonsList li {
  display: flex;
  text-align: left;
  border-bottom: 1px solid black;
  padding: 1.5em 0;
  font-size: 1em;
  gap: .5em;
}

.checkMarkContaine {
  max-width: 25px;
  max-height: 25px;
  filter: invert(39%) sepia(66%) saturate(4445%) hue-rotate(123deg) brightness(94%) contrast(94%);
}

.cf-icon-svg {
  height: 25px;
  width: 25px;
}

@media only screen and (min-width: 320px) {  
  .practiceAreasContainer {
    padding: 1em;
  }

  .reasonsContainer {
    flex-direction: column;
  }

  .reasonsTitle h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .practiceAreasList {
    flex-direction: column;
  }

  .practiceAreasList li {
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 700px) {
  .practiceAreasContainer {
    padding: 1em 0;
  }

  .reasonsContainer {
    flex-direction: row;
  }

  .reasonsTitle h2 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }

  .practiceAreasList {
    flex-direction: row;
  }

  .practiceAreasList li {
    margin-bottom: 0;
  }
}