/*                          ---                          */
/* -------------------- Fonts MAIN --------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600;700;800;900&display=swap');
/* ----------------------------------------------------- */

/*                          ---                          */
/* -------------------- Colors MAIN -------------------- */
:root {
  --white:            #ffffff;
  --black:            #000000;
  --red:              #ff0000;

  --primary:          #D8006B;
  --secondary:        #ffc400;

  --purple: rgb(123, 31, 162);
  --violet: rgb(0, 238, 255);
  --pink: rgb(231, 87, 15);

  --purple: #354d63;
  --violet: #19289f;
  --pink: rgb(15, 184, 231);

  --logo-fill: #354d63;
  --logo-bg-fill: #fff;


  --logo-primary: rgb(142 163 171);
  --logo-primary-light: rgb(160, 181, 189);
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------- Settings MAIN ------------------- */
* {
  font-family: 'Montserrat', Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
html {
  width: 100%;
  min-height: 100% !important;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100% !important;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
body.disable-scrollbar {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.disable-scrollbar::-webkit-scrollbar {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
a, img, strong, button, svg, span, ::after, ::before {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
a {
  text-decoration: none;
}
p, ul, li {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img {
  border-style: none;
  width: 100%;
  height:  100%;
  display: block;
  object-fit: cover;
  transform-origin: center;
}
button {
  border: 0;
}
svg {
  display: block;
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ Body ----------------------- */
:root {
  --background: #c0c2c8;

  --shadow-height: 200px;
}
/* @media (prefers-color-scheme: light) {
  :root {
    --background: #e5e3e3;
  }
} */
/* @media (prefers-color-scheme: dark) {
  :root {
    --background: #ff0000;
  }
} */
body {
  
  /* background: rgb(155,189,221);
  background: -moz-linear-gradient(45deg, rgba(155,189,221,1) 0%, rgba(241,209,198,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(155,189,221,1) 0%, rgba(241,209,198,1) 100%);
  background: linear-gradient(45deg, rgba(155,189,221,1) 0%, rgba(241,209,198,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9bbddd",endColorstr="#f1d1c6",GradientType=1); */

  background-image: linear-gradient(#bdcad5, #8c9ca6);
  box-shadow: inset 0 0 100px hsla(0,0%,0%,.1);

}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ xxx ----------------------- */

@-webkit-keyframes logoAnimationDots {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoAnimationDots {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes logoAnimationAJ {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoAnimationAJ {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes logoAnimationBG {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoAnimationBG {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -400% center;
  }
}
@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -400% center;
  }
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* -------- HEADER Animacia skrolovania stranky -------- */
.anim-mouse {
  width: 18px;
  height: 36px;
  position: absolute;
  bottom: 57px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 11;
}
.mouse {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  position: relative;
  height: 36px;
  width: 18px;
}
.mouse:before,
.mouse:after {
  animation: mouse-wheel 1.5s ease-in-out infinite;
  background: #fff;
  border-radius: 100px;
  content: '';
  height: 4px;
  width: 4px;
  opacity: 0;
  position: absolute;
  left: 7px;
  top: 16px;
}
.mouse:after {
  animation-delay: 0.75s;
}
@-webkit-keyframes mouse-wheel {
  0% {
    transform: translateY(-11px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    transform: translateY(11px);
  }
}
@keyframes mouse-wheel {
  0% {
    transform: translateY(-11px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    transform: translateY(11px);
  }
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ Body ----------------------- */
header {
  position: relative;
  padding: 50px 0 150px 0;
}
.header-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

/* */
.header-title .jakubca-logo {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header-title .jakubca-logo svg {
  width: auto;
  height: 100%;
  padding: 0 0 0 7px;
}
.header-title .jakubca-logo .logo-AJ {
  position: absolute;
  z-index: 1;
  fill: var(--logo-fill);
  opacity: 0;
  transform-origin: center center;
  animation-name: logoAnimationAJ;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.header-title .jakubca-logo .logo-dots {
  position: absolute;
  z-index: 1;
  fill: var(--logo-fill);
  opacity: 0;
  transform-origin: center center;
  animation-name: logoAnimationDots;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.header-title .jakubca-logo .logo-BG {
  position: absolute;
  z-index: 1;
  fill: var(--logo-bg-fill);
  opacity: 0;
  transform-origin: center center;
  animation-name: logoAnimationBG;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

.jakubca-logo-main {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* opacity: 0; */
}
.jakubca-logo-blur {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  filter: blur(20px);
}






/* */
.header-title hgroup {
  margin: 0 0 20px 0;
}


/* */
@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -400% center;
  }
}

.header-title h1 {
  max-width: 1000px;
  font-weight: 400;
  color: white;
  text-align: center;
  padding: 0 50px;
  font-size: clamp(3rem, 6vw, 4rem);
}
.header-title h1 .magic-text {
  font-weight: 800;
  animation: background-pan 30s linear infinite;
  background: linear-gradient(
    90deg,
    var(--purple),
    var(--violet),
    var(--pink),
    var(--purple)
  );
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}









/* */
.contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 428px) {
  .contacts {
    flex-direction: column;
  }
}

/* -- Mail button */
.contacts a.mail {
  width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  color: #d0dce7;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #96acc0;
  border-radius: 4px;
}
.contacts a.mail:hover {
  background-color: var(--black);
}
.contacts .mail svg {
  width: 20px;
  height: 20px;
  margin: 0 15px 0 0;
}
.contacts .mail svg path {
  fill: var(--white);
}

/* -- Call button */
.contacts a.phone {
  width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  color: #d0dce7;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #96acc0;
  border-radius: 4px;
}
.contacts a.phone:hover {
  background-color: var(--black);
}
.contacts .phone svg {
  width: 18px;
  height: 18px;
  margin: 0 15px 0 0;
}
.contacts .phone svg path {
  fill: var(--white);
}
.contacts .phone svg path:nth-child(2) {
  -webkit-animation: header-phone 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
  animation: header-phone 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
}
.contacts .phone svg path:nth-child(3) {
  -webkit-animation: header-phone2 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
  animation: header-phone2 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
}

/* */
.contacts a.mail span {
  font-weight: 600;
  color: var(--white);
}
.contacts a.phone span {
  font-weight: 600;
  color: var(--white);
}

/* Animate phone */
@-webkit-keyframes header-phone {
  0%,
  30% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes header-phone {
  0%,
  30% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes header-phone2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
  }
  70%,
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes header-phone2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
  }
  70%,
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
  }
}

/* */
.soc-media {
  display: flex;
  gap: 10px;
}
.soc-media a {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
}
.soc-media a svg {
  width: 50%;
  height: auto;
}
.soc-media-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.soc-media a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
  background-color: #96acc0;
}
a.soc-instagram .soc-media-container::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
  background-color: #96acc0;
}
.soc-media a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -2;
  filter: blur(15px);
  transform-origin: center;
  /* transform: scale(1.1); */
  opacity: 0;
  z-index: -1;
}

.dribbble-logo,
.dribbble-bg,
.behance-logo,
.artstation-logo,
.sketchfab-logo,
.instagram-logo,
.linkedin-logo {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.soc-media-container:hover::after {
  opacity: 0;
}
.soc-media a:hover::before {
  opacity: 0.5;
}
.soc-media a:hover {
  z-index: 1;
}

/* dribbble */
a.soc-dribbble .dribbble-logo {
  fill: #96acc0;
}
a.soc-dribbble .dribbble-bg {
  fill: #d9d9d9;
}
a.soc-dribbble:hover .dribbble-logo {
  fill: #b8509a;
}
a.soc-dribbble:hover .dribbble-bg {
  fill: #ffabe7;
}
a.soc-dribbble:hover::after {
  background-color: #b8509a;
}
a.soc-dribbble:hover::before {
  background-color: #b8509a;
}

/* behance */
a.soc-behance .behance-logo {
  fill: #d9d9d9;
}
a.soc-behance:hover .behance-logo {
  fill: #ffffff;
}
a.soc-behance:hover::after {
  background-color: #0057ff;
}
a.soc-behance:hover::before {
  background-color: #0057ff;
}

/* artstation */
a.soc-artstation .artstation-logo {
  fill: #d9d9d9;
}
a.soc-artstation:hover .artstation-logo {
  fill: #13aff0;
}
a.soc-artstation:hover::after {
  background-color: #101014;
}
a.soc-artstation:hover::before {
  background-color: #101014;
}

/* sketchfab */
a.soc-sketchfab .sketchfab-logo {
  fill: #d9d9d9;
}
a.soc-sketchfab:hover .sketchfab-logo {
  fill: #ffffff;
}
a.soc-sketchfab:hover::after {
  background-color: #1caad9;
}
a.soc-sketchfab:hover::before {
  background-color: #1caad9;
}

/* instagram */
a.soc-instagram .instagram-logo {
  fill: #d9d9d9;
}
a.soc-instagram:hover .instagram-logo {
  fill: #ffffff;
}
a.soc-instagram::after {
  content: '';
  background: rgb(254,192,83);
  background: -moz-linear-gradient(135deg, rgba(254,192,83,1) 0%, rgba(242,32,62,1) 33.3%, rgba(183,41,168,1) 66.6%, rgba(83,66,214,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(254,192,83,1) 0%, rgba(242,32,62,1) 33.3%, rgba(183,41,168,1) 66.6%, rgba(83,66,214,1) 100%);
  background: linear-gradient(135deg, rgba(254,192,83,1) 0%, rgba(242,32,62,1) 33.3%, rgba(183,41,168,1) 66.6%, rgba(83,66,214,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fec053",endColorstr="#5342d6",GradientType=1);
}
a.soc-instagram::before {
  content: '';
  background: rgb(254,192,83);
  background: -moz-linear-gradient(135deg, rgba(254,192,83,1) 0%, rgba(242,32,62,1) 33.3%, rgba(183,41,168,1) 66.6%, rgba(83,66,214,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(254,192,83,1) 0%, rgba(242,32,62,1) 33.3%, rgba(183,41,168,1) 66.6%, rgba(83,66,214,1) 100%);
  background: linear-gradient(135deg, rgba(254,192,83,1) 0%, rgba(242,32,62,1) 33.3%, rgba(183,41,168,1) 66.6%, rgba(83,66,214,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fec053",endColorstr="#5342d6",GradientType=1);
}

/* linkedin */
a.soc-linkedin .linkedin-logo {
  fill: #d9d9d9;
}
a.soc-linkedin:hover .linkedin-logo {
  fill: #ffffff;
}
a.soc-linkedin:hover::after {
  background-color: #1b80e4;
}
a.soc-linkedin:hover::before {
  background-color: #1b80e4;
}

@media screen and (max-width: 428px) {
  .header-title .jakubca-logo {
    width: 160px;
    height: 160px;
  }
  .header-title hgroup {
    margin: 0 0 10px 0;
  }
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-grid {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.main-grid hgroup {
  padding: 0 50px;
}
.main-grid h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3rem);
  text-align: center;
  margin: 0 0 25px 0;
  color: #354d63;
  /* animation: background-pan 30s linear infinite;
  background: linear-gradient(
    -90deg,
    var(--purple),
    var(--violet),
    var(--pink),
    var(--purple)
  );
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap; */
}

.main-grid-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 50px 50px 50px;
  gap: 20px;
  
}

@media screen and (max-width: 744px) {
  .main-grid-wrapper {
    padding: 0 50px 50px 50px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 428px) {
  .main-grid-wrapper {
    padding: 0 20px 50px 20px;
    padding: 0 50px 50px 50px;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 320px) {
  .main-grid-wrapper {
    padding: 0 10px 50px 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.5 / 1;
  /* background-color: var(--white); */
  /* box-shadow: 0 0 40px 10px #00000020; */
  position: relative;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 500ms ease-out;
}
.grid-item.square {
  aspect-ratio: 1 / 1;
}

.grid-item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  background-color: #ffffff;
}
.grid-item:hover {
  position: relative;
  z-index: 1;
  transform: scale(1.05);
  background-color: var(--white);
  box-shadow: 0 0 40px 10px #00000020;
}

.grid-item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-item-img img {
  width: 60%;
  height: auto;
  position: absolute;
}
.mahhu-logo-normal {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
.mahhu-logo-hover {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
.grid-item-img.mahhu-logo .mahhu-logo-hover {
  opacity: 0;
}
.grid-item-img.mahhu-logo:hover .mahhu-logo-normal {
  opacity: 0;
}
.grid-item-img.mahhu-logo:hover .mahhu-logo-hover {
  opacity: 100;
}
.grid-item-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-item-logo svg {
  width: 80%;
}
.grid-item-logo svg.logo-cesys {
  width: 40%;
}
.grid-item-logo svg.logo-barberhood {
  width: 30%;
}
.grid-item-logo svg.logo-girlshood {
  width: 30%;
}
.grid-item-logo svg.logo-reklama-m {
  width: 56%;
  margin: 0 0 10px 0;
}
.grid-item-logo svg.logo-tramy {
  width: 56%;
  width: 70%;
}
.grid-item-logo svg.logo-imitacetramu {
  width: 80%;
}
.grid-item-logo svg.logo-33d {
  width: 30%;
}
.grid-item-logo svg.logo-dekorez {
  width: 30%;
}
.grid-item-logo svg.logo-storkpictures {
  width: 40%;
}
.grid-item-logo svg.logo-waf {
  width: 45%;
}
.grid-item-logo svg.logo-davos {
  width: 45%;
}
.grid-item-logo svg.logo-hsg {
  width: 40%;
}
.grid-item-logo svg.logo-cko {
  width: 50%;
}
.grid-item-logo svg.logo-oocr {
  width: 50%;
}
.grid-item-logo svg.logo-bouncepark {
  width: 60%;
}
.grid-item-logo svg.logo-barber-hood-demo {
  width: 60%;
}

/* */
.grid-item-info {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 2px;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}
.info-item-fb,
.info-item-grafika,
.info-item-logo,
.info-item-ui,
.info-item-code {
  padding: 5px 7px;
  border-radius: 3px;
}
.info-item-fb span,
.info-item-grafika span,
.info-item-logo span,
.info-item-ui span,
.info-item-code span {
  opacity: 0.75;
}
.info-item-fb {
  background-color: rgb(24, 119, 242);
}
.info-item-grafika {
  background-color: rgb(186, 173, 55);
}
.info-item-logo {
  background-color: rgb(170, 194, 202);
}
.info-item-ui {
  background-color: rgb(142, 163, 171);
}
.info-item-code {
  background-color: rgb(118, 140, 146);
}

/* */
.grid-item-status {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 2px;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}
.status-item {
  padding: 5px 7px;
  border-radius: 3px;
  background-color: #13aff0;
}
.status-pdf {
  padding: 5px 7px;
  border-radius: 3px;
  background-color: #b30b00;
}





/* */
.logo-cesys-1,
.logo-cesys-2,
.logo-cesys-3,
.logo-cesys-4,
.logo-cesys-5,
.logo-cesys-6,
.logo-barberhood-1,
.logo-girlshood-1,
.logo-reklama-m-1,
.logo-reklama-m-2,
.logo-copy-print-1,
.logo-copy-print-2,
.logo-copy-print-3,
.logo-tramy-1,
.logo-tramy-2,
.logo-tramy-3,
.logo-33d-1,
.logo-33d-2,
.logo-dekorez-1,
.logo-storkpictures-1,
.logo-storkpictures-2,
.logo-storkpictures-3,
.logo-storkpictures-4,
.logo-storkpictures-5,
.logo-storkpictures-6,
.logo-waf-1,
.logo-davos-1,
.logo-davos-2,
.logo-hsg-1,
.logo-cko-1,
.logo-cko-2,
.logo-cko-3,
.logo-oocr-1,
.logo-oocr-2,
.logo-oocr-3,
.logo-oocr-4,
.logo-oocr-5,
.logo-oocr-6,
.logo-bouncepark-1,
.logo-bouncepark-2,
.logo-bouncepark-3,
.logo-bouncepark-4,
.logo-bouncepark-5,
.logo-barber-hood-1 {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
.logo-cesys-1,
.logo-cesys-2,
.logo-cesys-3,
.logo-cesys-4,
.logo-cesys-5,
.logo-cesys-6,
.logo-barberhood-1,
.logo-girlshood-1,
.logo-reklama-m-1,
.logo-reklama-m-2,
.logo-copy-print-1,
.logo-copy-print-2,
.logo-copy-print-3,
.logo-tramy-1,
.logo-tramy-2,
.logo-tramy-3,
.logo-33d-1,
.logo-33d-2,
.logo-dekorez-1,
.logo-storkpictures-1,
.logo-storkpictures-2,
.logo-storkpictures-3,
.logo-storkpictures-4,
.logo-storkpictures-5,
.logo-storkpictures-6,
.logo-waf-1,
.logo-davos-1,
.logo-davos-2,
.logo-hsg-1,
.logo-cko-1,
.logo-cko-2,
.logo-cko-3,
.logo-oocr-1,
.logo-oocr-2,
.logo-oocr-3,
.logo-oocr-4,
.logo-oocr-5,
.logo-oocr-6,
.logo-bouncepark-1,
.logo-bouncepark-2,
.logo-bouncepark-3,
.logo-bouncepark-4,
.logo-bouncepark-5,
.logo-barber-hood-1 {
  fill: var(--logo-primary);
}




.logo-cesys-2,
.logo-cesys-5 {
  fill: var(--logo-primary-light);
}
.logo-cesys-4 {
  fill: transparent;
}
.logo-cesys-6 {
  fill: transparent;
}
.grid-item:hover .logo-cesys-1 {
  fill: #FFEF00;
}
.grid-item:hover .logo-cesys-2 {
  fill: #E23530;
}
.grid-item:hover .logo-cesys-3 {
  fill: #F7BB22;
}
.grid-item:hover .logo-cesys-4 {
  fill: #173540;
}
.grid-item:hover .logo-cesys-5 {
  fill: #F7C631;
}
.grid-item:hover .logo-cesys-6 {
  fill: #173540;
}




.grid-item:hover .logo-barberhood-1 {
  fill: #000000;
}

.grid-item:hover .logo-girlshood-1 {
  fill: #e90e8b;
}

.grid-item:hover .logo-reklama-m-1 {
  fill: #000000;
}
.grid-item:hover .logo-reklama-m-2 {
  fill: #bea87d;
}

.grid-item:hover .logo-copy-print-1 {
  fill: #000000;
}
.grid-item:hover .logo-copy-print-2 {
  fill: #da001f;
}
.grid-item:hover .logo-copy-print-3 {
  fill: #a60018;
}

.grid-item:hover .logo-tramy-1 {
  fill: #e19137;
}
.grid-item:hover .logo-tramy-2 {
  fill: #e7a75f;
}
.grid-item:hover .logo-tramy-3 {
  fill: #6b3d21;
}

.grid-item:hover .logo-33d-1 {
  fill: #000000;
}
.grid-item:hover .logo-33d-2 {
  fill: #2fb5af;
}

.grid-item:hover .logo-dekorez-1 {
  fill: #000000;
}

.grid-item:hover .logo-storkpictures-1 {
  fill: #f05a28;
}
.grid-item:hover .logo-storkpictures-2 {
  fill: #888888;
}
.grid-item:hover .logo-storkpictures-3 {
  fill: #c6c4c3;
}
.grid-item:hover .logo-storkpictures-4 {
  fill: #e8e8e8;
}
.grid-item:hover .logo-storkpictures-5 {
  fill: #f05a28;
}
.grid-item:hover .logo-storkpictures-6 {
  fill: #000000;
}

.grid-item:hover .logo-waf-1 {
  fill: #000000;
}

.grid-item:hover .logo-davos-1 {
  fill: #00347a;
}
.grid-item:hover .logo-davos-2 {
  fill: #76ac21;
}

.grid-item:hover .logo-hsg-1 {
  fill: #d72528;
}

.grid-item:hover .logo-cko-1 {
  fill: #217ca3;
}
.grid-item:hover .logo-cko-2 {
  fill: #e29930;
}
.grid-item:hover .logo-cko-3 {
  fill: #32384d;
}

.grid-item:hover .logo-oocr-1 {
  fill: #000000;
}
.grid-item:hover .logo-oocr-2 {
  fill: #115b0e;
}
.grid-item:hover .logo-oocr-3 {
  fill: #ffb100;
}
.grid-item:hover .logo-oocr-4 {
  fill: #6aba19;
}
.grid-item:hover .logo-oocr-5 {
  fill: #008dd9;
}
.grid-item:hover .logo-oocr-6 {
  fill: #115b0e;
}

.grid-item:hover .logo-bouncepark-1 {
  fill: #000000;
}
.grid-item:hover .logo-bouncepark-2 {
  fill: #06b3de;
}
.grid-item:hover .logo-bouncepark-3 {
  fill: #000000;
}
.grid-item:hover .logo-bouncepark-4 {
  fill: #fee900;
}
.grid-item:hover .logo-bouncepark-5 {
  fill: #e90e8b;
}

.grid-item:hover .logo-barber-hood-1 {
  fill: #7D5C42;
}








footer {
  width: 100%;
  max-width: 1000px;
  padding: 0 50px;
  margin: auto;

}
.footer-wrapper {
  height: 70px;
  display: flex;
  position: relative;
}
.footer-wrapper::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0.25;
}

/* */
footer .copyright {
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 120px;
  color: white;
  font-size: 0.8rem;
  font-weight: 300;
}
footer .copyright a {
  color: white;
  margin: 0 5px;
}
footer .copyright a span {
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}
footer .copyright a:hover span {
  color: #3a5167;
}
footer .copyright a:hover {
  color: #3a5167;
}

/* */
footer .autor {
  width: 120px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .autor span {
  color: #3a5167;
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0 10px 0 0;
  text-transform: uppercase;
  display: none;
}
footer .autor svg.jakubca-logo {
  width: auto;
  height: 37px;
  display: block;
  margin: 0 -4px 0 0;
}
footer .autor svg .logo-bg,
footer .autor svg .logo-aj {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
footer .autor svg .logo-bg {
  fill: var(--white);
  opacity: 0.2;
}
footer .autor svg .logo-aj {
  fill: var(--white);
}
footer .autor a:hover svg .logo-bg {
  opacity: 0.4;
}
footer .autor a:hover svg .logo-aj {
  fill: #3a5167;
}

@media screen and (max-width: 660px) {
  .footer-wrapper {
    flex-direction: column;
    height: auto;
  }
  footer .copyright {
    display: block;
    text-align: center;
    line-height: 1.2rem;
    padding: 15px 0 0 0;
  }
  footer .autor {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 0 10px 0;
  }
  footer .autor span {
    padding: 0;
    display: none;
  }
  footer .autor svg.jakubca-logo {
    height: 50px;
    margin: 0 0 5px 0;
  }

}
@media screen and (max-width: 428px) {
  footer .copyright {
    max-width: 230px;
    margin: auto;
  }
}
