/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 26-09-22 */
/* file     -> start-slider-09 */
/* colors   -> #EE741D | rgba(238,116,29) | hsla(25,86%,53%) */
/* ------------------------------------------------------------------------------ */
/* link     -> https://codepen.io/EricPorter/pen/OJjEBrY */
/* info     -> image-slider with slide and fade effects */
/* ------------------------------------------------------------------------------ */
/* ROOT and VARIBLES */
:root {
	--hover-bgr:hsla(210,100%,56%,1);
    
    /* cards */
    --card-front-col: rgba(0,0,0,.6); /* black, gray OR client-color */
    --card-front-bgr: #fff;
    --card-back-col: #fff;
    --card-back-bgr: #EE741D;
    --card-ibox-hgt: 14rem;         /* min-height of the card - depends of the text card-back - def 14rem */
    --card-body-bdr: 1px solid rgba(0,0,0,.05);     /* border - def 1px */
    /* grid-area */
    --grid-area-gap: 1rem;          /* gap between flipboxes - def 1rem | min .3rem - check used shadow */
    --grid-area-pad: 1rem;          /* padding - check card-border-radius - def 1rem | min .3rem */
    --grid-area-bgr: none;          /* background - def none */
    --grid-area-bdr: 0px solid rgba(0,0,0,.25);     /* border - def 0px  */
    --grid-area-rad: 0rem;          /* border-radius - def 0rem */
    /* counter - card-front */ 
    --count-color: #fff;         /* color of the counter - must be the same as card-back-background AND no transparent */
    --count-size: 4rem;             /* counter size - def 4rem */
    --count-pos-top: 1.2rem;         /* counte rposition top - def 1rem */
    --count-pos-right: 1rem;      /* counter position right - def 1.2rem */
    --count-pos-bottom: 0.2rem;     /* counter position bottom - NOT IN USE */ 
    --count-width: 2px;             /* counter stroke - def 1px | max 3px */
    /* animation */
    --time-flip: 0.8s;              /* def 0.8s */

	}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 26-09-22 */
/* IMAGE-SLIDER */
/* RESET COUNTER -> SEE design.css */

/*@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,900");*/

@font-face {
        font-family:'Hurricane';
        src:url('fonts/Hurricane-Regular.ttf') format('truetype');
        font-display:swap;
        } 

:root {
  --titleColor: #e1e1e1;
  --primaryWhite: rgba(255,255,255,1); /* hsl(120deg, 0%, 75%); */
  --primaryColor: rgba(255,255,255,1); /* hsl(239, 100%, 81%); */
  --lineColor: hsl(120deg 0% 12%);
  --glow: #d46632;
  --hurricane:'Hurricane', cursive;
  --sassy: 'Sassy Frass', cursive;
  --boxShadow: 0px 10px 10px #0000007d;

}

html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin-right: calc(-1 * (100vw - 100%));
}

body {
  font-family:'Roboto',sans-serif;
  background: #111;
  color: var(--primaryWhite);
  line-height: 1.5em;
  background-image: linear-gradient(90deg, var(--lineColor) 0.05rem, transparent 0.05rem);
  background-size: 33vw;
  overflow-x: hidden;
}

.console {
  position: fixed;
  width: 100%;
  height: 100vh;
}

/* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------------- 6.02/00 - 18-03-26 */
/* CORNER */
.corner {
  position: absolute;
  --b: 1px;
  /* thickness */
  --c: #0000 90deg, #ffffff77 0;
  /* color */
  width: 2.4rem;
  /* length */
  aspect-ratio: 1/1;
  background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b) / 2) calc(100% + var(--b) / 2);
  opacity: 0.4;
  margin: 0.8em;
}
.corner.corner2 {
  right: 1rem;
  transform: rotate(90deg);
}
.corner.corner3 {
  right: 1rem;
  bottom: 1rem;
  transform: rotate(180deg);
}
.corner.corner4 {
  bottom: 1rem;
  transform: rotate(-90deg);
}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 26-09-22 */
/* LOGO - TOP LEFT */
/*
.logo {
  position: fixed;
  opacity: 0.8;
  right: 6rem;
  top: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 9;
  color: #fff;
  text-decoration: none;
}
.logo svg {
  margin-right: 10px;
  cursor: pointer;
  color: var(--primaryColor);
}
.logo_add {
  padding: .4rem 0 0 1.4rem;
}
*/

