.cmp_comparison {
  padding: 80px 0;
}
.cmp_comparison h2 {
  text-align: center;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 16px;
}
.cmp_comparison p {
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}
.cmp_comparison .cmp_title {
  font-size: 28px;
  line-height: 1.25;
}
.cmp_comparison .cmp_grid_outer {
  max-height: 1000px;
  position: relative;
}
.cmp_comparison .cmp_grid_outer .cmp_header_wrapper {
  position: sticky;
  top: 120px;
}
.cmp_comparison .cmp_grid {
  display: grid;
  grid-template-columns: 320px 376px 376px;
  overflow: auto;
  border-radius: 16px;
  grid-column-gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.cmp_comparison .cmp_grid.no_bg::before {
  content: unset;
}
.cmp_comparison .cmp_grid::before {
  width: 376px;
  height: 100%;
  z-index: -1;
  content: "";
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f3f0ff 100%);
  position: absolute;
  right: 88px;
  bottom: 0;
}
.cmp_comparison .cmp_grid .cmp_cell {
  padding: 32px 24px;
  border-bottom: 1px solid #e7e7ea;
  display: flex;
  align-items: center;
}
.cmp_comparison .cmp_grid .cmp_cell.last {
  border-bottom: 0;
}
.cmp_comparison .cmp_grid .cmp_cell.cmp_cell_val {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}
.cmp_comparison .cmp_grid .cmp_cell.cmp_cell_label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.cmp_comparison .cmp_grid .cmp_cell.cmp_cell_label.no_border {
  border: unset;
}
.cmp_comparison .cmp_grid .cmp_cell.cmp_cell_head {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 0;
  background-color: #fff;
}
.cmp_comparison .cmp_grid .cmp_cell.cmp_cell_head .cmp_col_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}