@charset "utf-8";
/* Silberfisch Farben:
war Blau = #0033cc   rgb 	0	51	204
war highlight = #325bd6 rgb 	50	91	214


gold statt blau #cbac36 rgb(203, 172, 54)
komplemantär blau #3655cb  rgb(54,	85,	203)
dunkleres gold #a2892b  rgb(162, 137, 43)

*/
/* self hosted fonts */ 


/* press-start-2p-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Press Start 2P';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/press-start-2p-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* allison-regular - latin --- for Blockquote */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Allison';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/allison-v9-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/allison-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/allison-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/allison-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/allison-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/allison-v9-latin-regular.svg#Allison') format('svg'); /* Legacy iOS */
}

/* fira-sans-regular - latin --- for cards / Text / Memu */
@font-face {
  font-display: swap;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fira-sans-v16-latin-regular.eot'); 
  src: url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), 
       url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), 
       url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), 
       url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg'); 
}

/* fira-sans-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/fira-sans-v16-latin-700.eot'); 
  src: url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'), 
       url('../fonts/fira-sans-v16-latin-700.woff') format('woff'), 
       url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'), 
       url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg'); 
}

/* henny-penny-regular - latin */
/*
@font-face {
  font-display: swap;
  font-family: 'Henny Penny';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/henny-penny-v17-latin-regular.eot'); /* IE9 Compat Modes 
  src: url('../fonts/henny-penny-v17-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/henny-penny-v17-latin-regular.woff2') format('woff2'), 
       url('../fonts/henny-penny-v17-latin-regular.woff') format('woff'), 
       url('../fonts/henny-penny-v17-latin-regular.ttf') format('truetype'), 
       url('../fonts/henny-penny-v17-latin-regular.svg#HennyPenny') format('svg'); 
}
*/

/* meddon-regular - latin */
/*
@font-face {
  font-display: swap; 
  font-family: 'Meddon';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/meddon-v20-latin-regular.eot'); 
  src: url('../fonts/meddon-v20-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/meddon-v20-latin-regular.woff2') format('woff2'), 
       url('../fonts/meddon-v20-latin-regular.woff') format('woff'),
       url('../fonts/meddon-v20-latin-regular.ttf') format('truetype'), 
       url('../fonts/meddon-v20-latin-regular.svg#Meddon') format('svg'); 
}
*/






/* CSS variables to adjust colours centrally */ 
:root {
  --coloured:  #ff00ff; /* primary company colour war #cbac36; */ 
  --secondary: #3655cb; /* secondary company colour */
/*** Shades of Primary ***/
/**  --color-2: #a2892b; /* 162,	137,	43 gold */   
  --color-2: #9500ff; 
  --color-3: #B266FF; /* rgb(178,102,255) */
  --color-4: #CC99FF; /* rgb(204,153,255) */
  --color-5: #E5AEFF; /* rgb(229,174,255) */
/*** general colours ***/  
  --red:       #ff0000; /* general red -> uunused */ 
  --green:     #00ff00; /* general green -> unused */ 
  --blue:      #0000ff; /* general blue -> unused */
  --dark:      #565656; /* dark gray */
  --gray:      #e8e8e8; /* light gray */
  --white:     #ffffff;
  --black:     #000000;
  }
/* sample:
 background-color: var(--coloured);
*/


/** scrollbars styling, NICHT in w3c, aber bis auf IE und FF implementiert, auch mobil */
/** hierdurch werden die scrollbars versteckt, die sonst beiem seitenscroller hinter dem top menu **/
/** oder dem newes bereich über den News liegen **/
::-webkit-scrollbar {
    width: 2px; /* 12 */
    display:none;
}
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(203, 172, 54,0.5); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(203, 172, 54,0.4); 
}
/** ende scrollbars **/

body {
height:98vh;
background:#fff;  /* 000 */
font-family: "Fira Sans", Arial, Helvetica, sans-serif;
/*** lato just headline menu nav etc, not text, gets rendered unreadable ***/
/* font-family: 'Lato'; */
}

.nav-item, .nav-link, .footer-custom,
h1, h2, h3, h4, h5, h6 {
font-family: "Fira Sans", Arial, Helvetica, sans-serif;
color: var(--color-2);
}


.bg-white{
background:#fff;
}

.bg-glitter {
background-color: unset;
/* background-image: url(../images/balu2.jpg); */
background-image: url(../images/background_fs.png);
background-size:cover;
}

.wrapper {
/* padding-bottom:60px; */
/* nach dem Inhalt Platz für den Bereich über dem Footer lassen */
}

