@charset "UTF-8";
* {
  --font1: Source Sans Pro;
  --font2: Quicksand;
  --lightgreen:#99ec99;
  --green:#257719;
  --darkgreen:#143b1a;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

ol, ul, menu {
  list-style: none;
}

:root {
  font-family: var(--font1), sans-serif;
  background-color: rgb(229, 229, 229);
}

/* Pasek nawigacyjny */
nav {
  position: sticky;
  top: 0px;
  height: 80px;
  background: rgb(255, 255, 255);
  display: flex;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0px 15px 25px -15px rgb(34, 42, 129);
  font-family: var(--font2);
}

#leftside {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  width: calc(100% - 50px);
  padding: 5px;
}

#leftside img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

#rightside {
  display: flex;
}

.hamburger {
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 50%;
  transform: translate(-5%, -50%);
  z-index: 2;
}

.line {
  width: 30px;
  height: 3px;
  background: black;
  margin: 5px;
}

.nav-links {
  position: fixed;
  background: rgb(255, 255, 255);
  height: 100vh;
  width: 100%;
  flex-direction: column;
  clip-path: circle(100px at 90% -10%);
  -webkit-clip-path: circle(10px at 90% -10%);
  transition: all 1.5s cubic-bezier(0.75, 0, 0.25, 1);
  pointer-events: none;
  top: 0;
}

.nav-links.open {
  clip-path: circle(5000px at 90% -10%);
  -webkit-clip-path: circle(5000px at 90% -10%);
  pointer-events: all;
}

.nav-links li {
  height: 25%;
  opacity: 0;
  text-align: center;
  line-height: 25vh;
}

.nav-links li a {
  font-size: 8vw;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links li:nth-child(1) {
  transition: all 0.5s ease 0.2s;
}

.nav-links li:nth-child(2) {
  transition: all 0.5s ease 0.4s;
}

.nav-links li:nth-child(3) {
  transition: all 0.5s ease 0.5s;
}

.nav-links li:nth-child(4) {
  transition: all 0.5s ease 0.6s;
}

li.fade {
  opacity: 1;
}

/* Dziękujemy za kontakt */
main {
  min-height: calc(100vh - 140px);
  margin: auto;
  padding-bottom: 100px;
}

h1 {
  padding: 150px 10px 20px;
}

h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  left: 0;
  background: linear-gradient(90deg, rgb(229, 19, 255) 0%, rgb(99, 69, 252) 30%, rgba(229, 19, 255, 0) 70%);
}

h3 {
  padding: 0px 10px 20px;
}

h3 a {
  text-decoration: none;
  color: rgb(73, 0, 162);
}

h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  background: linear-gradient(90deg, rgba(229, 19, 255, 0.6) 0%, rgba(229, 19, 255, 0) 30%);
}

div.credit {
  font-size: 10px;
  padding: 5px 10px 0px;
}

div.credit a {
  text-decoration: none;
  color: rgb(57, 57, 57);
}

footer {
  background: radial-gradient(circle, rgba(229, 134, 255, 0.711) 40%, rgb(151, 0, 252) 100%);
  text-align: center;
  font-weight: 600;
}

footer a {
  color: rgb(98, 14, 252);
  text-decoration: none;
}

footer a:hover {
  color: rgb(204, 14, 252);
}

@media (min-width: 576px) {
  nav {
    height: 10vh;
    height: 80px;
    background: rgb(255, 255, 255);
    display: flex;
    margin: auto;
  }
  main {
    max-width: 350px;
  }
  #leftside {
    display: flex;
    width: 200px;
    padding: 10px;
  }
  #leftside a {
    width: 100%;
  }
  #leftside a img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    max-width: 100%;
    margin-left: 10px;
  }
  #rightside {
    display: none;
  }
  .nav-links {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    list-style: none;
    background-color: transparent;
    -webkit-clip-path: none;
    height: 100%;
    width: 50%;
    min-width: 400px;
    margin: 0 0 0 auto;
    pointer-events: auto;
  }
  .nav-links li {
    height: 100%;
    line-height: 100%;
    opacity: 1;
  }
  .nav-links li a {
    color: black;
    line-height: 80px;
    padding: 10px;
    text-decoration: none;
    font-size: calc(12px + 1vw);
  }
  .nav-links li:hover a {
    color: rgb(115, 4, 200);
    font-size: 40px;
  }
  .nav-links li:nth-child(1) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(2) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(3) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(4) a {
    transition: all 0.3s ease-in-out 0s;
  }
  /* Dziękujemy za kontakt */
  main {
    background-color: transparent;
  }
  h1 {
    padding: 200px 10px 20px;
  }
}/*# sourceMappingURL=style-credits-page.css.map */