/*----- BASIC STYLES -----*/
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #070707;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
}

/*--- typography ---*/
h1 {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.5;
}

h2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
}

p,
li,
a {
  font-size: 1.7rem;
}

p,
li {
  line-height: 1.6;
}

.heading {
  padding: 1em 0 1.2em;
}

.heading-1 {
  color: #fff;
  text-align: center;
}

.heading-2 {
  color: #7C9545;
  text-align: center;
}

mark {
  color: #fff;
  padding: 0 .4em;
}

mark.green {
  background-color: #7C9545;
}

mark.yellow {
  background-color: #FBB042;
}

.text {
  margin-bottom: 1.7em;
}

.text:only-child,
.text:last-child {
  margin-bottom: 0;
}

.text a {
  border-bottom: 1px solid #070707;
}

strong {
  font-weight: 600;
}

.side-text {
  font-size: 1.4rem;
  line-height: 1.5;
}

/*--- links ---*/
a {
  color: #070707;
  text-decoration: none;
}


/*--- LAYOUT STYLES ---*/
/*--- header ---*/
.header {
  background-color: #fff;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  width: 100%;
  z-index: 999;
}

.site-identity a {
  cursor: pointer;
  display: block;
}

.logo {
  height: 50px;
}

.up {
  top: -50px;
}

