.niches_inner_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 28px;
  width: 162px;
  flex: 0 0 auto;
  margin: 0 10px;
  border-radius: 12px;
}

.light_mode .niches_inner_block {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(47, 85, 164, 0.3019607843) inset;
}

.niches_inner_block:hover {
  /*border: 2px solid #233457;*/
  box-shadow: inset 0px 0px 12px 0px rgba(47, 85, 164, 0.5);
}

.dark_mode .niches_inner_block {
  background-color: #0E1E3F;
  box-shadow: 0px 0px 12px 0px rgba(47, 85, 164, 0.3019607843) inset;
}

.niches_inner_block img {
  max-width: 52px;
  width: 100%;
  height: 52px;
  object-fit: contain;
}

.niches_inner_title {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 120%;
}
@media (max-width: 1024px) {
  .niches_inner_title {
    font-size: 18px;
  }
}

.niches_inner_block {
  text-decoration: none;
}

@media screen and (max-width: 820px) {
  .niches_inner_block {
    width: 140px;
    padding: 22px 8px;
  }
}
@media screen and (max-width: 480px) {
  .niches_inner_block {
    padding: 20px 8px;
    width: 120px;
  }
}