
*{
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

video {
  object-fit: unset !important;
  overflow-clip-margin: 0px !important;
  overflow: hidden !important;

}

a 
{
  text-transform: capitalize !important;
}
/* ##################################### */
/* ##################################### */
/* ##########  General CSS  ############ */
/* ##################################### */
/* ##################################### */



/* ############## Colors ############### */
:root {
  --black: #000000;
  --white: #ffffff;
  --cta: #26abff;
  --cta-hover: #4472c4;
  --background-color: #174d7c;
  --text: #222;
  --grey2: #444444;
  --t1: 40s;
  --greenbackground: #00ff00;
}

    /* Style for tel: links */
    a[href^="tel:"] {
      color: var(--black) /* Custom color for tel: links */
    }

    /* Style for mailto: links */
    a[href^="mailto:"] {
      color: var(--black); /* Custom color for mailto: links */
    }

          /* Style for tel: links */
          a[href^="tel:"]:hover {
              color: var(--grey2); /* Custom color for tel: links */
              cursor: pointer;
            }
        
            /* Style for mailto: links */
            a[href^="mailto:"]:hover {
              color: var(--grey2); /* Custom color for mailto: links */
              cursor: pointer;
            }

a{
  text-decoration: none;
  color: var(--black); /* Custom color for tel: links */
  transition: all 0.3s ease;
}

a:hover{
  color: var(--cta) /* Custom color for tel: links */
}

html, body
{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  background: #f3f3f3;

}

.displaynone
{
   display: none;
}


.basicparagraph
{
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text);
}

.basicparagraphwhite
{
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
}


/* ############## Mobile and Desktop only ############### */
@media only screen and (max-width: 970px)
{
  .desktoponly
  {
      display: none !important;
  }
  .mobileonly
  {
      display: block !important;
  }
}

@media only screen and (min-width: 970px)
{
  .desktoponly
  {
      display: block !important;
  }
  .mobileonly
  {
      display: none !important;
  }
}

/* ############## custom Container class ############### */
@media only screen and (max-width: 540px)
{
  .customcontainer
  {
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
  }
}

@media only screen and (min-width: 540px) and (max-width: 820px)
{
  .customcontainer
  {
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
  }
}

@media only screen and (min-width: 820px) and (max-width: 1100px)
{
  .customcontainer
  {
      margin-left: auto;
      margin-right: auto;
      max-width: 800px;
  }
}

@media only screen and (min-width: 1100px) and (max-width: 1500px)
{
  .customcontainer
  {
      margin-left: auto;
      margin-right: auto;
      max-width: 1080px;
  }
}

@media only screen and (min-width: 1500px) and (max-width: 1700px)
{
  .customcontainer
  {
      margin-left: auto;
      margin-right: auto;
      max-width: 1300px;
  }
}

@media only screen and (min-width: 1700px)
{
  .customcontainer
  {
      margin-left: auto;
      margin-right: auto;
      max-width: 1500px;
  }
}

@media only screen and (min-width: 1920px)
{
  .bodycontainer
  {
      margin-left: auto;
      margin-right: auto;
      max-width: 1920px;
  }
}




/* ############## Navigation ############### */



#mainnav{
  width: 100%;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  background-color: rgba(255,255,255,0.7);
  max-width: 1920px;
  position: absolute;
  z-index: 999;
  transition: all 0.6s ease;
}

.navstyle2
{
  background-color: #fff !important;
}

#mainheadline h1{
  font-weight: 400 !important;
}

#mainheadline h2 {
  font-weight: 300 !important;
}

#mainnav .wrapper{
  position: relative;
  max-width: 1500px;
  padding: 0px 30px;
  height: 100px;
  line-height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #222;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#heroshot
{
  overflow: hidden !important;
  background-color: #fff;
  width: 100%;
}


@media screen and (max-width: 970px) {
  .nav-links li a:hover{
    color: var(--cta-hover);
  }
  .droplink:hover{
    background: var(--cta-hover);
    color: #fff;
    cursor: pointer;
  }
}

@media screen and (min-width: 970px) {
  .nav-links li a:hover{
    color: var(--cta-hover);
  }
  .droplink:hover{
    background: var(--cta-hover);
    color: #fff;
    cursor: pointer;
  }
}




.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #fff;
  width: 180px;
  line-height: 45px;
  top: 110px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}


#largerdrop, #largerdrop2
{
  width: 260px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 100px;
  opacity: 1;
  visibility: visible;
  z-index: 9999;

}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.desktop-item:hover{
  cursor: pointer;
}


.drop-menu a
{
  color: #222 !important;
}

.drop-menu a:hover
{
  color: #fff !important;
  cursor: pointer;
}

.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 110px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #fff;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #111;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #222;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
  cursor: pointer;
}
.wrapper .btn{
  color: #222;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background-color: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showDrop2:checked ~ .drop-menu,
  #showDrop3:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #222;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    color: var(--cta-hover);
    cursor: pointer;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}



  #heroshotoverlay
  {
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    height: 100vh;
    background: rgba(68, 114, 196, 0.5);
    /*background: linear-gradient(to right, rgba(68, 114, 196, 0), rgba(68, 114, 196, 0.8)); */
  }

  #heroshotoverlay2
  {
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    height: 100vh;
    background: rgba(68, 114, 196, 0.3);
    /*background: linear-gradient(to right, rgba(68, 114, 196, 0), rgba(68, 114, 196, 0.8)); */
  }

  #heroshotoverlay3
  {
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    height: 100vh;
    background: rgba(68, 114, 196, 0.1);
    /*background: linear-gradient(to right, rgba(68, 114, 196, 0), rgba(68, 114, 196, 0.8)); */
  }

  #heroshotoverlay4
  {
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    height: 100vh;
    background: rgba(68, 114, 196, 0);
    /*background: linear-gradient(to right, rgba(68, 114, 196, 0), rgba(68, 114, 196, 0.8)); */
  }



  .videosm, .videomd, .videolg, .videoxl {
    position: absolute;
    top: 0;
    left: auto;
    width: 100% !important;
    max-width: 1920px !important;
    height: 100vh;
    overflow: hidden !important;
}

