.maker_nav {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 2px;
  margin-bottom: 60px;
  margin-top: 35px;
}
@media screen and (min-width: 920px) {
  .maker_nav {
    margin-top: 70px;
    margin-bottom: 80px;
    gap: 0;
  }
}

.maker_nav_link {
  width: 31px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #DFE5E0;
  transition: opacity 0.3s ease-out;
  margin: 5px 0;
}

.maker_nav_link:hover {
  opacity: .5;
}

.maker_nav_link_text {
  font-size: 15px;
  font-weight: 400;
  line-height: 0.9;
  color: #1CC1CF;
}
@media screen and (min-width: 920px) {
  .maker_nav_link_text {
    font-size: 16px;
  }
}

.maker_nav_link_none {
  pointer-events: none;
}

.maker_nav_link_none .maker_nav_link_text {
  color: #021530;
}

.maker_nav_link_last {
  width: fit-content;
  padding: 0 0 0 10px;
  border-right: 0;
}

.maker_section_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 920px) {
  .maker_section_container {
    gap: 80px;
  }
}

.maker_section_makers {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 920px) {
  .maker_section_makers {
    gap: 40px;
    margin-bottom: 60px;
  }
}

.maker_section_makers_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid #021530;
}
@media screen and (min-width: 920px) {
  .maker_section_makers_title {
    font-size: 30px;
    padding-bottom: 16px;
  }
}

.maker_section_makers_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .maker_section_makers_list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .maker_section_makers_list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

.maker_section_makers_list li {
  display: flex;
  justify-content: flex-start;
}

.maker_section_makers_list li a {
  font-weight: 400;
  color: #1CC1CF;
}

.maker_section_makers_list li .inner_link::before {
  background: #1CC1CF;
}

.maker_section_makers_list li .inner_link {
  transition: opacity 0.3s;
}

.maker_section_makers_list li .inner_link:hover {
  opacity: 0.5;
}

.return_top {
  width: 80px;
  height: 16px;
  display: flex;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 920px) {
  .return_top {
    width: 99px;
    height: 20px;
  }
}

.return_top img {
  width: 100%;
  height: 100%;
}
