/* grid */

html,
body {
  height: auto;
  width: 100vw;

  min-height: 100vh;
  min-width: 100vw;

  max-width: 100vw;

  overflow-x: hidden;
  overflow-y: auto;
}

.wrapper > header {
  grid-area: header;
}

.wrapper > nav {
  grid-area: nav;
}

.wrapper > main {
  grid-area: main;
}

.wrapper > aside {
  grid-area: aside;
}

.wrapper > .contact {
  grid-area: contact;
}

.wrapper > footer {
  grid-area: footer;
}

/* mobile */

@media (0px <=width <=700px) {
  .wrapper {
    min-height: 100vh;
    width: 100vw;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr auto auto;
    grid-template-areas:
      "header"
      "nav"
      "aside"
      "main"
      "contact"
      "footer";
    gap: 0;
  }

  /* header */

  .wrapper > header {
    padding: 0 0;
  }

  .wrapper > header .row {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .wrapper > header .row .header-shorttitle {
    display: block;
  }

  .wrapper > header .row .header-title {
    display: none;
  }

  .wrapper > header .row .header-subtitle {
    display: none;
  }

  .wrapper > header .row .header-logo {
    height: 60px;
    width: 60px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    margin-left: 1rem;
  }

  .wrapper > header .row .header-hamburger {
    height: calc(60px + 2rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
  }

  .wrapper > header .row .header-hamburger .header-hamburger-parts {
    margin-top: -8px;
    height: 45px;
    z-index: 5;
  }

  .wrapper > header .row .header-hamburger .header-hamburger-parts div {
    position: relative;
    width: 3em;
    height: 7px;
    border-radius: 3px;
    background-color: currentColor;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }

  .wrapper
    > header
    .row
    .header-hamburger.open
    .header-hamburger-parts
    .top-bun {
    transform: rotate(-45deg);
    margin-top: 22px;
  }

  .wrapper
    > header
    .row
    .header-hamburger.open
    .header-hamburger-parts
    .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }

  .wrapper > header .row .header-hamburger.open .header-hamburger-parts .meat {
    transform: rotate(45deg);
    margin-top: -7px;
  }

  /* nav */

  .wrapper > nav {
    padding: 0 1rem;
    display: none;
  }

  .wrapper > nav.open {
    display: block;
  }

  .wrapper > nav .row {
    width: 100%;
  }

  .wrapper > nav .main-menu .menu-item {
    border-top: 1px solid currentColor;
  }

  .wrapper > nav .main-menu > .menu-item:first-of-type {
    border-top: none;
  }

  .wrapper > nav .main-menu .menu-item a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .wrapper > nav .main-menu .menu-item-has-children > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
    pointer-events: none;
  }

  .wrapper > nav .main-menu .sub-menu {
    display: none;
  }

  .wrapper > nav .main-menu .menu-item-has-children.active > .sub-menu {
    display: block;
  }

  .wrapper.border_d > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_q > nav .main-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper.border_d > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_q > nav .main-menu .menu-item-has-children.active > a:after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1rem;
    font-style: normal;
  }

  .wrapper.border_all > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_b > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_c > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_t > nav .main-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-down-light.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper.border_all > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_b > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_c > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_t > nav .main-menu .menu-item-has-children.active > a:after {
    content: url(../img/chevron-up-light.svg);
    font-size: 1rem;
    font-style: normal;
  }

  .wrapper > nav .main-menu .current-page-item > a {
    font-weight: bold;
  }

  .wrapper > nav .main-menu > .menu-item:first-of-type a {
    padding-top: calc(0.5rem - 1px);
  }

  .wrapper > nav .main-menu .sub-menu .menu-item {
    margin-left: 1rem;
  }

  /* main */

  .wrapper > main {
    padding: 2rem 1rem;

    border-top: 2px solid currentColor;
  }

  .wrapper > main .row {
    width: 100%;
  }

  .wrapper > main .row .column {
    width: 100%;
  }

  .wrapper > main figure img {
    border: 1px solid currentColor;
  }

  main .responsive-table {
    width: calc(100vw - 3rem) !important;
    overflow-x: auto !important;
  }

  main .responsive-table .td_links a {
    display: block;
  }

  main .responsive-table .td_contacts span {
    display: block;
  }

  /* aside */

  .wrapper > aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;

    padding: 1rem 1rem;
    border-top: 2px solid currentColor;
  }

  .wrapper > aside .row {
    width: 100%;
  }

  .wrapper > aside .row.options {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .wrapper > aside .row.options .column {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .wrapper > aside .row.options .box.languages ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .wrapper > aside .row.options .box.languages ul li:first-of-type::after {
    content: "\A0|\A0";
  }

  .wrapper > aside .row.options .box.languages ul li.active {
    font-weight: bold;
  }

  .wrapper > aside .row.options .box.search {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .wrapper > aside .row.options .box.search form {
    width: 100%;
    max-width: 50vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .wrapper > aside .row.options .box.search form input {
    width: 100%;
    padding: 0.25rem 0.5rem;
    border: 1px solid currentColor;
  }

  .wrapper > aside .row.options .box.search form button {
    width: auto;
    padding: 0.25rem 0.5rem;
    text-align: center;
    border: 1px solid currentColor;
  }

  .wrapper > aside .row.news {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }

  .wrapper > aside .row.news .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > aside .row.news details {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.news details summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
  }

  .wrapper > aside .row.news details summary::after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.news details[open] summary::after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.news .box.archive {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.news .box.archive .archive-item {
    cursor: pointer;
    display: block;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.archive .archive-item a {
    display: block;
    width: 100%;
    font-weight: bold;
  }

  .wrapper > aside .row.news .box.news {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.news .box.news .news-item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
  }

  .wrapper > aside .row.news .box.news .news-item .news-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    padding: 0.5rem;
  }

  .wrapper > aside .row.news .box.news .news-item .news-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.paper,
  .wrapper > aside .row.news .box.appear {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.news .box.paper .paper-item,
  .wrapper > aside .row.news .box.appear .appear-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.paper .paper-item span:first-of-type,
  .wrapper > aside .row.news .box.appear .appear-item span:first-of-type {
    font-weight: bold;
  }

  .wrapper > aside .row.list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }

  .wrapper > aside .row.list .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > aside .row.list details {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.list details summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
  }

  .wrapper > aside .row.list details summary::after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.list details[open] summary::after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.list .box.projectlist {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.list .box.projectlist .projectlist-item,
  .wrapper > aside .row.list .box.projectlist .projectlist-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.list .box.projectlist .projectlist-item a {
    width: 100%;
  }

  /* contact */

  .wrapper > .contact {
    padding: 1rem 1rem;
  }

  .wrapper > .contact .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > .contact .row .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > .contact .row .column:first-of-type {
    padding-bottom: 1rem;
  }

  .wrapper > .contact .row .column:last-of-type {
    border-top: 1px solid currentColor;
    padding-top: 1rem;
  }

  .wrapper > .contact .row .column .box {
    width: 100%;
  }

  .wrapper > .contact .row .column .box.map iframe {
    width: 100%;
    max-width: 512px;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    border: 1px solid currentColor;
  }

  /* footer */

  .wrapper > footer {
    padding: 1rem 1rem;
  }

  .wrapper > footer .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > footer .row .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    border-top: 1px solid currentColor;
    padding: 1rem 0;
  }

  .wrapper > footer .row:first-of-type .column:first-of-type {
    border-top: none;
    padding-top: 0;
  }

  .wrapper > footer .row:last-of-type .column:last-of-type {
    padding-bottom: 0;
  }

  .wrapper > footer .row .column .box {
    width: 100%;
  }

  .wrapper > footer .row .column .box.sfb img {
    width: 100%;
    max-width: 512px;
    aspect-ratio: 16 / 9;
    border: 1px solid currentColor;
  }

  .wrapper > footer .row .column .box.logo img {
    width: auto;
    height: 90px;
  }
}

/* tablet */

@media (701px <=width <=1279px) {
  .wrapper {
    min-height: 100vh;
    width: 100vw;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr auto auto;
    grid-template-areas:
      "header"
      "nav"
      "aside"
      "main"
      "contact"
      "footer";
    gap: 0;
  }

  /* header */

  .wrapper > header {
    padding: 0 0;
  }

  .wrapper > header .row {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .wrapper > header .row .header-shorttitle {
    display: none;
  }

  .wrapper > header .row .header-title {
    display: block;
  }

  .wrapper > header .row .header-subtitle {
    display: none;
  }

  .wrapper > header .row .header-logo {
    height: 80px;
    width: 80px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    margin-left: 2rem;
  }

  .wrapper > header .row .header-hamburger {
    height: calc(80px + 2rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .wrapper > header .row .header-hamburger .header-hamburger-parts {
    margin-top: -8px;
    height: 45px;
    z-index: 5;
  }

  .wrapper > header .row .header-hamburger .header-hamburger-parts div {
    position: relative;
    width: 3em;
    height: 7px;
    border-radius: 3px;
    background-color: currentColor;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }

  .wrapper
    > header
    .row
    .header-hamburger.open
    .header-hamburger-parts
    .top-bun {
    transform: rotate(-45deg);
    margin-top: 22px;
  }

  .wrapper
    > header
    .row
    .header-hamburger.open
    .header-hamburger-parts
    .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }

  .wrapper > header .row .header-hamburger.open .header-hamburger-parts .meat {
    transform: rotate(45deg);
    margin-top: -7px;
  }

  /* nav */

  .wrapper > nav {
    padding: 0 2rem;
    display: none;
  }

  .wrapper > nav.open {
    display: block;
  }

  .wrapper > nav .row {
    width: 100%;
  }

  .wrapper > nav .main-menu .menu-item {
    border-top: 1px solid currentColor;
  }

  .wrapper > nav .main-menu > .menu-item:first-of-type {
    border-top: none;
  }

  .wrapper > nav .main-menu .menu-item a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .wrapper > nav .main-menu .menu-item-has-children > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
    pointer-events: none;
  }

  .wrapper > nav .main-menu .sub-menu {
    display: none;
  }

  .wrapper > nav .main-menu .menu-item-has-children.active > .sub-menu {
    display: block;
  }

  .wrapper.border_d > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_q > nav .main-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper.border_d > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_q > nav .main-menu .menu-item-has-children.active > a:after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1rem;
    font-style: normal;
  }

  .wrapper.border_all > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_b > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_c > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_t > nav .main-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-down-light.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper.border_all > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_b > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_c > nav .main-menu .menu-item-has-children.active > a:after,
  .wrapper.border_t > nav .main-menu .menu-item-has-children.active > a:after {
    content: url(../img/chevron-up-light.svg);
    font-size: 1rem;
    font-style: normal;
  }

  .wrapper > nav .main-menu .current-page-item > a {
    font-weight: bold;
  }

  .wrapper > nav .main-menu > .menu-item:first-of-type a {
    padding-top: calc(0.5rem - 1px);
  }

  .wrapper > nav .main-menu .sub-menu .menu-item {
    margin-left: 1rem;
  }

  /* main */

  .wrapper > main {
    padding: 2rem 2rem;
    border-top: 2px solid currentColor;
  }

  .wrapper > main .row {
    width: 100%;
  }

  .wrapper > main .row .column {
    width: 100%;
  }

  .wrapper > main figure img {
    border: 1px solid currentColor;
  }

  main .responsive-table {
    width: calc(100vw - 5rem) !important;
    overflow-x: auto !important;
  }

  main .responsive-table .td_links a {
    display: block;
  }

  main .responsive-table .td_contacts span {
    display: block;
  }

  /* aside */

  .wrapper > aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;

    padding: 1rem 2rem;
    border-top: 2px solid currentColor;
  }

  .wrapper > aside .row {
    width: 100%;
  }

  .wrapper > aside .row.options {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .wrapper > aside .row.options .column {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .wrapper > aside .row.options .box.languages ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .wrapper > aside .row.options .box.languages ul li:first-of-type::after {
    content: "\A0|\A0";
  }

  .wrapper > aside .row.options .box.languages ul li.active {
    font-weight: bold;
  }

  .wrapper > aside .row.options .box.search {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .wrapper > aside .row.options .box.search form {
    width: 100%;
    max-width: 50vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .wrapper > aside .row.options .box.search form input {
    width: 100%;
    padding: 0.25rem 0.5rem;
    border: 1px solid currentColor;
  }

  .wrapper > aside .row.options .box.search form button {
    width: auto;
    padding: 0.25rem 0.5rem;
    text-align: center;
    border: 1px solid currentColor;
  }

  .wrapper > aside .row.news {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }

  .wrapper > aside .row.news .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > aside .row.news details {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.news details summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
  }

  .wrapper > aside .row.news details summary::after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.news details[open] summary::after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.news .box.archive {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.news .box.archive .archive-item {
    cursor: pointer;
    display: block;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.archive .archive-item a {
    display: block;
    width: 100%;
    font-weight: bold;
  }

  .wrapper > aside .row.news .box.news {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.news .box.news .news-item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
  }

  .wrapper > aside .row.news .box.news .news-item .news-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    padding: 0.5rem;
  }

  .wrapper > aside .row.news .box.news .news-item .news-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.paper,
  .wrapper > aside .row.news .box.appear {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.news .box.paper .paper-item,
  .wrapper > aside .row.news .box.appear .appear-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.paper .paper-item span:first-of-type,
  .wrapper > aside .row.news .box.appear .appear-item span:first-of-type {
    font-weight: bold;
  }

  .wrapper > aside .row.list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }

  .wrapper > aside .row.list .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > aside .row.list details {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.list details summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
  }

  .wrapper > aside .row.list details summary::after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.list details[open] summary::after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.list .box.projectlist {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.list .box.projectlist .projectlist-item,
  .wrapper > aside .row.list .box.projectlist .projectlist-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.list .box.projectlist .projectlist-item a {
    width: 100%;
  }

  /* contact */

  .wrapper > .contact {
    padding: 1rem 2rem;
  }

  .wrapper > .contact .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > .contact .row .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > .contact .row .column:first-of-type {
    padding-bottom: 1rem;
  }

  .wrapper > .contact .row .column:last-of-type {
    border-top: 1px solid currentColor;
    padding-top: 1rem;
  }

  .wrapper > .contact .row .column .box {
    width: 100%;
  }

  .wrapper > .contact .row .column .box.map iframe {
    width: 100%;
    max-width: 512px;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    border: 1px solid currentColor;
  }

  /* footer */

  .wrapper > footer {
    padding: 1rem 2rem;
  }

  .wrapper > footer .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > footer .row .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    border-top: 1px solid currentColor;
    padding: 1rem 0;
  }

  .wrapper > footer .row:first-of-type .column:first-of-type {
    border-top: none;
    padding-top: 0;
  }

  .wrapper > footer .row:last-of-type .column:last-of-type {
    padding-bottom: 0;
  }

  .wrapper > footer .row .column .box {
    width: 100%;
  }

  .wrapper > footer .row .column .box.sfb img {
    width: 100%;
    max-width: 512px;
    aspect-ratio: 16 / 9;
    border: 1px solid currentColor;
  }

  .wrapper > footer .row .column .box.logo img {
    width: auto;
    height: 90px;
  }
}

/* laptop & desktops */

@media (width >=1280px) {
  .wrapper {
    min-height: 100vh;
    width: 100vw;

    display: grid;
    grid-template-columns: 1fr calc(900px - 2rem) 300px 1fr;
    grid-template-rows: auto auto 1fr auto auto auto;
    grid-template-areas:
      ". header header ."
      ". nav nav ."
      ". main aside. "
      "contact contact contact contact"
      "footer footer footer footer";
    gap: 0 2rem;
  }

  /* header */

  .wrapper > header {
    padding: 2rem 0;
  }

  .wrapper > header .row {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
  }

  .wrapper > header .row .header-shorttitle {
    display: none;
  }

  .wrapper > header .row .header-title {
    display: block;
  }

  .wrapper > header .row .header-subtitle {
    display: none;
  }

  .wrapper > header .row .header-logo {
    height: 100px;
    width: 100px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .wrapper > header .row .header-shorttitle {
    display: none;
  }

  .wrapper > header .row .header-title {
    display: block;
  }

  .wrapper > header .row .header-subtitle {
    display: block;
  }

  .wrapper > header .row .header-hamburger {
    display: none;
  }

  /* nav */

  .wrapper > nav {
    padding: 1rem 0;
  }

  .wrapper > nav .row {
    width: 100%;
  }

  .wrapper > nav .main-menu {
    width: 100%;

    z-index: 111;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .wrapper > nav .main-menu .menu-item {
    position: relative;
    width: 100%;
    text-align: center;
    display: block;
  }

  .wrapper > nav .main-menu > .menu-item a {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
  }

  .wrapper > nav .main-menu .sub-menu {
    display: none;
    z-index: 222;
  }

  .wrapper > nav .main-menu > .menu-item-has-children:hover > .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .wrapper > nav .main-menu .menu-item-has-children > a {
    pointer-events: none;
  }

  .wrapper > nav .main-menu > .menu-item-has-children > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 0.5rem;
  }

  .wrapper.border_d > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_q > nav .main-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper.border_all > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_b > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_c > nav .main-menu .menu-item-has-children > a:after,
  .wrapper.border_t > nav .main-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-down-light.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > nav .main-menu .sub-menu .menu-item-has-children > a:after {
    content: url(../img/chevron-right-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > nav .main-menu .sub-menu .menu-item {
    text-align: left;
  }

  .wrapper > nav .main-menu .sub-menu .menu-item a {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .wrapper > nav .main-menu .sub-menu > .menu-item-has-children > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 0.5rem;
  }

  .wrapper > nav .main-menu .sub-menu .sub-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: calc(100% + 2px);
  }

  /* main */

  .wrapper > main {
    padding: 4rem 0;
  }

  .wrapper > main .row {
    width: 100%;
  }

  .wrapper > main .row .column {
    width: 100%;
  }

  .wrapper > main figure img {
    border: 1px solid currentColor;
  }

  main .responsive-table {
    width: calc(900px - 2rem) !important;
    overflow-x: auto !important;
  }

  main .responsive-table .td_links a {
    display: block;
  }

  main .responsive-table .td_contacts span {
    display: block;
  }

  /* aside */

  .wrapper > aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;

    padding: 4rem 0;
  }

  .wrapper > aside .row {
    width: 100%;
  }

  .wrapper > aside .row.options {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .wrapper > aside .row.options .column {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .wrapper > aside .row.options .box.languages ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .wrapper > aside .row.options .box.languages ul li:first-of-type::after {
    content: "\A0|\A0";
  }

  .wrapper > aside .row.options .box.languages ul li.active {
    font-weight: bold;
  }

  .wrapper > aside .row.options .box.search {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .wrapper > aside .row.options .box.search form {
    width: 100%;
    max-width: 50vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .wrapper > aside .row.options .box.search form input {
    width: 100%;
    padding: 0.25rem 0.5rem;
    border: 1px solid currentColor;
  }

  .wrapper > aside .row.options .box.search form button {
    width: auto;
    padding: 0.25rem 0.5rem;
    text-align: center;
    border: 1px solid currentColor;
  }

  .wrapper > aside .row.news {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }

  .wrapper > aside .row.news .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > aside .row.news details {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.news details summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
  }

  .wrapper > aside .row.news details summary::after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.news details[open] summary::after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.news .box.archive {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.news .box.archive .archive-item {
    cursor: pointer;
    display: block;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.archive .archive-item a {
    display: block;
    width: 100%;
    font-weight: bold;
  }

  .wrapper > aside .row.news .box.news {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.news .box.news .news-item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    font-size: 83%;
  }

  .wrapper > aside .row.news .box.news .news-item .news-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    padding: 0.5rem;
  }

  .wrapper > aside .row.news .box.news .news-item .news-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 1rem;
  }

  .wrapper > aside .row.news .box.paper,
  .wrapper > aside .row.news .box.appear {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.news .box.paper .paper-item,
  .wrapper > aside .row.news .box.appear .appear-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 83%;
  }

  .wrapper > aside .row.news .box.paper .paper-item span:first-of-type,
  .wrapper > aside .row.news .box.appear .appear-item span:first-of-type {
    font-weight: bold;
  }

  .wrapper > aside .row.list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }

  .wrapper > aside .row.list .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .wrapper > aside .row.list details {
    width: 100%;
    border: 1px solid currentColor;
    overflow: hidden;
  }

  .wrapper > aside .row.list details summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
  }

  .wrapper > aside .row.list details summary::after {
    content: url(../img/chevron-down-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.list details[open] summary::after {
    content: url(../img/chevron-up-dark.svg);
    font-size: 1.25rem;
    font-style: normal;
  }

  .wrapper > aside .row.list .box.projectlist {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapper > aside .row.list .box.projectlist .projectlist-item,
  .wrapper > aside .row.list .box.projectlist .projectlist-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 83%;
  }

  .wrapper > aside .row.list .box.projectlist .projectlist-item a {
    width: 100%;
  }

  /* contact */

  .wrapper > .contact .row {
    width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;

    display: grid;
    grid-template-columns: 1fr 2.5fr;
    grid-template-rows: auto;
  }

  .wrapper > .contact .row .column {
    width: 100%;
  }

  .wrapper > .contact .row .column:first-of-type {
    padding-right: 2rem;
  }

  .wrapper > .contact .row .column:last-of-type {
    border-left: 1px solid currentColor;
    padding-left: 2rem;
  }

  .wrapper > .contact .row .column .box {
    width: 100%;
  }

  .wrapper > .contact .row .column .box.map iframe {
    width: 100%;
    height: 214px;
    pointer-events: none;
    border: 1px solid currentColor;
  }

  /* footer */

  .wrapper > footer .row {
    width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;

    display: grid;
    grid-template-columns: 1fr 1.25fr 1.25fr;
    grid-template-rows: auto;
  }

  .wrapper > footer .row .column:nth-of-type(2) {
    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
    padding: 0 2rem;
  }

  .wrapper > footer .row .column:nth-of-type(1) {
    padding-right: 2rem;
  }

  .wrapper > footer .row .column:nth-of-type(3) {
    padding-left: 2rem;
  }

  .wrapper > footer .row .column .box {
    width: 100%;
  }

  .wrapper > footer .row .column .box.sfb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid currentColor;
  }

  .wrapper > footer .row .column .box.logo img {
    width: auto;
    max-height: 100px;
  }
}

/* special items */

@media (0px <=width <=700px) {
  main .archive-details .archive-details-item {
    width: 100%;
    padding: 0.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  main .archive-details .archive-details-item span:first-of-type {
    font-weight: bold;
  }

  main .box.findings {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.findings .findings-item {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1rem;
  }

  main .box.findings .findings-item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

  main .box.findings .findings-item .findings-title {
    display: block;
    font-weight: bold;
  }

  main .box.projects {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.projects .project-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.projects .project-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.projects .project-item span {
    display: block;
  }

  main .box.projects .project-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main .box.projects .project-item span:last-of-type {
    font-weight: bold;
    margin-top: 0.5rem;
  }

  main .box.institutes {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.institutes .institute-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.institutes .institute-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.institutes .institute-item span {
    display: block;
  }

  main .box.institutes .institute-item span:nth-of-type(2) {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  main .box.home {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.home .home-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.home .home-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.home .home-item span {
    display: block;
  }

  main .box.home .home-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main .box.cards {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.cards .card-item {
    width: 100%;
    max-width: 300px;

    display: grid;
    grid-template-rows: 1fr auto;

    cursor: pointer;
  }

  main .box.cards .card-item .card-top {
    width: 100%;

    display: grid;
    grid-template-rows: 300px auto;
    border: 1px solid currentColor;
  }

  main .box.cards .card-item .card-top .card-right {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.5rem 1rem;
  }

  main .box.cards .card-item .card-top .card-right .card-name {
    font-weight: bold;
  }

  main .box.cards .card-item .card-top .card-right a {
    text-decoration: none;
  }

  main .box.cards .card-item .card-bottom {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  main .box.cards .card-item .card-bottom .card-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  main .box.cards .card-item .card-bottom .card-links a {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
  }

  main .box.links {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.links .link-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.links .link-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.links .link-item span {
    display: block;
  }

  main .box.links .link-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main details h2 {
    padding: 0 1rem;
  }

  .scroller {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 333;

    height: 50px;
    width: 50px;

    text-align: center;
    font-size: 1.95rem;
  }
}

@media (701px <=width <=1279px) {
  main .archive-details .archive-details-item {
    width: 100%;
    padding: 0.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  main .archive-details .archive-details-item span:first-of-type {
    font-weight: bold;
  }

  main .box.findings {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.findings .findings-item {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1rem;
  }

  main .box.findings .findings-item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

  main .box.findings .findings-item .findings-title {
    display: block;
    font-weight: bold;
  }

  main .box.projects {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.projects .project-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.projects .project-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.projects .project-item span {
    display: block;
  }

  main .box.projects .project-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main .box.projects .project-item span:last-of-type {
    font-weight: bold;
    margin-top: 0.5rem;
  }

  main .box.institutes {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.institutes .institute-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.institutes .institute-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.institutes .institute-item span {
    display: block;
  }

  main .box.institutes .institute-item span:nth-of-type(2) {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  main .box.home {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.home .home-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.home .home-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.home .home-item span {
    display: block;
  }

  main .box.home .home-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main .box.cards {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.cards .card-item {
    width: 100%;
    max-width: 600px;

    display: grid;
    grid-template-rows: 1fr auto;

    cursor: pointer;
  }

  main .box.cards .card-item .card-top {
    width: 100%;

    display: grid;
    grid-template-columns: 125px 1fr;
    grid-template-rows: 125px;
    border: 1px solid currentColor;
  }

  main .box.cards .card-item .card-top .card-right {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.5rem 1rem;
  }

  main .box.cards .card-item .card-top .card-right .card-name {
    font-size: 1.125rem;
  }

  main .box.cards .card-item .card-top .card-right a {
    text-decoration: none;
  }

  main .box.cards .card-item .card-bottom {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  main .box.cards .card-item .card-bottom .card-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  main .box.cards .card-item .card-bottom .card-links a {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
  }

  main .box.links {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.links .link-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.links .link-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.links .link-item span {
    display: block;
  }

  main .box.links .link-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main details h2 {
    padding: 0 1rem;
  }

  .scroller {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 333;

    height: 50px;
    width: 50px;

    text-align: center;
    font-size: 1.95rem;
  }
}

@media (width >=1280px) {
  main .archive-details .archive-details-item {
    width: 100%;
    padding: 0.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  main .archive-details .archive-details-item span:first-of-type {
    font-weight: bold;
  }

  main .box.findings {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.findings .findings-item {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1rem;
  }

  main .box.findings .findings-item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

  main .box.findings .findings-item .findings-title {
    display: block;
    font-weight: bold;
  }

  main .box.projects {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.projects .project-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.projects .project-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.projects .project-item span {
    display: block;
  }

  main .box.projects .project-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main .box.projects .project-item span:last-of-type {
    font-weight: bold;
    margin-top: 0.5rem;
  }

  main .box.institutes {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.institutes .institute-item img {
    height: 150px;
    width: 150px;
  }

  main .box.institutes .institute-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.institutes .institute-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.institutes .institute-item span {
    display: block;
  }

  main .box.institutes .institute-item span:nth-of-type(2) {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  main .box.home {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.home .home-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.home .home-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.home .home-item span {
    display: block;
  }

  main .box.home .home-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main .box.cards {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.cards .card-item {
    width: 100%;
    max-width: 650px;

    display: grid;
    grid-template-rows: 1fr auto;

    cursor: pointer;
  }

  main .box.cards .card-item .card-top {
    width: 100%;

    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: 150px;
    border: 1px solid currentColor;
  }

  main .box.cards .card-item .card-top .card-right {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.5rem 1rem;
  }

  main .box.cards .card-item .card-top .card-right .card-name {
    font-size: 1.125rem;
  }

  main .box.cards .card-item .card-top .card-right a {
    text-decoration: none;
  }

  main .box.cards .card-item .card-bottom {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  main .box.cards .card-item .card-bottom .card-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  main .box.cards .card-item .card-bottom .card-links a {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
  }

  main .box.links {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    margin-bottom: 1rem;
  }

  main .box.links .link-item {
    cursor: pointer;
    padding: 1rem 1rem;
    border: 1px solid currentColor;
  }

  main .box.links .link-item a {
    text-align: center;
    text-decoration: none;
  }

  main .box.links .link-item span {
    display: block;
  }

  main .box.links .link-item span:first-of-type {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
  }

  main details h2 {
    padding: 0 1rem;
  }

  .scroller {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 333;

    height: 50px;
    width: 50px;

    text-align: center;
    font-size: 2.44rem;
  }
}