@media screen and (max-width: 601.44px) {
    .videosm {
        display: block !important;
    }
    .videomd, .videolg, .videoxl {
        display: none !important;
    }
}

@media screen and (min-width: 601.45px) and (max-width: 1080.45px) {
    .videomd {
        display: block !important;
    }
    .videosm, .videolg, .videoxl {
        display: none !important;
    }
}

@media screen and (min-width: 1080.46px) and (max-width: 1440.44px) {
    .videolg {
        display: block !important;
    }
    .videosm, .videomd, .videoxl {
        display: none
    }
  }
  
  @media screen and (min-width: 1440.45px){
    .videoxl {
      display: block !important;
    }
    .videosm, .videomd .videolg
    {
      display: none !important;
    }
  }
  



@media screen and (min-width: 1400px) {
   #mainheadline h2{
    color: #fff;
    font-size: 2.5rem;
  }
  #mainheadline h1{
    color: #fff;
    font-size: 3.5rem;
  }


}

@media screen and (min-width: 970px) and (max-width: 1400px) {
  #mainheadline h2{
    color: #fff;
    font-size: 1.8rem;
  }
  #mainheadline h1{
    color: #fff;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 970px) {
  #mainheadline h2{
    color: #fff;
    font-size: 1rem;
  }
  #mainheadline h1{
    color: #fff;
    font-size: 1.6rem;
  }
}

#mainheadline{
  position: absolute;
  z-index: 99;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 30px;
  left: 0px;
  top: 0px;
  height: 100vh;
}
#mainheadline div{
  font-size: 45px;
  font-weight: 600;
}


/*####################### */
/*####################### */
/*####################### */
/*######## lang switcher ########*/
/*####################### */
/*####################### */
/*####################### */

@media only screen and (max-width: 970px)
{
  #multilangswitcher
  {
      width:  100%;
      left: auto;
      top: 120px;
      z-index: 998;
      display: flex;
      text-align: center;
      justify-content: center;;
      position: absolute;
      height: 100px;
  }
}

@media only screen and (min-width: 970px) and (max-width: 1790px)
{
  #multilangswitcher
  {
      width:  200px;
      right: 20px;
      top: 120px;
      z-index: 998;
      display: flex;
      justify-content: center;
      position: absolute;
      height: 100px;
  }

}

@media only screen and (min-width: 1790px)
{
  #multilangswitcher
  {
      width:  200px;
      right: -200px;
      top: 0px;
      z-index: 6000;
      display: flex;
      align-items: center;
      text-align: left;
      position: absolute;
      height: 105px;
  }

}

#multilangswitcher img
{
    height: 24px;
    width: 36px;
}

#multilangswitcher
{
  background-color: none !important;
}


#multilangswitcher button:focus, #multilangswitcher button
{
    outline: none !important;
    border: none !important;
    background-color: rgba(255,255,255,0) !important;
}

#multilangswitcher button:hover
{
    cursor: pointer;
}



/*######## Scroll Arrow  ########*/

#scrollarrowouter
{
  position: absolute;
  width: 100%;
  max-width: 1920px;
  left: 0px;
  top: 80vh;
  z-index: 9999;
}

.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(0deg);
  cursor: pointer;
}

.arrow2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(0deg);
  cursor: pointer;
}

.arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid white;
  border-right: 5px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animatearrow 2s infinite;
}

.arrow2 span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid var(--cta-hover);
  border-right: 5px solid var(--cta-hover);
  transform: rotate(45deg);
  margin: -10px;
  animation: animatearrow 2s infinite;
}

.arrow span:nth-child(2),.arrow2 span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3),.arrow2 span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animatearrow {
  0% {
      opacity: 0;
      transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: rotate(45deg) translate(20px, 20px);
  }
}

/*######## CTAs ########*/



.cta
{
    background-color: var(--cta);
    order: none;
    color: var(--white);
    border-radius: 5px;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out;
}

.cta:hover
{
    background-color: var(--cta-hover);
    border: 1px solid var(--cta-hover);
    cursor: pointer;
}

.cta2
{
    background-color: var(--cta-hover) !important;
    border: none;
    color: var(--white) !important;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    transition: border-color 0.2s ease-in-out !important;
    width: auto !important;
}

