/*
@media (min-width: 481px) { ... }
@media (max-width: 576px) { ... } Smartphones
@media (max-width: 768px) { ... } Tablet
@media (max-width: 992px) { ... } Desktop
@media (max-width: 1200px) { ... }
*/


:root {
  --blau1: #ff0000;
}

.farbe {
  background-color: var(--blau1);
}


/* ################################################################
Allgemeines
################################################################ */


@font-face {
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/merriweather-sans-v14-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/merriweather-sans-v14-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/merriweather-sans-v14-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/merriweather-sans-v14-latin-regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/merriweather-sans-v14-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/merriweather-sans-v14-latin-regular.svg#MerriweatherSans') format('svg');
  /* Legacy iOS */
}

@font-face {
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('../fonts/merriweather-sans-v14-latin-700.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/merriweather-sans-v14-latin-700.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/merriweather-sans-v14-latin-700.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/merriweather-sans-v14-latin-700.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/merriweather-sans-v14-latin-700.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/merriweather-sans-v14-latin-700.svg#MerriweatherSans') format('svg');
  /* Legacy iOS */
}

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-display: swap;
  font-weight: 900;
  src: url('../fonts/merriweather-v27-latin-900.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/merriweather-v27-latin-900.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/merriweather-v27-latin-900.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/merriweather-v27-latin-900.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/merriweather-v27-latin-900.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/merriweather-v27-latin-900.svg#Merriweather') format('svg');
  /* Legacy iOS */
}


html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  text-rendering: optimizeSpeed;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
  font-style: normal;
  font-family: 'Merriweather Sans', 'Segoe UI', Arial, Helvetica, sans-serif;
  word-wrap: break-word;
  line-height: 1.55;
  color: #392E29;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background: #09B8AC;
}

::selection {
  color: #fff;
  background: #09B8AC;
}

div,
header,
main,
footer,
section,
article,
aside,
details,
figure,
figcaption,
hgroup,
menu,
small,
nav,
summary,
q,
blockquote {
  display: block;
  margin: 0;
  padding: 0;
  border-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  box-shadow: none;
}


/* ################################################################
Typografie
################################################################ */

a,
a:visited {
  color: #7138AD;
}

b,
strong {
  font-weight: 700;
}

q:lang(de) {
  quotes: "„" "“";
}

small {
  font-size: 11px;
  line-height: 1.37
}

p {
  margin: 15px 0;
  margin: .9375em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather', 'Segoe UI', Arial, Helvetica, sans-serif;
  margin: 0;
}

h1 {
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 25px 0;
  font-size: 32px;
  letter-spacing: -.05px;
}

h2 {
  font-size: 25px;
  line-height: 1.4;
}

@media (max-width: 750px) {
  h1 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  h1 {
    margin: 0 0 20px 0;
    font-size: 25px;
    letter-spacing: normal;
  }

  h2 {
    font-size: 22px;
  }
}

/* ################################################################
Basis-Layout
################################################################ */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.wrapper {
  max-width: 2640px;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
}

.fw-container::before,
.fw-container::after,
.fw-container-xl::before,
.fw-container-xl::after,
.container::before,
.container::after {
  clear: both;
}


.container-xl {
  max-width: 3050px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .container-xl.padding-1.bg1.clearfix {
    padding: 11px;
  }
}

@media (max-width: 600px) {
  .container-xl.padding-1.bg1.clearfix {
    padding: 3px;
  }
}


/* ################################################################
################################################################



Individuelles CSS

 
################################################################ 
################################################################ */

.topleiste {
  padding: 7px 0;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #39A27D;
  background: #39A27D;
  color: #fff;
  background: rgb(100, 178, 144);
  background: linear-gradient(90deg, rgba(100, 178, 144, 1) 0%, rgba(92, 176, 167, 1) 73%, rgba(86, 174, 186, 1) 100%);

  background: rgb(57, 162, 125);
  background: linear-gradient(155deg, rgba(57, 162, 125, 1) 0%, rgba(62, 135, 161, 1) 73%, rgba(66, 115, 189, 1) 100%);

  background: rgb(57, 162, 125);
  background: linear-gradient(90deg, rgba(57, 162, 125, 1) 0%, rgba(62, 156, 148, 1) 56%, rgba(66, 152, 166, 1) 100%);
}


