@charset "UTF-8";
/*-----------------------
/shop/layout/css/__health__fonts
-----------------------*/

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968051.woff2') format('woff2'),
    url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968050.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968037.woff2') format('woff2'),
    url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968036.woff') format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968041.woff2') format('woff2'),
    url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968040.woff') format('woff');
}

/*-----------------------
/shop/layout/css/lp_css
-----------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --lpcolor: 26,27,52;
  --lpcolor2: 209,26,91;
}

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

html {
  color: rgb(64,64,64);
  font: 16px Roboto, sans-serif;
  line-height: 1.5;
}

body {
  background: url(/scripts/get.aspx?media=/shop/layout/stock/constructionq--bg.jpeg) center / cover no-repeat;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

body:before {
  background: rgba(var(--lpcolor),.8);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body > * {
  position: relative;
}

h1, h2 {
  color: rgb(var(--lpcolor));
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0;
}

p {
  margin-bottom: 1.5rem;
}

ul {
  margin: 0;
  padding-left: 1em;
}

td {
  padding: 0;
}

td:not(:last-child) {
  padding-right: 1em;
}

p.intro {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.constructionq__wrapper > * {
  padding: 20px;
}
.constructionq__wrapper .constructionq__logo {
  text-align: center;
}
.constructionq__logo_img {
  width: 170px;
}

.constructionq__introtext {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
}

.constructionq__footer a {
  color: inherit;
  transition: color .3s ease-in-out;
}
.constructionq__footer a:hover,
.constructionq__footer a:focus {
  color: rgb(var(--lpcolor2));
}

.constructionq__columns {
  display: flex;
  flex-direction: column-reverse;
}

.modal {
  background: rgb(var(--lpcolor));
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transform: translateY(-100%);
  transition: transform .5s;
}

.modal.active {
  transform: translateY(0);
  z-index: 2000002;
}

.modal-body {
  max-width: 800px;
  width: 90vw;
  margin: 4vh auto;
}

.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body a {
  color: inherit;
}

.modal .close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3rem;
  position: fixed;
  top: 2vh;
  right: 4vh;
  transform: translateY(-10vh);
}

.modal.active .close {
  transform: translateY(0);
}


@media only screen and (min-width: 768px) {
  html {
    font-size: 18px;
  }

  .constructionq__wrapper {
    max-width: 700px;
    margin: auto;
  }

  h1,
  .constructionq__introtext {
    font-size: 1.6667rem;
  }

  h2 {
    font-size: 1.1111rem;
  }
}

@media only screen and (min-width: 1200px) {
  body:before {
    display: none;
  }

  .constructionq__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 100%;
    min-height: 100vh;
    height: 100vh;
  }

  .constructionq__content,
  .constructionq__footer {
    margin-top: auto;
  }

  .constructionq__content {
    max-width: 800px;
    margin: auto;
    flex-grow: 1;
  }

  .constructionq__logo {
    position: absolute;
    top: 0;
    left: 0;
  }

  h1,
  .constructionq__introtext p {
    font-size: 2.2222rem;
    max-width: 100%;
  }

  h2 {
    font-size: 1.4444rem;
  }

  .constructionq__content {
    padding-left: 4em;
    padding-right: 4em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-self: center;
  }

  .constructionq__footer {
    background: rgba(var(--lpcolor),.8);
  }

  .constructionq__columns {
    flex-direction: row;
    justify-content: flex-end;
    margin: 0 5vw;
  }

  .constructionq__column:first-child {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 33%;
    max-width: 33%;
  }

  .constructionq__column:last-child {
    flex-grow: 1;
    flex-basis: 66%;
    max-width: 100%;
    column-count: 2;
    column-gap: 15px;
  }

  .constructionq__column p {
    break-inside: avoid;
  }

  .constructionq__column p:first-child {
    margin-top: 0;
  }
}