.cta2:hover{
  background-image: linear-gradient(90deg, #174d7c 0%, #4472c4 49%, #1e73ac 80%, #0098ce 100%) !important;
  animation:slidebg 5s linear infinite !important;
  cursor: pointer !important;
}

.cta22
{
    background-color: var(--cta-hover) !important;
    border: none;
    color: var(--white) !important;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    transition: border-color 0.2s ease-in-out !important;
    width: auto !important;
    font-size: 1.25rem !important;
}

.cta22:hover{
  background-image: linear-gradient(90deg, #174d7c 0%, #4472c4 49%, #1e73ac 80%, #0098ce 100%) !important;
  animation:slidebg 5s linear infinite !important;
  cursor: pointer !important;
}


.cta3
{
    background-color: #f3f3f3 !important;
    order: none;
    color: #222 !important;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    transition: border-color 0.2s ease-in-out !important;
    width: auto !important;
}

.cta3:hover{
  background-image: linear-gradient(90deg, #ccc 0%, #ddd 49%, #eee 80%, #f3f3f3 100%) !important;
  animation:slidebg 5s linear infinite !important;
  cursor: pointer !important;
}

.cta4
{
    background-color: #f3f3f3 !important;
    border: none;
    color: #222 !important;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    width: auto !important;
}

.cta4:hover{
  background-color: #ccc !important;
  cursor: pointer !important;
}

.cta5
{
    border: solid 2px #f3f3f3;
    color: #fff !important;
    padding: 2px 8px;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    width: auto !important;
    background-color: rgba(0,0,0,0.2) !important;
}

.cta5:hover{
  background-color: rgba(255,255,255,0.3) !important;
  cursor: pointer !important;
}

.cta6
{
    border: solid 2px var(--cta-hover);
    color: var(--cta-hover) !important;
    padding: 4px 16px;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    width: auto !important;
    background-color: #fff;
}

.cta6:hover{
  background-color: var(--cta-hover);
  color: #fff !important;
  cursor: pointer !important;
}

.cta7
{
    border: solid 2px var(--cta-hover);
    color: var(--cta-hover) !important;
    padding: 3px 12px;
    border-radius: 3px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    width: auto !important;
    background-color: #fff;
}

.cta7:hover{
  background-color: var(--cta-hover);
  color: #fff !important;
  cursor: pointer !important;
}


@media screen and (min-width: 970px) {
  .cta, .cta2, .cta3, .cta4, .cta6, .cta7
  {
      font-size: 1.25rem !important;
  }
  .cta, .cta2, .cta3, .cta4
  {
      padding: 10px 20px !important;
  }
}

@media screen and (max-width: 970px) {
  .cta, .cta2, .cta3, .cta4, .cta6
  {
      font-size: 1rem !important;
  }
  .cta7 
  {
    font-size: 0.8rem !important;
  }
  .cta, .cta2, .cta3, .cta4
  {
      padding: 5px 10px !important;
  }
}


@keyframes slidebg {
  to {
    background-position:20vw;
  }
}

.secbuttonwhite
{
    color: var(--white);
    border: 3px solid var(--white);
    padding: 10px 20px;
    border-radius: 1px;
    font-size: 1.25rem;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out;
}

.secbuttonwhite:hover
{
    background-color: #222;
    cursor: pointer;
}

.secbutton
{
    color: var(--black);
    border: 3px solid var(--black);
    padding: 10px 20px;
    border-radius: 1px;
    font-size: 1.25rem;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out;
}

.secbutton:hover
{
    background-color: #f3f3f3;
    cursor: pointer;
}

.readonlink
{
  color: var(--text);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}
.readonlink:hover
{
  color: var(--cta-hover);
}

.sectiondivider
{
    width: 70px;
    margin-top: 18px;
    margin-bottom: 20px;
    height: 2px;
    border-top: solid 3px var(--black);
    margin-left: auto;
    margin-right: auto;
}


    /* Sticky Navbar */
    .sticky {
      position: fixed !important;
      top: 0 !important;
      left: auto !important;
      width: 100% !important;
      z-index: 9999 !important;
      background-color: rgba(255,255,255,1) !important;
  }



/* ##################################### */
/* ##################################### */
/* ##########  Infinite horizontal Banner ############ */
/* ##################################### */
/* ##################################### */

.scroller 
{
  width: 100%;

}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);


}

.scroller[data-animated="true"] .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
          animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* general styles */

.scrollercontainer {
  display: grid;

  place-content: center;
  font-size: 1.125rem;
}

.tag-listborder {
border-top: 3px solid var(--background-color);
border-bottom: 3px solid var(--background-color);
}

#scrollerbanner
{
  padding-top: 100px;
  padding-bottom: 100px;
}


.tag-list {

  margin-left: 0px;
  margin-right: 0px;
  padding-inline: 0;
  list-style: none;
}

#scrollerbanner .tag-list li {
  padding: 1rem;
}

.tag-list h2{
  color: var(--background-color);
}


/* ##################################### */
/* ##################################### */
/* ##########  Produkte ############ */
/* ##################################### */
/* ##################################### */

.section-plans {
  padding: 0rem 0 4rem 0;
}

.card__side--front {
  background-color: #fff;
}

.card__side--front-1 {
  background-image: url(../img/concrete-.jpg);
  background-size: cover;
}

.card__side--front-2 {
  background-image: url(../img/concrete-.jpg);
  background-size: cover;
}

.card__side--front-3 {
  background-image: url(../img/concrete-.jpg);
  background-size: cover;
}



.card__side--back-1 {
  background: linear-gradient(-45deg, var(--cta-hover), var(--background-color));
}

.card__side--back-2 {
  background: linear-gradient(-45deg, var(--cta-hover), var(--background-color));
}

.card__side--back-3 {
  background: linear-gradient(-45deg, var(--cta-hover), var(--background-color));
}

.card__side--back-anw {
  background: linear-gradient(-45deg, var(--cta), var(--background-color));
}

.card__side--back-anw2 {
  background: linear-gradient(-45deg, var(--cta), var(--background-color));
}


.greenback
{
  background: linear-gradient(-45deg, var(--greenbackground), var(--background-color));
}


.card__details {
  padding: 10px;
}

.card__details ul {
  list-style: none;
  width: 90%;
  margin: 0 auto;
}

