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

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968258.woff2') format('woff2'),
       url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968257.woff') format('woff');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  src: url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968236.woff2') format('woff2'),
       url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968235.woff') format('woff');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968244.woff2') format('woff2'),
       url('https://staticq.store/d756c5b6491adcb94c1f043bd34557db/1968243.woff') format('woff');
}


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



:root {
  --lpcolor: 228,125,60;
}

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

html {
  color: rgb(64,64,64);
  font: 16px Nunito, 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__wrapper > * {
  padding: 20px;
}

.constructionq__logo_img {
  width: 250px;
}

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

.constructionq__content {
  background: url(https://www.glemsmile-zahnarztpraxis.de/scripts/get.aspx?media=/shop/layout/stock/constructionq--bg.jpg) center / cover no-repeat;
  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__content_section {
  background: rgba(255,255,255,.9);
  border-radius: 2rem;
  box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.02),
    0 6.7px 5.3px rgba(0, 0, 0, 0.028),
    0 12.5px 10px rgba(0, 0, 0, 0.035),
    0 22.3px 17.9px rgba(0, 0, 0, 0.042),
    0 41.8px 33.4px rgba(0, 0, 0, 0.05),
    0 100px 80px rgba(0, 0, 0, 0.07);
  padding: 1rem 3rem;
}

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

.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: 100px 1fr auto 100px;
    grid-template-rows: 100px 1fr auto 100px;
    -ms-grid-columns: 100px 1fr 1fr 100px;
    grid-template-columns: 100px 1fr 1fr 100px;
    min-height: 100vh;
  }

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

  .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: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 1 / 5;
    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;
  }
}




