* {
  --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(240, 240, 240);
}

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

/* O firmie */
h1 {
  font-family: var(--font2);
}

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%);
}

div.pro-box {
  margin: 0 20px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

h2 {
  margin-top: 50px;
  font-family: var(--font2);
}

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

div.pro {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

div.pro-icon {
  height: 80px;
  padding: 10px;
}

div.pro-icon img {
  width: 50px;
  margin-right: 20px;
}

div.pro-text {
  font-weight: 200;
  padding-right: 10px;
}

div.about-ceo span:first-child {
  display: flex;
  font-weight: 800;
  font-size: 38px;
  margin-top: 40px;
}

span {
  display: flex;
  margin: 30px 0;
  font-weight: 300;
}

img {
  display: flex;
  width: 80vw;
}

main {
  padding: 20px;
}

div.ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

div.ceo-reverse {
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.ceo img {
  border-radius: 65% 35% 66% 34%/41% 41% 59% 59%;
  box-shadow: 15px 0px 50px 0px rgba(0, 0, 0, 0.5);
}

div.ceo-reverse img {
  border-radius: 42% 58% 59% 41%/66% 41% 59% 34%;
  box-shadow: -15px 0px 50px 0px rgba(0, 0, 0, 0.5);
}

ul.diet-list li {
  list-style-type: circle;
  list-style-position: inside;
  line-height: 2;
}

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: 600px) {
  nav {
    height: 10vh;
    height: 80px;
    background: rgb(255, 255, 255);
    display: flex;
    margin: auto;
  }
  main {
    max-width: 900px;
    margin: auto;
  }
  #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;
  }
  /* O firmie */
  img {
    width: 70%;
  }
  div.about-ceo span:first-child {
    display: block;
    font-weight: 800;
    font-size: 38px;
    margin-top: 40px;
  }
  span {
    display: block;
    margin: 30px 0;
  }
  div.text {
    font-weight: 300;
  }
}
@media (min-width: 1200px) {
  main {
    max-width: 1200px;
  }
  div.ceo {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    margin: 50px 0;
  }
  div.ceo-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
  }
  div.about-ceo {
    display: flex;
    flex-direction: column;
  }
  div.about-ceo span:first-child {
    font-weight: 800;
    font-size: 30px;
    line-height: 100px;
    display: flex;
    flex-direction: row-reverse;
  }
  div.about-ceo span:last-child {
    font-weight: 100;
    display: flex;
  }
  span {
    display: flex;
    align-items: center;
    width: 500px;
    font-size: 23px;
  }
  div.text {
    font-size: 23px;
  }
  img {
    width: 500px;
  }
  div.ceo img {
    margin-left: 50px;
  }
  div.ceo-reverse img {
    margin-right: 50px;
  }
}/*# sourceMappingURL=style-index.css.map */