.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .card-anw {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 150px;
    margin-top: 10px;
  }

  .card__side-anw {
    height: 150px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card-anw2 {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 300px;
    margin-top: 10px;
  }

  .card__side-anw2 {
    height: 300px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
}

@media screen and (min-width: 1600px) {
  .card-anw {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 180px;
    margin-top: 10px;
  }

  .card__side-anw {
    height: 180px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden !important;
            backface-visibility: hidden !important;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card-anw2 {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 300px;
    margin-top: 10px;
  }

  .card__side-anw2 {
    height: 300px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
}

@media screen and (min-width: 1400px) {
  .rowproduct, #services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 50px;
  }

  .rowproduct3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
  }

  .card__details ul li {
    text-align: center;
    font-size: 1.5rem;
    padding: 1rem;
    color: #fff;
  }

  .card {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 650px;
  }
  
  .card__side {
    height: 650px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }


  .card2 {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 350px;
    margin-top: 50px;
  }

  .card__side2 {
    height: 350px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }


  
  .card__side--back, .card__side--back-anw, .card__side--back-anw2  {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }


  
  .card:hover .card__side--front-1,
  .card:hover .card__side--front-2,
  .card:hover .card__side--front-3,
  .card-anw:hover .card__side--front-anw,
  .card-anw2:hover .card__side--front-anw2,
  .card2:hover .card__side--front-1,
  .card2:hover .card__side--front-2,
  .card2:hover .card__side--front-3  {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  
  .card:hover .card__side--back,
  .card2:hover .card__side--back,
  .card-anw:hover .card__side--back-anw,
  .card-anw2:hover .card__side--back-anw2  {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  
}

@media screen and (min-width: 970px) and (max-width: 1400px) {
  .rowproduct, #services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }
  .rowproduct3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
  }

  .card__details ul li {
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
    color: #fff;
  }

  .card {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 595px;
  }
  
  .card__side {
    height: 595px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }

  .card2 {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 300px;
    margin-top: 20px;
  }

  .card__side2 {
    height: 300px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }

  .card-anw {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 120px;
    margin-top: 10px;
  }

  .card__side-anw {
    height: 120px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }

  .card-anw2 {
    -webkit-perspective: 150rem;
            perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 200px;
    margin-top: 10px;
  }

  .card__side-anw2 {
    height: 200px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center !important;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }

  
  .card__side--back {
    -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg);
      display: flex !important;;
      align-items: center !important;;
      height: 100% !important;
  }

  .card__side--back-anw {
    -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg);
      display: flex !important;;
      align-items: center !important;;
      height: 100% !important;
  }
  .card__side--back-anw2 {
    -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg);
      display: flex !important;;
      align-items: center !important;;
      height: 100% !important;
  }
  
  .card:hover .card__side--front-1,
  .card:hover .card__side--front-2,
  .card:hover .card__side--front-3,
  .card-anw:hover .card__side--front-anw,
  .card-anw2:hover .card__side--front-anw2,
  .card2:hover .card__side--front-1,
  .card2:hover .card__side--front-2,
  .card2:hover .card__side--front-3 {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  
  .card:hover .card__side--back,
  .card2:hover .card__side--back,
  .card-anw:hover .card__side--back-anw,
  .card-anw2:hover .card__side--back-anw2 {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}

@media screen and (max-width: 970px) {
  .rowproduct, #services {
    display: block;
  }

  .rowproduct3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }

  .col-1-of-3
  {
    margin-bottom: 50px;
  }

  .card__details ul li {
    text-align: center;
    font-size: 1.5rem;
    padding: 1rem;
    color: #fff;
  }
  .card {
    height: auto;
  }
  
  .card2 {
    height: auto;
  }

  .card__side {
    height: auto;
    width: 100%;

  }

  .card__side-anw {
    height: auto;
    width: 100%;
    position: relative;
  }
  .card__side-anw2 {
    height: auto;
    width: 100%;
    position: relative;
  }

  .anwdetails
  {
    position: absolute;
    bottom: 10px;
    width: 100%;
  }

  .anwtextmob
  {
    width: 100%;
    background-color: rgba(255,255,255, 0.5);
    padding: 10px;
    border-radius: 10px;
    font-size: 0.7rem !important;

  }



  .card__side2 {
    height: auto;
    width: 100%;

  }
  
  .card__side--back {
    display: flex;
    align-items: center;
  }



}


@media only screen and (min-width: 970px)
{
  .anwdetails
  {
    display: none;
  }
}

#services 
{
  padding-top: 80px;
}

/* ##################################### */
/* ##################################### */
/* ##########  Anwendungen ############ */
/* ##################################### */
/* ##################################### */

@media screen and (min-width: 1400px) {
  .gallery {
    --s: 200px; /* control the size */
    --g: 15px;  /* control the gap */
    display: grid;
    margin: calc(var(--s) + var(--g));
    
  }

  #anwendungen h2
  {
    font-size: 2.5rem;
    color: var(--cta-hover);
  }

}

@media screen and (max-width: 1400px) {
  .gallery {
    --s: 150px; /* control the size */
    --g: 10px;  /* control the gap */
    display: grid;
    margin: calc(var(--s) + var(--g));
    justify-content: center;
  }

  #anwendungen h2
  {
    font-size: 2rem;
    color: var(--cta-hover);
  }
}

.gallery > img {
  grid-area: 1/1;
  width: var(--s);
  aspect-ratio: 1.15;
  object-fit: cover;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%,75% 100%,25% 100%,0 50%);
  transform: translate(var(--_x,0),var(--_y,0)) scale(var(--_t,1));
  cursor: pointer;
  filter: grayscale(10%);
  transition: .2s linear;
}
.gallery > img:hover {
  filter: grayscale(0);
  z-index: 1;
  --_t: 1.2;
}

.gallery > img:nth-child(1) {--_y: calc(-100% - var(--g))}
.gallery > img:nth-child(7) {--_y: calc( 100% + var(--g))}
.gallery > img:nth-child(3),
.gallery > img:nth-child(5) {--_x: calc(-75% - .87*var(--g))}
.gallery > img:nth-child(4),
.gallery > img:nth-child(6) {--_x: calc( 75% + .87*var(--g))}
.gallery > img:nth-child(3),
.gallery > img:nth-child(4) {--_y: calc(-50% - .5*var(--g))}
.gallery > img:nth-child(5), 
.gallery > img:nth-child(6) {--_y: calc( 50% + .5*var(--g))}

#anwendungen
{
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
}

@media screen and (max-width: 970px)
{
  #anwendungengrid
  {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
  }
  #anwendungen
  {
    min-height: 600px;
  }
  #anwendungencontent
  {
    text-align: center;
    padding: 10px;
  }
}

@media screen and (min-width: 970px) and (max-width: 1400px) {
  #anwendungengrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
  #anwendungen
  {
    min-height: 600px;
  }
  #anwendungencontent
  {
    text-align: left;
  }
}

@media screen and (min-width: 1400px)
{
  #anwendungen
  {
    min-height: 800px;
  }
  #anwendungengrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  #anwendungencontent
  {
    text-align: left;
  }
}

