/*============================================================================================
   Start Banner css
==============================================================================================*/
.error__content {
  margin-top: 42px;
}
.error__content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 12px;
}
.error__btn {
  margin-top: 32px;
}
.error__btn .btn-primary{
  display: inline-flex;
}
.error-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.error-cat-card {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 8px;
}
.error-category {
  margin-top: 40px;
}
.error-cat-icon {
  width: 130px;
  height: 130px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
}
.error-cat-card:hover .error-cat-icon img {
  transform: scale(1.04);
}
.error-cat-icon img {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.error-cat-info {
  margin-top: 16px;
}
.error-cat-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}
.error-cat-card:hover .error-cat-info h4 {
  color: var(--primary-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .error__content h3 {
    font-size: 28px;
  }
  .error-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .error-cat-icon,
  .error-cat-icon img {
    width: 100px;
    height: 100px;
  }
  .error-cat-info h4 {
    font-size: 14px;
  }
  .error-cat-card {
    padding: 12px;
  }
}

/*============================================================================================
   End Banner css
==============================================================================================*/
