body {
  background: linear-gradient(90deg, #e3e8f4, #fafcfe);
  font-family: 'Inter', sans-serif !important;
  color: #222222 !important;
}

h1 {
  font-weight: 900 !important;
}

.comparison-header {
  display: grid;
  grid-template-columns: 35% repeat(3, 21.66%);
  gap: 1px;
  position: sticky;
  z-index: 10;
  background-color: white;
  top: 0;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px 10px 0 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header-cell {
  font-weight: 800;
  text-align: center;
}

.company-row {
  display: grid;
  grid-template-columns: 35% repeat(3, 21.66%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 20px;
  border-radius: 10px;
  min-height: 150px;
  background-color: white;
}

.company-cell {
  padding: 0px 16px;
  margin: 20px 0px;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.company-cell:last-of-type {
  border: 0;
}


.logo {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 148px;
  max-height: 60px;
  margin-bottom: 5px;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.company-rating {
  font-size: .85rem;
  color: #737373;
}

.company-cell.company-cost .cost {
  font-weight: 800;
}

.company-cell.company-location .location {
  font-size: 1rem;
}

.btn {
  background-color: #C65301;
  color: #ffffff;
  border-radius: 40px;
  padding: 10px 16px;
  text-decoration: none;
  font-size: .9rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 6%;
  transition: all .25s linear;
}

.btn:hover {
  background-color: #222222;
}

.company-cta .link {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .comparison-header {
    display: none;
  }

  .company-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px 0;
  }

  .company-cell {
    border-right: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0px;
    margin: 0 16px;
  }

  .company-cell:last-of-type {
    border-bottom: 0;
  }

  .company-cell::before {
    content: attr(data-label);
    font-weight: 800;
    font-size: 0.85rem;
    color: #717171;
    display: block;
    margin-bottom: 8px;
    position: relative;
    width: 100%;
    z-index: 999999;
    text-align: left;
  }
}