.breadcrumb {
  font-family: var(--font-second);
  font-size: 15px;
  background-color: var(--brc-bgc, var(--white));
  border: 1px solid var(--brc-border, var(--white));
}
.breadcrumb-wrapper {
  width: 100%;
  max-width: 1460px;
  margin: 20px auto;
  padding-left: 15px;
  padding-right: 15px;
}
.breadcrumb span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumb a,
.breadcrumb_last {
  color: var(--brc-text, var(--text-color-first));
  display: inline-block;
  padding: 10px 0 10px 15px;
}
.breadcrumb a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #a7a7a7;
}
.breadcrumb a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 5px;
}

html[dir="rtl"] .breadcrumb a,
html[dir="rtl"] .breadcrumb_last {
  padding: 10px 15px 10px 0;
}
html[dir="rtl"] .breadcrumb a::after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-right: 5px;
  margin-left: unset;
}

a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
}

.top-container h1 {
  text-align: center;
  color: var(--top-color, var(--title-color-second));
  margin-top: 60px;
  margin-bottom: 40px;
}
h1 {
  font-size: 40px;
  line-height: 150%;
  font-weight: 700;
  font-family: var(--font-first);
}

.top-text {
  font-family: var(--font-second);
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  color: var(--top-color, var(--text-color-second));
  max-width: 1200px;
  margin: 0 auto 15px;
}

/* ----------- */

.page-documents .section {
  background-size: 100% 620px;
  min-height: 70vh;
  margin-bottom: 100px;
}
.page-documents .top-container {
  margin-bottom: 110px;
}
.documents-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}
.documents-item {
  font-family: var(--font-second);
  font-size: 17px;
  line-height: 24px;
  color: var(--doc-item-color, var(--text-color-first));
  /* background-image: var(--doc-item-bgi, none); */
  background-color: #2b3040;
  border-radius: 3px;
  max-width: 370px;
  width: 100%;
  padding: 40px 30px;
}
.documents-item a {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.documents-item a svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  fill: #0faf59;
  margin-right: 12px;
}
@media screen and (max-width: 576px) {
  .documents-item {
    font-size: 15px;
  }
}

/* -------------- */
@media screen and (max-width: 992px) {
  .top-text {
    max-width: 650px;
  }
}
@media screen and (max-width: 576px) {
  .top-text {
    font-size: 17px;
    line-height: 23px;
  }
}