/*
#outer .full {
  width:66vw;
  height:100vh;
  display:inline-block;
  position:relative;
}
*/

#outer .full > div {
/*definiert in full und card */
/*  width:85%;
  height:85%px; */
/*  font-size:12px
  color:#FFF;
  position:absolute;
  top:50%;
  left:50%;
  margin:-50px 0 0 -50px;
  line-height:.7;
  font-weight:bold; */
}
/*
#outer {
  overflow-y:scroll;
  overflow-x:hidden;
  transform: rotate(270deg) translateX(-100%);
  transform-origin: top left;
  background-color:#000;
  position:absolute;
  width:100vh;
  height:100vw;
}
#inner {
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
  white-space:nowrap;
}

.willkommen {
    background-image: url(../img/ersteSeiteani.gif);
}

.design {
    background-image: url(../img/zweiteseite.png);
}

.webdesign {
    background-image: url(../img/dritteseite.png);
}

.graphic {
    background-image: url(../img/dots.png);
}

.illustration {
    background-image: url(../img/vierteseite.gif);
}

.news {
    background-image: url(../img/fuenfteseite.png);
}

.sponsoring {
    background-image: url(../img/sechsteseite.png);
}

.about {
    background-image: url(../img/siebteseite.gif);
}

.seo {
    background-image: url(../img/achteseite.png);
}
*/

.full {
/* position: relative;
  overflow: hidden; */
/*  display: inline-block; */
  top:0;
  background-repeat: no-repeat;
  background-position: top center;
/*  background-attachment: scroll;
  background-size: cover;
  height:98vh;
  width: 50vw; /* 100vw; */
}




html {

}


.row {
    display: -webkit-flex; /* Safari */
    -webkit-flex-wrap: nowrap; /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap; /* nowrap */
}



