:root {
  --white: #fff;
  --black: #000;
  --primary: #47bbda;
  --dark-blue: #292b63;
  --text: #212529; /* Основной текст */
  --text-grey: #aeaeae; /* Серый текст  — вспомогательный текст, плейсхолдеры, breadcrumbs */
  --bg-grey: #fafafa;
  --bg-primary-light: #f8feff; /* Фон легкий голубой оттенок */

  --transition-300: 0.3s ease-in-out;
}
.first-section {
  position: relative;
  padding: 30px 0 60px;
  overflow: hidden;
}

.first-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/IT_Waves.svg);
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.first-section .container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.first-section .container .title__card {
  margin: 30px 0 50px;
  max-width: 540px;
}

.select-type {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.select-type__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.select-type__section-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 30px;
  background-color: var(--white);
  -webkit-transition:
    background-color var(--transition-300),
    -webkit-box-shadow var(--transition-300);
  transition:
    background-color var(--transition-300),
    -webkit-box-shadow var(--transition-300);
  -o-transition:
    box-shadow var(--transition-300),
    background-color var(--transition-300);
  transition:
    box-shadow var(--transition-300),
    background-color var(--transition-300);
  transition:
    box-shadow var(--transition-300),
    background-color var(--transition-300),
    -webkit-box-shadow var(--transition-300);
}
.select-type__section-link:focus-visible,
.select-type__section-link:hover {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 2px var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
  /* background-color: #f8feff; */
}
.select-type__section-link:focus-visible .select-type__name,
.select-type__section-link:hover .select-type__name {
  color: var(--primary);
}
.select-type__name {
  display: block;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  -webkit-transition: color var(--transition-300);
  -o-transition: color var(--transition-300);
  transition: color var(--transition-300);
}
.select-type__text {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}
.select-type__tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-block;
  margin-top: auto;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--text-grey);
}

@media screen and (max-width: 992px) {
  .first-section {
    padding: 40px 0 70px;
  }

  .first-section .container .title__card {
    margin: 20px 0 30px;
  }

  .first-section::before {
    width: 190%;
    left: -40%;
  }
  .select-type {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .select-type__item {
    width: 100%;
  }
  .select-type__section-link {
    padding: 20px 30px;
    width: 100%;
  }
  .select-type__name {
    margin-bottom: 8px;
    font-size: 2rem;
  }
  .select-type__tag {
    bottom: 16px;
  }
}
@media screen and (max-width: 576px) {
  .select-type__section-link {
    padding: 16px 20px;
  }

  .select-type__name {
    font-size: 1.75rem;
    line-height: 1.33;
  }
  .select-type__text {
    line-height: 1.33;
  }
}

.section {
  padding: 60px 0 120px;
}
.section__heading {
  margin-bottom: 50px;
}
.section__title {
  margin-bottom: 15px;
}
.section__descr {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}
.section__descr p:not(:last-of-type) {
  margin: 0 0 8px 0;
}
/* .section__note {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #212529;
}
.section__note:not(:last-child) {
  margin-bottom: 30px;
} */

@media screen and (max-width: 992px) {
  .section {
    padding: 40px 0 80px;
  }
  .section__heading {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .section__descr {
    font-size: 16px;
    line-height: 1.33;
  }
}

.levelblock:not(:last-of-type) {
  margin-bottom: 50px;
}
.levelblock__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 30px;
  border-bottom: 1px solid #00a0cb;
  padding-bottom: 15px;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  color: #00a0cb;
}
.levelblock__title svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.levelblock__descr {
  margin: 30px 0 20px;
  /* max-width: 560px; */
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}
.levelblock__descr a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #00a0cb;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.levelblock__descr a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #00a0cb;
  bottom: -2px;
  left: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.levelblock__descr p {
  line-height: 1.5;
}
.levelblock__descr p:not(:last-of-type) {
  margin: 0 0 8px 0;
}
.levelblock__descr a:hover::before,
.levelblock__descr a:focus-visible::before {
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.levelblock__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 40px;
}
.levelblock__gallery img {
  max-width: 100%;
  height: auto;
}

.levelblock__content {
  list-style: none;
  margin: 0;
  padding: 0;
}
.levelblock__item .accordion__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  cursor: pointer;
  background-color: #fff;
  border: none;
  -webkit-transition: padding-bottom 0.3s ease-in-out;
  -o-transition: padding-bottom 0.3s ease-in-out;
  transition: padding-bottom 0.3s ease-in-out;
}
.levelblock__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}
.levelblock__card-title {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #212529;
}
.levelblock__item a {
  margin: 0;
}
.levelblock__item p {
  margin: 0 0 8px 0;
  font-size: 16px !important;
  line-height: 1.5;
}
.levelblock__item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.levelblock__item ul li {
  position: relative;
  padding: 0 0 0 28px;
  margin: 0 0 8px 0;
  line-height: 1.5;
  list-style: none;
}
.levelblock__item ul li::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="rgb(0, 160, 203)" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section__notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.sec-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* flex-direction: column;
  align-items: flex-start; */
  gap: 16px;
  width: calc(50% - 16px / 2);
  padding: 16px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 25px 2px #6a818c1a;
  box-shadow: 0px 2px 25px 2px #6a818c1a;
}
.sec-note svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: #00a0cb;
}
.sec-note__txt {
  font-weight: 500;
  font-size: 15px;
  line-height: 110%;
}
.sec-note__txt p {
  display: inline;
  margin: 0;
}
.sec-note__txt a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  text-decoration: none;
  color: #00a0cb;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.sec-note__txt a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #00a0cb;
  bottom: -2px;
  left: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.sec-note__txt a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../image/link_arrow.svg);
  background-size: 1em 1em;
  background-position: center;
  background-repeat: no-repeat;
}
.sec-note__txt a:hover::before,
.sec-note__txt a:focus-visible::before {
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 992px) {
  .levelblock__title {
    gap: 16px;
    font-size: 23px;
  }
  .levelblock__gallery {
    margin: 20px 0 30px;
  }

  .sec-note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .levelblock__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
    font-size: 21px;
  }
  .levelblock__descr {
    font-size: 16px;
  }
  .levelblock__card-title {
    font-size: 16px;
  }
  .levelblock__item ul li {
    padding-left: 24px;
    line-height: 1.33;
  }
  .levelblock__item ul li::before {
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgb(0, 160, 203)" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>');
  }
  .section__notes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .sec-note {
    width: 100%;
  }
}

