:root {
  --color-light: #FFFFFF;
  --color-gray-light: #E8EAE9;
  --color-gray-dark: #747474;
  --color-dark: #140F11;
  --color-primary: #FFD500;
  --color-secondary: #2333F9;
  --color-danger: #FF0000;
  --margin-main: 40px;
  --gap-main: 72px;
  --height-page-header: 44px;
  --width-logo: 51px;
  --padding-page-footer-vertical: 48px;
  --padding-section-horizontal: 24px;
  --padding-section-vertical-main: 72px;
  --padding-section-vertical-header: 16px;
  --gap-image-text-vertical: 72px;
  --gap-image-horizontal: 8px;
  --gap-section-horizontal: 96px;
  --gap-section-main-header: 8px;
  --gap-gallery: 8px;
  --gap-gallery-item: 16px;
  --figure-pic-padding-horizontal: 100px;
  --figure-pic-padding-vertical: 100px;
  --padding-banner-horizontal: 8px;
}

@media screen and (min-width: 1010px) {
  :root {
    --margin-main: 56px;
    --gap-main: 120px;
    --height-page-header: 72px;
    --width-logo: 83px;
    --padding-section-horizontal: 40px;
    --padding-section-vertical-main: 60px;
    --padding-section-vertical-header: 8px;
    --gap-image-text-vertical: 60px;
    --gap-image-horizontal: 20px;
    --gap-section-main-header: 24px;
    --gap-gallery: 20px;
    --gap-gallery-item: 20px;
    --figure-pic-padding-horizontal: 30vw;
    --figure-pic-padding-vertical: 0px;
    --padding-banner-horizontal: 24px;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

html {
  height: 100%;
}

body {
  background: var(--color-light);
  display: flex;
  flex-flow: column nowrap;
  min-height: 100%;
}

/* Typography */
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, .page-section--payment .links, h5, h6 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1, h2, h3 {
  font-weight: bold;
}

h1 {
  font-size: 32px;
  line-height: 40px;
}

h2 {
  font-size: 24px;
  line-height: 32px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
}

@media screen and (min-width: 1010px) {
  body {
    font-size: 25px;
    line-height: 34px;
  }

  h1 {
    font-size: 64px;
    line-height: 72px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 28px;
    line-height: 38px;
  }

  h4, .page-section--payment .links {
    font-size: 24px;
    line-height: 32px;
  }
}
/* UI */
.button {
  font: inherit;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding: 20px 32px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s, background-color 0.2s, border-radius 0.5s;
  background: none;
  color: var(--color-dark);
}
.button--primary {
  background-color: var(--color-primary);
  color: var(--color-dark);
}
.button--primary:hover {
  background-color: var(--color-dark);
  color: var(--color-primary);
}
.button--default {
  background-color: var(--color-light);
  border: 1px solid var(--color-dark);
  padding: 19px 31px;
  color: var(--color-dark);
}
.button--default:hover {
  background-color: var(--color-dark);
  color: var(--color-light);
}
.button--large {
  font-size: inherit;
}
@media screen and (min-width: 1010px) {
  .button--large {
    padding: 40px 32px;
    font-weight: bold;
  }
}

.icon-button {
  font-size: 24px;
  line-height: 44px;
  width: 44px;
  border: 1px solid var(--color-gray-light);
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
}

.button-copy-all .label-success {
  display: none;
}
.button-copy-all.success .label-success {
  display: inline;
}
.button-copy-all.success .label-normal {
  display: none;
}

.radio {
  display: block;
}
.radio input {
  display: none;
}
.radio input + .button {
  border-color: var(--color-gray-light);
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.radio input[value=""] + .button {
  color: var(--color-gray-dark);
}
.radio input[value=""] + .button:hover {
  color: var(--color-light);
}
.radio input:checked + .button {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.radio input:checked + .button:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

/* The switch - the box around the slider */
.switch-label {
  display: flex;
  column-gap: 16px;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* Hide default HTML checkbox */
  /* The slider */
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--color-secondary);
}
.switch input:checked + .slider {
  background-color: var(--color-secondary);
}
.switch input:checked + .slider::before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-dark);
  -webkit-transition: .4s;
  transition: .4s;
  /* Rounded sliders */
}
.switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round::before {
  border-radius: 50%;
}

/* Page content */
#page-header, #page-footer {
  display: flex;
  gap: 64px 32px;
  align-items: center;
  padding: 24px var(--padding-section-horizontal);
}

#page-header {
  border-bottom: 1px solid var(--color-gray-light);
  position: sticky;
  top: 0;
  background: var(--color-light);
  z-index: 2;
}
#page-header:not(.hidden) {
  transition: transform 0.5s;
}
#page-header .logo, #page-header .logo img {
  display: block;
}
#page-header img.logo, #page-header .logo img {
  height: var(--height-page-header);
  width: var(--width-logo);
}
@media screen and (min-width: 1010px) {
  #page-header .icons {
    display: none;
  }
}
#page-header .menu {
  flex: 1 1 auto;
}
#page-header .buttons .button-donate .icon {
  font-size: 24px;
}
@media screen and (max-width: 1009px) {
  #page-header .buttons .button-donate {
    padding: 0;
    width: var(--height-page-header);
    height: var(--height-page-header);
    line-height: var(--height-page-header);
  }
  #page-header .buttons .button-donate .label {
    display: none;
  }
}
@media screen and (min-width: 1010px) {
  #page-header .buttons .button-donate .icon {
    display: none;
  }
}
#page-header .lang {
  display: flex;
  list-style: none;
  gap: 16px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1009px) {
  #page-header .lang {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}
#page-header .lang .active {
  text-decoration: underline;
}
#page-header .lang a {
  text-decoration: none;
  color: var(--color-gray-dark);
}

#page-main {
  margin-top: var(--margin-main);
  display: flex;
  flex-direction: column;
  row-gap: var(--gap-main);
  padding-bottom: var(--gap-main);
  flex: 1 0 auto;
}

#page-footer {
  background: var(--color-dark);
  color: var(--color-light);
}
@media screen and (max-width: 1009px) {
  #page-footer {
    flex-flow: column;
    align-items: flex-start;
    padding: var(--padding-page-footer-vertical) var(--padding-section-horizontal);
  }
}

@media screen and (min-width: 1010px) {
  #menu-toggle {
    display: none;
  }
}

nav.links {
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  gap: 32px;
  font-weight: 600;
}
@media screen and (max-width: 1009px) {
  nav.links {
    flex-flow: column;
    align-items: flex-start;
  }
}
nav.links a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 1010px) {
  nav.links a:focus, nav.links a:hover, nav.links a.active {
    border-bottom: 2px solid;
    margin-bottom: -2px;
  }
  nav.links a:nth-child(3n + 1) {
    border-bottom-color: var(--color-secondary);
  }
  nav.links a:nth-child(3n + 2) {
    border-bottom-color: var(--color-primary);
  }
  nav.links a:nth-child(3n) {
    border-bottom-color: var(--color-danger);
  }
}

nav.buttons {
  display: flex;
  flex: 0 0 auto;
  column-gap: 12px;
}

nav.icons {
  display: flex;
  flex: 0 0 auto;
  column-gap: 24px;
  font-size: 24px;
}
nav.icons a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
nav.icons a:hover {
  color: var(--color-primary);
}
nav.icons a::before {
  margin: 0;
  display: block;
}

.menu .button-donate {
  display: none;
}
@media screen and (max-width: 1009px) {
  .menu {
    transform: translateX(-100%);
    transition: transform 0.2s;
    position: fixed;
    overflow-y: auto;
    top: 95px;
    height: calc(100vh - 95px);
    background: var(--color-light);
    left: 0;
    right: 0;
    padding: 40px var(--padding-section-horizontal) 32px;
    display: flex;
    flex-flow: column nowrap;
    row-gap: 32px;
  }
  .menu .links {
    flex: 0 0 auto;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    gap: 0;
  }
  .menu .links a {
    font-size: 20px;
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    column-gap: 12px;
    border: solid var(--color-gray-light);
    border-width: 0 0 2px;
  }
  .menu .links a::after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
    content: '\e806';
  }
  .menu .icons {
    flex: 1 1 auto;
    align-items: flex-start;
  }
  .menu .button-donate {
    display: block;
  }
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .menu {
  transform: translateX(0);
}
body.menu-open #menu-toggle .icon::before {
  content: '\e80a';
}