/* menu */
.navbar {
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: flex;
  height: 50px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.menu {
  background-color: #fafafa;
  display: none;
  height: 100vh;
  left: 0;
  opacity: .98;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100vw;
}

.menu li:first-child {
  margin-top: 5em;
}

.menu a {
  cursor: pointer;
}

/* menutoggle */
.toggle,
.menuopen span::before,
.menuopen span::after {
  z-index: 999;
}

.toggle span,
.menuopen span {
  display: block;
  height: 5px;
  position: relative;
}

.menuopen span {
  width: 44px;
}

.toggle span {
  background-color: #070707;
  -webkit-transition: background-color .7s ease;
  -moz-transition: background-color .7s ease;
  -ms-transition: background-color .7s ease;
  -o-transition: background-color .7s ease;
  transition: background-color .7s ease;
  width: 37px;
}

.toggle span::before,
.toggle span::after {
  background-color: #070707;
  content: ' ';
  display: block;
  height: 5px;
  position: absolute;
  -webkit-transition: transform .3s ease;
  -moz-transition: transform .3s ease;
  -ms-transition: transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  width: 37px;
}

.toggle span::before {
  top: -13px;
}

.toggle span::after {
  bottom: -13px;
}

.menuopen span {
  background-color: transparent;
  -webkit-transition: background-color .7s ease;
  -moz-transition: background-color .7s ease;
  -ms-transition: background-color .7s ease;
  -o-transition: background-color .7s ease;
  transition: background-color .7s ease;
}

.menuopen span::before,
.menuopen span::after {
  background-color: #070707;
  content: ' ';
  display: block;
  height: 5px;
  position: absolute;
  -webkit-transition: transform .3s ease;
  -moz-transition: transform .3s ease;
  -ms-transition: transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  width: 44px;
}

.menuopen span::before {
  -webkit-transform: translateY(13px) rotateZ(45deg);
  -moz-transform: translateY(13px) rotateZ(45deg);
  -ms-transform: translateY(13px) rotateZ(45deg);
  -o-transform: translateY(13px) rotateZ(45deg);
  transform: translateY(13px) rotateZ(45deg);
}

.menuopen span::after {
  -webkit-transform: translateY(-13px) rotateZ(-45deg);
  -moz-transform: translateY(-13px) rotateZ(-45deg);
  -ms-transform: translateY(-13px) rotateZ(-45deg);
  -o-transform: translateY(-13px) rotateZ(-45deg);
  transform: translateY(-13px) rotateZ(-45deg);
}

.menu a {
  font-size: 1.5rem;
  text-transform: uppercase;
}

/*--- main content ---*/
/* uvp */
.uvp {
  background: url('../assets/hero-image.jpg') no-repeat top center;
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 2em;
  width: 100%;
}

.hero-subheading {
  color: #fff;
  text-align: center;
}

.content {
  margin: 0 1.5rem 2em;
  padding-top: 5rem;
}

ol {
  margin-left: 1.7em;
}

ol li {
  list-style-position: outside;
  list-style-type: decimal;
}

ol span {
  font-weight: 900;
}

.arrow::after {
  content: '→';
}

.add::after {
  content: '+';
}

span.arrow {
  color: #FBB042;
}

span.add {
  color: #7C9545;
}

.contact .text {
  margin-bottom: 1.3rem;
  text-align: center;
}


/* about */

/*--- footer ---*/
.content.footer {
  margin-bottom: 0;
}

.footer {
  padding: 1em 0;
}

.zero-waste-logo {
  height: 88px;
  width: 90px;
}

.zero-waste-logo img {
  height: auto;
  width: 100%;
}

.tenders-logo {
  bottom: 0;
  height: 138px;
  position: fixed;
  right: 0;
  width: 200px;
}

.tenders-logo img {
  width: 100%;
}

.copyright {
  font-size: 1rem;
}


/*-------------------*/
/*------- 600 -------*/
/*-------------------*/
@media (min-width: 600px) {

  /*----- BASIC STYLES 600-----*/

  /*--- LAYOUT STYLES 600---*/
  /*--- header 600 ---*/
  /* menu 600 */

  /*--- main content 600 ---*/
  /* uvp 600 */
  /* about 600 */
  /* service 600 */
  /* contact 600 */

  /*--- footer 600 ---*/
}

/*-------------------*/
/*------- 900 -------*/
/*-------------------*/
@media (min-width: 900px) {

  /*----- BASIC STYLES 900-----*/
  .heading-1 {
    font-size: 4.7rem;
  }

  p,
  li,
  a {
    font-size: 1.9rem;
  }

  p,
  li {
    line-height: 1.7;
  }

  /*--- LAYOUT STYLES 900---*/
  /*--- header 900 ---*/
  /* menu 900 */
  .menu {
    background-color: transparent;
    display: -webkit-flex !important;
    display: flex !important;
    height: auto;
    position: static;
    text-align: left;
    width: auto;
  }

  .menu li {
    margin-right: 2rem;
  }

  .menu li:first-child {
    margin-top: 0;
  }

  .menu li:last-child {
    margin-right: 0;
  }

  /* menutoggle 900 */
  .toggle {
    display: none;
  }

  /*--- main content 900 ---*/
  /* uvp 900 */

  .content {
    margin-left: auto;
    margin-right: auto;
    width: 870px;
  }

  /* about 900 */
  /* service 900 */
  .usp {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .usp div {
    -webkit-flex: 1 1;
    flex: 1 1;
    margin-right: 1.5rem;
  }

  .usp div:last-child {
    margin-right: 0;
  }
  /* contact 900 */

  /*--- footer 900 ---*/
  .tenders-logo {
    height: 241px;
    width: 349px;
  }

  /* social 900 */
}

/*-------------------*/
/*------- 1200 -------*/
/*-------------------*/
@media (min-width: 1200px) {

  /*----- BASIC STYLES 1200-----*/
  .heading-1 {
    font-size: 6rem;
  }

  .heading-2 {
    font-size: 3.7rem;
  }

  /*--- LAYOUT STYLES 1200---*/
  /*--- header 1200 ---*/
  .navbar {
    height: 90px;
    padding: 0 2.7rem;
  }

  .logo {
    height: 90px;
  }

  .up {
    top: -90px;
  }

  /* menu 1200 */

  /*--- main content 1200 ---*/
  /* uvp 1200 */
  .uvp {
    margin-bottom: 7rem;
  }

  .content {
    margin-bottom: 5rem;
    width: 900px;
    padding-top: 7rem;
  }

  /* about 1200 */
  /* service 1200 */
  .usp div {
    margin-right: 2rem;
  }

  /* contact 1200 */

  /*--- footer 1200 ---*/
}
.listfix li
{
	list-style:disc;
	padding-left:5px;
	margin-left:25px;
}
#videolink
{
	display:none;
}
#video
{
	width:570px;
	margin:auto;
	padding:10px;
}
html,body
{
	scroll-behavior:smooth;
}
.langlink
{
	font-weight:700;
	color:#7C9545;
}
.gallerygrid
{
	margin-bottom:35px !important;
	text-align:center;
	margin:auto;
}
.gallerimg
{
	max-width:180px;
	margin:10px;
	transition:0.15s;
	border-bottom:5px solid #FBB042;
}
.gallerimg:hover
{
	border-bottom:5px solid #7C9545;
}
.gallerytitle
{
	font-size:1.9rem;
	border-left:6px solid #7C9545;
}
.yellow.subtitle
{
	border-left:6px solid #7C9545;
}
@media(max-width:1000px)
{	
	.video
	{
		display:none;
	}
	#video
	{
		display:none;
	}
	#videolink
	{
		display:block;
	}
	#videolink
	{
		display:block !important;
		font-size:20px;
		margin-bottom:20px;
		text-decoration:underline;
		text-decoration-color:white;
	}
	.gallerimg
	{
		max-width:80px;
		margin:5px;
		transition:0.15s;
	}
}