:root {
  --accent-color: #10867a;
}
* {
  box-sizing: border-box;
}
body,
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
menu,
ul {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img,
abbr {
  border: 0;
}
address,
caption,
cite,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
legend {
  color: #000;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  font: 16px/24px "Golos Text", sans-serif;
  color: #151515;
  background: #f6f8f8;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-row-gap: 24px;
  grid-template-areas: "h h h h h h h h h h h h" "c c c c c c c c c c c c" "f f f f f f f f f f f f";
}
.container {
  display: grid;
  grid-auto-flow: column;
  max-width: 1440px;
  padding: 0 24px;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 24px;
  grid-template-areas: "l l l r r r r r r r r r";
}
.btn {
  padding: 0 24px;
  border-radius: 6px;
  background: var(--accent-color);
  height: 40px;
  color: #ffffff;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  width: fit-content;
}
.btn:hover {
  color: #ffffff !important;
  background: color-mix(in srgb, var(--accent-color), black 20%);
}
.link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
a {
  text-decoration: none;
}
a:hover {
  color: var(--accent-color) !important;
}
header {
  display: grid;
  place-items: center;
  grid-area: h;
  height: 64px;
  background: var(--accent-color);
}
header .logo {
  grid-area: l;
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: left;
}
header .logo a {
  color: inherit;
}
header .logo a:hover {
  color: inherit !important;
}
header menu {
  grid-area: r;
  display: grid;
  gap: 40px;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
}
header menu li {
  list-style: none;
}
header menu li a {
  color: #ffffff;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
header menu li a:hover {
  color: #ffffff !important;
}
.main {
  display: grid;
  place-items: center;
  grid-area: c;
}
.main aside {
  grid-area: l;
}
.main aside .block ul {
  list-style: none;
}
.main aside .block ul li a {
  display: block;
  color: #151515;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  height: 40px;
}
.main main {
  grid-area: r;
}
.main main .content {
  display: grid;
  gap: 24px;
}
.main main .content_title {
  color: #043625;
  font-family: Golos Text;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.main main .content_breadcrumbs {
  color: var(--accent-color);
}
.main main .content_breadcrumbs a {
  color: inherit;
  margin-right: 8px;
}
.main main .content_breadcrumbs a:not(:first-child) {
  margin-left: 8px;
}
.main main .content_breadcrumbs a:hover {
  text-decoration: underline;
}
.main main .content_breadcrumbs span {
  color: #151515;
  margin-left: 8px;
}
.main main .content .wrapper {
  display: grid;
  gap: 24px;
}
.main main .content .item {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
}
.main main .content .item .header {
  padding: 24px 24px 16px 24px;
}
.main main .content .item .header .title {
  color: #151515;
  font-family: Golos Text;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}
.main main .content .item .header .info {
  color: #858686;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  grid-column-gap: 8px;
}
.main main .content .item .header .info .important {
  display: inline-block;
  border-radius: 4px;
  background: #ffc107;
  color: #151515;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 0 6px;
}
.main main .content .item .header .info .data {
  display: inline-block;
}
.main main .content .item .header .info a {
  padding-left: 8px;
  border-left: 1px solid #e4e4e4;
  color: inherit;
}
.main main .content .item .middle {
  padding: 0 24px 24px 24px;
  color: #151515;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.main main .content .item .bottom {
  padding: 16px 24px;
  border-top: 1px solid #e4e4e4;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
}
.main main .content .item .bottom .comments {
  color: #858686;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.main main .content .item .bottom a {
  display: grid;
  align-items: center;
}
.main main .content .docs {
  margin: 0 24px 24px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: url("../../assets/img/docs.svg") no-repeat right -50px top 20px, linear-gradient(180deg, #dce8e8 0%, #ffffff 100%);
  padding: 24px;
}
.main main .content .docs .title {
  font-family: Golos Text;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
}
.main main .content .docs .files {
  display: grid;
  grid-row-gap: 16px;
}
.main main .content .docs .files .file {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  grid-template-columns: 40px 1fr;
}
.main main .content .docs .files .file .icon {
  margin-right: 8px;
  display: grid;
}
.main main .content .docs .files .file .size {
  color: #858686;
  font-family: Golos Text;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
.main main .content .docs .files .file .actions {
  display: grid;
  grid-auto-flow: column;
  gap: 22px;
}
.main main .content .docs .files .file .actions a {
  display: grid;
  padding: 3px;
}
.main main .content .docs .files .file .actions a:hover {
  border-radius: 6px;
  background: rgba(220, 232, 232, 0.7);
}
.main main .content > .comments {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  padding: 24px;
}
.main main .content > .comments .title {
  font-family: Golos Text;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 32px;
}
.main main .content > .comments .comment {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 16px;
  justify-content: start;
  grid-template-columns: 72px 1fr;
}
.main main .content > .comments .comment .photo {
  max-width: 72px;
  max-height: 72px;
}
.main main .content > .comments .comment .photo img {
  border-radius: 50%;
}
.main main .content > .comments .comment .photo .noimage {
  border: 1px solid #e4e4e4;
  padding: 5px;
}
.main main .content > .comments .comment form {
  display: grid;
  grid-row-gap: 16px;
  justify-items: end;
}
.main main .content > .comments .comment .info {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 8px;
  justify-content: start;
  margin-bottom: 4px;
}
.main main .content > .comments .comment .info a {
  color: #151515;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.main main .content > .comments .comment .info .date {
  color: #858686;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.main main .content .form {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  padding: 24px;
  gap: 24px;
}
.main main .content .form div {
  display: grid;
}
.error_404 {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  gap: 24px;
  justify-content: center;
  justify-items: center;
  padding: 24px;
}
label {
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
}
input,
textarea {
  color: #151515;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 9px 11px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #ffffff;
}
input::placeholder,
textarea::placeholder {
  color: #858686;
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
input:autofill,
textarea:autofill,
input:focus,
textarea:focus,
input:focus-visible,
textarea:focus-visible,
input:active,
textarea:active {
  border-color: var(--accent-color);
  font-family: Golos Text;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  outline: none;
}
textarea {
  width: 100%;
  padding: 12px;
}
button {
  border: none;
  cursor: pointer;
}
footer {
  display: grid;
  place-items: center;
  grid-area: f;
  border-top: 1px solid #e4e4e4;
  background: #ffffff;
  padding: 64px 0;
}
footer .copy {
  grid-area: l;
}
footer .copy .logo {
  color: var(--accent-color);
  font-family: Golos Text;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
}
footer .info {
  grid-area: r;
}
/*# sourceMappingURL=style.css.map */