.footer-custom {
  /* bei Wellen ohne Schiff */
  /* padding-top: 1rem;
  padding-bottom: 0.1rem; */
  /* Wellen mit Schiff */
  padding-top: 1rem;
 /* background-color: rgba(0, 0, 0, 0.7); /* schwarz */
 /* background-color: rgba(203, 172, 54, 0.7);  /* #0033cc = blau */ 
 /* background: url(../img/wellen.png) left top repeat; */
 background-color: rgba(0, 0, 0, 0.99);   
   text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

*, ::after, ::before {
    box-sizing: border-box;
}



/* generell */
.container-fluid {
padding-left:0;
padding-right:0;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
padding-left:0;
padding-right:0;
}

.pt-5, .py-5 {
    padding-top: 1rem!important;
}

.header-logo {
position:absolute;
margin-top:0;
right:0;
/* background: url(../img/ecke.png) 0 0 no-repeat;
background-color:#fff; 
border-left: 1px solid rgba(0,144,63,.825);
border-bottom: 1px solid rgba(0,144,63,.825); 
border-bottom-left-radius: 10%!important; */ /* calc(.25rem - 1px); */
z-index:10000;
}

.rechts {
right:0;
text-align:right;
}

.border-left {
border-left:  1px solid rgba(203, 172, 54,.825);
}

/* Bilder runde Kanten */
.rounded-circle {
    border-radius: 10%!important;
}

/* Sektion Projekte: News und Webesign  */
.portfolio-news{
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right:15px;
  display:flex;
}

.card-news {
/* display:flex; */
width:50vw;  /* 400px; */
flex-wrap:wrap;
white-space:normal; /* wichtig, damit Text umbricht, da inner das Gegeenteil sagt */
}

.card-news P {
width:50vw;

}
.portfolio-item {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right:15px;
}

.card-img-top {
    width: 100%;
/*    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px); */
}
img {
    vertical-align: middle;
    align-items: center;
    -webkit-align-items: center;
    border-style: none;
}
.card-title {
    margin-bottom: .75rem;
    text-align:center;
}

.card H4{
font-size: 12px;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-text:last-child {
    margin-bottom: 0;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border:none;
    align-items: center;
    -webkit-align-items: center;
    background-color: #f0f0f0;  
/*    background-clip: border-box;
    border: 1px solid rgba(0,144,63,.825); 
    border-radius: .25rem; */
white-space:normal; /* Textumbruch iin DIV wiieder aktivieren, da durch .inner außer Kraft */
}
.h-100 {
    height: 100%!important;
}

.row {
    margin-right: 0;
    margin-left: 0;
}
.small, small {
    font-size: 70%;
    font-weight: 400;
}

.article-img{
max-width:100%;
}

/* Sektion Projekte Ende */




/* Sektion Jobs   */

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
    margin-top: 1rem!important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
    margin-top: 1.5rem!important;
}
/* Sektion Jobs Ende */



H2 {
/* background: url(../img/title.png) 0 0 no-repeat; 
padding-left: 10px; */
padding-top: 10px;
color: var(--color-2);
}


a /* a:visited */ {
color: var(--color-2);   /* var(--color-2); */
font-weight: 700;
}

a:hover, a:focus, a:active {
color: var(--coloured);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Press Start 2P';
  font-weight: 800 !important;
  color: var(--color-2);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

p {
padding-left:  15px;
padding-right: 15px;
}







.blockquote {
    margin-bottom: 1rem;
    font-size: 7.25rem;
    font-family: 'Allison';
    color: var(--color-2);
}

.blockquote2 {
    margin-bottom: 1rem;
    font-size: 7.25rem;
    font-family: 'Press Start 2P';
    color: var(--color-2);
}

.blockquote2smaller {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-family: 'Press Start 2P';
    color: var(--color-2);
}

/* .blockquote3 {
    margin-bottom: 1rem;
    font-size: 7.25rem;
    font-family: 'Allison';
    color: var(--color-2);
}

.blockquote4 {
    margin-bottom: 1rem;
    font-size: 7.25rem;
    font-family: 'Fontdiner Swanky';
    color: var(--color-2);
}

.blockquote5 {
    margin-bottom: 1rem;
    font-size: 7.25rem;
    font-family: 'Fira Sans';
    color: var(--color-2);
} 
*/

.pin H1 {
    margin-bottom: 1rem;
    font-size: 3.25rem;
    font-family: 'Press Start 2P';
    color: var(--color-2);
}
/*
.pin H2 {
    margin-bottom: 1rem;
    font-size: 3.25rem;
    font-family: 'Press Start 2P';
    color: var(--color-2);
}

*/

H1 {font-size: 1.75rem;}
H2 {font-size: 1.5rem;}
H3 {font-size: 1.25rem;}
H4 {font-size: 1.00rem;}



@media (max-width: 767px) {
.blockquote, .blockquote2, .blockquote3, .blockquote4, .blockquote2smaller {
font-size: 3.25rem;
}

H1 {font-size: 1rem;}
H2 {font-size: 0.85rem;}
H3 {font-size: 0.8rem;}
H4 {font-size: 0.75rem;}
}





.btn-xl {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.bg-black {
  background-color: #000 !important;
}

.bg-blau {
background-color: #0033cc;
}




.blau P, .blau H1, blau H2, .blau H3, .blau H4, .blau H5, .blau H6,
.blau a, .blau a:visited, .blau a:focus, .blau a:hover, .blau a:active
{
color: #fff;
}


.rounded-pill {
  border-radius: 5rem;
}

/*.navbar {
 background: url(../img/topmenu2.jpg);
 height:220px;
} */


.header {
position:relative;
 height:150px;
 color: #fff;
}

.intro-text {
/* margin-top:70px; */
color:#000;
text-align:left;
}

/* Navigation  */

/* linksbündig */
.ml-auto, .mx-auto {
    margin-left:auto!important; /* --> setzt home links und den rest ab rechts */
}

/* manuell nach links neben home, damit es nicht rechts (auto) unter dem Logo liegt */
.navbar-toggler {
position: absolute;
left: 50px;
top:10px;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url(../img/toggler.png);
}


.navbar-custom {
  padding-top: 1rem;
  padding-bottom: 1rem;
 /* background-color: rgba(0, 0, 0, 0.7); /* schwarz */
 /* background-color: rgba(203, 172, 54, 0.7);  /* #0033cc = blau */ 
 background-color: rgba(0, 0, 0, 0.85);   
}

.navbar-custom .navbar-brand {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 1rem;  /* 0.8rem */
  font-weight: 700;
  letter-spacing: 0.1rem;
}


/* rainbow 2025 */
.navbar-dark .navbar-nav .nav-link {
    color: var(--color-2);
}
/* hexen 2023
.navbar-dark .navbar-nav .nav-link {
    color: rgba(203, 172, 54,1);
}
*/

/* a.blue, .blue, usw. funzt alles  nicht ... aktives Menu wird auch dann nicht blau, wenn man das LI oder das A mit der Klasse anspricht */ 
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
color: var(--white);
}
/* funzt nicht, auf Unterseite zwar schon, aber auf der Index setz er neben Home immer auch den zweiten Menupunkt auf active ...  */
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: var(--white);
}



/*
header.masthead {
  position: relative;
  overflow: hidden;
  padding-top: calc(7rem + 72px);
  padding-bottom: 7rem;
 /* background: linear-gradient(0deg, #ff6a00 0%, #ee0979 100%); */
/*
  background: url(../img/topmenu2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

header.masthead .masthead-content {
  z-index: 1;
  position: relative;
}

header.masthead .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead .masthead-content .masthead-subheading {
  font-size: 2rem;
}

header.masthead .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: linear-gradient(0deg, #ee0979 0%, #ff6a00 100%);
}

header.masthead .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}
*/

@media (max-width: 1200px) {
/*  header.masthead {
    padding-top: calc(10rem + 55px);
    padding-bottom: 10rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 4rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 2rem;
  }  

 .header-logo IMG {
max-width:150px;
} 
*/
}

@media (max-width: 1600px) {
#outer .full {
  width:90vw;
  height:100vh;
}
  
}

