.keyDifferencesOuter {
  /* background-color: #f9f9f9; */
  margin-top: 40px;
  margin-bottom: 40px;
}

.keyDifferencesInner {
  background-color: #fff3df;
  padding: 20px 15px;
  border-radius: 10px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}
.keyDifferencesContent a {
  color: #bd4442;
  cursor: pointer;
  text-decoration: none;
}
.keyDifferencesSection p {
  margin-bottom: 0;
}
.keyDifferencesHeading {
  text-align: center;
  font-size: 42px;
  color: black;
  line-height: 52px;
  font-weight: 600;
  margin: auto;
  width: 90%;
  margin-bottom: 32px;
}

.keyDifferencesSection {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.keyDifferencesSection th,
.keyDifferencesSection td {
  --table-padding-space: 49px;
  padding: 20px var(--table-padding-space);
  text-align: center;
  background-color: white;
}

.keyDifferencesColHeading {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #000000;
}

.keyDifferencesColText {
  font-size: 17px;
  line-height: 24px;
  color: #000000;
}

.keyDifferencesSection tr::before {
  content: "";
  background-color: red;
  height: 1px;
  position: absolute;
  left: 35px;
  right: 35px;
  background: #000;
  background: linear-gradient(
    91deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 85%,
    rgba(255, 255, 255, 1) 100%
  );
}
.keyDifferencesSection tr:first-child::before {
  background: none;
  height: 0;
}
tbody.keyDifferencesContent
  .keyDifferencesCol:first-child
  .keyDifferencesColText {
  padding-top: 40px;
}
.keyDifferencesSection thead tr:before,
.keyDifferencesSection thead th:first-child:after {
  background: transparent;
}
.keyDifferencesSection thead th:after {
  content: "";
  background-color: red;
  width: 1px;
  position: absolute;
  top: 80px;
  bottom: 35px;
  background: black;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 85%,
    rgba(255, 255, 255, 1) 100%
  );
  float: right;
  margin: auto;
  text-align: right;
  display: flex;
  margin-left: calc(-1 * var(--table-padding-space));
}

.keyDifferencesCol .keyDifferencesColHeading {
  padding-top: 0;
  font-size: 22px;
  line-height: 29px;
  background-color: #fff3df;
  vertical-align: top;
}
.keyDifferencesContent th.keyDifferencesColText {
  font-size: 18px;
  line-height: 24px;
}
.keyDifferencesContent .keyDifferencesCol:last-child > * {
  padding-bottom: 50px;
}
tbody.keyDifferencesContent
  .keyDifferencesCol:first-child
  .keyDifferencesColText:first-child {
  border-top-left-radius: 10px;
}
tbody.keyDifferencesContent
  .keyDifferencesCol:first-child
  .keyDifferencesColText:last-child {
  border-top-right-radius: 10px;
}
thead.keyDifferencesCol {
  background-color: transparent;
}
@media (max-width: 992px) {
  .keyDifferencesOuter {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .keyDifferencesSection th,
  .keyDifferencesSection td {
    --table-padding-space: 30px;
  }
  .keyDifferencesCol .keyDifferencesColHeading {
    font-size: 18px;
    line-height: 24px;
  }
  .keyDifferencesColText {
    font-size: 15px;
    line-height: 22px;
  }
  .keyDifferencesContent th.keyDifferencesColText {
    font-size: 16px;
    line-height: 22px;
  }
  tbody.keyDifferencesContent
    .keyDifferencesCol:first-child
    .keyDifferencesColText {
    padding-top: 30px;
  }
  .keyDifferencesHeading {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .keyDifferencesSection th,
  .keyDifferencesSection td {
    padding: 12px;
    font-size: 14px;
  }
  .keyDifferencesHeading {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 25px;
  }
  .keyDifferencesInner {
    width: 700px;
    margin-bottom: 12px;
  }
  .keyDifferencesInnerBox {
    overflow-x: auto;
  }
  .keyDifferencesSection {
    width: 745px;
    margin-left: -75px;
  }
  .keyDifferencesSection tr::before {
    left: 115px;
  }
  .keyDifferencesSection thead th:after {
    top: 60px;
    bottom: 21px;
    margin-left: -13px;
  }
  .keyDifferencesSection .keyDifferencesCol:last-child > * {
    padding-bottom: 30px;
  }
  tbody.keyDifferencesContent
    .keyDifferencesCol:last-child
    .keyDifferencesColText:first-child {
    border-bottom-left-radius: 10px;
  }
  body .keyDifferencesInnerBox::-webkit-scrollbar {
    height: 8px;
  }

  /* Track */
  .keyDifferencesInnerBox::-webkit-scrollbar-track {
    background: #d1d1d1;
    border-radius: 6px;
  }

  /* Handle */
  .keyDifferencesInnerBox::-webkit-scrollbar-thumb {
    background: #832625;
    border-radius: 6px;
  }

  /* Handle on hover */
  .keyDifferencesInnerBox::-webkit-scrollbar-thumb:hover {
    background: #ececec;
  }
  .keyDifferencesContent th.keyDifferencesColText {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  .keyDifferencesOuter .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .keyDifferencesHeading {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
  }
  .keyDifferencesSection tr::before {
    left: 70px;
    right: 20px;
  }
  .keyDifferencesOuter {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .keyDifferencesInner {
    width: 560px;
  }
  .keyDifferencesSection {
    width: auto;
    margin-left: -60px;
  }
  tbody.keyDifferencesContent
    .keyDifferencesCol:first-child
    .keyDifferencesColText {
    padding-top: 20px;
  }
  .keyDifferencesSection .keyDifferencesCol:last-child > * {
    padding-bottom: 20px;
  }
  .keyDifferencesSection th,
  .keyDifferencesSection td {
    padding: 10px 15px;
    vertical-align: middle;
  }
  .keyDifferencesContent .keyDifferencesCol th {
    vertical-align: middle;
  }
  .keyDifferencesSection thead th:after {
    margin-left: -15px;
  }
  .keyDifferencesContent th.keyDifferencesColText {
    font-size: 16px;
    line-height: 21px;
  }
  .keyDifferencesSection thead th:after {
    top: 70px;
  }
}