@media (max-width: 800px) {
  .topleiste {
    font-size: 15px;
  }
}

.telefon {
  float: right;
}

.telefon:before {
  content: "Telefon: ";
  color: #fff
}

@media (max-width: 530px) {
  .slogan {
    display: none
  }
}



/* ################################################################
Abstände
################################################################ */

.padding-seiten {
  padding-left: 20px;
  padding-right: 20px;
}



/* ################################################################
Navigation
################################################################ */


@media (min-width:700px) {

  .navigator-logos.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }

  .topnavigator {
    float: left;
    position: relative;
    width: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    -webkit-box-shadow: 0px 13px 5px -12px #B1B1B1;
    box-shadow: 0px 13px 5px -12px #B1B1B1;
    padding: 0 15px
  }

  nav.navi-wrapper {
    float: left;
    display: block
  }

  .navi-hamburger,
  .navi-icons,
  .showmobile {
    display: none
  }

  #navi-container {
    float: left;
    display: block;
    overflow: hidden;
  }

  #navi-container>div.navi-hauptliste {
    list-style-type: none;
    margin: 0;
    display: block;
    float: left;
    width: 100%;
    position: relative;
    padding: 0
  }

  #navi-container>div.navi-hauptliste ul {
    margin: 0;
    /*    width: 100%;*/
    display: block;
    float: left;
    padding: 0;
    float: right;
  }

  #navi-container>div.navi-hauptliste:first-child:before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 0;
    bottom: 0;
    left: 0;
    /*    background: #39A27D;*/
  }

  #navi-container>div.navi-hauptliste ul>li {
    float: left;
    display: block;
    position: relative;
  }


  #navi-container>div.navi-hauptliste ul>li:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }

  /*
  #navi-container > div.navi-hauptliste ul > li {
  border-right: 2px solid #39A27D;
  } 

  #navi-container > div.navi-hauptliste ul > li:first-child {
  border-left: 2px solid #39A27D;
  } 
*/


  #navi-container>div.navi-hauptliste ul>li>a {
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 700;
    padding: 15px 15px;
    letter-spacing: .2px;
    color: inherit;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: -0.2px;
  }


  #navi-container>div.navi-hauptliste ul>li>a:hover:after {
    content: " ";
    position: absolute;
    display: block;
    background: #e2e2e2;
    height: 3px;
    width: 30px;
  }



  #homepage #navi-container>div.navi-hauptliste ul>li:nth-child(1)>a,
  #leistungen #navi-container>div.navi-hauptliste ul>li:nth-child(2)>a,
  #preisliste #navi-container>div.navi-hauptliste ul>li:nth-child(3)>a,
  #kontakt #navi-container>div.navi-hauptliste ul>li:nth-child(4)>a {
    cursor: default
  }

  #homepage #navi-container>div.navi-hauptliste ul>li:nth-child(1)>a:after,
  #leistungen #navi-container>div.navi-hauptliste ul>li:nth-child(2)>a:after,
  #preisliste #navi-container>div.navi-hauptliste ul>li:nth-child(3)>a:after,
  #kontakt #navi-container>div.navi-hauptliste ul>li:nth-child(4)>a:after {
    content: " ";
    position: absolute;
    display: block;
    background: #39a27d;
    height: 3px;
    width: 30px;
  }


  #navi-container.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999999
  }
}


@media (min-width:700px) and (max-width:840px) {

  #homepage #navi-container>div.navi-hauptliste ul>li:nth-child(1)>a,
  #leistungen #navi-container>div.navi-hauptliste ul>li:nth-child(2)>a {
    color: #39a27d
  }

  #homepage #navi-container>div.navi-hauptliste ul>li:nth-child(1)>a:after,
  #leistungen #navi-container>div.navi-hauptliste ul>li:nth-child(2)>a:after {
    display: none
  }

  #navi-container>div.navi-hauptliste ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 3px;
  }
}







@media only screen and (min-width:600px) and (max-width:1150px) {
  #navi-container>div.navi-hauptliste ul>li>a {
    padding: 18px 14px;
    padding: 1.125rem .875rem
  }
}

