:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.documents {
  display: flex;
  flex-direction: column;
  padding: calc(min(18.6666666667vw, 100px) + 50px) var(--container-size) 60px;
}
@media screen and (width >= 768px) {
  .documents {
    padding: 180px var(--container-size) 60px;
  }
}
@media screen and (width >= 1025px) {
  .documents {
    padding: 10.4166666667vw var(--container-size) 3.125vw;
  }
}
.documents__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (width >= 768px) {
  .documents__top {
    gap: 40px;
  }
}
@media screen and (width >= 1025px) {
  .documents__top {
    gap: 2.0833333333vw;
  }
}
.documents__back {
  align-self: flex-start;
}
.documents__title {
  font-family: "Gilroy", sans-serif;
  font-size: min(8.5333333333vw, 60px);
  font-weight: 500;
  line-height: 100%;
  color: #292825;
  letter-spacing: -0.05em;
}
@media screen and (width >= 768px) {
  .documents__title {
    font-size: min(7.03125vw, 60px);
  }
}
@media screen and (width >= 1025px) {
  .documents__title {
    font-size: max(3.125vw, 32px);
  }
}
.documents__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (width >= 768px) {
  .documents__list {
    gap: 20px;
  }
}
@media screen and (width >= 1025px) {
  .documents__list {
    gap: 1.0416666667vw;
    margin-top: 2.0833333333vw;
  }
}
.documents__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ff601e;
  border-radius: 20px;
}
@media screen and (width >= 768px) {
  .documents__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (width >= 1025px) {
  .documents__item {
    padding: 1.0416666667vw;
    border-radius: 1.0416666667vw;
  }
}
.documents__name {
  font-family: "Gilroy", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .documents__name {
    font-size: max(1.1458333333vw, 16px);
  }
}
.documents__name {
  flex: 1 0 0;
  min-width: 0;
}
.documents__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
}
@media screen and (width >= 1025px) {
  .documents__actions {
    gap: 0.5208333333vw;
  }
}
.documents__view {
  color: #ff601e;
}
.documents__download {
  color: #fff;
}
.documents__download svg, .documents__view svg {
  width: 20px;
  height: 20px;
}
@media screen and (width >= 1025px) {
  .documents__download svg, .documents__view svg {
    width: max(1.0416666667vw, 12px);
    height: max(1.0416666667vw, 12px);
  }
}