.cyber_security .package .d-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cyber_security .package .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .cyber_security .package .d-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .cyber_security .package .d-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cyber_security .package_items {
  display: block;
  padding: 40px;
  cursor: pointer;
  background-color: var(--frontend-dark-bg, #151B22);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cyber_security .package_items {
    padding: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cyber_security .package_items {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .cyber_security .package_items {
    padding: 20px;
  }
}

.cyber_security .package_items:hover h4 {
  color: var(--frontend-primary, #08D665);
}

.cyber_security .package_items_icon {
  --p-icon: 60px;
  height: var(--p-icon);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cyber_security .package_items_icon {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .cyber_security .package_items_icon {
    margin-bottom: 15px;
    --p-icon: 50px;
  }
}

.cyber_security .package_items_icon img {
  height: 100%;
  object-fit: contain;
}

.cyber_security .package_items h4 {
  font-size: 22px;
  line-height: 1.36364;
  margin-bottom: 15px;
  transition: all .4s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cyber_security .package_items h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .cyber_security .package_items h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .cyber_security .package_items h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .cyber_security .package_items h4 {
    margin-bottom: 10px;
  }
}

.cyber_security .package_items p {
  color: var(--frontend-text-color, #687083);
}
