

body {
    background-color: whitesmoke;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  max-width: 900000000px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

div#logo {
    top: 0;
    position: absolute;
    padding: 1%;
    z-index: 99999;
}


div#logo img {
  width: 80%;
  height: 50%;
}



nav {
    &.primary-navigation {
      margin: 0 auto;
      display: block;
      padding: 2%;
      text-align: center;
      font-size: 16px;
      background-color: whitesmoke;
      z-index: 999;
      position: relative;
  
      ul li {
        list-style: none;
        margin: 0 auto;
        border-left: 2px solid #c50000;
        display: inline-block;
        padding: 0 30px;
        position: relative;
        text-decoration: none;
        text-align: center;
        font-family: arvo;
        z-index: 999999;
      }
  
      li a {
        color: black;
      }
  
      li a:hover {
        color: #c50000;
      }
  
      li:hover {
        cursor: pointer;
      }
  
      ul li ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
  padding-left: 0;
        left: 0;
        display: none;
        background: white;
      }
  
      ul li:hover > ul,
      ul li ul:hover {
        visibility: visible;
        opacity: 1;
        display: block;
        min-width: 250px;
        text-align: left;
        padding-top: 20px;
        box-shadow: 0px 3px 5px -1px #ccc;
      }
  
      ul li ul li {
        clear: both;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
        border-style: none;
      }
  
      ul li ul li a:hover {
        padding-left: 10px;
        border-left: 2px solid #c50000;
        transition: all 0.3s ease;
      }
    }
  }
  
  a {
  
      text-decoration: none;
  
      &:hover {
          color: #ee8916;
      }
   
  }
  
   ul li ul li a { transition: all 0.5s ease; }

/*-------------------------------------------------------------home*/

.gotopbtn
{
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 60px;
  color: white;
  font-size: 32px;
}

.gotopbtn img {
  width: 50px;
}

.containers {
    position: relative;
    text-align: center;
  } 
    
    .containers video {
          filter: brightness(0.5);
    }
    
    .centered {
  position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 6rem;
      font-weight: bold;
      font-family: Georgia, Times, serif;
      padding: 2%;
  }
    

  :root {
    --color: rgba(122, 122, 124, 0.918);
  }
  
  
  
  .container_mouse {
    text-align: center;
    color: var(--color);
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 2rem;
  }
  
  .container_mouse .mouse-btn {
    margin: 10px auto;
    width: 40px;
    height: 80px;
    border: 4px solid var(--color);
    border-radius: 30px;
    display: flex;
  }
  
  .container_mouse .mouse-btn .mouse-scroll {
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(170deg, rgba(122, 122, 124, 0.918), rgb(123, 124, 124));
    border-radius: 50%;
    margin: auto;
    animation: scrolling 1s linear infinite;
  }
  
  
  @keyframes scrolling {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(20px);
    }
  } 


 .maintxt {

    display: flex;
    flex-flow: row;
    justify-content: center;
    padding: 5% 10% 2% 10%;
    gap: 15%;
 } 

 .mainrght img {
    width: 600px;

 }

 .mainlft {
    font-size: 14pt;
    line-height: 1.6;
    color: #333333;
 }

 .mainlft h1 {
    font-size: 18pt;
 }

 .mainlft h1 hr {
    width: 10%;
    position: absolute;
    border: solid 2px  #c50000;
    margin-top: 1%;
  
 }

 .check {
    display: flex;
    justify-content: center;
    gap: 20%;
    font-size: 18pt;
    color: #333333;
    
 }

 
