.ntb-category-section{
  background:#fff;
  padding:34px 0 26px!important;
}

.ntb-category-row{
  max-width:1280px!important;
  margin:0 auto!important;
}

.ntb-section-title{
  margin:0 0 24px!important;
  text-align:center;
  color:#003B73;
  font-size:28px;
  line-height:1.2;
  font-weight:900;
  text-transform:uppercase;
}

.ntb-category-grid{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:16px;
}

.ntb-category-card{
  min-height:138px;
  background:#fff;
  border:1px solid #e5edf5;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#172033!important;
  box-shadow:0 8px 22px rgba(0,59,115,.045);
  transition:.25s ease;
}

.ntb-category-card:hover{
  transform:translateY(-6px);
  border-color:#005EA8;
  box-shadow:0 20px 38px rgba(0,59,115,.13);
}

.ntb-category-card span{
  width:58px;
  height:58px;
  margin-bottom:12px;
  border:2px solid #005EA8;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#005EA8;
  font-size:30px;
  line-height:1;
}

.ntb-category-card h3{
  margin:0!important;
  font-size:15px;
  line-height:1.35;
  color:#172033;
  font-weight:700;
}

@media(max-width:991px){
  .ntb-category-grid{
    grid-template-columns:repeat(4,1fr);
  }
}

@media(max-width:480px){
  .ntb-category-section{
    padding:26px 0 18px!important;
  }

  .ntb-section-title{
    font-size:22px;
  }

  .ntb-category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .ntb-category-card{
    min-height:122px;
  }
}