.card__side--back-anw 
{
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__side--back-anw2
{
  display: flex;
  justify-content: center;
  align-items: center;
}

.anw-back-details p
{
  color: white !important;
  text-align: center !important;
}

@media screen and (max-width: 1200px)
{
  .anw-back-details p
  {
    font-size: 0.8rem !important;
  }
}
/* ##################################### */
/* ##################################### */
/* ##########  Company ############ */
/* ##################################### */
/* ##################################### */


#company
{
  background-color: #fff;
}

#company img
{
  border-radius: 5px;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1400px) {
  #company h2
  {
    font-size: 2.5rem;
    color: var(--cta-hover);
  }
  .companylg
  {
    display: block;
  }
  .companysm
  {
    display: none;
  }
}

@media screen and (min-width: 970px) and (max-width: 1400px) {
  .companylg
  {
    display: none;
  }
  .companysm
  {
    display: block;
  }
}

@media screen and (max-width: 970px) {
  .companylg
  {
    display: none;
  }
  .companysm
  {
    display: none;
  }
}

@media screen and (min-width: 1400px) {
  #company h2
  {
    font-size: 2.5rem;
    color: var(--cta-hover);
  }
  .companylg
  {
    display: block;
  }
  .companysm
  {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  #company h2
  {
    font-size: 2rem;
    color: var(--cta-hover);
  }
}

@media screen and (max-width: 970px)
{
  #companygrid
  {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
  }
  #companycontent
  {
    text-align: center;
    padding: 10px;
  }
}

@media screen and (min-width: 970px) and (max-width: 1100px) {
  #companygrid
  {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
  }
  #companycontent
  {
    text-align: left;
  }
}

@media screen and (min-width: 1100px) and (max-width: 1740px) {
  #companygrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
  #companycontent
  {
    text-align: left;
  }
}




@media screen and (min-width: 1740px)
{
  #companygrid
  {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
  }
  #companycontent
  {
    text-align: left;
  }
}



/* ##################################### */
/* ##################################### */
/* ##########  stats ############ */
/* ##################################### */
/* ##################################### */

#stats
{
  background-color: #fff;
  position: relative;
  overflow: hidden !important;
  background-image: url('../img/company1.jpg');
  background-size: cover;
}

#statsouter
{

  display: flex;
  align-items: center;
}



@media screen and (min-width: 970px) {
  #statscontent
  {
    position: relative;
    z-index: 99;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
  }
}

@media screen and (max-width: 970px) {
  #statscontent
  {
    position: relative;
    z-index: 99;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
  }
  #stats
  {
    min-height: 200px;
    background-position: center right;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #stats h2
  {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
  }
  .counter {
    animation: count 2s ease-in-out forwards;
    display: inline-block; 
    width: 50px; 
    height: 20px; 
  }
}

@media screen and (min-width: 970px) and (max-width: 1400px){
  #stats
  {
    min-height: 400px;
    background-position: center right;
    padding-top: 150px;
    padding-bottom: 200px;
  }
  #stats h2
  {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
  }
  .counter {
    animation: count 2s ease-in-out forwards;
    display: inline-block; 
    width: 70px; 
    height: 20px; 
  }
}

@media screen and (min-width: 1400px) {
  #stats h2
  {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
  }
  #stats
  {
    min-height: 500px;
    background-position: center right;
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .counter {
    animation: count 2s ease-in-out forwards;
    display: inline-block; 
    width: 80px; 
    height: 20px; 
  }
}



@keyframes count {
  from {
    content: "0";
  }
  to {
    content: "700";
  }
}




/* ##################################### */
/* ##################################### */
/* ##########  CTA Section ############ */
/* ##################################### */
/* ##################################### */

#ctasection
{
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

#ctasection h2
{
  color: #444;
  font-weight: 400;
}

.ctaouter
{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


@media screen and (max-width: 970px) {
  #ctasection h2
  {
    font-size: 1.2rem !important;
  }
  .ctaouter
  {
    width: 100%;
    padding: 10px;
  }
}

@media screen and (min-width: 970px) and (max-width: 1400px){
  #ctasection h2
  {
    font-size: 2rem;
  }
  .ctaouter
  {
    max-width: 800px;
    width: 100%;
  }
}

@media screen and (min-width: 1400px) {
  #ctasection h2
  {
    font-size: 2.2rem;
  }
  .ctaouter
  {
    max-width: 800px;
    width: 100%;
  }
}



/* ##################################### */
/* ##################################### */
/* ##########  recent News ############ */
/* ##################################### */
/* ##################################### */

.newscard
{
  border-radius: 10px;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.newscard h4
{
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.newscard p
{
  font-weight: 300;
  font-size: 1rem;
}

.newscardcontentbottom
{
  padding: 20px;
  border-top: solid 1px #ccc;

  background-color: #fff;
}

.newscardbg
{
  
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
  background-color: #fff;
}

.newslabel
{
  background-color: red;
  color: #fff;
  padding: 5px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  top: -36px;
  right: 0px;
}


.newcardbgouter
{

  display: flex;
  align-items: center;

}

.newscardbg:hover
{
  transform: scale(1.05);
}
.newscardbgcontainer
{
  position: relative;
  overflow: hidden !important;
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}
.newscardbg
{
  position: absolute;
  top: 0;
  left: auto;
  width: 100%;
  overflow: hidden !important;
}




@media screen and (max-width: 970px) {
  #newsrecent
  {
  display: block;
  }

  .newscard
  {
    margin-top: 25px;
    margin-bottom: 25px;
  }


  .newscardbg
  {

    background-position: center right;
  }
  .newscardbg h4
  {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
  }
}


.newscard
{
  max-height: fit-content;
}

@media screen and (max-width: 601px) {
  .newscardbg, .newscardbgcontainer
  {
    min-height: 200px;
  }
}

@media screen and (min-width: 601px) and (max-width: 970px){
  .newscardbg, .newscardbgcontainer
  {
    min-height: 250px;
  }
}

@media screen and (min-width: 970px) and (max-width: 1100px){
  .newscardbg, .newscardbgcontainer
  {
    min-height: 140px;
  }
}

@media screen and (min-width: 1100px) and (max-width: 1400px){
  .newscardbg, .newscardbgcontainer
  {
    min-height: 190px;
  }
}

@media screen and (min-width: 1400px) {
  .newscardbg, .newscardbgcontainer
  {
    min-height: 220px;
  }
}


@media screen and (min-width: 970px) and (max-width: 1400px){
  
    #newsrecent
    {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    }
  .newscardbg
  {
    background-position: center right;
  }

  .newscardbg h4
  {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
  }
}



@media screen and (min-width: 1400px) {
  #newsrecent
  {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  gap: 50px;
  }
  .newscardbg h4
  {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
  }
  .newscardbg
  {

    background-position: center center;

  }

  
}





/* ##################################### */
/* ##################################### */
/* ##########  cta ############ */
/* ##################################### */
/* ##################################### */



#ctabg
{
  background-color: #fff;

  background-size: cover;
  background-position: center center;
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
  border-radius: 10px;
}



#ctabgsouter
{

  display: flex;
  align-items: center;
}




@media screen and (min-width: 970px) {
  #ctabgcontent
  {
    position: relative;
    z-index: 99;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
}

@media screen and (max-width: 970px) {
  #ctabgcontent
  {
    position: relative;
    z-index: 99;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
  }
  #ctabgcontainer
  {
    min-height: 200px;

  }
  #ctabg
  {
    min-height: 200px;
    background-position: center right;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #ctabg h2
  {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
  }
}

@media screen and (min-width: 970px) and (max-width: 1400px){
  #ctabg
  {
    min-height: 400px;
    background-position: center right;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #ctabgcontainer
  {
    min-height: 500px;

  }
  #ctabg h2
  {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
  }
}

@media screen and (min-width: 1400px) {
  #ctabg h2
  {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
  }
  #ctabg
  {
    min-height: 500px;
    background-position: center right;
    padding-top: 200px;
    padding-bottom: 250px;

  }
  #ctabgcontainer
  {
    min-height: 600px;

  }
  #ctabg:hover
  {
    transform: scale(1.05);
  }
  #ctabgcontainer
{
  position: relative;
  overflow: hidden !important;
  width: 100%;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
#ctabg
{
  position: absolute;
  top: 0;
  left: auto;
  width: 100%;
  overflow: hidden !important;
}

  
}




/* ##################################### */
/* ##################################### */
/* ##########  Footer ############ */
/* ##################################### */
/* ##################################### */

footer 
{
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 1400px)
{
    #footergrid
    {
        display: grid;
        grid-template-columns: 4fr 1fr 7fr;
    }
    #footernavgrid
    {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }


}

@media only screen and (min-width: 820px) and (max-width: 1400px)
{
  #footergrid
  {
      display: grid;
      grid-template-columns: 5fr 1fr 6fr;
  }
    .footergriditem
    {
        margin-top: 50px;
    }
    #footernavgrid
    {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .footermargin
    {
      margin-top: 20px;
    }
}

@media only screen and (max-width: 820px)
{
    #footergrid
    {
        display: block;
    }
    .footergriditem
    {
        margin-top: 50px;
    }
    #footernavgrid
    {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .footermargin
    {
      margin-top: 20px;
    }
}

.footerlink
{
    color: #444;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease-in-out;
}

.footerlink:hover
{
  color: var(--cta-hover);
}




.footerflexitem
{
    margin-bottom: 5px;
}



.footerflexlink2
{
    display: flex;
    align-items: center;
}




@media only screen and (min-width: 820px)
{
    .kontaktfooterflex
    {
        display: flex;
    }
    #footermail
    {
        margin-left: 30px;
    }
}
@media only screen and (max-width: 820px)
{
    .kontaktfooterflex
    {
        display: block;
    }
    #footermail
    {
        margin-left: 0px;
    }
}


.sociallinkfooter
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60px;
    height: 60px;
    background-color: var(--cta-hover);
    border-radius: 30px;
    color: fff;
    margin-left: 0px;
    transition: all 0.2s ease-in-out;
}

.sociallinkfooter:hover
{
    cursor: pointer;
    background-color: var(--text);
}


/* ##################################### */
/* ##################################### */
/* ##########  Subpageheadinge ############ */
/* ##################################### */
/* ##################################### */

.subpageheading
{
  color: var(--cta-hover);
  font-weight: 500;
}
.pagesubpageheading
{
  color: var(--text);
  font-weight: 400;
}
.pagesubpagetext
{
  color: var(--text);
}

@media only screen and (max-width: 970px)
{
  .subpageheading
  {
      font-size: 2rem;
  }
  .pagesubpageheading
  {
    font-size: 1.5rem;
  }
  .pagesubpagetext
  {
    font-size: 1rem;
  }

}

@media only screen and (min-width: 970px)
{
  .subpageheading 
  {
      font-size: 3rem;
  }
  .pagesubpageheading
  {
    font-size: 2rem;
  }
  .pagesubpagetext
  {
    font-size: 1rem;
  }
}


/* ##################################### */
/* ##################################### */
/* ##########  Products ############ */
/* ##################################### */
/* ##################################### */

#productgrid
{
  margin-top: 50px;
}
@media only screen and (min-width: 970px)
{
  .imgtextpos 
  {
    position: relative;
    bottom: 50px;
    font-size: 1.25rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
  }
}

#productgrid img, #productgrid video
{
  width: 100%;
}

.productfreaturegrid img
{
  width: 30px;
}
.refdiv
{
  text-align: center;
  width: 100%;
  height: 100%;
  border:1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 970px)
{
  #productgrid
  {
    display: block;

  }
  .productfreaturegrid, #produktanwendungbenefits
  {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .productsrefs
  {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    justify-content: center;
    padding-right: 10px;
  }

}

@media only screen and (min-width: 970px)
{
  #productgrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
  .productfreaturegrid, #produktanwendungbenefits
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }


}

@media only screen and (min-width: 970px) and (max-width: 1200px)
{
  .productsrefs
  {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center !important;
    align-items: center;
    justify-content: center !important;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 1200px)
{
  .productsrefs
  {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    text-align: center !important;
    align-items: center;
    justify-content: center !important;
    padding-right: 30px;
  }
}


.productsrefs img
{
  width: 100%;
  padding: 10px;
  margin-left: auto; 
  margin-right: auto;
  text-align: center;
}


.software img{
  width: 100%;
}
.software img:hover{
  cursor: pointer;
}

.moulds img{
  width: 100%;

}
/* Mould Bilder auf die gleiche höhe bringen beim Desktop */
@media only screen and (min-width: 970px)
{
  .moulds {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    
  }
}



.featurebar
{
  background-image: url(../img/concrete-.jpg);
  background-size: cover;
  background-position: center center;
 
    border: 3px solid #f3f3f3;
    color: var(--white) !important;
    border-radius: 5px !important;
    font-weight: 400 ;
    transition: background-color 0.2s ease-in-out !important;
    transition: border-color 0.2s ease-in-out !important;
    width: auto !important;
    padding: 10px;
    cursor: pointer;
}


.tab-wrap {
  transition: 0.3s box-shadow ease;
  border-radius: 6px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: #fff;
  margin: 40px 0;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}



.tab {
  display: none;
}


.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);

}
.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);

}
.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);

}
.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);

}
.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
}
.tab:checked:nth-of-type(6) ~ .tab__content:nth-of-type(6) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
}

.tab:checked:nth-of-type(7) ~ .tab__content:nth-of-type(7) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
}

.tab:checked:nth-of-type(8) ~ .tab__content:nth-of-type(8) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
}

.tab:first-of-type:not(:last-of-type) + label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tab:not(:first-of-type):not(:last-of-type) + label {
  border-radius: 0;
}
.tab:last-of-type:not(:first-of-type) + label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tab:checked + label:hover {
  box-shadow: 0 -1px 0 #fff inset;
  background-color: #fff;
}
.tab + label:not(:first-of-type):not(:last-of-type)
{
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.tab:checked + label {
  background-color: #fff;
  box-shadow: 0 -1px 0 #fff inset;
  cursor: default;
  border: none;
}

.tab + label {
  box-shadow: 0 -1px 0 #eee inset;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #333;
  flex-grow: 3;
  text-align: center;
  background-color: #ddd;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  height: 50px;
  box-sizing: border-box;
  padding: 15px;
}
.tab + label:hover {
  background-color: #f9f9f9;
  box-shadow: 0 1px 0 #f4f4f4 inset;
}
.tab__content {
  padding: 10px 25px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  transform: translateY(-3px);
  border-radius: 6px;
}

.tab__content h3
{
  margin-top: 10px;
  margin-bottom: 10px;
}
.tab__content
{
 padding-bottom: 40px;
}


#productgrid ul, #productfreaturegrid ul, #produktanwendungbenefits ul, .tab__content ul
{
  padding-left: 30px !important;
}


/* ##################################### */
/* ##################################### */
/* ##########  Testservice ############ */
/* ##################################### */
/* ##################################### */

#testservicegrid img 
{
  width: 100%;
}

.verticalflexing
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


@media only screen and (max-width: 970px)
{

  .verticalflexleft
  {
    width: 100%;
    margin-bottom: 10px;
  }
  .verticalflexing
  {
    width: 100%;
    min-height: 300px;
  }
  .verticalbg
  {
    background-size: cover;
    width: 100%;
    height: 50%;
    min-height: 300px;
  }
  #testservicegrid2
  {
    display: block;
  }
}

@media only screen and (min-width: 970px){
  #testservicegrid2
  {
    display: flex;
    align-content: flex-start;
    align-items: stretch;
    gap: 10px;
  }
  .verticalflexing
  {
    width: 30%;
  }
  .verticalflexleft
  {
    width: 70%;
  
  }
    .verticalbg
  {
    background-size: cover;
    width: 100%;
    height: 50%;
  }
}










/* ##################################### */
/* ##################################### */
/* ##########  Applications, grid is also used in other sites! ############ */
/* ##################################### */
/* ##################################### */

@media only screen and (min-width: 970px) {
  .applicationgrid {
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }

  .applicationgrid2 {
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
  }
}

@media only screen and (max-width: 970px) {
  .applicationgrid,
  .applicationgrid2 {
    display: grid;
    grid-template-columns: 1fr;
  }


  .applicationgrid2 > *:nth-child(1) {
    order: 2 !important;
  }
  
  .applicationgrid2 > *:nth-child(2) {
    order: 1 !important;
  }
}

.applicationcard {
  padding: 20px;
  display: flex;
  align-items: center;
}

/* ##################################### */
/* ##################################### */
/* ##########  About Us ############ */
/* ##################################### */
/* ##################################### */


*,
*::before,
*::after {
  box-sizing: border-box;
}


.timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--cta-hover);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.container {
  padding: 15px 30px;
  position: relative;
  background: inherit;
  width: 50%;
}

.container.left {
  left: 0;
}

.container.right {
  left: 50%;
}

.container::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border: 2px solid var(--cta-hover);
  border-radius: 16px;
  z-index: 1;
}

.container.right::after {
  left: -8px;
}

.container::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  background: var(--cta-hover);
  z-index: -1;
}

