.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.flex-fill {
  flex: 1 1 auto;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.flex-wrap {
  flex-wrap: wrap;
}


.faq-item {
  margin: 0 auto 40px;
  width: 50%;
}

.faq-item__inner {
  /* width: 80%; */
  margin: auto;
}

.faq-item__title {
  font-family: "Playfair Display";
  font-size: 24px;
  margin: 0 auto 20px;
}

.faq-item__text {
  line-height: 1.6;
  font-size: 16px;
}

.text-center {
  text-align: center;
}

h3,
.h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-family: "Playfair Display";
  font-weight: 400;
  line-height: 1.4;
}

.text-md {
  line-height: 1.6;
  font-size: 16px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .faq-item {
    width: 100%;
  }

  .faq-item__inner {
    width: 100%;
  }

  .faq-item__title {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  .faq-item__text,
  .text-md {
    font-size: 14px;
  }
}