.gallery-image {
    padding: 2%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    margin-top: 5%;
    gap: 13%;
    background-color: #333333;
    }
      
    
      
    
    .gallery-image img {
      height: 100% !important;
      width: 350px;
      transform: scale(1.0);
      transition: transform 0.4s ease;
    }
      
    .gallery-image {
        float: none;
    }
    
    
      
    .img-box {
      box-sizing: content-box;
      margin: 10px;
      height: 250px;
      width: 350px;
      overflow: hidden;
      display: inline-block;
      color: white;
      position: relative;
      background-color: white;
    }
    
    .caption {
      position: absolute;
      bottom: 5px;
      left: 20px;
      opacity: 0.0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .transparent-box {
      height: 250px;
      width: 350px;
      background-color:rgba(0, 0, 0, 0);
      position: absolute;
      top: 0;
      left: 0;
      transition: background-color 0.3s ease;
    }
    
    .img-box:hover img { 
      transform: scale(1.1);
    }
    
    .img-box:hover .transparent-box {
      background-color:rgba(0, 0, 0, 0.5);
    }
    
    .img-box:hover .caption {
      transform: translateY(-20px);
      opacity: 1.0;
      font-size: 18pt;
    }
    
    .img-box:hover {
      cursor: pointer;
    }
    
    .caption > p:nth-child(2) {
      font-size: 0.8em;
    }
    
    .opacity-low {
      opacity: 0.5;
    }
      
.features1 {
    display: flex;
    justify-content: center;
    gap: 12%;
    padding-top: 3%;
    background-color: #333333;
    margin: 0% 10% 0% 10%;

}

.features2 {
    display: flex;
    justify-content: center;
    gap: 12%;
    background-color: #333333;
    padding: 3% 0% 3% 0%;
    margin: 0% 10% 0% 10%;
 
}

.ue2 {
    display: flex;
    justify-content: center;
    font-size: 20pt;
    color: #869098;
    background-color: #333333;
    padding-top: 3%;
    padding-bottom: 3%;
    font-weight: bold;
    margin: 2% 10% 0% 10%;
}


.ue {
    display: flex;
    justify-content: center;
    font-size: 20pt;
    color: #869098;
    background-color: #333333;
    padding-top: 3%;
    padding-bottom: 3%;
    font-weight: bold;
    margin: 0% 10% 0% 10%;
}

   .ico1 {
        display: flex;
        flex-flow: column;
        text-align: center;
        color: #869098;
        font-weight: bold;
    }

    .ico1 img {
      width: 25%;
      height: 50%;
        align-self: center;
    }

    .ico2 {
        display: flex;
        flex-flow: column;
        text-align: center;
        color: #869098;
        font-weight: bold;
    }

    .ico2 img {
      width: 25%;
      height: 50%;
        align-self: center;
    }

    .ico3 {
        display: flex;
        flex-flow: column;
        text-align: center;
        color: #869098;
        font-weight: bold;
    }

    .ico3 img {
      width: 25%;
      height: 50%;
        align-self: center;
    }

    .ico4 {
        display: flex;
        flex-flow: column;
        text-align: center;
        color: #869098;
        font-weight: bold;
    }

    .ico4 img {
      width: 25%;
      height: 50%;
        align-self: center;
    }

    .ico5 {
        display: flex;
        flex-flow: column;
        text-align: center;
        color: #869098;
        font-weight: bold;
    }

    .ico5 img {
      width: 25%;
      height: 50%;
        align-self: center;
    }

    .ico6 {
        display: flex;
        flex-flow: column;
        text-align: center;
        color: #869098;
        font-weight: bold;
    }

    .ico6 img {
      width: 25%;
    height: 50%;
        align-self: center;
    }


    .test {
      display: flex;
      justify-content: center;
      gap: 10%;
      margin-top: 3%;
      background-color: rgb(150 147 142 / 0.2);
      padding: 3%;
      margin-bottom: 3%;
    }
      
    figure.snip1390 {
      font-family: 'Roboto', Arial, sans-serif;
      position: relative;
      overflow: hidden;
      margin: 10px;
      min-width: 230px;
      max-width: 315px;
      width: 100%;
      color: #000000;
      text-align: center;
      font-size: 16px;
      background-color: #93897D;
      padding: 30px;
      background-image: linear-gradient(-25deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }
    figure.snip1390 *,
    figure.snip1390 *:before,
    figure.snip1390 *:after {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: all 0.35s ease;
      transition: all 0.35s ease;
    }
    figure.snip1390 figcaption {
      width: 100%;
    }
    figure.snip1390 h2,
    figure.snip1390 h4,
    figure.snip1390 blockquote {
      margin: 0;
    }
    figure.snip1390 h2,
    figure.snip1390 h4 {
      font-weight: 300;
    }
    figure.snip1390 h2 {
      color: #ffffff;
    }
    figure.snip1390 h4 {
      color: whitesmoke;
    }
    figure.snip1390 blockquote {
      font-size: 0.8rem;
      padding: 45px 20px 40px 50px;
      margin-top: 30px;
      background-color: #ffffff;
      border-radius: 5px;
      box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
      text-align: left;
      position: relative;
      color: #333333;
      text-shadow: none;
    }
    figure.snip1390 blockquote:before {
      font-family: 'FontAwesome';
      content: "\201C";
      position: absolute;
      font-size: 70px;
      opacity: 0.25;
      font-style: normal;
      top: 0px;
      left: 20px;
    }
    figure.snip1390 .profile {
      width: 100px;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
      margin-bottom: 10px;
      border: solid 5px #96938E;
    }

   /*---------------------------------------------------------------------------------branchen*/
   

   .containers2 img {
    width: 100%;
    filter: brightness(0.3) blur(2px);
    margin-top: -7%;
   }

   .containers2 {
    position: relative;
    text-align: center;
  } 

   .six h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
        font-size: 40px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .six h1 span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
  }
  .six h1 em {
    font-style: normal;
    font-weight: 600;
  }
  
  
  .six h1 {
    text-align: center;
    color:#222; font-size: 5rem; font-weight:400;
    text-transform: uppercase;
    word-spacing: 1px; letter-spacing:2px; color:#c50000;
  }
  .six h1 span {
    line-height:2em; padding-bottom:15px;
    text-transform: none;
    font-size:.7em;
    font-weight: normal;
    font-style: italic; font-family: "Playfair Display","Bookman",serif;
    color:#999; letter-spacing:-0.005em; word-spacing:1px;
    letter-spacing:none;
  }
  .six h1:after, .six h1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 4px;
    content: "";
    right: 45px; 
    margin:auto;
    background-color: #ccc;
  }
  .six h1:before { 
  background-color:#d78b8b;
    left:45px; width:90px;
  }

  .maintxt2 {

    display: flex;
    flex-flow: row;
    justify-content: center;
    padding: 3% 10% 3% 10%;
    gap: 15%;
    background-color: #93897D;
    margin-bottom: 5%;
 } 

 .mainrght2 {
  margin-top: 2%;
 }

 .mainrght2 img {
    width: 600px;

 }

 .mainlft2 {
    font-size: 14pt;
    line-height: 1.6;
    color: whitesmoke;
   
 }

 .mainlft2 h1 {
  font-size: 26pt;
  font-weight: lighter;
  margin-bottom: 8%;
 }

 .mainlft2 ul {
  opacity: 0.8;
  list-style-type: none;
  padding-inline-start: 0px;
 }

 .mainlft2 li {
  margin-bottom: 5%;
  opacity: 0.9;
 }


 #headerl{
  margin:20px;
}
#headerl>h1{
  text-align:center;
  font-size:3rem;
}
#headerl>p{
  text-align:center;
  font-size:1.5rem;
  font-style:italic;
}
.containerc{
max-width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
}
.card{
  display:flex;
  flex-direction:column;
  width:400px;
  margin-bottom:60px;
}
.card>div{
  box-shadow:0 15px 20px 0 rgba(0,0,0,0.5);
}
.card-image{
  width:400px;
  height:250px;
}
.card-image>img{
  width:100%;
  height:100%;
  object-position:bottom;
}
.card-text{
  margin:-30px auto;
  margin-bottom:-50px;
  height:300px;
  width:300px;
  background-color:#1D1C20;
  color:#fff;
  padding:20px;
}