.container.right::before {
  left: 8px;
}

.container .date {
  position: absolute;
  display: inline-block;
  top: calc(50% - 8px);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--cta-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.container.left .date {
  right: -75px;
}

.container.right .date {
  left: -75px;
}

.container .icon {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  top: calc(50% - 20px);
  background-color: #f3f3f3;
  border: 2px solid #f3f3f3;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: rgb(205, 209, 215);
  z-index: 1;
}

.container.left .icon {
  right: 56px;
}

.container.right .icon {
  left: 56px;
}

.container .content {
  padding: 30px 90px 30px 30px;
  background-color: #f3f3f3;
  position: relative;
  border-radius: 0 500px 500px 0;
}

.container.right .content {
  padding: 30px 30px 30px 90px;
  border-radius: 500px 0 0 500px;
}

.container .content h2 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cta-hover);
}

.container .content p {
  margin: 0;
  font-size: 1rem;
  line-height: 22px;
  color: var(--text);
}

@media (max-width: 767.98px) {
  .timeline::after {
    left: 90px;
  }

  .container {
    width: 100%;
    padding-left: 120px;
    padding-right: 30px;
  }

  .container.right {
    left: 0%;
  }

  .container.left::after, 
  .container.right::after {
    left: 82px;
  }

  .container.left::before,
  .container.right::before {
    left: 100px;
    border-color: transparent #006E51 transparent transparent;
  }

  .container.left .date,
  .container.right .date {
    right: auto;
    left: 15px;
  }

  .container.left .icon,
  .container.right .icon {
    right: auto;
    left: 146px;
  }

  .container.left .content,
  .container.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
}

