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


:root {
  --lpcolor: 243, 200, 141;
  --lpcolor-2: 82, 31, 58;
}

* {
  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/construction-bg.jpg) center / cover no-repeat;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

body:before {
  background: linear-gradient(to bottom, rgba(var(--lpcolor),.8), rgba(var(--lpcolor-2),.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;
}
a, a:hover, a:focus {
  color: #fff;
}
p {
  font-family: 'Graphik', 'Roboto';
  font-weight: 300;
  font-style: normal;
  margin-bottom: 1.5rem;
}
ul {
  margin: 0;
  padding-left: 1em;
}
td {
  padding: 0;
}
td:not(:last-child) {
  padding-right: 1em;
}
p.intro {
  font-family: 'Romie', 'Roboto';
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
p.intro small {
  font-size: 1.125rem;
  text-transform: none;
}
figure {
  margin: 0;
}
.constructionq__wrapper > * {
  padding: 20px;
}

.constructionq__logo_img {
  width: 250px;
}

.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: #fff;
  text-decoration: none;
}

.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__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }

  .constructionq__content {
    max-width: 66%;
    margin-right: auto;
  }

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

  .constructionq__footer {
    background: rgba(var(--lpcolor),1);
    color: rgba(var(--lpcolor-2),1);
  }
}

@media only screen and (min-width: 1400px) {
  .constructionq__wrapper {
    flex-direction: row-reverse;
  }

  .constructionq__content,
  .constructionq__footer {
    min-height: 100vh;
  }

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


  .constructionq__footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .constructionq__columns {
    flex-direction: column;
    justify-content: flex-start;
    height: 60%;
  }

  .constructionq__column {
    margin-top: auto;
    min-width: 100%;
  }
}