@media (min-width: 992px) {
/*  header.masthead {
    padding-top: calc(10rem + 55px);
    padding-bottom: 10rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 6rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 4rem;
  } 
*/  
   
}

.bg-primary {
  background-color: var(--secondary) !important;
}

.btn-primary {
  background-color: var(--color-2);
  border-color: var(--color-2);
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: var(--white) !important;
  border-color: var(--coloured) !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(203, 172, 54, 0.5);
}

.btn-secondary {
  background-color: #ff6a00;
  border-color: #ff6a00;
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: #cc5500 !important;
  border-color: #cc5500 !important;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
}



/* anpassung mobile */
@media (max-width:800px) {
html {
overflow:auto;
}

body {
width:100vw;
height:98vh;
background:#000;
}

#outer .full {
  width:100vw;
  height:100vh;
  display:flex;
  position:relative;
}
#outer .full > div {
/*definiert in full und card */
/*  width:85%;
  height:85%px; */
/*  font-size:12px
  color:#FFF;
  position:absolute;
  top:50%;
  left:50%;
  margin:-50px 0 0 -50px;
  line-height:.7;
  font-weight:bold; */
}
#outer {
  overflow-y:auto;
  overflow-x:auto;
  transform: none;
  transform-origin: none; 
  background-color:#000;
  position:absolute;
  width:auto;
  height:auto;
}
#inner {
  transform: none;
  transform-origin: none; 
  white-space:wrap;
}

.card {
width:60%;
}

}







@media (max-width: 576px) {
.display-4 {
font-size:1.75rem;
}

.portfolio-item {
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right:5px;
  margin-left: auto;
  margin-right: auto;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
width:auto;
}

/* .header-logo IMG {
max-width:120px;
} */

.card {
width:100%; /* 80 */
}


}
/* mediia max 576 */




.grow:hover
{
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
    
}

/* effekte von https://tympanus.net/codrops/2011/11/02/original-hover-effects-with-css3/ */

/* generelles */
.view {
padding: 0 0 0 0; 
/*    width: 500px;
    height: 180px;
    margin: 10px;
    float: left;  */  
    /* border: 10px solid #fff; */
    overflow: hidden;
/*     position: relative; */
    text-align: center;
    /* box-shadow: 1px 1px 2px #e6e6e6; */
    cursor: default;
/*    background: #fff url(../images/bgimg.jpg) no-repeat center center; */
background: #fff; url(img/header-back.png) no-repeat cover;

/* von card */
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width:40%;
    min-width: 0;
    word-wrap: break-word;
    background: none;
    border: none;

margin-top:42vh;
height:19.5vh;
margin-left: auto;
margin-right: auto; 
}

.view .mask, .view .content {
/*    width:40%;
    height:19.5vh; */ 
    width: 100%; /* 500px */
    height: 180px; 
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}
.view img {
    display: block; /* block */
    position: relative;
}
.view h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    margin: 20px 0 0 0;
}
.view p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 12px;
    position: relative;
    color: #fff;
    padding: 10px 20px 20px; 
    text-align: center;

}
.view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000;
}
.view a.info:hover {
    /* box-shadow: 0 0 5px #000; */
}