/* ##################################### */
/* ##################################### */
/* ##########  Downloads & Publications & videos ############ */
/* ##################################### */
/* ##################################### */

.downloadlink
{
  font-size: 1.5rem !important;
}


.publicationlink
{
  font-size: 1.25rem !important;
}

@media only screen and (min-width: 1200px)
{
  #videogrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

  }
}
@media only screen and (max-width: 1200px)
{
  #videogrid
  {
    display: grid;
    grid-template-columns: 1fr;

  }
}

/* ##################################### */
/* ##################################### */
/* ##########  Kontakt ############ */
/* ##################################### */
/* ##################################### */

#kontakt
{
    background-color: white;
}

.checkboxgrid
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.checkboxflex
{
  display: flex;
  align-items: center;

}

.checkboxflex input
{
 padding-right: 10px;

}

input, textarea 
{
    border: none;
    outline: none;
    border-bottom: solid 1px var(--text);
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 20px;;
}



@media only screen and (max-width: 800px)
{
  .check-group {
    display: block;
  }
  .formflexgrid
  {
      display: block;
  }
}

@media only screen and (min-width: 800px) and (max-width: 1100px)
{
  .check-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .formflexgrid
  {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 20px;
  }
}

@media only screen and (min-width: 1100px)
{
  .check-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .formflexgrid
  {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 50px;
  }
}