@media (min-width:700px) and (max-width:840px) {
  #navi-container>div.navi-hauptliste ul>li>a {
    padding: 18px 10px;
  }

  #navi-container>div.navi-hauptliste ul>li:last-child {
    float: left
  }


  #navi-container>div.navi-hauptliste {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around
  }

  #navi-container>div.navi-hauptliste ul>li {
    text-align: center
  }
}

@media (max-width:699px) {

  .navigator-logos.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 15px;
    -webkit-box-shadow: 0px 13px 5px -12px #B1B1B1;
    box-shadow: 0px 13px 5px -12px #B1B1B1;
    position: relative;
  }

  .showmobile {
    display: block;
    padding: 10px 20px;
    padding: .625rem 1.25rem
  }

  .mobmen-logo {
    width: 100%;
    background: #fff;
    padding: 7px 10px;
  }

  .mobilemenukontakt {
    color: #edeff4;
    margin: 5px 0 15px 0;
    display: block
  }

  .mobilemenukontakt a {
    color: #ff9400
  }

  .navi-wrapper {
    float: left;
    display: block
  }

  #navi-container {
    float: left;
    width: auto;
    display: block;
    /*    width: 40%;*/
    padding: 3px;
    /*    background: #0f1f34;*/
  }

  ul.navi-icons {
    display: block;
    float: right;
    margin: 0;
    padding: 0
  }

  ul.navi-icons>li {
    display: block;
    float: right;
    margin: 0;
    list-style: none;
    font-size: 0;
    border-left: 1px solid #405485;
    position: relative
  }

  ul.navi-icons span.nav-icons-titel {
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    top: -3px;
    position: relative
  }

  ul.navi-icons>li {
    display: block;
    float: left;
    margin: 0;
    list-style: none;
    font-size: 0;
    border-left: 1px solid #405485;
    position: relative
  }

  ul.navi-icons>li:last-child {
    border-right: 1px solid #405485
  }

  ul.navi-icons>li>a {
    display: block;
    padding: 0
  }

  ul.navi-icons li a img {
    height: 48px;
    height: 3rem;
    max-width: 100%;
    width: auto
  }

  span.mobile-counter {
    position: absolute;
    z-index: 99;
    font-size: 16px;
    color: #fff;
    right: 10%;
    top: 10%
  }

  .navi-hamburger {
    float: left;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: cente;
    -ms-flex-align: cente;
    align-items: center;
    background: 0 0
  }

  .navi-hamburger:before {
    content: "Menü";
    /*    color: #fafcfd;*/
    font-weight: bold;
    margin-right: 8px;
    font-size: 20px;
  }

  .navi-mobil-aktiv .navi-hamburger:before {
    display: none
  }

  .navi-hamburger img {
    max-width: 100%;
    height: 52px;
    width: auto;
    display: block;
    float: left;
    background: #4298a6;
    /*    margin: 3px;*/
  }

  .navi-hamburger span {
    color: #fff;
    font-size: 13px;
    text-align: center;
    display: block;
    line-height: 1;
    bottom: 0
  }

  #navi-container>div.navi-hauptliste ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;


  }

  #navi-container.navi-mobil-aktiv .navi-hamburger {
    position: fixed;
    left: 73%;
    top: 15px;
    transition: .33s;
    z-index: 9999999;
    border: none;
    background: #081a47
  }

  #navi-container.navi-mobil-aktiv .navi-hamburger:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 12px;
    background-image: url(img/icons/hamburger-x.svg);
    background-size: contain;
    background-repeat: no-repeat
  }

  @media (max-width:576px) {
    .navi-hamburger:after {
      font-size: 18px;
      font-size: 1.125rem
    }
  }

  #navi-container>div.navi-hauptliste {
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99998;
    -webkit-transition: -webkit-transform 250ms ease-in-out;
    transition: -webkit-transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
    -webkit-box-shadow: 10px 0 5px -11px #091124;
    box-shadow: 10px 0 5px -11px #091124;
    overflow-y: scroll !important;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 0%;

    background: rgb(66, 152, 166);
    background: linear-gradient(180deg, rgba(66, 152, 166, 1) 0%, rgba(62, 157, 147, 1) 67%, rgba(57, 162, 125, 1) 100%);
  }

  #navi-container.navi-mobil-aktiv>div.navi-hauptliste {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 73%
  }

  #navi-container.navi-mobil-aktiv:after {
    content: " ";
    display: block;
    background: rgba(38, 38, 38, 0.92);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99997
  }

  #navi-container>div.navi-hauptliste ul>li>a {
    display: block;
    text-decoration: none;
    z-index: 1;
    color: #fff;
    padding: 10px 20px;
    padding: .625rem 1.25rem;
    font-size: 17px;
    font-size: 1.063rem;
    border-bottom: 1px solid rgba(255, 255, 255, .3)
  }

  #navi-container>div.navi-hauptliste ul>li:first-child>a {
    border-top: 1px solid rgba(255, 255, 255, .3)
  }
}