/* spezielles */
.view-tenth img { 
	transform: scaleY(1);
	transition: all 0.7s ease-in-out;
}
.view-tenth .mask { 
    background-color: rgba(255, 231, 179, 0.95); 
    transition: all 0.5s linear;
    opacity: 0;
}	
.view-tenth h2{
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 20px 40px 0px 40px;
    transform: scale(0);
    color: #333;
    transition: all 0.5s linear;
    opacity: 0;
}
.view-tenth p {
    color: #333;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}
.view-tenth a.info { 
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}

.view-tenth:hover img { 
	transform: scale(10);
    opacity: 0;
}
.view-tenth:hover .mask { 
	opacity: 1;
}																			 
.view-tenth:hover h2,
.view-tenth:hover p,
.view-tenth:hover a.info{ 
    transform: scale(1);
    opacity: 1;
}


.view-fourth img { 
	transition: all 0.4s ease-in-out 0.2s;
    opacity: 1;
}
.view-fourth .mask { 
	background-color: rgba(0,0,0,0.8);
	opacity: 0;
	transform: scale(0) rotate(-180deg);
	transition: all 0.4s ease-in;
    border-radius: 0px;
}
.view-fourth h2{
    opacity: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 20px 40px 0px 40px;
	transition: all 0.5s ease-in-out;
}
.view-fourth p { 
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.view-fourth a.info { 
    opacity: 0;
	transition: all 0.5s ease-in-out;
} 

.view-fourth:hover .mask { 
	opacity: 1; 
	transform: scale(1) rotate(0deg);
	transition-delay: 0.2s;
}								  
.view-fourth:hover img 	  { 
	transform: scale(0); 
    opacity: 0;
	transition-delay: 0s;
}						
.view-fourth:hover h2,
.view-fourth:hover p,
.view-fourth:hover a.info{
    opacity: 1;
    transition-delay: 0.5s;
}


.maske P {
  /*  display:flex; 
    width:auto;*/
    /* width: calc(100% -50px); */
    max-width:500px;
    padding: 10px 10px 10px 10px;
}

/* ENDE view effects */


/* Effekte ssmall image wall für logos */
/* codepen von https://codepen.io/Vandan27/pen/NvNYNz  */
/*.logo-container {
    position: absolute;
    left: 50vw;
    top: 50vh; 
    transform: translate(-50%, -50%);
    width: 1200px;
    height:300px 
    margin-top:20px;
}
*/

.container2 section h1 {
    font-size: 2rem;
    margin: 0;
}

@media (max-width: 767px) {
    .container2 section h1 {
    font-size: 1.25rem!important;
    margin: 0;
}

}




.logo-container2 {   /* in media queres anderes margin-left setzen! */
    position: relative;
    width: 100vw;
    padding-right: 2px;
    padding-bottom: 10px;
    /* margin-right: auto; */
    display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    display: flex;
    align-items: center;
}

.center1 {
  /*      padding: 5px; */
  vertical-align: middle;
  width:99%;
  margin:auto;
  border: 3px solid green;
}
.center2 {
   width:55%;
   margin:auto;
}

.pic-container {
/*    float: left; */
  /*    width: 180px;  neu */
}

.logoparent {
    position: relative;
    width: 180px;   /* 109 */
    height: 109px;
    margin: 0px -2px 4px 0px; /*  0 auto; */
}

.logowrapper {
    width: 180px;  /* 109 */
    height: 109px;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -75%);  /* -50 -50 auf -75, demit es  in den unteren Reihen höher kommt und Text sichtbar bleibt */
    transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
    transition: transform 375ms, width 275ms 100ms, height 375ms;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.logowrapper.open {
    width: 330px;
    height: 330px;
    translate transition: transform 375ms, width 375ms, height 275ms 100ms;
}

.logowrapper div.content {
    position: absolute;
    margin: auto;
    left: -9999px;
    right: -9999px;
    transform-origin: top;
    width: 330px;
    transform: scale(0.52); /* 0.62 */
    height: 330px;
    border-radius: 3px;
    background: #f0f0f0;
    overflow: hidden;
    transition: transform 375ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

.logowrapper.open .content {
    transform: scale(1);
}

.logowrapper .img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

/*
.thumb-1 .img {
    background-image: url(../img/logos/aps.png);
}
.thumb-2 .img {
    background-image: url(../img/logos/augensyke.png);
}
.thumb-3 .img {
    background-image: url(../img/logos/bdettmer.png);
}
.thumb-4 .img {
    background-image: url(../img/logos/buerger.png);
}
.thumb-5 .img {
    background-image: url(../img/logos/derbioladen.png);
}
.thumb-6 .img {
    background-image: url(../img/logos/dietomate.png);
}
.thumb-7 .img {
    background-image: url(../img/logos/finze.png);
}
.thumb-8 .img {
    background-image: url(../img/logos/frauwirtschaft.png);
}
.thumb-9 .img {
    background-image: url(../img/logos/frletepete.png);
}
.thumb-10 .img {
    background-image: url(../img/logos/gartentreume.png);
}
.thumb-11 .img {
    background-image: url(../img/logos/gross2.png);
}
.thumb-12 .img {
    background-image: url(../img/logos/gross.png);
}
.thumb-13 .img {
    background-image: url(../img/logos/haarmonie.png);
}
.thumb-14 .img {
    background-image: url(../img/logos/klima.png);
}
.thumb-15 .img {
    background-image: url(../img/logos/ksk.png);
}
.thumb-16 .img {
    background-image: url(../img/logos/langelossau.png);
}
.thumb-17 .img {
    background-image: url(../img/logos/lebenshilfe.png);
}
.thumb-18 .img {
    background-image: url(../img/logos/litc.png);
}
.thumb-19 .img {
    background-image: url(../img/logos/mitfahrbank.png);
}
.thumb-20 .img {
    background-image: url(../img/logos/nbgsamar.png);
}
.thumb-21 .img {
    background-image: url(../img/logos/nig.png);
}
.thumb-22 .img {
    background-image: url(../img/logos/nordertor.png);
}
.thumb-23 .img {
    background-image: url(../img/logos/pieper.png);
}
.thumb-24 .img {
    background-image: url(../img/logos/pusteblume.png);
}
.thumb-25 .img {
    background-image: url(../img/logos/splus.png);
}
.thumb-26 .img {
    background-image: url(../img/logos/tplate.png);
}
.thumb-27 .img {
    background-image: url(../img/logos/verbund.png);
}
.thumb-28 .img {
    background-image: url(../img/logos/whexe.png);
}
*/

/* Thumbs Sponsoring 
.thumb-s1 .img {
    background-image: url(../img/logos/aps.png);
}
.thumb-s2 .img {
    background-image: url(../img/sponsoring/HafensaengerundPuffmusik.jpg);
}
.thumb-s3 .img {
    background-image: url(../img/sponsoring/Ingress1.jpg);
}
.thumb-s4 .img {
    background-image: url(../img/sponsoring/ruediger.jpg);
}
.thumb-s5 .img {
    background-image: url(../img/sponsoring/corvinus.jpg);
}
.thumb-s6 .img {
    background-image: url(../img/sponsoring/dietafel.jpg);
}
.thumb-s7 .img {
    background-image: url(../img/sponsoring/amigo.jpg);
}
.thumb-s8 .img {
    background-image: url(../img/sponsoring/buergerstiftung.jpg);
}
.thumb-s9 .img {
    background-image: url(../img/sponsoring/scheckuebergabe2013.jpg);
}
.thumb-s10 .img {
    background-image: url(../img/logos/gartentreume.png);
}
*/
/* Thumbs Webdesign
.thumb-w1 .img {
    background-image: url(../img/webdesign/ahrens.png);
}
.thumb-w2 .img {
    background-image: url(../img/webdesign/augenaerzte.png);
}
.thumb-w3 .img {
    background-image: url(../img/webdesign/bioladen.png);
}
.thumb-w4 .img {
    background-image: url(../img/webdesign/brunsburg.png);
}
.thumb-w5 .img {
    background-image: url(../img/webdesign/gartentreume.png);
}
.thumb-w6 .img {
    background-image: url(../img/webdesign/gross.png);
}
.thumb-w7 .img {
    background-image: url(../img/webdesign/haarmonie.png);
}
.thumb-w8 .img {
    background-image: url(../img/webdesign/klimaschutz.png);
}
.thumb-w9 .img {
    background-image: url(../img/webdesign/lange-lossau.png);
}
.thumb-w10 .img {
    background-image: url(../img/webdesign/litc.png);
}
.thumb-w11 .img {
    background-image: url(../img/webdesign/mb-ing.png);
}
.thumb-w12 .img {
    background-image: url(../img/webdesign/pieper.png);
}
.thumb-w13 .img {
    background-image: url(../img/webdesign/posthof.png);
}
.thumb-w14 .img {
    background-image: url(../img/webdesign/schwesterk.png);
}
.thumb-w15 .img {
    background-image: url(../img/webdesign/vam.png);
}
*/

.logotext {
    padding: 30px;
}
.logotext .line {
    height: 13px;
    line-height:1.1;
/*    background: #999; */
 
    margin-top: 20px;

}
.logotitle {
   opacity: 0.85;
       font-weight:700;
    width: 90%;
}
.logosubtitle {
padding-top:10px;
    width: 90%;
    font-weight:400;
     opacity: 0.75;   
}

/***********************************************************************/
/* equal height columns - a) ROWs header b) content/sidemenu c) Footer */
/* d) Mitarbeiter
/* Kästen des Bereiches des Inhalts immer gleich hoch                  */
.eqWrap {
	display: flex;
}
.eq {
/*	padding: 10px; */
}
.eq:nth-of-type(odd) {
/*	background: white; */
color:#000;
}
.eq:nth-of-type(even) {
/*	background: #008b99; */
/*	opacity:0.5; */
color: #000;
}
.eq:nth-of-type(even) A, .eq:nth-of-type(even) A:focus, .eq:nth-of-type(even) A:hover, 
.eq:nth-of-type(even) A:visited, .eq:nth-of-type(even) H1, 
.eq:nth-of-type(even) H2, .eq:nth-of-type(even) H3, .eq:nth-of-type(even) H4, 
.eq:nth-of-type(even) H5, .eq:nth-of-type(even) H6,  .eq:nth-of-type(even) P {
/* color: #000; */
}
.eq:nth-of-type(odd) A, .eq:nth-of-type(odd) A:focus, .eq:nth-of-type(odd) A:hover, 
.eq:nth-of-type(odd) A:visited, .eq:nth-of-type(odd) H1, 
.eq:nth-of-type(odd) H2, .eq:nth-of-type(odd) H3, .eq:nth-of-type(odd) H4, 
.eq:nth-of-type(odd) H5, .eq:nth-of-type(odd) H6,  .eq:nth-of-type(odd) P {
/* color: #000; */
}
.equalHMRWrap {
/*	justify-content: space-between; */
	flex-wrap: wrap;
	    
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */ 
    flex: 1;    
}
.equalHMR3 {
	width: 18%;
/*	margin-bottom: 2%; */
}
.equalHMR6 {
	width: 78%; /* 78% gesenkt auf 64 wenn Pos rechts daneben*/
/*	margin-bottom: 2%; */
}
/* Ende Equal Height Columns */


/* Image Wall von css-tricks.com */
/* Graphic clients und Sponsoring */
#photos {
   /* Prevent vertical gaps */
   line-height: 0;
   
   -webkit-column-count: 3;  /* 5 */
   -webkit-column-gap:   0px;
   -moz-column-count:    3;
   -moz-column-gap:      0px;
   column-count:         3;
   column-gap:           0px;
}

#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
}

#logo-photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  max-width: 300px;
  height: auto !important;
}