.check-group > * + * {
  margin-top: 0.75rem;
}


.check-group__result {
  font-weight: bold;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.check-group__result:after {
  content: counter(checked) " / " counter(total);
  padding-left: 1ch;
}

.checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.checkbox__input {
  position: absolute;
  width: 1.375em;
  height: 1.375em;
  opacity: 0;
  cursor: pointer;
}
.checkbox__input:checked + .checkbox__icon .tick {
  stroke-dashoffset: 0;
}
.checkbox__icon {
  width: 1.375em;
  height: 1.375em;
  flex-shrink: 0;
  overflow: visible;
}
.checkbox__icon .tick {
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: stroke-dashoffset 0.2s ease-out;
}
.checkbox__label {
  margin-left: 0.5em;
  color: #555;
  font-size: 14px;
}








@media only screen and (max-width: 800px)
{
    #kontakdataset
    {
        display: block;
    }
    .kontflex
    {
      margin-bottom: 30px;
    }
    #kontaktoldenburg
  {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 20px;
  }

  #olbg
  {
    background-image: url(../img/ol1.jpg);
    background-size: cover;
  }
  #ol2
  {
    margin-bottom: 20px;
  }

}
@media only screen and (min-width: 800px)
{
    #kontakdataset
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 50px;
    }
    #kontaktoldenburg
  {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-column-gap: 50px;
  }

  #olbg
  {
    background-image: url(../img/ol1.jpg);
    background-size: cover;
  }
  #ol2
  {
    margin-bottom: 50px;
  }

    
}

.kontaktlink
{
  display: flex;
  align-items: center;
  font-size: 1.5rem !important;
}

.kontaktlink img
{
  padding-right: 10px;
}

.kontflex
{
  text-align: center !important;
}

#kontaktoldenburg img
{
  width: 100%;
}




/* ############## Legal ############### */


#legal h1 
{
    font-size: 3rem !important;
    margin-top: 20px;
}
#legal h2 
{
    font-size: 2.5rem !important;
    margin-top: 20px;
}
#legal h3
{
    font-size: 2.25rem !important;
    margin-top: 20px;
}
#legal h4
{
    font-size: 2rem !important;
    margin-top: 20px;
}
#legal h5
{
    font-size: 1.75rem !important;
    margin-top: 20px;
}
#legal h6
{
    font-size: 1.5rem !important;
    margin-top: 20px;
}



/* ############################################### */
/* ############################################### */
/* ##############  news single post ############### */
/* ############################################### */
/* ############################################### */




@media only screen and (max-width: 800px)
{
    #newsgrid
    {
        display: block;
    }
    .singlepostbg
    {
        background-size: cover;
        background-position: center center;
        height: 30vh;
    }
}


@media only screen and (min-width: 800px)
{
    .singlepostbg
    {
        background-size: cover;
        background-position: center center;
        height: 30vh;
    }
}

.postcontent p
{
    color: #58595B;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

#galeriegrid img
{
    width: 100%;
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px)
{
    #galeriegrid
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 800px) and (max-width: 1400px)
{
    #galeriegrid
    {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 1400px)
{
    #galeriegrid
    {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 10px;
    }
}

/* ############ */
/* ############ */
/* swiper js */
/* ############ */
/* ############ */

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ############ */
/* ############ */
/* image modal */
/* ############ */
/* ############ */

.modaltext
{
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border-radius: 3px;
}

.modaltext p
{
  color: #222;
}



.imagemodalcustom {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
  }
  
  /* Style  Modal */
  .imagemodalcustom img {
    margin: auto;
    display: block;
    max-width: 1200px;
    height: auto;
    width: 90%;
  }

    /* Stil image in Modal */
    .meinBild:hover{
        cursor: pointer;
      }
  
  /* close icon im Modal */
  .schliessen, .schliessen2, .schliessen3  {
    color: white;
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 3rem !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: bold;
    background-color: #005894;
    text-align: center;
    margin-left: auto;
    margin-right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* close icon Hover-Effekt */
  .schliessen:hover,
  .schliessen2:hover,
  .schliessen:focus,
  .schliessen2:focus,
  .schliessen3:hover,
  .schliessen3:focus{
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  .imagemodalcontent
  {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }




/* ############ */
/* ############ */
/* video modal */
/* ############ */
/* ############ */

  #clickimg:hover
  {
    cursor: pointer;
  }


#videoModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
  }
  
  /* Style  Modal */
  #videoModal video {
    margin: auto;
    display: block;
    max-width: 1200px;
    height: auto;
    width: 90%;
  }

  


  .videomodalcontent
  {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }






  @media screen and (max-width: 650px)
{
  #intkontaktgrid
  {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    gap: 90px;
  }

}

@media screen and (min-width: 650px) and (max-width: 1100px) {
  #intkontaktgrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

}

@media screen and (min-width: 1100px)
{

  #intkontaktgrid
  {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

}


.selectform select {
  font-family: Arial, sans-serif;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #555;
  border-radius: 0px;
  background-color: #fff;
}