@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
-----------------------*/

:root {
  --lpcolor: 0,72,31;
}

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

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

body {
  margin: 0;
}

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;
}
.constructionq__content_section a, .constructionq__content_section a:hover, .constructionq__content_section a:focus {
  color: #fff;
}
.constructionq__wrapper > * {
  padding: 20px;
}
.constructionq__logo {
  text-align: center;
}
.constructionq__logo_img {
  width: 250px;
}

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

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

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

.constructionq__content > * {
  position: relative;
}

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

.constructionq__footer strong {
  color: rgb(var(--lpcolor));
}

.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;
  }

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

  h2 {
    font-size: 1.1111rem;
  }

  .constructionq__introtext p {
    max-width: 66%;
    margin-left: auto;
    margin-right: auto;
  }

  .constructionq__columns {
    display: flex;
    justify-content: space-between;
  }
  .constructionq__column {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media only screen and (min-width: 1400px) {
  .constructionq__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 170px 1fr auto 100px;
    grid-template-rows: 170px 1fr auto 100px;
    -ms-grid-columns: 170px 1fr 1fr 100px;
    grid-template-columns: 170px 1fr 1fr 100px;
  }

  .constructionq__logo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: left;
  }

  .constructionq__introtext {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: left;
  }

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

  h2 {
    font-size: 1.4444rem;
  }

  .constructionq__content {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / 4;
    min-height: calc(100vh - 200px);
    padding-left: 4em;
    padding-right: 4em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }


  .constructionq__footer {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
}