@media (max-width: 1200px) {
  #photos {
  -moz-column-count:    3; /* 4 */
  -webkit-column-count: 3;
  column-count:         3;
  }
}
@media (max-width: 1000px) {
  #photos {
  -moz-column-count:    3;  /* 3 */
  -webkit-column-count: 3;
  column-count:         3;
  }
}
@media (max-width: 800px) {
  #photos {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 400px) {
  #photos {
  -moz-column-count:    1;
  -webkit-column-count: 1;
  column-count:         1;
}  
}
/* Photos wall   Ende */

.center {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;    
}

#kontakt P {
color: var(--white);
}


#contactmap .container {
/* width: 80%; */
}


#contactmap {
  background-image: url('../images/osm-gold.jpg'); 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 90vh;
  background-size: cover;
  
}
.contactmap-bg {
  background-image: url('../images/osm.jpg'); 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 30vh;
  background-size: cover;
}


/* info box above contactmap */ 
.mapbox {
  position: relative;
  left: 40px;
  top: 40px;
}
.mapbox IMG {
  position: relative;
  width: 100%;
  max-width:420px;
}

.osmcopy {
left: 70px;
top: 15px;
}

@media (max-width: 991px) {
  .mapbox {
    left: unset;
    margin-left: 5%;
  }
 #mapbox DIV {
     max-width:70vw;
 }  
  