/* ################################################################
Zahnschienen
################################################################ */



.banner img {
  width: 100%;
}

#logo img {
  top: 40px;
  left: 40px;
  width: 250px;
  padding: 5px;
  background: #fff;
}

#logo {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.banner-l {
  display: block;
}

.banner-m {
  display: none;
}

@media (max-width: 600px) {
  .banner-l {
    display: none;
  }

  .banner-m {
    display: block;
  }

  #logo img {
    top: 40px;
    left: 40px;
    width: 180px;
    padding: 13px 0;
    background: #fff;
  }
}




/* ################################################################
Basis-Layout
################################################################ */


.kachelbklock>h2 {
  width: 100%;
  background: red;

}

.kachelbklock section {
  width: 25%;
  padding: 20px 40px;
  background-color: #fff;
  float: left
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
}


.padding-1 {
  padding: 25px 18px
}




/* ################################################################
Basis-Layout
################################################################ */


.hauptbereich {
  background-color: #fff;
  float: left;
  width: 100%;
  min-width: 100%;
  /*  margin: 20px 0;*/
}

.homepage-1 {
  margin: 15px 0 5px 0;
  float: left;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}


.homepage-1-c1 {
  width: 70%;
  padding: 15px 60px 15px 0;
}


.homepage-1-c2 {
  width: 30%;
  /*  background-image: url(../img/1000_F_80797554_i78t42yqYn99xInEaAts3Alr6FNV3usb.jpg);*/
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
  text-align: center;

  background: #39A27D;
  background: #4298A6;
  border-radius: 5px;
  overflow: hidden;
  font-weight: bold;
  /*  background-image: linear-gradient(to right bottom, #39a27d, #2ba18c, #289e98, #329ba1, #4298a6);*/

}


.homepage-1-c2 p {
  max-width: 300px;
  margin: 0 0 20px 0;
}

.homepage-1-c2 a {
  background: #fff;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  min-width: 200px;
  border-radius: 4px;
  color: #392E29
}

.service-1-c1 {
  width: 100%;
}

.service-1-c1+div {
  width: 100%;
  float: left;
  margin-top: 15px;
}


.service-1-c1 figure img {
  width: 100%;
  padding: 6px;
}

.service-1-c1 figure {
  position: relative;
  float: right;
  margin: 10px 0 15px 45px;
  width: 50%;
  z-index: 1;
  font-size: 0;
  overflow: hidden
}