.card-title{
  font-size: 15pt;
  margin-bottom:20px;
  margin-top:5px;
}


.card-text li {
  font-size: 1 rem;
  line-height: 2;
}

.card-price{
  width:100px;
  height:100px;
  background-color:#970C0A;
  color:#fff;
  margin-left:auto;
  font-size:2rem;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align: center;
}

.appstore {
  display: flex;
  justify-content: center;
  flex-flow: row;
  gap: 2%;
  background-color: rgb(147 137 125 / 0.5);
  padding: 5% 0% 5% 0%;
  margin-bottom: 5%;
}

.appstore p {
  font-weight: bold;
  font-size: 20pt;
  color: #c50000;
}

.appstore img {
  width: 200px;
  height: 50%;
  align-self: center;
}

.appstore blockquote {
  border: solid 2px #bc9e82;
  height: 75px;
  display: flex;
  top: 0;
  position: relative;
  margin-block-start: 0em;
}
  

.quote{
  text-align: center;
  font-size: 2.2rem;
  margin: auto;
  padding: 15px;
  border: 2px solid #333333;
  max-width: 70%;
  position: relative;
  margin-top: 5%;
  margin-bottom: 5%;
}
blockquote{
  color: #c50000;
  text-shadow: -1px 1px #555;
  font-style: italic;
  position: relative;
  z-index: 20;
}
.left{
  position: absolute;
  top: -50px;
  left: -20px;
  width: 150px;
  text-align: left;
  z-index: 10;
  font-size: 8rem;
  color: #c50000;
  background-color: whitesmoke;
  line-height: 200px;
}
.right{
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 150px;
  text-align: right;
  z-index: 10;
  font-size: 8rem;
  color: #c50000;
  background-color: whitesmoke;
  line-height: 200px;
}
small{
  font-size: 1.7rem;
  color: #336699;
  position: relative;
  z-index: 20;
  
  &:before{
    content: "\2014 \0020";
    width: 5px;
  }
}

