.section_nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--burger-line);
  
}

.section_nav_item {
  width: 100%;
  background: var(--bg-nav);
  border-radius: var(--br-radius);
  position: relative;
  border: 1px solid var(--nav-border);
}

.section_nav_link {
  width: 100%;
  height: 100%;
}

.section_nav_img {
  margin-left: auto;
  margin-right: 8px;
  z-index: 1;
  position: relative;
}

.section_nav_text {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
  font-size: 10px;
  line-height: 120%;
  color: var(--nav-text-section);
  z-index: 2;
}

.ligthElips {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(90%, 50%);
  max-width: 67px;
  max-height: 67px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: var(--bg-color-brend);
  filter: blur(28.5px);
}

.section_nav_arrow {
  position: absolute;
  bottom: 10px;
  right: 5px;
  width: 10px;
  height: 10px;
  z-index: 2;
}

@media (max-width: 890px) {
  .ligthElips {
    max-width: 40px;
    max-height: 40px;
    filter: blur(18.5px);
  }
}

@media (max-width: 807px) {
  .section_nav_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ligthElips {
    max-width: 67px;
    max-height: 67px;
  }
}

@media (max-width: 565px) {
  .section_nav_list {
    gap: 5px;
  }

  .section_nav_arrow {
    bottom: 10px;
    right: 0px;
  }
  .ligthElips {
    filter: blur(15.5px);
  }
}

@media (max-width: 390px) {
  .ligthElips {
    filter: blur(10.5px);
    max-width: 40px;
    max-height: 40px;
  }
}
