/* === Zach CSS === */



/* Services Pages Quick Facts Section */
.services__quick_facts{
    background-color: #f7f7f7;
    padding: 64px 0px;
    margin-bottom: 32px;
}
.quickFacts__sectionHeading{
    font-style: italic;
    color: #9f9f9f;
}
.quickFacts__copyWrapper{
    padding: 25px;
    border: solid 2px var(--FC-black);
    height: 100%;
    border-collapse: collapse;
    background-color: #fff;
}
.quickFacts__copyWrapper strong{
    color: var(--FC-orange);
}

/* Service FAQs */
.services__faqs{
	padding: 32px 0px;
}
.services__faqsHeader{
    margin-bottom: 25px;
}
.serviceFAQ__outerWrapper{
    margin-bottom: 16px;
}
.serviceFAQ__titleWrapper{
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
}
.serviceFAQ__title{
    margin-bottom: 0px;
}
.serviceFAQ__plus{
    background-color: var(--FC-orange);
    padding: 8px;
    border-radius: 50%;
    transition: var(--FC-default-transition);
}
.serviceFAQ__plus svg rect{
    fill: var(--FC-white);
}
.serviceFAQ__titleWrapper:hover .serviceFAQ__plus,
.serviceFAQ__titleWrapper.active .serviceFAQ__plus{
    transform: rotate(45deg);
}
.serviceFAQ__copyWrapper{
    border: solid 2px #f6f6f6;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.serviceFAQ__copyWrapper.active{
    max-height: 700px;
}
.serviceFAQ__innerCopyWrapper{
    padding: 16px;
}



/* Comparison Table */
.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.comparison-table-title {
  font-weight: bold;
  margin-bottom: 25px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  table-layout: fixed;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  width: 25%;
  font-family: var(--FC-mont);
}
.comparison-table thead th {
  font-weight: bold;
  color: #fff;
}
.comparison-table thead th.col-label {
  background-color: #48484a;
  color: #ffffff;
}
.comparison-table.threeServices thead th.col-1 {
  background-color: #D56200;
}
.comparison-table.threeServices thead th.col-2 {
  background-color: #F58220;
}
.comparison-table.threeServices thead th.col-3 {
  background-color: #FCC698;
  color: #000;
}
.comparison-table.twoServices thead th.col-1 {
  background-color: #F58220;
}
.comparison-table.twoServices thead th.col-2 {
  background-color: #FCC698;
  color: #000;
}
.comparison-table tbody tr:nth-child(odd) {
  background-color: #F6F6F6;
}
.comparison-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.comparison-table tbody td:first-child {
  font-weight: bold;
}
.comparison-table tbody td:first-child {
  background-color: #48484a;
  color: #ffffff;
}
.comparison-table a{
	color: inherit;
	text-decoration: underline;
	font-weight: inherit;
}