/*
    RESET
    Reset found @ https://alligator.io/css/minimal-css-reset/
*/
html {
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

*, *:before, *:after {
  box-sizing: inherit; }

body, h1, h2, h3, h4, h5, h6, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal; }

ol, ul {
	/* [disabled]list-style: none; */
}

img {
  max-width: 100%;
  height: auto; }

/* RESET */
/* align items flex property on mobile */
body.no-scroll {
  overflow: hidden; }

/* Navigation */
.nav {
	position: fixed;
	width: 100%;
	height: auto;
	z-index: 5;
	transition: all 0.5s ease-in-out;
	font-weight: 400;
   }

.company-name {
	
	font-weight: bold;
	letter-spacing: 3px;
	color: #45B229;
	text-transform: uppercase;
}

.nav--active .nav {
  opacity: 1;
  background: #292f36; }

.nav__list {
	display: flex;
	align-items: baseline;
	/* [disabled]text-transform: none; */
	justify-content: space-around;
	flex-direction: row;
	padding: 1em 0.5em;
}

.nav__item {
  list-style-type: none; }

.nav__link {
	font-size: 1em;
	text-decoration: none;
	color: #45B229;
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}

.nav__link:hover {

}

/* navigation icon */
.nav__trigger {
	display: none;
	position: fixed;
	width: 30px;
	height: 25px;
	right: 100px;
	top: 50px;
	z-index: 200;
	color: #45B229;
}

@media (max-width: 2000px) {
  .nav__trigger {
	display: block;
	top: 50px;
	right: 30px;
}

  .nav {
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
	
	}

  .nav__item {
    text-align: left;
    padding: 30px 10px; }

  .nav__list {
    margin: 0;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start; }

  .nav__link {
    opacity: 1;
	 } 
.nav--active .nav__trigger {
  opacity: 1; 
  }

.nav__icon {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 5px;
	background-color: #F5B136;
	color: #ED5629;
	transition-property: background-color, transform;
	transition-duration: 0.5s;
}

.nav__icon:before, .nav__icon:after {
	content: '';
	display: block;
	width: 40px;
	height: 5px;
	position: absolute;
	background-color: #F5B136;
	transition-property: margin, transform;
	transition-duration: background-color, transform;
}

.nav__icon:before {
  margin-top: -10px;
   }
  

.nav__icon:after {
  margin-top: 10px; }

.nav__link {
  transition-delay: 500ms;
   }

.nav--active .nav__link {
  opacity: 1;
   }

.nav--active .nav {
  transition: all 300ms ease-in-out;
  transform: translateX(0); 
  
  }
  
  /* TUTAJ ZMIENIAMY HAMBURGERA */

.nav--active .nav__icon {
	background-color:#292f36;
	opacity:1;
}

.nav--active .nav__icon:before {
	margin-top: 0;
	transform: rotate(45deg);
	background-color: #F5B136;
}

.nav--active .nav__icon:after {
	margin-top: 0;
	transform: rotate(-45deg);
	background-color: #F5B136;
}

.nav.scrolled {
  background: #38334C;
  transition: background 0.5s ease-in-out;
  -webkit-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.62);
  -moz-box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.62);
  box-shadow: 0px 5px 7px -1px rgba(0, 0, 0, 0.62); }

.nav__list.scrolled {
  padding: 5px; }


.bg {
  height: 100vh;
  width: 100vw;
   }

.blue {
  background: #292f36; }

.black {
  background: #292f36; }

.white {
  background: #F1A300; }
  


/*# sourceMappingURL=style.css.map */


