/* ------------------------------- copy ------------------------------------ */
.tab-flex {
  flex: 1;
  font-family: 'breton-bold';
}

/* maybe just change the tab css to flex 100% and adjust sizing */

.threeBox {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.threeBox-p {
  width: 32%;
  display: flex;
  flex-direction: column;
  background: #e8ded6;
  padding: 0;
}

.threeBox-text {
  padding: 4vh 2vw;
  text-align: center;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

@media screen and (max-width: 1214px) {
  .threeBox {
    flex-direction: column;
    align-items: center;
  }

  .threeBox-p {
    width: 100%;
    margin: 2vh 0;
  }
}

.margFourh {
  margin: 4vh 0;
}

.padBox {
  padding: 4vh 2vw;
}

.flexCenter {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.img-p {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: auto;
  max-height: none;
}

.img-p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-button-p {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
}

.fh-button {
  height: 12vh;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #330a2b;
  color: #e8ded6;
  text-align: center;
  cursor: pointer;
  border: 2px solid #e8ded6;
  transition: background-color 0.3s ease;
}

.fh-button a {
  color: inherit;
  font-size: 29px;
  font-family: 'breton-bold';
}

.fh-button:hover {
  background-color: #faa82b;
  color: #330a2b;
}

.garrow {
  transition: color 0.3s ease;
  font-size: 40px;
}

@media screen and (max-width: 963px) {
  .fh-button-p {
    flex: 1;
    width: auto;
    flex-direction: row;
    height: 100%;
  }

  .fh-button a {
    font-size: 20px;
  }

  .garrow {
    font-size: 30px;
  }

  .padBox {
    padding: 3vh 7vw;
  }
}