#contactmap .card {
width:90%;
}
.osmcopy {
left: 50px;
top: 15px;
}
}

@media (max-width: 767px) {
.osmcopy {
left: 40px;
top: 35px;
}
}


/* border stuff if needed */
.border-left {
  border-left:  1px solid rgba(36,156,227,.825);
}

.border-right {
  border-right:  1px solid rgba(36,156,227,.825);
}

.bordered {
  border:  1px solid rgba(36,156,227,.825);
}

.info { font-style: italic; margin: 1.5em;}

.full {width: 100%; max-width: 100%;}

/***** Section Styling  *****/

.portfolio-item {
  padding: unset;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.card-img-top, .card-img-top IMG {
  width: 100%;
  height: auto;
/* border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
*/
}

IMG {
  vertical-align: middle;
  border-style: none; 
  max-width: 100%;
  height: auto;
}

/**** for contact map card overlay ***/
#contactmap .card-title {
  margin-bottom: .75rem; 
}

#contactmap .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

#contactmap .card-text:last-child {
  margin-bottom: 0;
}

#contactmap .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  max-width: 420px;
  word-wrap: break-word;
  background-color: unset; /* var(--white); */
/*  background-clip: border-box;
  border: 1px solid rgba(36,156,227,.825); 
  border-radius: .25rem;   */    
  border:none;  
}