/*
nav.consoleNav {
  position: fixed;
  bottom: 29rem;
  z-index: 8;
  transform: rotate(90deg);
  transform-origin: bottom left;
  width: 100vh;
}
@media (max-width: 700px) {
  nav.consoleNav {
    display: none;
  }
}
nav.consoleNav a {
  position: relative;
  display: inline-block;
  font-size: 1em;
  transition: 0.3s;
  padding: 1.5em 1em 1.6rem;
  text-decoration: none;
  color: var(--primaryColor);
  border-bottom: 3px solid transparent;
}
nav.consoleNav a::before {
  content: ''""'';
  position: absolute;
  width: 100%;
  height: 0%;
  background: linear-gradient(0deg, #ffffff15, transparent);
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
nav.consoleNav a:hover {
  color: #fff;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
nav.consoleNav a:hover::before {
  height: 100%;
}
nav.consoleNav a.active {
  color: #fff;
  border-bottom: 2px solid var(--primaryWhite);
  text-decoration: none;
}
*/

section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-gap: 20px;
  place-items: center;
  min-height: 80vh;
  width: 80%;
  transition: 2s;
  border-bottom: 0.5px solid var(--lineColor);
  padding-bottom: 70px;
  margin: 6vmin auto; //* self 15vmin auto; */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 11px 40px 60px #00000070;
}

section > * {
  padding: 2rem;
  border: 1px dotted var(--lineColor);
}

.revealGroup {
  position: relative;
  grid-column: 2/6;
  grid-row: 5/6;
}
.revealGroup img {
  height: 100%;
  width: auto;
  max-width: 40em;
  max-height: 35em;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 26-09-22 */
/* HEADLINES */
h2 {
  position: absolute;  
  top: 25%;
  left: -16vw;  
  padding-left: 1rem;  
  line-height: 4rem;
  letter-spacing: .08rem; 
  font-family:'OpenSans',sans-serif;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight:600;
  font-style:bold;
  text-align: right;
  color: var(--titleColor);
  z-index: -1;
}
h2 span {
  display: block;  
  margin-right: -2rem;
  letter-spacing: initial;
  font-family:'Hurricane',cursive;
  font-weight: 200;
  color: var(--primaryColor);
  -webkit-text-stroke: 0px var(--titleColor);
  text-stroke: 0px var(--titleColor);
}

.skeleton {
  color: transparent;
  -webkit-text-stroke: 1px var(--titleColor);
  text-stroke: 1px var(--titleColor);
  z-index: 1;
}

p {
  font-size:1.2rem;
  font-weight: 100;
  letter-spacing:.04rem;
  grid-column: 5/6;
  grid-row: 4/7;
  background: #11111166;
}
@media (max-width: 700px) {
  p {
    grid-column: 2/6;
    grid-row: 6;
    margin-top: -8vw;
  }
}
p span {
  display: block;
  color: var(--titleColor);
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 26-09-22 */
/* GOBOX - INFO */
.goBox {
    position:relative;
    display:flex;
    grid-column:2/4;
    grid-row:5/5;
    margin-top:16rem;
    padding: 1rem 3rem;
    align-items:center;
    border: 1px solid var(--lineColor);
    border-radius:4px;
    box-shadow:var(--boxShadow);
    font-size:1.2rem;
    background: /*#FF1515;*/ radial-gradient(rgba(0,0,0,1), transparent);
    color: #fff;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s ease-in-out;
    }
.goBox:hover::after {
    content:'';
    position:absolute;
    top: 0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);    
    opacity:.2;
    transform: translateX(-100%) skewX(30deg);
    /*-webkit-animation: slide 0.6s;*/
    animation:slide 0.6s;
    z-index:1;
    }

@-webkit-keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.image-wrap {
  transition: 1.6s;
  transition-delay: 0.3s;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  visibility: hidden;
}

.animating .image-wrap {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: skewY(0);
  visibility: visible;
}

.image-wrap img {
  width: 100%;
  transform: scale(1.5);
}

.animating img {
  transform: scale(1);
  transition: 4s ease;
  transition-delay: -1s;
}

.fadeup {
  opacity: 0;
  transform: translateY(80px);
}

.fadeleft {
  opacity: 0;
  transform: translateX(80px);
}

.faderight {
  opacity: 0;
  transform: translateX(-80px);
}

.fading-in {
  opacity: 1;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  transform: translate(0px);
  transition-delay: 0.5s;
}

@-webkit-keyframes grow {
  100% {
    transform: scaley(1);
  }
}

@keyframes grow {
  100% {
    transform: scaley(1);
  }
}
.progressRadial {
  transform: scale(1);
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  border: 1px solid var(--primaryWhite);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media (max-width: 950px) {
  .progressRadial {
    transform: scale(0.7);
    bottom: 1rem;
    right: 1rem;
  }
}
.progressRadial::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 0 0px var(--primaryWhite);
  border-radius: 50%;
  transition: 0.4s;
}
.progressRadial:hover::before {
  box-shadow: 0 0 10px var(--primaryColor);
}
.progressRadial .progressPercent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 49px;
  color: var(--primaryWhite);
  font-size: 0.8em;
}
.progressRadial svg {
  position: absolute;
  left: -26px;
  top: -26px;
}
.progressRadial svg .animatedRadial {
  fill: transparent;
  stroke-width: 3px;
  stroke: var(--primaryColor);
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
}
.progressRadial circle {
  fill: rgba(255, 255, 255, 0);
}

