/*----------------------------------------------------- Main Banner --------------------------------------------*/
.MainBannerContainer {
  min-height: 350px;
  background-image: url("../images/fees/image_fees.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}
/*----------------------------------------------------- Fee Tiles --------------------------------------------*/
.FeeTiles {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.FeeTile {
  width: calc((100% - 150px) / 2);
  margin-right: 150px;
  margin-bottom: 30px;
  padding-left: 60px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 30px auto;
  max-width: 400px;
}
.FeeTile:nth-child(2n) {
  margin-right: 0px;
}
.FeeTileHeader {
  font-weight: 600;
}
/*----------------------------------------------------- Fee Tile Variations --------------------------------------------*/
.FeeTile.Fair {
  background-image: url("../images/icons/icon_trusts.svg")
}
.FeeTile.FreeConsultation {
  background-image: url("../images/icons/icon_chat.svg")
}
.FeeTile.NoSurprises {
  background-image: url("../images/icons/icon_lightbulb.svg")
}
.FeeTile.Lower {
  background-image: url("../images/icons/icon_lower.svg")
}
/*----------------------------------------------------- Reveiws Container --------------------------------------------*/
.LegalInsuranceSection {
  background-color: #dceef6;
}
/*----------------------------------------------------- Legal Plan Tiles --------------------------------------------*/
.LegalPlanTiles {
  display: flex;
  margin-top: 30px;
}
.LegalPlanTile {
  width: 231px;
  height: 85px;
  transition: all 0.3s ease;
}
.LegalPlanTile:first-child {
  margin-right: 20px;
}
.LegalPlanTileImage img {
  width: 100%;
  height: auto;
}
.LegalPlanTileLink {
  text-align: center;
}
.LegalPlanTile:hover {
  transform: translateY(-4px);
  cursor: pointer;
}