#contactmap .card-border {
/*  background-clip: border-box;
  border: 1px solid rgba(136,136,136,.825); 
  border-radius: .25rem;
*/
/* shadoow instead of border */  
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#contactmap .card H4 {
font-family: "Fira Sans", Arial, Helvetica, sans-serif;
}


#contactmap .portfolio-item {
  padding: unset;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 576px) {
 #contactmap  .portfolio-item {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right:2px;
  }
}
/******* end contact map card ovverlay   *****/


/******* cards on webdesign page ****/

#webdesign .card {
  background-color: rgb(0,0,0,0.9);
  background-clip: border-box;
  border: 1px solid rgba(162, 137, 43,.825); 
  border-radius: .25rem;
}

#webdesign .card-body {
padding: 0;
}
#webdesign .card-title P {
  color: var(--color-2);
}

#webdesign .card-text {

}

#webdesign .card IMG {
  position: relative;
    width: 100%
}

@media (max-width: 800px) {
#webdesign .card {
width:unset;
}
}

#webdesign H4 {
font-family: "Fira Sans", Arial, Helvetica, sans-serif;
}


/******** end cards webdesign page ******/



/****** cards index about section ****/
#about .row {
padding-top: 35px;
padding-bottom: 35px;
display: flex;
}

#about .column {
    float: left;
    margin: 20px;
    background-color: grey;
    padding-bottom: 100%;
    margin-bottom: -100%;
}

#about div {
padding-left: 10px;
padding-right: 10px;
}

#about .card P {
font-weight: 700;
}

#about .card {
  /* background-color: rgb(203, 172, 54,0.8); */
  background-clip: border-box;
/*  border: 1px solid rgba(162, 137, 43,.825);  */ 
  border-radius: .25rem;
  width: 100%;
  
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border: none;
    align-items: center;
    -webkit-align-items: center;
    background-color: unset;
    white-space: unset;
}


#about .card-body {
    background-clip: border-box;
    border: 1px solid rgba(162, 137, 43, .825);
    border-radius: .25rem;
    background-color: var(--coloured);
    padding: 0;
    width: 100%;
}


/* hexen2023
#about .card-body {
  background-clip: border-box;
  border: 1px solid rgba(162, 137, 43, .825); 
  border-radius: .25rem;
  
  background-color: rgb(203, 172, 54, 0.9);
  padding: 0;
  width: 100%;
}
*/

#about .card-title {
  background-clip: border-box;
  border: 1px solid rgba(162, 137, 43, .825); 
  border-radius: .25rem;

  margin-bottom: 0;
  background-color: rgb(0, 0, 0, 0.9);
  width: 100%;
}
#about .card-title P {
  color: var(--color-2);
}

#about .card-text {

}

#about .card IMG {
  position: relative;
    width: 100%
}

@media (max-width: 800px) {
#about .card {
width:unset;
}
}


/******** end cards about section ******/

#scroller a:hover, #scroller *:hover>* {
    /* color: unset; */
    text-decoration: none;
    color: var(--coloured);
}



/* ANIMATIONS */
/***** CSS Zoom Transition for Icons, DIVs, Images, .. *****/
#kasten3er .portfolio-item {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right:15px;
  padding-left: 15px;
  }

.zoom { 
  transition: all .2s ease-in-out; 
  }

/* zoom whole DIV */
.zoom:hover {
  transform: scale(1.02); 
  -moz-transform: scale(1.02); 
  -webkit-transform: scale(1.02);
  }

/* zoom only IMG in DIV with this class */
.zoom-img:hover IMG {
  transform: scale(1.02); 
  -moz-transform: scale(1.02); 
  -webkit-transform: scale(1.02);
  }




.rainbow-it .char {
   transition: color 0.6s linear;
   transition-delay: calc( 0.2s * (1 - var(--distance-percent)) );
   }
.rainbow-it:hover .char {
   color: hsl(calc(260 * ( var(--char-index) / var(--char-total) ) ), 90%, 70%);
   }
   
   
   
   