.table__wrapper {
  overflow-x: auto;
  margin: 50px 0;
  /* -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  background-color: #ffffff;
}
.table__el {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  table-layout: auto;
}
.table__el th,
.table__el td {
  border: 1px solid #000;
  padding: 14px 8px;
  text-align: center;
}
.table__header-row th {
  background-color: #00a0cb;
  padding: 16px 8px;
  border: 1px solid #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #ffffff;
}
.table__header-main {
  background-color: #00a0cb;
}
.table__header-group {
  background-color: #00a0cb;
}
.table__label {
  background-color: #00a0cb;
  padding-left: 15px;
  border: 1px solid #000;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #ffffff;
  text-align: left;
}
.table__label--threat {
  background-color: #00a0cb;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  vertical-align: middle;
  text-align: center;
}
.table__threat-number {
  background-color: #f5f5f5;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #000;
}
.table__row:nth-child(1) td,
.table__row:nth-child(2) td {
  background-color: #f5f5f5;
  color: #000;
  min-width: 60px;
}
.table__cell--uz1 {
  /* background-color: #00a0cb; */
  background-color: #24c8f3;
  color: #000;
  font-weight: 400;
}
.table__cell--uz2 {
  background-color: #4dc1e4;
  color: #000;
  font-weight: 400;
}
.table__cell--uz3 {
  background-color: #9adcf2;
  color: #000;
  font-weight: 400;
}
.table__cell--uz4 {
  background-color: #c0eaf7;
  color: #000;
  font-weight: 400;
}
.table__el thead th {
  background-color: #00a0cb;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
}
@media (max-width: 1280px) {
  .table__el {
    min-width: 900px;
  }
  .table__el thead th {
    font-size: 16px;
  }
  .table__el th,
  .table__el td {
    padding: 10px 6px;
    font-size: 14px;
    min-width: 15px;
  }
  .table__header-row th {
    font-size: 16px;
    padding: 14px 6px;
  }
  .table__label--threat {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .table__el {
    min-width: 800px;
  }
  .table__el th,
  .table__el td {
    padding: 10px 8px;
    font-size: 12px;
    /* min-width: 20px; */
  }
  .table__header-row th {
    font-size: 14px;
    padding: 12px 4px;
  }
  .table__label.table__label--threat {
    min-width: 180px;
  }
  .table__label {
    font-size: 12px;
    padding-left: 8px;
  }
  .table__label--threat {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .table__wrapper {
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  .table__el {
    min-width: 800px;
  }
  .table__el thead th {
    font-size: 14px;
  }
  .table__el th,
  .table__el td {
    font-size: 12px;
  }
  .table__header-row th {
    font-size: 12px;
    padding: 10px 7px;
  }
}

.gis-table__wrapper {
  overflow-x: auto;
  margin: 50px 0;
  /* -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  background-color: #ffffff;
}
.gis-table__el {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}
.gis-table__el th,
.gis-table__el td {
  border: 1px solid #212529;
  padding: 14px 20px;
  text-align: center;
  vertical-align: middle;
}
.gis-table__header-row th {
  background-color: #00a0cb;
  padding: 16px 20px;
  border: 1px solid #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
}
.gis-table__header-main {
  background-color: #00a0cb;
}
.gis-table__header-group {
  background-color: #00a0cb;
}
.gis-table__label {
  border: 1px solid #000;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-align: center;
}
.gis-table__cell {
  color: #000;
  font-weight: 500;
}

@media screen and (max-width: 992px) {
  .gis-table__wrapper {
    margin: 30px 0;
  }
}
@media (max-width: 1024px) {
  .gis-table__el {
    min-width: 500px;
  }
  .gis-table__el th,
  .gis-table__el td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .gis-table__header-row th {
    font-size: 14px;
    padding: 12px 12px;
    min-width: 160px;
  }
  .gis-table__label {
    font-size: 14px;
  }
}
