* {
  --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;
}

/*---------- Formularz Kontaktowy -----------*/
.contact {
  width: 90vw;
  margin: auto;
  padding-bottom: 100px;
}

.contact-header {
  font-family: var(--font2);
  font-size: calc(10px + 5vw);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  line-height: 120px;
}

.contact-header h1 {
  font-size: calc(15px + 2vw);
}

.contact .icon {
  margin-bottom: 30px;
  font-size: min(14px, 3vw);
  width: 100%;
  text-align: center;
  margin: auto 0px;
  height: calc(20px + 25vw);
  display: flex;
  justify-content: center;
  text-shadow: 0px 5px 8px rgb(66, 68, 90);
}

.contact span {
  display: block;
  text-align: center;
}

.contact a:link {
  text-decoration: none;
  color: black;
  font-family: var(--font2);
}

.contact a:visited {
  color: black;
}

.contact .icon img {
  width: 11vw;
}

form {
  text-align: center;
  font-family: var(--font1);
  background: linear-gradient(0deg, rgb(0, 3, 149) 0%, rgba(193, 90, 165, 0.8) 100%);
  padding-top: 25px;
  padding-bottom: 3px;
  border-radius: 40px;
  margin: 20px;
  box-shadow: 0px 0px 40px 0px rgb(0, 0, 0);
}

form input {
  display: block;
  margin: 10px auto;
  width: calc(100% - 80px);
  height: 40px;
  text-align: center;
  border-radius: 5px;
  font-family: var(--font1);
  border: none;
  border-bottom: #ffffff solid 2px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5843137255);
}

form input::placeholder {
  color: rgba(255, 255, 255, 0.5843137255);
}

form textarea {
  width: calc(100% - 80px);
  height: 150px;
  text-align: center;
  border-radius: 5px;
  font-family: var(--font1);
  border: none;
  border-bottom: #ffffff solid 2px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6039215686);
  line-height: 30px;
}

form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6039215686);
  line-height: 30px;
}

form input:last-child {
  width: 30%;
  font-family: var(--font2);
  background-color: #ffffff;
  color: rgb(98, 14, 252);
}

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: 1200px;
    margin: auto;
    min-height: calc(100vh - 140px);
  }
  #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;
  }
  /*---------- Formularz Kontaktowy -----------*/
  .contact-header {
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    line-height: 150px;
  }
  .contact {
    max-width: 100%;
    display: flex;
    margin: auto;
    justify-content: space-evenly;
  }
  .contact-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    max-width: 170px;
  }
  .contact-icon .icon {
    height: 100px;
    display: flex;
    align-items: center;
  }
  .contact-icon a {
    font-size: 100%;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 700px;
  }
  .contact-icon .icon img {
    width: 25%;
  }
  form {
    width: 100%;
    border-radius: 40px;
    padding-top: 20px;
  }
  form input {
    display: block;
    margin: 15px auto;
    width: calc(100% - 70px);
    height: 30px;
    text-align: center;
    border-radius: 5px;
    font-family: var(--font1);
  }
  form textarea {
    width: calc(100% - 70px);
    height: 150px;
    text-align: center;
    border-radius: 5px;
    font-family: var(--font1);
    resize: none;
  }
  form input:last-child {
    width: 50%;
    max-width: 150px;
    font-family: var(--font2);
    background-color: #ffffff;
    color: rgb(98, 14, 252);
    transition: all 0.3s ease-in-out 0s;
  }
}
form input:last-child:hover {
  background-color: #000000;
  color: #ffffff;
  border: #000000;
}/*# sourceMappingURL=style-contact.css.map */