/*-------------------------------------------------------------------------------------Kontakt*/

iframe {
  width: 100%;
  margin-bottom: 3%;
  border: none;
}

.kon {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 250px;
  max-width: 310px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #ee8916;
  color: #9e9e9e;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.kon *,
.kon *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.kon figcaption {
  padding: 5% 10% 14%;
}

.konico img {
  width: 43px;
  padding-top: 5%;
}


.kon h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0;
}

.kon p {
  font-size: 0.9em;
  font-weight: 300;
  margin: 0 0 20px;
}


.konflex {
  display: flex;
    justify-content: center;
    padding: 5%;
    flex-flow: row;
}

.csgroup {
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}

.csgroup img {
  width: 250px;
}

/*------------------------------------------------------------------------------------Datenschutz-Impressum*/


.datenschutz {
  padding: 5% 10% 5% 10%;
  background-color: #93897D;
  color: whitesmoke;
  margin: 5%;
}

.datenschutz a {
  color: #c50000;
}



   /*---------------------------------------------------------------------------------footer*/

   .footer {
    display: flex;
    justify-content: center;
    flex-flow: row;
    gap: 15%;
    background-color: #93897D;
    padding: 3% 0% 3% 0%;
   }

   .footerclick {
    display: flex;
    margin-top: 5%;
    font-size: 25pt;
    color: whitesmoke;
   }

   .footertxt {
    font-size: 14pt;
    line-height: 1.6;
    display: flex;
    color: whitesmoke;
   }

   .footertxt a{
    color: whitesmoke;
   }

   .social {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10%;
   }

   

   .social img {
    width: 50px;
   }

   .impdat {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10%;
   }
   
   .impdat a {
    color: whitesmoke;
    font-size: 14pt;

   }


   /*-----------------------------------------------------------------------------------responsive home*/
   @media only screen and (max-width: 900px) {
    .centered {
      font-size: 2rem;
    }
    .container_mouse .mouse-btn {
      width: 30px;
      height: 60px;
    }
    .maintxt {
      padding: 0;
      flex-flow: column;
    }
    .mainlft {
      font-size: 10pt;
    }
    .mainlft h1 {
      font-size: 12pt;
  }
  .mainlft h1 hr {
    width: 35%;
  }
  .mainrght img {
    width: 100%;
}
.check {
  font-size: 14pt;
  flex-flow: column;
}
.gallery-image {
  flex-flow: column;
  margin-bottom: 5%;
}
.ue {
  margin: 0%;
  font-size: 16pt;
}

.features1 {
  margin: 0%;
  gap: 10px;
}
.ue2 {
  margin: 0%;
  font-size: 16pt;
  margin-top: 5%;
}
.features2 {
  margin: 0%;
}
.test {
  flex-flow: column;
}
.footer {
  flex-flow: column;
  gap: 20px;
  padding: 3% 3% 3% 8%;
}
.social {
  gap: 10px;
}
.footertxt {
  font-size: 12pt;
}
.ico1 p {
  font-size: 10pt;
}
.ico2 p {
  font-size: 10pt;
}
.ico3 p {
  font-size: 10pt;
}
.ico4 p {
  font-size: 10pt;
}
.ico5 p {
  font-size: 10pt;
}
.ico6 p {
  font-size: 10pt;
}
.ico1 img {
  width: 27% !important;
  height: 27% !important;
}

.ico2 img {
  width: 27% !important;
  height: 27% !important;
}
.ico3 img {
  width: 27% !important;
  height: 27% !important;
}

.ico4 img {
  width: 27% !important;
  height: 27% !important;
}

.ico5 img {
  width: 27% !important;
  height: 27% !important;
}

.ico6 img {
  width: 27% !important;
  height: 27% !important;
}

.mainrght {
  margin-bottom: 5%;
}

nav {
  &.primary-navigation {
      font-size: 12px;
  
    
  }
}
div#logo img {
  width: 45px;
  height: 50%;
}
div#logo {
  top: 12px;
  }

  .gotopbtn {
    right: 0;
}

