﻿/* IT page specific styles */
.it-section {
  background: linear-gradient(180deg, #fff, #fafbfc);
}

.it-head {
  margin-bottom: 26px;
}

.it-intro {
  max-width: 1080px;
  color: var(--txt-dim);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.it-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 34px;
  align-items: start;
}

.it-features ul {
  display: block;
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.it-features li {
  margin-bottom: 10px;
  color: var(--txt);
  font-size: 15px;
  line-height: 1.6;
}

.it-features li:last-child {
  margin-bottom: 0;
}

.it-brands {
  margin-top: 16px;
}

.it-brands .ptile img {
  /* max-height: 64px; */
  object-fit: contain;
}

@media (max-width: 980px) {
  .it-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .it-intro {
    font-size: 16px;
  }
}