body.modal-open {
  overflow: hidden;
}

.page-section > header {
  background: var(--color-dark);
  color: var(--color-light);
  padding: var(--padding-section-vertical-header) var(--padding-section-horizontal);
}
.page-section > main {
  padding: var(--padding-section-vertical-main) var(--padding-section-horizontal) 0;
}
.page-section > main h3 {
  margin-bottom: 8px;
}
.page-section > main > ol,
.page-section > main > ul {
  padding-left: 1.5em;
  margin-bottom: -8px;
}
.page-section > main > ol li,
.page-section > main > ul li {
  margin-bottom: 8px;
}
@media screen and (min-width: 1010px) {
  .page-section > main > h3,
  .page-section > main > p {
    width: calc((100% - var(--gap-section-horizontal)) * 0.6465);
  }
}
.page-section figure {
  display: flex;
  max-width: 100%;
  flex-flow: row wrap;
  gap: var(--gap-image-horizontal);
  margin-top: var(--gap-image-text-vertical);
}
.page-section figure img {
  display: block;
}
.page-section figure picture img {
  width: 100%;
}
.page-section figure > p,
.page-section figure > img,
.page-section figure > picture {
  flex: 1 1 auto;
  width: calc(50% - var(--gap-image-horizontal));
}
@media screen and (min-width: 1010px) {
  .page-section figure > p,
  .page-section figure > img,
  .page-section figure > picture {
    width: 0;
  }
}
.page-section figure > p {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  width: 100%;
}
.page-section figure > p > img,
.page-section figure > p > picture {
  flex: 1 1 auto;
}
.page-section figure > p .copyright {
  position: absolute;
  bottom: 2px;
  right: 2px;
  color: var(--color-light);
  font-size: 12px;
  line-height: 14px;
}
.page-section figure > picture,
.page-section figure > img {
  object-fit: cover;
  max-height: 100%;
}
.page-section.collapsible {
  margin-bottom: calc(-1 * var(--gap-main) - 1px);
}
@media screen and (max-width: 1009px) {
  .page-section.collapsible + .page-section:not(.collapsible) {
    margin-top: var(--gap-main);
  }
}
@media screen and (min-width: 1010px) {
  .page-section.collapsible {
    margin-bottom: calc(var(--gap-main) / -2);
  }
}
.page-section.collapsible > header {
  cursor: pointer;
  transition: background 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.page-section.collapsible > header::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  content: '\E812';
  font-size: 24px;
}
.page-section.collapsible > main {
  padding-bottom: var(--gap-main);
}
@media screen and (min-width: 1010px) {
  .page-section.collapsible > main {
    padding-bottom: calc(var(--gap-main) / 2);
  }
}
.page-section.collapsible.collapsed > header {
  background: var(--color-light);
  color: var(--color-dark);
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}
.page-section.collapsible.collapsed > header::after {
  content: '\E813';
}
.page-section--main {
  display: flex;
  flex-flow: column nowrap;
  gap: 72px 24px;
}
@media screen and (min-width: 1010px) {
  .page-section--main {
    min-height: calc(100vh - 120px - var(--margin-main) - var(--gap-main));
    flex-flow: row nowrap;
    align-items: center;
  }
  .page-section--main .button-donate {
    display: none;
  }
  .page-section--main header {
    flex: 0 1 42%;
    align-items: flex-start;
  }
  .page-section--main > main {
    flex: 0 1 58%;
    padding-left: 0;
  }
  .page-section--main p {
    max-width: none;
  }
}
.page-section--main header {
  background: none;
  color: var(--color-dark);
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: var(--gap-section-main-header);
}
.page-section--main header .button {
  margin-top: 16px;
}
@media screen and (min-width: 1010px) {
  .page-section--main header .button {
    margin-top: 8px;
  }
}
.page-section--main > main {
  display: flex;
  flex-flow: column nowrap;
  gap: 72px;
  padding-top: 0;
}
.page-section--main > main figure {
  margin-top: 0;
}
.page-section--construction {
  gap: 72px;
}
@media screen and (max-width: 1009px) {
  .page-section--construction main {
    order: -1;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--construction header {
    align-items: flex-start;
  }
}
.page-section--background .gallery {
  margin-top: var(--gap-image-text-vertical);
}
@media screen and (min-width: 1010px) {
  .page-section--background:hover figure {
    color: var(--color-gray-dark);
  }
  .page-section--background figure {
    transition: color 0.5s;
  }
  .page-section--background figure:hover {
    color: var(--color-dark);
  }
  .page-section--background figure:hover p {
    border-radius: 500px;
  }
  .page-section--background figure:hover p > picture,
  .page-section--background figure:hover p > img {
    opacity: 0;
  }
  .page-section--background figure p {
    background: center center no-repeat;
    background-size: cover;
    overflow: hidden;
    transition: border-radius 0.5s;
  }
  .page-section--background figure p > picture,
  .page-section--background figure p > img {
    transition: opacity 0.25s ease-in;
  }
}
.page-section--background .owl-stage {
  display: flex;
  align-items: stretch;
}
.page-section--background .owl-stage:after {
  display: none;
}
.page-section--background .owl-stage .owl-item, .page-section--background .owl-stage figure {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column;
}
.page-section--background .owl-stage picture {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.page-section--background .owl-stage img, .page-section--background .owl-stage picture {
  flex: 0 0 auto;
}
@media screen and (max-width: 1009px) {
  .page-section--solution figure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-section--solution figure > picture {
  display: flex;
  align-items: stretch;
}
.page-section--solution figure > img,
.page-section--solution figure > picture {
  width: calc((100% - var(--gap-gallery-item) * 2) * 0.375);
}
@media screen and (max-width: 1009px) {
  .page-section--solution figure > img,
  .page-section--solution figure > picture {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--solution figure > img:nth-of-type(2),
  .page-section--solution figure > picture:nth-of-type(2) {
    order: 1;
  }
}
.page-section--solution figure > img:last-of-type,
.page-section--solution figure > picture:last-of-type {
  width: calc((100% - var(--gap-gallery-item) * 2) * 0.25);
}
@media screen and (max-width: 1009px) {
  .page-section--solution figure > img:last-of-type,
  .page-section--solution figure > picture:last-of-type {
    width: 100%;
    grid-row: 1 / span 2;
  }
}
.page-section--values > main {
  display: flex;
  flex-flow: column;
  row-gap: 72px;
}
@media screen and (min-width: 1010px) {
  .page-section--values > main {
    padding-left: 0;
    padding-right: 0;
    display: grid;
    grid-template-columns: repeat(3, 100vw);
    grid-auto-rows: max-content;
    grid-row-gap: var(--gap-image-text-vertical);
    min-height: calc(100vh - 60px - var(--gap-main));
  }
}
@media screen and (min-width: 1010px) {
  .page-section--values > main h3 {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--values article, .page-section--values figure {
    padding: 0 var(--padding-section-horizontal);
  }
}
@media screen and (max-width: 1009px) {
  .page-section--values article, .page-section--values figure {
    transform: none !important;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--values article {
    order: 1;
  }
  .page-section--values article > h3,
  .page-section--values article > p {
    width: calc((100% - var(--gap-section-horizontal)) * 0.6465);
  }
}
.page-section--values figure {
  margin-top: 0;
}
@media screen and (min-width: 1010px) {
  .page-section--values figure {
    height: calc((100vw - 80px) * 0.25);
    order: 2;
  }
}
.page-section--values figure picture {
  display: flex;
  align-items: stretch;
}
.page-section--values figure picture img {
  flex: 1 1 auto;
}
.page-section--values figure.dignity picture {
  width: calc((100% - var(--gap-gallery-item) * 3) * 0.2);
}
.page-section--values figure.dignity picture:nth-of-type(2) {
  width: calc((100% - var(--gap-gallery-item) * 3) * 0.4);
}
@media screen and (max-width: 1009px) {
  .page-section--values figure.dignity picture {
    height: calc((100vw - 32px) * 0.5);
  }
  .page-section--values figure.dignity picture:nth-of-type(3), .page-section--values figure.dignity picture:nth-of-type(4) {
    width: calc(50% - var(--gap-gallery-item) / 2);
  }
}
.page-section--values figure.integration picture {
  width: calc((100% - var(--gap-gallery-item) * 3) * 0.25);
}
.page-section--values figure.integration picture:nth-of-type(2) {
  width: calc((100% - var(--gap-gallery-item) * 3) * 0.5);
}
@media screen and (max-width: 1009px) {
  .page-section--values figure.integration picture:nth-of-type(2) {
    width: 100%;
    order: -1;
    height: calc((100vw - 32px) * 0.5);
  }
}
.page-section--values figure.mobility picture {
  width: calc((100% - var(--gap-gallery-item) * 2) * 0.22);
}
.page-section--values figure.mobility picture:nth-of-type(3) {
  width: calc((100% - var(--gap-gallery-item) * 2) * 0.56);
}
@media screen and (max-width: 1009px) {
  .page-section--values figure.mobility picture:nth-of-type(3) {
    width: 100%;
    order: -1;
    height: calc((100vw - 32px) * 0.44);
  }
}
@media screen and (min-width: 1010px) {
  .page-section--values.horizontal-scroll > header {
    position: sticky;
    top: 0;
  }
  .page-section--values.horizontal-scroll > main {
    position: sticky;
    top: 60px;
    overflow: hidden;
  }
}
.page-section--help > main {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.page-section--help section {
  padding: var(--padding-section-vertical-main) var(--padding-section-horizontal) 0;
}
.page-section--help section.donate {
  padding-top: var(--gap-main);
}
.page-section--help .contrast {
  color: var(--color-light);
  background: var(--color-secondary);
  padding-bottom: 40px;
}
.page-section--help .equipment-prices figure {
  margin-top: var(--gap-image-text-vertical);
  background: center center no-repeat;
  background-size: cover;
  padding-bottom: 122.3249%;
}
html[lang="uk"] .page-section--help .equipment-prices figure {
  background-image: url(images/construction-costs.jpg);
}
html[lang="en"] .page-section--help .equipment-prices figure {
  background-image: url(images/construction-costs-en.jpg);
}
@media screen and (min-width: 1010px) {
  .page-section--help .equipment-prices figure {
    padding-bottom: 34.782608%;
  }
  html[lang="uk"] .page-section--help .equipment-prices figure {
    background-image: url(images/construction-costs-desktop.jpg);
  }
  html[lang="en"] .page-section--help .equipment-prices figure {
    background-image: url(images/construction-costs-desktop-en.jpg);
  }
}
.page--about-homes .page-section--help .equipment-prices {
  display: grid;
  grid-template-areas: "p1" "p2" "figure" "p3";
  grid-row-gap: 30px;
}
@media screen and (min-width: 1010px) {
  .page--about-homes .page-section--help .equipment-prices {
    grid-template-areas: "p1 p3" "p2 p3" "figure figure";
    grid-row-gap: 30px;
    grid-column-gap: 96px;
  }
}
.page--about-homes .page-section--help .equipment-prices p:nth-of-type(1) {
  grid-area: p1;
}
.page--about-homes .page-section--help .equipment-prices p:nth-of-type(2) {
  grid-area: p2;
}
.page--about-homes .page-section--help .equipment-prices p:nth-of-type(3) {
  grid-area: p3;
}
.page--about-homes .page-section--help .equipment-prices figure {
  grid-area: figure;
  margin-top: 42px;
}
@media screen and (min-width: 1010px) {
  .page--about-homes .page-section--help .equipment-prices figure {
    margin-top: 30px;
  }
}
.page-section--demo > main > figure {
  margin-top: 0;
}
.page-section--demo > main > figure > img, .page-section--demo > main > figure > picture {
  width: 100%;
}
@media screen and (min-width: 1010px) {
  .page-section--demo > main > figure > img:nth-of-type(1), .page-section--demo > main > figure > picture:nth-of-type(1) {
    width: calc((100% - 20px) * 0.301);
  }
  .page-section--demo > main > figure > img:nth-of-type(2), .page-section--demo > main > figure > picture:nth-of-type(2) {
    width: calc((100% - 20px) * 0.699);
  }
}
.page-section--payment {
  max-width: 990px;
  margin: 0 auto;
}
.page-section--payment > header {
  background: none;
  color: var(--color-dark);
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
  align-items: center;
}
.page-section--payment > header p {
  color: var(--color-gray-dark);
}
.page-section--payment > main {
  margin-top: var(--padding-section-vertical-main);
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 60px;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (min-width: 1010px) {
  .page-section--payment > main {
    padding: 30px;
    border: 1px solid var(--color-gray-light);
  }
}
.page-section--payment > main h5 {
  font-size: 20px;
  line-height: 28px;
}
.page-section--payment .links {
  font-weight: bold;
}
@media screen and (max-width: 1009px) {
  .page-section--payment [role="tablist"] {
    display: none;
  }
}
.page-section--payment article[role="tabpanel"]:first-of-type > header {
  border-top: 0;
  margin-top: -32px;
}
@media screen and (min-width: 1010px) {
  .page-section--payment article[role="tabpanel"]:not(.active) {
    display: none;
  }
}
.page-section--payment article[role="tabpanel"].active > header::after {
  content: '\E812';
}
.page-section--payment article[role="tabpanel"] > header {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--color-gray-light);
  cursor: pointer;
}
@media screen and (min-width: 1010px) {
  .page-section--payment article[role="tabpanel"] > header {
    display: none;
  }
}
.page-section--payment article[role="tabpanel"] > header::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  content: '\E813';
  font-size: 24px;
}
.page-section--payment article[role="tabpanel"] > header h3 {
  margin: 0;
}
.page-section--payment article[role="tabpanel"] > main {
  display: flex;
  flex-flow: column nowrap;
  gap: 56px;
}
@media screen and (max-width: 1009px) {
  .page-section--payment article[role="tabpanel"] > main {
    padding-bottom: 32px;
  }
}
.page-section--payment article[role="tabpanel"] > main section {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}
.page-section--payment article[role="tabpanel"] > main section footer {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
}
.page-section--payment article[role="tabpanel"] > main h5 {
  margin: 20px 0 8px;
}
.page-section--payment article[role="tabpanel"] > main dl {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
.page-section--payment article[role="tabpanel"] > main dl div {
  display: grid;
  grid-template-areas: "title copy" "descr copy" "content content";
  grid-auto-columns: auto min-content;
  grid-column-gap: 16px;
  grid-row-gap: 8px;
}
.page-section--payment article[role="tabpanel"] > main dl dd {
  color: var(--color-gray-dark);
  grid-area: title;
  word-break: break-word;
}
.page-section--payment article[role="tabpanel"] > main dl dt {
  font-weight: 600;
  grid-area: descr;
  word-break: break-word;
}
.page-section--payment article[role="tabpanel"] > main dl .copy {
  grid-area: copy;
  align-self: center;
  cursor: pointer;
  white-space: nowrap;
}
@media screen and (max-width: 1009px) {
  .page-section--payment article[role="tabpanel"] > main dl .copy .label {
    display: none;
  }
}
.page-section--payment article[role="tabpanel"] > main dl figure {
  max-width: 320px;
  margin: 6px -18px -18px;
  grid-area: content;
}
@media screen and (max-width: 1009px) {
  .page-section--payment article[role="tabpanel"] > main dl figure {
    display: none;
  }
}
.page-section--payment article[role="tabpanel"]#card section > main {
  display: flex;
  flex-flow: column;
  row-gap: 32px;
}
.page-section--payment article[role="tabpanel"]#card .amount {
  display: grid;
  grid-gap: 20px 8px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 800px) {
  .page-section--payment article[role="tabpanel"]#card .amount {
    grid-column-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-section--details article {
  column-count: 3;
  column-gap: 20px;
  margin-bottom: -30px;
}
.page-section--details article p {
  padding-bottom: 30px;
}
@media screen and (max-width: 1600px) {
  .page-section--details article {
    column-count: 2;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--details article {
    column-count: 1;
  }
}
.page-section--details figure {
  flex-flow: column;
  position: relative;
  margin-top: calc(var(--figure-pic-padding-vertical) / -2 + var(--gap-image-text-vertical));
}
.page-section--details figure picture {
  width: calc(100% - var(--figure-pic-padding-horizontal));
  margin: calc(var(--figure-pic-padding-vertical) / 2) auto;
}
.page-section--details figure figcaption ol {
  list-style: none;
  counter-reset: caption;
}
.page-section--details figure figcaption ol li {
  counter-increment: caption;
}
@media screen and (max-width: 1009px) {
  .page-section--details figure figcaption ol li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    align-items: center;
  }
  .page-section--details figure figcaption ol li:first-of-type {
    padding-top: 0;
  }
  .page-section--details figure figcaption ol li::before,
  .page-section--details figure figcaption ol li em::before {
    content: counter(caption);
    font-size: 20px;
    line-height: inherit;
    font-style: normal;
    font-weight: bold;
    display: inline-block;
  }
  .page-section--details figure figcaption ol li::before {
    min-width: 40px;
  }
  .page-section--details figure figcaption ol li em {
    position: absolute;
    border: solid var(--color-dark);
  }
  .page-section--details figure figcaption ol li em::before, .page-section--details figure figcaption ol li em > span {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, white 45%, white 55%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
    padding: 0 10px;
    position: absolute;
  }
  .page-section--details figure figcaption ol li em::after {
    background: var(--color-dark);
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: '';
  }
}
@media screen and (min-width: 1010px) {
  .page-section--details figure figcaption ol li {
    position: absolute;
    border: solid var(--color-dark);
  }
  .page-section--details figure figcaption ol li::before, .page-section--details figure figcaption ol li > span {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, white 45%, white 55%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
    padding: 0 10px;
    position: absolute;
  }
  .page-section--details figure figcaption ol li::after {
    background: var(--color-dark);
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: '';
  }
  .page-section--details figure figcaption ol li span {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-section--details figure figcaption ol li .hint {
  color: var(--color-gray-dark);
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(1) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.18));
    right: 20px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.27 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(1) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(1) em > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(2) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.16));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.33 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(2) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(2) em > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(3) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.03));
    right: 28px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.36 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(3) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(3) em > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(4) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.04));
    right: 8px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.42 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(4) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(4) em > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(5) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    right: 28px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.53 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(5) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(5) em > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(6) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.32));
    right: 48px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.47 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.5);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(6) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(6) em > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(7) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.65));
    left: 20px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.32 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(7) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(7) em > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(8) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.43 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(8) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(8) em > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(9) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.18));
    left: 28px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.53 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(9) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(9) em > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(10) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.04));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.58 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(10) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(10) em > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(11) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.17));
    left: 28px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.635 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.2);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(11) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(11) em > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(12) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.25));
    left: 48px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.58 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.3);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12) em::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(12) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12) em::before, .page-section--equipment figure figcaption ol li:nth-of-type(12) em > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12) em::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(1) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.18));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.27 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1)::before, .page-section--equipment figure figcaption ol li:nth-of-type(1) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1)::before, .page-section--equipment figure figcaption ol li:nth-of-type(1) > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(1)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(2) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.16));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.33 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2)::before, .page-section--equipment figure figcaption ol li:nth-of-type(2) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2)::before, .page-section--equipment figure figcaption ol li:nth-of-type(2) > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(2)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(3) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.03));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.36 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3)::before, .page-section--equipment figure figcaption ol li:nth-of-type(3) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3)::before, .page-section--equipment figure figcaption ol li:nth-of-type(3) > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(3)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(4) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.04));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.42 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4)::before, .page-section--equipment figure figcaption ol li:nth-of-type(4) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4)::before, .page-section--equipment figure figcaption ol li:nth-of-type(4) > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(4)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(5) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.53 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5)::before, .page-section--equipment figure figcaption ol li:nth-of-type(5) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5)::before, .page-section--equipment figure figcaption ol li:nth-of-type(5) > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(5)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(6) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.32));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.47 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6)::before, .page-section--equipment figure figcaption ol li:nth-of-type(6) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6)::before, .page-section--equipment figure figcaption ol li:nth-of-type(6) > span {
    right: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(6)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(7) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.65));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.32 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7)::before, .page-section--equipment figure figcaption ol li:nth-of-type(7) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7)::before, .page-section--equipment figure figcaption ol li:nth-of-type(7) > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(7)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(8) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.43 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8)::before, .page-section--equipment figure figcaption ol li:nth-of-type(8) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8)::before, .page-section--equipment figure figcaption ol li:nth-of-type(8) > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(8)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(9) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.18));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.53 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9)::before, .page-section--equipment figure figcaption ol li:nth-of-type(9) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9)::before, .page-section--equipment figure figcaption ol li:nth-of-type(9) > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(9)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(10) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.04));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.58 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10)::before, .page-section--equipment figure figcaption ol li:nth-of-type(10) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10)::before, .page-section--equipment figure figcaption ol li:nth-of-type(10) > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(10)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(11) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.17));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.635 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11)::before, .page-section--equipment figure figcaption ol li:nth-of-type(11) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11)::before, .page-section--equipment figure figcaption ol li:nth-of-type(11) > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(11)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--equipment figure figcaption ol li:nth-of-type(12) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.25));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.58 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.1);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12)::after {
    top: -3px;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12)::before, .page-section--equipment figure figcaption ol li:nth-of-type(12) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12)::before, .page-section--equipment figure figcaption ol li:nth-of-type(12) > span {
    left: 0;
  }
  .page-section--equipment figure figcaption ol li:nth-of-type(12)::after {
    right: -3px;
  }
}
.page-section--materials main {
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (max-width: 1009px) {
  .page-section--materials main {
    gap: var(--gap-image-text-vertical);
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(1) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.38));
    right: 46px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.07 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1) em::before, .page-section--materials figure figcaption ol li:nth-of-type(1) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1) em::before, .page-section--materials figure figcaption ol li:nth-of-type(1) em > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(2) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.38));
    right: 28px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.17 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2) em::before, .page-section--materials figure figcaption ol li:nth-of-type(2) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2) em::before, .page-section--materials figure figcaption ol li:nth-of-type(2) em > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(3) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.1));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.39 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3) em::before, .page-section--materials figure figcaption ol li:nth-of-type(3) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3) em::before, .page-section--materials figure figcaption ol li:nth-of-type(3) em > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(4) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - -0.1));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.43 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.05);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4) em::before, .page-section--materials figure figcaption ol li:nth-of-type(4) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4) em::before, .page-section--materials figure figcaption ol li:nth-of-type(4) em > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(5) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.56 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5) em::before, .page-section--materials figure figcaption ol li:nth-of-type(5) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5) em::before, .page-section--materials figure figcaption ol li:nth-of-type(5) em > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5) em::after {
    left: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(6) em {
    border-width: 0;
    border-top-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.25));
    left: 60px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.12 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.1);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6) em::after {
    bottom: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6) em::before, .page-section--materials figure figcaption ol li:nth-of-type(6) em > span {
    top: 0;
    transform: translateY(-50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6) em::before, .page-section--materials figure figcaption ol li:nth-of-type(6) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(7) em {
    border-width: 0;
    border-top-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - -0.1));
    left: 28px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.19 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.075);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7) em::after {
    bottom: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7) em::before, .page-section--materials figure figcaption ol li:nth-of-type(7) em > span {
    top: 0;
    transform: translateY(-50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7) em::before, .page-section--materials figure figcaption ol li:nth-of-type(7) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(8) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.25));
    left: 20px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.38 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8) em::before, .page-section--materials figure figcaption ol li:nth-of-type(8) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8) em::before, .page-section--materials figure figcaption ol li:nth-of-type(8) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(9) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.45 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9) em::before, .page-section--materials figure figcaption ol li:nth-of-type(9) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9) em::before, .page-section--materials figure figcaption ol li:nth-of-type(9) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(10) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 60px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.4825 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.1);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10) em::before, .page-section--materials figure figcaption ol li:nth-of-type(10) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10) em::before, .page-section--materials figure figcaption ol li:nth-of-type(10) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(11) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.36));
    left: 100px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.49 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.2);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11) em::before, .page-section--materials figure figcaption ol li:nth-of-type(11) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11) em::before, .page-section--materials figure figcaption ol li:nth-of-type(11) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11) em::after {
    right: -3px;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--materials figure figcaption ol li:nth-of-type(12) em {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.44));
    left: 80px;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.515 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.25);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12) em::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12) em::before, .page-section--materials figure figcaption ol li:nth-of-type(12) em > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12) em::before, .page-section--materials figure figcaption ol li:nth-of-type(12) em > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12) em::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(1) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.38));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.07 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1)::before, .page-section--materials figure figcaption ol li:nth-of-type(1) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1)::before, .page-section--materials figure figcaption ol li:nth-of-type(1) > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(1)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(2) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.38));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.17 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2)::before, .page-section--materials figure figcaption ol li:nth-of-type(2) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2)::before, .page-section--materials figure figcaption ol li:nth-of-type(2) > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(2)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(3) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.1));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.39 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3)::before, .page-section--materials figure figcaption ol li:nth-of-type(3) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3)::before, .page-section--materials figure figcaption ol li:nth-of-type(3) > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(3)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(4) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - -0.1));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.43 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4)::before, .page-section--materials figure figcaption ol li:nth-of-type(4) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4)::before, .page-section--materials figure figcaption ol li:nth-of-type(4) > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(4)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(5) {
    border-width: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    left: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0));
    right: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.56 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5)::before, .page-section--materials figure figcaption ol li:nth-of-type(5) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5)::before, .page-section--materials figure figcaption ol li:nth-of-type(5) > span {
    right: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(5)::after {
    left: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(6) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.25));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.22 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6)::before, .page-section--materials figure figcaption ol li:nth-of-type(6) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6)::before, .page-section--materials figure figcaption ol li:nth-of-type(6) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(6)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(7) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - -0.12));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.27 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7)::before, .page-section--materials figure figcaption ol li:nth-of-type(7) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7)::before, .page-section--materials figure figcaption ol li:nth-of-type(7) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(7)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(8) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.15));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.4 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8)::before, .page-section--materials figure figcaption ol li:nth-of-type(8) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8)::before, .page-section--materials figure figcaption ol li:nth-of-type(8) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(8)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(9) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.4525 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9)::before, .page-section--materials figure figcaption ol li:nth-of-type(9) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9)::before, .page-section--materials figure figcaption ol li:nth-of-type(9) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(9)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(10) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.4825 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10)::before, .page-section--materials figure figcaption ol li:nth-of-type(10) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10)::before, .page-section--materials figure figcaption ol li:nth-of-type(10) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(10)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(11) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.5125 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11)::before, .page-section--materials figure figcaption ol li:nth-of-type(11) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11)::before, .page-section--materials figure figcaption ol li:nth-of-type(11) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(11)::after {
    right: -3px;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--materials figure figcaption ol li:nth-of-type(12) {
    border-width: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    right: calc(50% + (100vw - var(--padding-section-horizontal) * 2 - var(--figure-pic-padding-horizontal)) / 2 * (0.5 - 0.2));
    left: 0;
    top: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0.545 + var(--figure-pic-padding-vertical) / 2);
    height: calc((100vw - 2 * var(--padding-section-horizontal) - var(--figure-pic-padding-horizontal)) * 0);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12)::after {
    top: -3px;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12)::before, .page-section--materials figure figcaption ol li:nth-of-type(12) > span {
    bottom: 0;
    transform: translateY(50%);
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12)::before, .page-section--materials figure figcaption ol li:nth-of-type(12) > span {
    left: 0;
  }
  .page-section--materials figure figcaption ol li:nth-of-type(12)::after {
    right: -3px;
  }
}
.page-section--ergonomics .gallery {
  row-gap: var(--gap-image-text-vertical);
}
@media screen and (min-width: 1010px) {
  .page-section--ergonomics figure {
    width: calc(100% / 2 - var(--gap-image-horizontal));
  }
}
@media screen and (min-width: 1600px) {
  .page-section--ergonomics figure {
    width: calc(100% / 3 - 2 * var(--gap-image-horizontal));
  }
}
.page-section--ergonomics figure picture {
  width: 100%;
  border: 1px solid var(--color-dark);
}
.page-section--energy-effective > main, .page-section--economy > main, .page-section--ergonomics > main, .page-section--steps > main, .page-section--queue > main, .page-section--experience > main, .page-section--after-victory > main, .page-section--about-us > main, .page-section--government-plan > main, .page-section--temporary-housing > main, .page-section--existing-experience > main, .page-section--projects > main {
  display: flex;
  flex-flow: column;
  row-gap: var(--gap-image-text-vertical);
}
.page-section--energy-effective > main > article:first-of-type > main, .page-section--economy > main > article:first-of-type > main, .page-section--government-plan > main > article:first-of-type > main, .page-section--temporary-housing > main > article:first-of-type > main, .page-section--existing-experience > main > article:first-of-type > main {
  column-count: 2;
  column-gap: 20px;
  margin-bottom: -30px;
}
.page-section--energy-effective > main > article:first-of-type > main p, .page-section--economy > main > article:first-of-type > main p, .page-section--government-plan > main > article:first-of-type > main p, .page-section--temporary-housing > main > article:first-of-type > main p, .page-section--existing-experience > main > article:first-of-type > main p {
  padding-bottom: 30px;
}
@media screen and (max-width: 1009px) {
  .page-section--energy-effective > main > article:first-of-type > main, .page-section--economy > main > article:first-of-type > main, .page-section--government-plan > main > article:first-of-type > main, .page-section--temporary-housing > main > article:first-of-type > main, .page-section--existing-experience > main > article:first-of-type > main {
    column-count: 1;
  }
}
.page-section--economy .gallery figure picture {
  width: 100%;
  border: 1px solid var(--color-gray-light);
}
@media screen and (max-width: 1009px) {
  .page-section--economy .owl-carousel {
    margin-left: calc(-1 * var(--padding-section-horizontal));
    margin-right: calc(-1 * var(--padding-section-horizontal));
    width: calc(2 * var(--padding-section-horizontal) + 100%);
  }
}
.page-section--mobile-home > main {
  display: flex;
  flex-flow: column;
  row-gap: var(--gap-image-text-vertical);
}
.page-section--mobile-home figure {
  margin-top: 0;
}
.page-section--mobile-home figure.video {
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
}
.page-section--mobile-home video {
  width: calc(100% + 2px);
  position: absolute;
  left: -1px;
  right: -1px;
  top: -20%;
  bottom: 0;
}
@media screen and (max-width: 1009px) {
  .page-section--mobile-home figure.video {
    padding-bottom: 70%;
  }
  .page-section--mobile-home video {
    top: 0;
    left: -5%;
    right: -5%;
    width: 110%;
    height: 110%;
  }
}
.page-section--mobile-home figure.equipment {
  background: center center no-repeat;
  background-size: cover;
  padding-bottom: 122.093%;
  background-image: url(images/about-homes/equip-mobile-2x.png);
}
@media screen and (min-width: 1010px) {
  .page-section--mobile-home figure.equipment {
    padding-bottom: 29.511%;
    background-image: url(images/about-homes/equip-desktop-2x.jpg);
  }
}
.page-section--mobile-home figure picture {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media screen and (min-width: 1010px) {
  .page-section--mobile-home figure picture:nth-of-type(1) {
    width: calc(46% - var(--gap-image-horizontal));
  }
  .page-section--mobile-home figure picture:nth-of-type(2) {
    width: 54%;
  }
}
.page-section--gallery figure {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(16, 1fr);
  grid-gap: 6px;
}
@media screen and (min-width: 1010px) {
  .page-section--gallery figure {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-gap: 12px;
  }
}
.page-section--gallery figure picture {
  width: auto;
}
.page-section--gallery figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-section--gallery figure picture:nth-of-type(1), .page-section--gallery figure picture:nth-of-type(2), .page-section--gallery figure picture:nth-of-type(8), .page-section--gallery figure picture:nth-of-type(9) {
  grid-row: span 4;
}
.page-section--gallery figure picture:nth-of-type(3), .page-section--gallery figure picture:nth-of-type(7) {
  grid-row: span 2;
}
.page-section--gallery figure picture:nth-of-type(5), .page-section--gallery figure picture:nth-of-type(10) {
  grid-row: span 3;
}
.page-section--gallery figure picture:nth-of-type(4), .page-section--gallery figure picture:nth-of-type(6) {
  grid-row: span 6;
  grid-column: span 2;
}
@media screen and (max-width: 1009px) {
  .page-section--gallery figure picture:nth-of-type(1) {
    order: 1;
  }
  .page-section--gallery figure picture:nth-of-type(2) {
    order: 2;
  }
  .page-section--gallery figure picture:nth-of-type(3) {
    order: 3;
  }
  .page-section--gallery figure picture:nth-of-type(4) {
    order: 4;
  }
  .page-section--gallery figure picture:nth-of-type(5) {
    order: 5;
  }
  .page-section--gallery figure picture:nth-of-type(6) {
    order: 6;
  }
  .page-section--gallery figure picture:nth-of-type(7) {
    order: 7;
  }
  .page-section--gallery figure picture:nth-of-type(8) {
    order: 8;
  }
  .page-section--gallery figure picture:nth-of-type(9) {
    order: 9;
  }
  .page-section--gallery figure picture:nth-of-type(10) {
    order: 10;
  }
  .page-section--gallery figure picture:nth-of-type(5) {
    order: 3;
  }
  .page-section--gallery figure picture:nth-of-type(7) {
    order: 4;
  }
  .page-section--gallery figure picture:nth-of-type(10) {
    order: 5;
  }
  .page-section--gallery figure picture:nth-of-type(8), .page-section--gallery figure picture:nth-of-type(9) {
    grid-row: span 3;
  }
}
@media screen and (min-width: 1010px) {
  .page-section--steps .gallery:hover figure {
    color: var(--color-gray-dark);
  }
  .page-section--steps .gallery:hover figure picture {
    opacity: 0.6;
  }
  .page-section--steps .gallery figure {
    transition: color 0.5s;
  }
  .page-section--steps .gallery figure:hover {
    color: var(--color-dark);
  }
  .page-section--steps .gallery figure:hover picture {
    opacity: 1;
  }
  .page-section--steps .gallery figure picture {
    transition: opacity 0.5s;
  }
}
@media screen and (max-width: 1009px) {
  .page-section--steps .gallery figure figcaption p {
    display: block !important;
  }
}
.page-section--experience .gallery, .page-section--existing-experience .gallery, .page-section--temporary-housing .gallery {
  align-items: flex-start;
  row-gap: var(--gap-image-text-vertical);
}
.page-section--experience .gallery figure, .page-section--existing-experience .gallery figure, .page-section--temporary-housing .gallery figure {
  gap: var(--gap-image-text-vertical);
}
@media screen and (min-width: 1010px) {
  .page-section--experience .gallery figure, .page-section--existing-experience .gallery figure, .page-section--temporary-housing .gallery figure {
    width: calc((100% - var(--gap-gallery)) / 2);
  }
}
.page-section--experience .gallery figure picture, .page-section--existing-experience .gallery figure picture, .page-section--temporary-housing .gallery figure picture {
  width: 100%;
}
.page-section--experience .gallery figcaption, .page-section--existing-experience .gallery figcaption, .page-section--temporary-housing .gallery figcaption {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
}
.page-section figure.panorama {
  margin-top: 0;
  height: 210px;
  background: center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1010px) {
  .page-section figure.panorama {
    height: 325px;
  }
}
.page-section--government-plan figure.panorama {
  background-image: url(images/about-us/Houses_2x.jpg);
}
.page-section--after-victory figure.panorama {
  background-image: url(images/about-us/Life_after_victory_2x.jpg);
}
.page-section--about-us > main > article:first-of-type {
  display: flex;
  flex-flow: row wrap;
  gap: 30px 20px;
}
@media screen and (min-width: 1010px) {
  .page-section--about-us > main > article:first-of-type p {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 1010px) {
  .page-section--about-us section.donate {
    margin-top: 60px;
  }
}
.page-section--thanks > header {
  background: none;
  color: inherit;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-flow: column;
  row-gap: var(--gap-section-main-header);
}
.page-section--thanks > main {
  display: flex;
  flex-flow: column;
  row-gap: var(--gap-main);
}

.banner {
  padding: 40px var(--padding-banner-horizontal);
  border: 1px solid var(--color-gray-light);
  display: flex;
  gap: 16px;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}
.banner::before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  content: '\e817';
}
@media screen and (max-width: 1009px) {
  .banner {
    flex-flow: column;
    align-items: center;
  }
}

.gallery {
  display: flex;
  flex-flow: row wrap;
  gap: var(--gap-gallery);
}
.gallery figure {
  flex-flow: column;
  gap: var(--gap-gallery-item);
  margin-top: 0;
}
.gallery figcaption {
  order: initial;
}
.gallery--small-caption figcaption {
  font-size: 18px;
  line-height: 26px;
}
@media screen and (min-width: 1010px) {
  .gallery--small-caption figcaption {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1009px) {
  .gallery--3_slides, .gallery--4_slides {
    margin-left: calc(-1 * var(--padding-section-horizontal));
    margin-right: calc(-1 * var(--padding-section-horizontal));
    width: calc(2 * var(--padding-section-horizontal) + 100%);
  }
}
@media screen and (max-width: 1599px) {
  .gallery--5_slides {
    margin-left: calc(-1 * var(--padding-section-horizontal));
    margin-right: calc(-1 * var(--padding-section-horizontal));
    width: calc(2 * var(--padding-section-horizontal) + 100%);
  }
}
.gallery--icons figure picture {
  width: auto;
}
.gallery--icons figure picture img {
  width: 120px !important;
  height: 120px !important;
}

section.donate .button-container {
  margin-top: 24px;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  text-decoration: none;
}
section.donate .button {
  width: 100%;
}
@media screen and (min-width: 1010px) {
  section.donate .button-container {
    margin-top: 60px;
  }
  section.donate .button {
    font-size: 48px;
    line-height: 64px;
    font-weight: 700;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  section.donate h3 {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1400px) {
  section.donate {
    display: grid;
    grid-template-areas: "header button" "text button";
    grid-column-gap: 96px;
    grid-template-columns: 0.43fr 0.57fr;
  }
  section.donate .button-container {
    margin-top: 0;
    grid-area: button;
  }
  section.donate .button-container:hover .button--primary.button--large {
    border-radius: 500px;
    background-color: var(--color-dark);
    color: var(--color-primary);
  }
  section.donate h3 {
    grid-area: header;
    margin-bottom: 24px;
  }
  section.donate p {
    grid-area: text;
  }
}
section.donate h3 {
  font-size: 32px;
  line-height: 40px;
}
@media screen and (min-width: 1010px) {
  section.donate h3 {
    font-size: 64px;
    line-height: 72px;
  }
}

div#lightboxed--thumbs .lightboxed--thumb.lightboxed--active {
  overflow: visible;
}
div#lightboxed--thumbs .lightboxed--thumb.lightboxed--active .lightboxed--thumb_border {
  border: 5px solid var(--color-light);
  margin: -5px;
  box-sizing: content-box;
}
div#lightboxed--thumbs .lightboxed--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div#lightboxed--bttn_prev,
div#lightboxed--bttn_next,
div#lightboxed--bttn_close {
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
}
div#lightboxed--bttn_prev::after,
div#lightboxed--bttn_next::after,
div#lightboxed--bttn_close::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  color: var(--color-light);
  width: 100%;
  height: 100%;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  display: block;
}

