* {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  align-items: center;
  justify-content: space-between;

  .header_logo img {
    width: 100px;
  }

  .header_links {
    display: flex;
    gap: 20px;

    .header_link {
      cursor: pointer;
      position: relative;
    }

    .header_link.active:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background-color: #efcc8e;
      border-radius: 6px;
      transform: translateY(10px); /* немного опускаем ниже текста */
    }
  }

  .header_logo {
    width: 100px;
  }
}

.info-wrap {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 20px;
  margin-bottom: 20px;
  min-height: 50vh;
}

.info-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 20px 0;

  img {
    display: flex;
    justify-content: center;
    width: 100%;
    object-fit: contain;
  }
}

.navigation {
  margin: 20px 0 0 0;
  display: flex;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;

  .navigation_main {
    color: #1760a4;
  }
}

.links {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: white;
  color: #758393;
  width: 200px;
  height: fit-content;
  padding: 30px;
  border-radius: 16px;
}

.title {
  font-weight: 500;
  font-size: 25px;
  padding-bottom: 10px;
  color: #333;
}

.content {
  font-family: Inter;
}

.sub_title {
  font-weight: 400;
  font-size: 25px;
  color: #333;
}
.list-wrap {
  margin: 30px 0px;
}
.main_content {
  font-weight: 400;
  font-size: 20px;
}

.documents {
  display: grid;
  gap: 10px;
  margin-top: 20px;

  a {
    text-decoration: underline;
  }
}

.gools_images_item {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  text-align: center;
  gap: 20px;
}
.gools_images_item img {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  height: auto;
}

.gools_images {
  display: flex;
  gap: 50px;
}

section {
  margin: 0 0 20px 0;
  display: grid;
  gap: 20px;
}

.table {
  display: grid;
  gap: 10px;
  padding: 20px 0;
}

.table_item {
  align-items: center;
  display: flex;
  gap: 10px;
  border: 1px solid black;
  border-radius: 8px;
  padding: 15px;
}

.table_item_number {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #1760a4;
}

.gools_part {
  display: grid;
  gap: 10px;
}

.part p,
.part ol {
  font-family: Inter;
}

@media (max-width: 1400px) {
  .info-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .links {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  .gools_images {
    line-height: normal !important;
    display: block !important;
  }

  .gools_images_item {
    display: none !important;
  }

  .title {
    font-size: 28px !important;
  }

  .table {
    width: 100%;
  }

  .table_item {
    width: normal !important;
  }

  .links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;

    .link {
      flex-shrink: 0;
    }
  }
}

@media (max-width: 768px) {
}

.go_up a {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid #1760a4;
  background: white;
  color: #1760a4;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