.progressBar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--primaryColor);
  z-index: 99;
}
.progressBar::after {
  content:'';
  display: block;
  position: absolute;
  width: 4px;
  height: 8px;
  transform-origin: right-bottom;
  background: var(--primaryWhite);
  right: 0;
  bottom: 0;
}

/*
nav.mobileNav {
  --font-size: 0.35rem;
  --borderRadius: 0;
  position: fixed;
  right: 2rem;
  top: 1.8rem;
  z-index: 10;
}
nav.mobileNav .burger {
  font-size: var(--font-size);
  cursor: pointer;
  padding: 3em 1.5em;
}
nav.mobileNav .burger.toggled {
  margin-right: 18px;
}
nav.mobileNav .burger > div {
  width: 4em;
  height: 2px;
  border-radius: var(--borderRadius);
  background: var(--primaryColor);
}
nav.mobileNav .burger > div::before, nav.mobileNav .burger > div::after {
  transition: font-size 0s;
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background: var(--primaryColor);
  border-radius: var(--borderRadius);
}
nav.mobileNav .burger > div::before {
  margin-top: -1.5em;
  width: 3em;
}
nav.mobileNav .burger > div::after {
  margin-top: 1.5em;
  width: 4em;
}
nav.mobileNav .burger2 > div {
  transition: background 0.4s, font-size 0s;
}
nav.mobileNav .burger2 > div::before, nav.mobileNav .burger2 > div::after {
  transition: font-size 0s;
  transform-origin: center center;
}
nav.mobileNav .burger2.toggled > div::before {
  -webkit-animation: burg2top 0.4s linear forwards;
          animation: burg2top 0.4s linear forwards;
}
nav.mobileNav .burger2.toggled > div {
  background: transparent;
}
nav.mobileNav .burger2.toggled > div::after {
  -webkit-animation: burg2bottom 0.4s linear forwards;
          animation: burg2bottom 0.4s linear forwards;
}
nav.mobileNav .burger2.unToggled > div::before {
  -webkit-animation: burg2topReset 0.4s linear forwards;
          animation: burg2topReset 0.4s linear forwards;
}
nav.mobileNav .burger2.unToggled > div {
  background: var(--primaryColor);
}
nav.mobileNav .burger2.unToggled > div::after {
  -webkit-animation: burg2bottomReset 0.4s linear forwards;
          animation: burg2bottomReset 0.4s linear forwards;
}
@-webkit-keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
    width: 4em;
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
    width: 4em;
  }
}
@keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
    width: 4em;
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
    width: 4em;
  }
}
@-webkit-keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    width: 4em;
    transform: rotate(-45deg);
  }
}
@keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    width: 4em;
    transform: rotate(-45deg);
  }
}
@-webkit-keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}

.mobileNavListWrap {
  display: none;
  opacity: 0;
  background: #000000f2;
  position: fixed;
  z-index: 9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  transition: 1s;
  transform: scale(0);
  border-radius: 50%;
}
.mobileNavListWrap .mobileNavList {
  list-style: none;
  padding: 3em;
  margin: 1rem;
  position: relative;
  outline: 1px solid #ffffff00;
  background: #040404;
}
.mobileNavListWrap .mobileNavList li {
  display: block;
  padding: 2em;
  overflow: hidden;
  text-align: center;
}
.mobileNavListWrap .mobileNavList li a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--primaryWhite);
  font-size: clamp(2.8rem, 10vw, 3.8rem);
  display: inline-block;
  transition: 0.1s;
  opacity: 0;
  white-space: nowrap;
}
.mobileNavListWrap .mobileNavList li a:hover {
  color: #fff;
  transform: scale(1.05);
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.445, 1.65, 0.455, 1.485);
}

.mobileNavListWrap.activate {
  display: flex;
  -webkit-animation: appear 0.5s forwards;
          animation: appear 0.5s forwards;
}
.mobileNavListWrap.activate .mobileNavList {
  -webkit-animation: frame 1s 1s forwards;
          animation: frame 1s 1s forwards;
  display: block;
  position: relative;
  overflow: hidden;
}
@-webkit-keyframes frame {
  to {
    outline: 1px solid #ffffff22;
  }
}
@keyframes frame {
  to {
    outline: 1px solid #ffffff22;
  }
}
.mobileNavListWrap.activate .mobileNavList li a {
  -webkit-animation: slideIn 2s forwards;
          animation: slideIn 2s forwards;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(1) a {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(2) a {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(3) a {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(4) a {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

@-webkit-keyframes appear {
  100% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
  }
}

@keyframes appear {
  100% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
  }
}
@-webkit-keyframes slideIn {
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  100% {
    opacity: 1;
  }
}
*/