.gotopbtn img {
  width: 25px;
}
}

/*----------------------------------------------------------------------------responsive branche*/
@media only screen and (max-width: 900px) {
.left {
  top: -13px;
  left: -20px;
  font-size: 6rem;
  line-height: 77px;
  width: 65px;
}
.quote {
  text-align: center;
  font-size: 12pt;
}

.six h1 {
  font-size: 2rem;
}

.maintxt2 {
  flex-flow: column;
  padding: 2%;
}

.mainlft2 {
  font-size: 10pt;
}
.mainlft2 h1 {
  font-size: 15pt;
}

.mainrght2 img {
  width: 100%;
}
.containerc {
  max-width: 100%;
  padding: 0;
  margin-top: 10%;
}
.card-title {
  font-size: 12pt;
}
.card-text li {
  font-size: 10pt;
  line-height: 2;
}

.card-text {
  height: 230px;
}

.card-price {
  width: 90px;
  height: 90px;
}

.appstore {
  text-align: center;
  flex-flow: column;
  gap: 10px;
}

.right {
  bottom: -20px;
  right: -22px;
  width: 67px;
  font-size: 6rem;
  line-height: 69px;
}
.appstore blockquote {
  height: 0;
  margin-top: 5%;

}

.appstore img {
  width: 200px;
  height: 50%;
  padding-left: 24%;
}

.six h1 span {
  font-size: 0.6em;
}
}


/*--------------------------------------------------------------------------responsive Kontakt*/
@media only screen and (max-width: 900px) {
.konflex {
  display: flex;
  justify-content: center;
  padding: 5%;
  flex-flow: column;
  align-items: center;
}

.csgroup img {
  width: 150px!important;
}

}

/*--------------------------------------------------------------------------responsive Datenschutz-Impressum*/
@media only screen and (max-width: 900px) {
.datenschutz {
  font-size: 7pt;
}
}

/*--------------------------------------------------------------------------responsive Footer*/
@media only screen and (max-width: 900px) {
.social img {
  width: 30px;
}
}