div#lightboxed--bttn_next::after {
  content: '\E806';
}

div#lightboxed--bttn_prev::after {
  content: '\E805';
}

div#lightboxed--bttn_close::after {
  content: '\E80A';
  font-size: 24px;
}

@keyframes copy-color {
  from {
    color: var(--color-secondary);
  }
  to {
    color: var(--color-gray-dark);
  }
}
.copy {
  color: var(--color-gray-dark);
}
.copy.success {
  animation: copy-color 3s;
}
.copy.success .icon::before {
  content: '\E810';
}

.tiles {
  display: grid;
  gap: var(--gap-gallery);
  grid-auto-flow: row dense;
  position: relative;
}
.tiles .fake-tiles {
  z-index: -1;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.tiles .fake-tiles::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding-bottom: calc(10000% + var(--gap-gallery) * 99);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(100% - var(--gap-gallery)), var(--color-light) calc(100% - var(--gap-gallery)), var(--color-light) calc(100%)), linear-gradient(90deg, var(--color-gray-light) 0%, var(--color-gray-light) calc(100% - var(--gap-gallery)), var(--color-light) calc(100% - var(--gap-gallery)), var(--color-light) 100%);
}
.tiles--popup .tile {
  cursor: pointer;
}
.tiles--popup .tile [role="tooltip"] {
  cursor: default;
}
.tiles.active .tile img, .tiles.active .tile picture {
  opacity: 0.4;
}
.tiles.active .tile.active {
  z-index: 1;
}
.tiles.active .tile.active img, .tiles.active .tile.active picture {
  opacity: 1;
}
.tiles.active .tile.active [role="tooltip"] {
  display: block;
  position: absolute;
  top: calc(100% + var(--gap-gallery));
  padding: 40px;
  background: var(--color-light);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.11);
  width: calc(200% + var(--gap-gallery));
  left: 0;
}
.tiles.active .tile.active [role="tooltip"][data-offset="1"] {
  right: 0;
  left: auto;
}
.tiles.active .tile.active [role="tooltip"] .icon-close {
  display: none;
}
.tiles.active .tile.active [role="tooltip"] p:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 1009px) {
  .tiles.active .tile.active [role="tooltip"] {
    padding: 32px 24px;
  }
  .tiles.active .tile.active [role="tooltip"] .icon-close {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    color: var(--color-gray-dark);
  }
  .tiles.active .tile.active [role="tooltip"] h3 {
    padding-right: 24px;
  }
}
.tiles.active .tile.active.tile--span-2 [role="tooltip"] {
  width: 100%;
}
.tiles.active .tile.active.tile--span-3 [role="tooltip"] {
  width: calc((100% - var(--gap-gallery)) * 2 / 3 + var(--gap-gallery));
}
@media screen and (min-width: 0) and (max-width: 599px) {
  .tiles--6_items {
    grid-template-columns: 1fr 1fr ;
  }
  .tiles--6_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 2) calc((100% + var(--gap-gallery)) / 200);
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .tiles--6_items {
    grid-template-columns: 1fr 1fr 1fr ;
  }
  .tiles--6_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 3) calc((100% + var(--gap-gallery)) / 300);
  }
}
@media screen and (min-width: 900px) and (max-width: 1009px) {
  .tiles--6_items {
    grid-template-columns: 1fr 1fr 1fr 1fr ;
  }
  .tiles--6_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 4) calc((100% + var(--gap-gallery)) / 400);
  }
}
@media screen and (min-width: 1010px) and (max-width: 1499px) {
  .tiles--6_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--6_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 5) calc((100% + var(--gap-gallery)) / 500);
  }
}
@media screen and (min-width: 1500px) {
  .tiles--6_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--6_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 6) calc((100% + var(--gap-gallery)) / 600);
  }
}
@media screen and (min-width: 0) and (max-width: 599px) {
  .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(2n + 1) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(2n + 2) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(2n + 2) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 1) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 2) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 900px) and (max-width: 1009px) {
  .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1010px) and (max-width: 1499px) {
  .tiles--6_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty, .tiles--6_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 0) and (max-width: 599px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 2) calc((100% + var(--gap-gallery)) / 200);
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 3) calc((100% + var(--gap-gallery)) / 300);
  }
}
@media screen and (min-width: 900px) and (max-width: 1009px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 4) calc((100% + var(--gap-gallery)) / 400);
  }
}
@media screen and (min-width: 1010px) and (max-width: 1249px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 4) calc((100% + var(--gap-gallery)) / 400);
  }
}
@media screen and (min-width: 1250px) and (max-width: 1499px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 5) calc((100% + var(--gap-gallery)) / 500);
  }
}
@media screen and (min-width: 1500px) and (max-width: 1749px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 6) calc((100% + var(--gap-gallery)) / 600);
  }
}
@media screen and (min-width: 1750px) {
  .tiles--7_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--7_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 7) calc((100% + var(--gap-gallery)) / 700);
  }
}
@media screen and (min-width: 0) and (max-width: 599px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(5), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(6), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(2n + 1) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(2n + 2) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(2n + 2) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(5), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 1) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 2) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 900px) and (max-width: 1009px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1010px) and (max-width: 1249px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1250px) and (max-width: 1499px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1500px) and (max-width: 1749px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1750px) {
  .tiles--7_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty, .tiles--7_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 0) and (max-width: 399px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 3) calc((100% + var(--gap-gallery)) / 300);
  }
}
@media screen and (min-width: 400px) and (max-width: 549px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 4) calc((100% + var(--gap-gallery)) / 400);
  }
}
@media screen and (min-width: 550px) and (max-width: 699px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 5) calc((100% + var(--gap-gallery)) / 500);
  }
}
@media screen and (min-width: 700px) and (max-width: 849px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 6) calc((100% + var(--gap-gallery)) / 600);
  }
}
@media screen and (min-width: 850px) and (max-width: 1009px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 7) calc((100% + var(--gap-gallery)) / 700);
  }
}
@media screen and (min-width: 1010px) and (max-width: 1149px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 8) calc((100% + var(--gap-gallery)) / 800);
  }
}
@media screen and (min-width: 1150px) and (max-width: 1299px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 9) calc((100% + var(--gap-gallery)) / 900);
  }
}
@media screen and (min-width: 1300px) and (max-width: 1449px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 10) calc((100% + var(--gap-gallery)) / 1000);
  }
}
@media screen and (min-width: 1450px) and (max-width: 1599px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 11) calc((100% + var(--gap-gallery)) / 1100);
  }
}
@media screen and (min-width: 1600px) {
  .tiles--12_items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
  }
  .tiles--12_items .fake-tiles::after {
    background-size: calc((100% + var(--gap-gallery)) / 12) calc((100% + var(--gap-gallery)) / 1200);
  }
}
@media screen and (min-width: 0) and (max-width: 399px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(5), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(6), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(7), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(8), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 1) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 2) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(3n + 3) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 400px) and (max-width: 549px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(5), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(6), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(7), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 2) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 3) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(4n + 4) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 550px) and (max-width: 699px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(5), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(6), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 3) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 4) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(5n + 5) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 700px) and (max-width: 849px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(5), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 4) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 5) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(6n + 6) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 850px) and (max-width: 1009px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(4), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 5) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 6) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(7n + 7) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1010px) and (max-width: 1149px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(3), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 6) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 7) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(8n + 8) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1150px) and (max-width: 1299px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(2), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 7) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 8) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(9n + 9) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1449px) {
  .tiles--12_items.tiles--complete-rows .tile:empty:nth-last-of-type(1), .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 8) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 9) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(10n + 10) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1450px) and (max-width: 1599px) {
  .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 9) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 10) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(11n + 11) + .tile:empty {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 1) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 2) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 3) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 4) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 5) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 6) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 7) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 8) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 9) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 10) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 11) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty + .tile:empty, .tiles--12_items.tiles--complete-rows .tile:not(:empty):nth-of-type(12n + 12) + .tile:empty {
    display: none;
  }
}
.tiles--12_items.active .tile.active [role="tooltip"] {
  width: calc(300% + var(--gap-gallery) * 2);
}
.tiles--12_items.active .tile.active [role="tooltip"][data-offset="1"] {
  right: calc(-100% - var(--gap-gallery));
}
.tiles--12_items.active .tile.active [role="tooltip"][data-offset="2"] {
  right: 0;
  left: auto;
}
.tiles--12_items.active .tile.active.tile--span-2 [role="tooltip"] {
  width: calc((100% - var(--gap-gallery)) * 1.5 + var(--gap-gallery) * 2);
}
.tiles--12_items.active .tile.active.tile--span-2 [role="tooltip"][data-offset="1"] {
  right: 0;
}
.tiles--12_items.active .tile.active.tile--span-3 [role="tooltip"] {
  width: 100%;
}
.tiles--12_items.active .tile.active.tile--span-3 [role="tooltip"][data-offset="1"] {
  right: 0;
}
.tiles .tile {
  position: relative;
}
.tiles .tile:empty::after {
  background: var(--color-gray-light);
  width: 100%;
  padding-bottom: 100%;
  left: 0;
  top: 0;
  right: 0;
  display: block;
  content: '';
}
.tiles .tile--span-2 {
  grid-column: span 2;
  grid-row: span 2;
}
.tiles .tile--span-3 {
  grid-column: span 3;
  grid-row: span 3;
}

@media screen and (min-width: 1010px) {
  .profiles {
    row-gap: 60px;
  }
}
.profiles.active .profile.active [role="tooltip"] {
  font-size: 18px;
  line-height: 26px;
}
@media screen and (min-width: 1010px) {
  .profiles.active .profile.active [role="tooltip"] {
    top: calc(100% - 28px);
  }
}
.profiles .profile {
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.profiles .profile img {
  width: 100%;
}
.profiles .profile .name {
  font-size: 20px;
  line-height: 28px;
}
@media screen and (max-width: 1009px) {
  .profiles .profile .name {
    font-weight: bold;
    color: var(--color-light);
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
  }
}
@media screen and (max-width: 1009px) {
  .profiles .profile.active .name {
    display: none;
  }
}
.profiles .profile [role="tooltip"] {
  display: none;
}

.projects {
  align-items: stretch;
}
@media screen and (min-width: 1010px) {
  .projects {
    padding: 20px;
    border: 1px solid var(--color-gray-light);
  }
}
.projects .project {
  margin: 0;
  display: block;
}
.projects .project::after {
  width: 100%;
  padding-bottom: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
}
.projects .project:not(:empty) {
  background: var(--color-dark);
  color: var(--color-light);
  font-weight: bold;
}
.projects .project .icon {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 48px;
}
.projects .project p {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
@media screen and (max-width: 599px) {
  .projects .project:empty:nth-child(n + 7) {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .projects .project:empty:nth-child(n + 10) {
    display: none;
  }
}
@media screen and (min-width: 900px) and (max-width: 1249px) {
  .projects .project:empty:nth-child(n + 13) {
    display: none;
  }
}
@media screen and (min-width: 1250px) and (max-width: 1499px) {
  .projects .project:empty:nth-child(n + 16) {
    display: none;
  }
}
@media screen and (min-width: 1500px) and (max-width: 1749px) {
  .projects .project:empty:nth-child(n + 19) {
    display: none;
  }
}
@media screen and (min-width: 1750px) {
  .projects .project:empty:nth-child(n + 22) {
    display: none;
  }
}

.legend {
  padding: 20px;
  border: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  position: relative;
  margin-bottom: 0;
  transition: margin-bottom 0.2s;
}
@media screen and (max-width: 1009px) {
  .legend.active {
    margin-bottom: 69px;
  }
}
@media screen and (min-width: 1250px) {
  .legend {
    padding-left: 120px;
    padding-right: 120px;
    font-size: 25px;
    line-height: 34px;
  }
}
.legend p {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 1009px) {
  .legend p .description {
    display: none;
  }
}
@media screen and (max-width: 1009px) {
  .legend p.active .icon {
    color: var(--color-secondary);
  }
  .legend p.active .description {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    border: 1px solid var(--color-gray-light);
    border-top: 0;
    text-align: center;
    font-weight: normal;
  }
}
.legend .icon {
  font-size: 32px;
}

.sliders {
  display: grid;
  grid-gap: 20px;
}
.sliders[data-step="1"] .slider-nav .button[name="prev"] {
  display: none;
}
.sliders[data-step="5"] .slider-nav .button[name="next"] {
  display: none;
}
.sliders[data-step="2"] .slider main {
  transform: translateX(calc(-20% - 20px * 1 / 5));
}
.sliders[data-step="3"] .slider main {
  transform: translateX(calc(-40% - 20px * 2 / 5));
}
.sliders[data-step="4"] .slider main {
  transform: translateX(calc(-60% - 20px * 3 / 5));
}
.sliders[data-step="5"] .slider main {
  transform: translateX(calc(-80% - 20px * 4 / 5));
}
.sliders .slider {
  overflow: hidden;
  display: flex;
  flex-flow: column;
}
.sliders .slider > header {
  display: flex;
  column-gap: 20px;
  padding: 20px 0;
}
@media screen and (min-width: 1010px) {
  .sliders .slider > header {
    border-bottom: 1px solid var(--color-gray-light);
  }
}
.sliders .slider > header h3 {
  margin: 0;
}
.sliders .slider > main {
  position: relative;
  width: calc(5 * 100% + 4 * 20px);
  display: flex;
  column-gap: 20px;
  align-items: center;
  transition: transform 0.2s;
  flex: 1 1 auto;
}
@media screen and (min-width: 1010px) {
  .sliders .slider > main {
    padding: 60px 0;
  }
}
.sliders .slider > main p {
  width: calc((100% - 4 * 20px) / 5);
}
@media screen and (max-width: 1009px) {
  .sliders .slider + .slider > header {
    border-top: 1px solid var(--color-gray-light);
  }
}
@media screen and (max-width: 1009px) {
  .sliders .slider:first-of-type > header {
    padding-top: 0;
  }
}
.sliders .slider-nav {
  display: flex;
  column-gap: 20px;
}
.sliders .slider-nav .button {
  flex: 1 1 auto;
  width: 0;
}
@media screen and (min-width: 1010px) {
  .sliders {
    grid-template-columns: repeat(2, 1fr);
  }
  .sliders .slider-nav {
    grid-column: 1 / span 2;
  }
  .sliders .slider:nth-child(2n + 1) {
    /* Helps dealing with overflow: hidden */
    padding-right: 20px;
    margin-right: -20px;
  }
  .sliders .slider:nth-child(2n + 1) header {
    position: relative;
  }
  .sliders .slider:nth-child(2n + 1) header::after {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    right: -20px;
    bottom: -1px;
    border-bottom: 1px solid var(--color-gray-light);
  }
}

.logos .fake-tiles {
  display: block;
}
.logos .logo {
  margin: 0;
  background: var(--color-light);
  filter: grayscale(100%);
}
.logos .logo::after {
  padding-bottom: 100%;
  display: block;
  content: '';
}
.logos .logo img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.logos .logo [role="tooltip"] {
  display: none;
}

/*# sourceMappingURL=style.css.map */