.scrollLock {
  overflow-y: hidden;
}

.blobs {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.blobs::before,
.blobs::after {
  content: "";
  width: 60vmax;
  height: 40vmax;
  position: absolute;
  left: -30vmin;
  top: -20vmin;
  -webkit-animation: morph 10s linear infinite alternate, spin 20s linear infinite;
  animation: morph 10s linear infinite alternate, spin 20s linear infinite;
  z-index: 1;
  will-change: border-radius, transform;
  transform-origin: 35% 35%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.3;
}

.blobs::before {
  background: var(--primaryColor);
}

.blobs::after {
  background: var(--primaryColor);
  width: 60vmin;
  height: 40vmin;
  left: auto;
  right: -20vmin;
  top: auto;
  bottom: -20vmin;
  animation: morph 5s linear infinite alternate, spin 26s linear infinite reverse;
  transform-origin: 20% 20%;
}

@-webkit-keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 40% 60%;
  }
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 40% 60%;
  }
}
@-webkit-keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.baseColor {
  position: absolute;
  text-align: CENTER;
  bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.baseColor #baseColor {
  border-radius: 5rem;
  height: 20px;
  width: 60px;
  border: none;
  outline: none;
  -webkit-appearance: non;
  cursor: pointer;
}
.baseColor #baseColor::-webkit-color-swatch-wrapper {
  padding: 0;
}
.baseColor #baseColor::-webkit-color-swatch {
  border: none;
  border-radius: 5rem;
}
.baseColor p {
  background: transparent;
}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 28-09-22 */
/* ASIDE - COMPANY - CONTACT */
/* https://codepen.io/enbee81/pen/rNBLaLM */
aside {
  position:relative;
  bottom:6rem;
  margin: 0 10%;
  padding:0;
  border: 1px solid rgb(0,0,0,.1);
  border-radius:12px;
  background:transparent;
}
/*
aside .contact {
  display:flex;
  flex:wrap;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  list-style: none;
}
*/

:root {
  /* footer */
  --foot-col-text:  rgb(255,255,255,1);
  --foot-bgr-area:  rgb(0,0,0,.1);     /* def with color - but none; ia also good */
  --foot-gap-size:  1rem;                   /* def 1rem */
  --foot-pad-size:  1rem;                   /* def 1rem */
  --foot-bgr-box-o: rgb(255,255,255,.1);         /* address-box 1st */
  --foot-bgr-box-e: rgb(255,255,255,.05);        /* address-box 2nd */
  --foot-bgr-box-h: rgb(0,0,0,.2);       /* address-box hover - complete */
  /* footer -> additional */
  --foot-bdr-area:  6px;                    /* border-radius        -> def 6px | OR 6px 0 */
  --foot-adr-logo:  2/1;                    /* logo - aspect-ratio  -> def 2/1 | 4/3 | 16/9 */
  --foot-hov-data:  rgb(255,255,255,.4);    /* ul/li - data with hover-silde-effect */
  --foot-col-data:  rgb(255,255,255,.4);  /* ul/li - border with color */
  --foot-bdr-data:  0 0 1px 1px;            /* ul/li - with border  -> def 0 0 1px 1px | 0 0 0 1px */
}