.service-1-c1 figure::before {
  content: " ";
  background: rgb(66, 152, 166);
  background: linear-gradient(130deg, rgba(66, 152, 166, 1) 0%, rgba(255, 255, 255, 1) 27%, rgba(255, 255, 255, 1) 76%, rgba(57, 162, 125, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
}



.service-1-c2 {
  width: 20%;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #4298a6;
  display: none;
}



@media (max-width: 1200px) {
  .service-1-c1 figure {
    margin: 10px 0 15px 35px;
    width: 60%;
  }
}

@media (max-width: 1100px) {
  .homepage-1-c1 {
    width: 100%;
    padding: 10px 0;
  }

  .homepage-1-c2 p {
    max-width: 450px;
    float: left;
    width: 70%;
    margin: 0;
    padding: 0 30px 0 0
  }

  .homepage-1-c2 a {
    float: right;
    width: 30%;
    min-width: auto;
    padding: 20px 5px
  }

  .homepage-1-c2 {
    width: 90%;
    margin: 0 auto;
    background: -webkit-gradient(linear, left top, right top, from(rgba(57, 162, 125, 1)), color-stop(56%, rgba(62, 156, 148, 1)), to(rgba(66, 152, 166, 1)));
    background: linear-gradient(90deg, rgba(57, 162, 125, 1) 0%, rgba(62, 156, 148, 1) 56%, rgba(66, 152, 166, 1) 100%);
  }

  .homepage-1-c2 div {
    display: flex;
    align-items: center
  }
}


@media (max-width: 1100px) {
  .homepage-1-c2 {
    width: 100%;
  }
}


.service-1-c2 img {
  width: 100%;
}


.bg1 {
  background: #E2E2E2;
  width: 100%;
  margin: 30px auto;
}

@media (max-width: 750px) {

  .homepage-1 {
    margin: 0 0 10px 0;
  }


  .bg1 {
    margin: 20px auto;
  }
}

@media (max-width: 600px) {

  .service-1-c1 figure {
    margin: 0 0 20px 0;
    width: 100%;
  }

  .bg1 {
    margin: 15px auto;
  }
}

.homepage-2 {
  width: 100%;
  float: left;
}

/*
.homepage-2 h2::after {
  content: " ";
  background: #39a27d;
  height: 4px;
  margin-top: 3px;
  width: 50px;
  display: block;
}
*/

.homepage-2 h2::before {
  content: " ";
  background: #39a27d;
  height: 19px;
  width: 19px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 3px;
}


.homepage-2 section {
  margin: 10px 0;
  float: left;
  width: 100%;
  background: #fff;
  margin: 0;
  float: left;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 40px;
}

.homepage-2 section div {
  width: 50%;
  width: calc(50% - 40px);
  padding: 0;
  float: left;
  position: relative;
}

.homepage-2 section div:nth-child(1),
.homepage-2 section div:nth-child(3) {
  margin-right: 30px;
}

.homepage-2 section div:nth-child(2),
.homepage-2 section div:nth-child(4) {
  margin-left: 30px;
  margin-bottom: 25px;
}


.homepage-2 section div:nth-child(3),
.homepage-2 section div:nth-child(4) {
  margin-top: 0;
  margin-top: 25px;
}

.homepage-2 section div:nth-child(1):before,
.homepage-2 section div:nth-child(3):before {
  content: " ";
  display: block;
  width: 3px;
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  left: auto;
  background: #e2e2e2;
}

/*

.homepage-2 section div:nth-child(3) {
 background-image: url(../img/1000_F_80797554_i78t42yqYn99xInEaAts3Alr6FNV3usb.jpg);
  background-size: cover;
  background-position: center;
}
*/

.homepage-2-icon {
  width: 100px;
  float: left;
  margin: 5px 15px 5px 0;
}

.homepage-3 {
  margin: 0;
  float: left;
  width: 100%;
}

.homepage-3>div {
  margin: 0;
  float: left;
  width: 100%;
}

.homepage-3 img {
  margin: 20px 35px 10px 0;
  float: left;
  width: 40%;
}

@media (max-width: 952px) {
  .homepage-3 img {
    margin: 20px 35px 10px 0;
    width: 48%;
  }
}


@media (max-width: 780px) {
  .homepage-2 section {
    padding: 18px;
  }

  .homepage-2 section div {
    width: 100%;
  }

  .homepage-2 section div:nth-child(1),
  .homepage-2 section div:nth-child(3) {
    margin-right: 0;
  }

  .homepage-2 section div:nth-child(2),
  .homepage-2 section div:nth-child(4) {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 10px;
    border-top: 3px solid #e2e2e2;
    padding-top: 20px;
  }


  .homepage-2 section div:nth-child(3),
  .homepage-2 section div:nth-child(4) {
    margin-top: 0;
  }
}


@media (max-width: 600px) {
  .homepage-3 img {
    margin: 17px 0;
    width: 1000%;
  }
}

.homepage-4 {
  margin: 10px 0;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.homepage-4 .container>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}



.homepage-4 .homepage-4-c1 {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
  background: #4298a6;
  color: #fff;
  padding: 30px;
  /*  background-image: linear-gradient(to right bottom, #39a27d, #2ba18c, #289e98, #329ba1, #4298a6);*/
}

.homepage-4 .homepage-4-c1>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.homepage-4 .homepage-4-c1 div h2 {
  width: 100%;
  font-size: 22px;
  margin: 20px 0;
  text-align: center;
  font-weight: normal;
}

.homepage-4 .homepage-4-c1 ul {
  margin: 0 0 20px 0;
  padding: 0;
  max-width: 400px
}

.homepage-4 .homepage-4-c1 ul li {
  margin: 10px 0;
  padding: 0;
}

figure.homepage-4-c2 {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;

  background-image: url(../img/1000_F_223379864_T3n0PWKgVcvk7wiZpxdaBxJGZVYYqYa9.jpg);
  background-size: cover;
  background-position: right bottom;
}


.homepage-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.homepage-5 figure,
.homepage-5 div {
  width: calc(20% - 5px);
  padding: 25px 20px;
  background: #4298a6;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-align: center;
}


.homepage-5 div {
  background: #39a27d;
  padding: 20px;
  color: #fff;
  font-weight: bold;
}

.homepage-5 div p {
  max-width: 240px;
}


.homepage-5 figure img {
  max-width: 150px;
}


.homepage-5 figure figcaption {
  width: 100%;
  font-size: 18px;
  text-align: center;
  color: #fff;
  /*  text-transform: uppercase;*/
  font-weight: bold;
  top: -16px;
  position: relative
}

@media (max-width: 900px) {
  .homepage-5 figure figcaption {
    font-size: 16px;
    position: relative;
  }

  .homepage-5 figure {
    width: calc(33.3333% - 6px);
    margin: 3px 0;
    padding: 5px 20px;
  }

  .homepage-5 div {
    background: #fff;
    color: inherit;
    width: calc(66.6666% - 6px);
    margin: 3px 0;
    padding: 5px 20px;
  }

  .homepage-5 div p {
    max-width: none
  }

  .homepage-4 .homepage-4-c1 {
    width: 100%;
  }

  figure.homepage-4-c2 {
    display: none
  }

  .homepage-4 {
    margin: 0
  }
}

/* ################################################################
service
################################################################ */


.service-kacheln {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.service-1 {
  margin-top: 50px;
}

@media (max-width: 699px) {
  .service-1 {
    margin-top: 25px;
  }
}


.service-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.service-2 div {
  padding: 22px 0
}

.service-2 div figure {
  width: 25%;
  width: calc(25% - 14px);
  margin: 7px;

  background: #fff;
  padding: 0;
  float: left;
  overflow: hidden;
  position: relative;
}

.service-2 div figure img {
  padding: 30px;
}

.service-2 h2 {
  width: 100%;
  float: left;
  display: block;
  text-align: center;
  padding: 10px;
  background: #fff;
  margin-top: 2px;
}

.service-2 div figure figcaption {
  text-align: center;
  padding: 6px;
  font-size: 16px;
  font-weight: bold;
  background: #4298a6;
  color: #fff;
}

a.superlink1 {
  display: inline-block;
  padding: 12px 15px;
  background: #39a27d;
  color: #fff;
  margin: 15px 10px 25px 0;
  border: 2px solid #39a27d;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;

}

a.superlink2 {
  display: inline-block;
  padding: 12px 15px;
  border: 2px solid #39a27d;
  color: #39a27d;
  font-weight: bold;
  margin: 15px 10px 25px 0;
  text-decoration: none;
  border-radius: 4px;
}


.service-3 {
  display: block;
  float: left;
  width: 100%;
  display: block;
}

.service-3 div {
  width: 100%;
  float: left;
  padding: 20px;
}

figure.borderbild {
  position: relative;
  float: right;
  margin: 10px 0 15px 45px;
  width: 50%;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}

figure.borderbild img {
  width: 100%;
  padding: 6px;
}

figure.borderbild::before {
  content: " ";
  background: rgb(66, 152, 166);
  background: linear-gradient(130deg, rgba(66, 152, 166, 1) 0%, rgba(255, 255, 255, 1) 27%, rgba(255, 255, 255, 1) 76%, rgba(57, 162, 125, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
}




.service-4 {
  display: block;
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.service-4 p:nth-child(2) {
  max-width: 1100px;
}

.service-4 img {
  float: left;
  width: 40%;
  margin: 5px 20px 0 0;
}



.service-4 h2 {
  font-size: 22px !important;
}


@media (max-width: 1200px) {
  .service-2 div figure img {
    padding: 20px;
  }
}

@media (max-width: 960px) {

  .service-2 div figure img {
    padding: 13px;
  }
}

@media (max-width: 860px) {
  .service-2 div figure img {
    padding: 13px;
  }

  .service-2 div figure {
    width: 25%;
    width: calc(33.33333333% - 14px);
    margin: 7px;
  }

  .service-3 div {
    width: 100%;
    float: left;
    padding: 10px 0;
  }
}

@media (max-width: 600px) {


  .service-4 img {
    float: left;
    width: 100%;
    margin: 0 0 15px 0;
  }


  .service-2 div figure img {
    padding: 15px;
  }

  .service-2 div figure {
    width: calc(50% - 10px);
    margin: 5px;
  }
}

@media (max-width: 500px) {
  .service-2 div figure img {
    padding: 8px;
  }
}



/* ################################################################
kontaktformular
################################################################ */


.kontaktformular {
  width: 100%;
  margin: 0 auto;
  background: #e2e2e2;
  display: block;
  margin: 20px 0;
}

.kontaktformular h2 {
  width: 100%;
  float: left;
  display: block;
  text-align: center;
  padding: 10px;
  background: #fff;
  margin-top: 2px;
  margin-bottom: 30px;
}


.kontaktformular form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  padding: 30px 15px;
}

.btn-dark {
  background: #39a27d;
  padding: 15px 30px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 20px;
}

.req {
  font-size: 14px;
  margin: 10px 0;
  max-width: 600px;
  display: block;
  line-height: 1.44;
}

#opt-in {
  float: left;
  display: block;
  margin-right: 5px;
}

.form-group {
  float: left;
  width: 100%;
  margin: 2px 0;
}

.form-group:nth-child(5) {
  margin-top: 20px;
}

select {
  width: 300px;
  font-size: 16px;
  padding: 5px;
}

.form-group input {
  width: 300px;
  float: left;
  padding: 5px;
}

.form-group label {
  width: 170px;
  float: left;
  text-align: right;
  margin: 0 15px 0 0;
}


.form-group textarea {
  width: 100%;
  display: block;
  float: left;
  margin: 5px 0;
}

.form-group textarea label {
  width: 100%;
  display: block;
  float: left;
}

.alert.alert-success {
  background: red;
  margin: 10px 0;
  padding: 20px;
  background: #c4e2c4;
  border: 2px solid #6f826f
}

@media (max-width: 600px) {

  .form-group {
    margin: 4px 0;
  }

  .form-group:nth-child(5) {
    margin-top: 4px 0;
  }

  .form-group input {
    width: 100%;
    padding: 10px
  }

  .form-group label {
    width: 100%;
    text-align: left;
    margin: 0 15px 0 0;
  }

  .form-group textarea {
    width: 100%;
    display: block;
    float: left;
    margin: 0;
  }

  .btn-dark {
    margin: 10px 0;
  }
}




/* ################################################################
footer
################################################################ */

.preise-s1 {
  min-height: 100vh;
}

.preise-s1 p {
  max-width: 950px
}

iframe,
object {
  float: left;
  display: block;
  width: 100%;
  margin: 30px 0
}


/* ################################################################
footer
################################################################ */

footer {
  min-height: 230px;
  background: #525252;
  color: #fff;
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  /*  background-image: linear-gradient(to right bottom, #39a27d, #2ba18c, #289e98, #329ba1, #4298a6);*/
  border-top: 5px solid #4298a6;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer small {
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 25px auto;
  line-height: 1.5;
  opacity: .65
}


footer ul {
  margin: 0;
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

footer ul li {
  margin: 0;
  display: inline-block;
  padding: 0;
  margin: 10px 20px;
}


footer ul li a,
footer ul li a:visited {
  color: #fff;
  text-decoration: none
}

footer ul li a:hover {
  text-decoration: underline
}


#datenschutz footer ul li.footer-datenschutz a,
#impressum footer ul li.footer-impressum a {
  color: #4ac1d4;
  text-decoration: none !important;
  cursor: default
}



.rechtstexte {
  font-size: 15px;
  line-height: 1.45;
  max-width: 900px;
  margin: 50px auto
}


.rechtstexte hr {
  margin: 15px 0;
  border: none;
  box-shadow: none;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(57, 162, 125, 1)), color-stop(56%, rgba(62, 156, 148, 1)), to(rgba(66, 152, 166, 1)));
  background: linear-gradient(90deg, rgba(57, 162, 125, 1) 0%, rgba(62, 156, 148, 1) 56%, rgba(66, 152, 166, 1) 100%);
}

.rechtstexte h1 {
  color: #39a27d
}

.rechtstexte h2,
.rechtstexte h3 {
  margin: 15px 0
}


.quellen {
  max-height: 300px;
  overflow-y: scroll;
  padding: 10px 30px;
  background: #f5f5f5;
}


address {
  font-style: normal;
  margin: 15px 0
}


#kontakt address {
  color: #4298a6;
  font-weight: bold;
  border-left: 4px solid #4298a6;
  padding-left: 10px;
}

.mail1,
.telefon1 {
  display: block;
}

.mail1 a {
  color: #4298a6;
  text-decoration: none;
}

/*
.mail1:after {
  content: "info@dentaldesigndentissimo.de";
}
*/

hr {
  box-shadow: none;
  border: none;
  height: 2px;
  background: #e2e2e2;
  margin: 25px 0
}







/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1c4046e0;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  z-index: 9999;
  z-index: 1;
  cursor: pointer;
}

/* Popup */
.popup {
  max-width: 697px;
  height: auto;
  background: #fff;
  flex-wrap: wrap;
  display: flex;
  position: relative;
  padding: 0;
  z-index: 9999;
  cursor: default;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 12px #0000003f;
  border-radius: 6px;
  margin: 40px;
  text-align: center;
}


.popup>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideDown 1s ease forwards;
  transform: translateY(0);
}



@keyframes slideDown {
  from {
    transform: translateY(-25%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup h2 {
  font-size: 44px;
  letter-spacing: -1px;
  margin: 20px 15px 10px 15px;
  line-height: 1.2;
  color: #39a27d;
  color: #4298a6;
}

.popup p {
  font-size: 23px;
  letter-spacing: -.8px;
  padding: 0;
  margin: 0;
  color: #39a27d;
  padding: 0 15px;
  line-height: 1.3;
}



.popup a {
  background: #a0a09f;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
  margin: 36px 15px 32px 15px;
  font-weight: bold;
}

.popup a:hover {
  background: #888888;
}

.popup img {
  width: 100%;

}

.popup figure {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4299a634;
  margin: 0;
  overflow: hidden;
}

.popup figure::after {
 content: "";
 display: block;
 position: absolute;
 top: -0;
 right: -90px;
 bottom: -120px;
 left: 0;
 background-image: url('https://dentaldesigndentissimo.de/img/zahntechniker.jpeg');
 z-index: -1;
 background-position: center;
 background-size: 110%;
 opacity: .3;
}

img#poplog {
  max-width: 220px;
  margin: 52px 0;
  padding: 9px;
  border-radius: 3px;
  background-color: #fff;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 1;
  line-height: 0;
  font-weight: bold;
  color: #fff;
  display: flex;
  cursor: pointer;
  background-color: #4298a6;
  width: 44px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  border: 2px solid #ffffff93;
}


@media screen and (max-width: 600px) {

  /* Close Button */
.popup-close {

  position: absolute;
  top: -20px;
  right: -20px;
}


  .popup h2 {
    font-size: 34px;
    letter-spacing: -.9px;
    line-height: 1.2;
    color: #39a27d;
    color: #4298a6;
  }

  .popup p {
    font-size: 22px;
    letter-spacing: -.2px;
    color: #39a27d;
    line-height: 1.3;
  }  
  
  .popup a {
   max-width: 350px;
   line-height: 1.3
  }


  
img#poplog {
  max-width: 150px;
  bottom: 5px;
  right: 5px;
}


}