/* p-tag -> neutral */
aside .contact,p {
  margin:0 auto;
  padding:.2rem 0;
  font-size:1rem;
  font-style: normal;
  background: transparent;
}

aside .adr-contact {
  max-width: auto;
  /*margin: 1em auto;*/
  display: flex;
  flex-wrap: wrap;
  gap:.6rem;
  justify-content:center;
  align-items:stretch;
}

aside .adr-card {
  grid-column: span 2;  
  flex-grow:1;

  /*width: auto; */
  max-width: calc(100% / 5 - .1rem); /* for4cards !!! */
  min-width: 256px;  
  /*height:320px;
  min-height: 256px; */
  margin:0;
  border:1px solid rgb(255,255,255,.2);
  background: transparent;
}

aside .adr-card:last-child {flex-direction:row;flex-grow:4;/*max-width:100%;min-width:256px;*/ /*height:auto;*/
  /* grid-column: 2 / span 2; /* max for5cards !!! check media always */ /*border:2px solid orange; */
}

aside h3 {margin:0 0 .6rem 0;padding:1rem;font-size:1.8rem;font-weight:100;border:1px solid #ccc;border-width:0 0 1px 0;}
aside address {font-style: normal;}

/* DETAILS - ADDRESS BOX*/
aside .adr-card             {object-fit:contain;border-radius:6px;color:var(--foot-col-text);}
aside .adr-card:hover       {background:var(--foot-bgr-box-h) !important;transition:all .8s;}
aside .adr-card h4          {margin:0;padding:.6rem 1rem;border:1px solid rgb(255,255,255,.4);border-width:0 0 1px 0;font-size:1.2rem;font-weight:200;}

aside .adr-card .card-inner {margin:.2rem;padding:.6rem .8rem;border: 0px solid #ccc;}

aside .adr-card ol, ul {list-style-type: none;}

/* ADRESS DATA */
aside .adr-card p           {-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;}
aside .adr-card p.txt-center{display:grid;justify-content:center;align-items:center;padding:0 0 1rem 0;font-size:1.28rem;border:0px solid green;}
aside .adr-card ol          {list-style-type:none;list-style-position:outside;padding:.4rem;
                                  border:solid var(--foot-col-data);border-width:var(--foot-bdr-data);}
aside .adr-card li          {padding-left: .6rem;}
aside .adr-card li::marker  {font-size:1.4rem;color:red;} /* color for fall-back */
/* versions of font-awesome above 4.7.0 */
aside .adr-card li .fa-cog          {color:var(--foot-col-text,#fff);}
/* hover -> fade-in AND fade-out */
aside .adr-card li                  {transition:all 2s;}
aside .adr-card li:hover,     
aside .adr-card li:focus            {color:var(--foot-col-text,#fff);background:var(--foot-bgr-box-h);
                                          box-shadow:inset 0 -30px var(--foot-hov-data);transition:all .8s;cursor:default;}
aside .adr-card .no-hover:hover,     
aside .adr-card .no-hover:focus     {background:none;box-shadow:none;transition:none !important;}
/* for links and email */
aside .adr-card .add-link           {color:var(--foot-col-text,#fff);text-decoration:none;border:none;cursor:pointer;}  
/* fa-clock-o | unicode: f017 */
aside .adr-card .icon-clock         {margin:0 0 0 2.2rem;padding:0 0 0 0rem;list-style-position:outside;}
aside .adr-card .icon-clock::before {margin:0 0 0 -2rem;padding:0 1rem 0 0;font-family:'FontAwesome';content:'\f017 ';}
aside .adr-card .marker-noshow      {list-style-type:none;}
/* hover -> data-box */
aside .adr-card:nth-child(odd)      {background:var(--foot-bgr-box-o);}
aside .adr-card:nth-child(even)     {background:var(--foot-bgr-box-e);}

aside .adr-card .adr-logo {
  display:flex;
  /*flex-wrap:wrap;*/
  height:auto;
  max-height:256px;
  align-items:center;
  align-content:center;
  justify-content:center;
  aspect-ratio:var(--foot-adr-logo);
  margin:0;
  padding:.2rem;
  border:1 solid var(--foot-col-text);
  background:transparent;
}

	
/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */