@charset "UTF-8";
/* CSS Document */
body {
	margin: 0;
  background-color: black;
  color: white;
  font-family: 'Poppins', sans;
}
a:link {
  text-decoration: none;
  color: inherit;
}
.contact a:hover {
/*
  background-color: rgba(255, 242, 75, 1.00);
	color: black;
*/
	text-decoration: underline;
}
header {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.logo img {
  max-height: 75px;
}
.headline {
  display: flex;
  align-items: top;
  padding: 50px;
}
h1 {
  max-width: 750px;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
}
.scrollwrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 50px;
  background-color: black;
/*  padding-top: 10px;*/
  padding-bottom: 10px;
  padding-right: 10px;
  font-size: 0px;
}
.scrollimage {
  display: inline-block;
  max-height: 100%;
  position: relative;
  padding-left: 10px;
}
.scrollimage img {
  scroll-snap-align: start;
  max-height: 100%;	
}

.scrollimage video {
	scroll-snap-align: start;
  max-height: 100%;	
	color-profile: sRGB;
}

.credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.10);
  color: white;
  padding-left: 5px;
  padding-right: 5px;
}
.credit p {
  font-size: .75rem;
}
.services {
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
  padding-left: 50px;
  padding-bottom: 50px;
}
.card {
  width: 33%;
  padding-right: 50px;
}
.cardpart {
  padding-top: 8px;
  padding-bottom: 8px;
}
p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.end {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}
.endtype {
  max-width: 675px;
  margin-bottom: 50px;
}

svg {
	fill:red;
}

.icons img {
	display:block;
	float: right;
	margin-left: 10px;
	opacity: 30%;
}

.icons img:hover {
	opacity: 100%;
	transition-duration: 1.5s;
}



@media screen and (max-width: 750px) {
  
	header {
    padding: 30px 30px 40px 30px;
  }

	.headline {
		padding: 30px;
	}	
	
  .scrollwrapper {
    height: 300px;
    scroll-padding: 30px;
  }
  .scrollimage img {
    height: 300px;
  }
	
	 .scrollimage video {
    height: 300px;
		 width: 225px;
  }
	
  .credit {
    display: none;
  }
  .services {
    /*    -webkit-flex-direction: column;*/
    flex-direction: column;
    padding-left: 30px;
    padding-left: 30px;
    padding-top: 30px;
    padding-right: 15px;
    padding-bottom: 20px;
  }
  .card {
    width: 100%;
    box-sizing: border-box;
/*	^ allows padding that doesn't add to width of 100%*/
    padding-right: 20px;
    margin-bottom: 25px;
/*	 *type and icon on one line*/
	 display: flex;
	flex-wrap: wrap;
	  align-items: center;
  }
  .cardpart img {
/*    max-width: 60px;*/
	  max-width: 55px;
	  padding-right: 15px;
  }
	
  .end {
/*	  border-top: 1px solid white;*/
	display: flex;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
  }
	
	
	
}
@media screen and (max-width: 600px) {

	header {
		display: block;
/*
		display: flex;
		flex-wrap: wrap;
*/
	}
	
  .logo img {
/*    display: none;*/
	   max-height: 35px;
	  padding-top: 20px;
	}
	
	  .headline {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .scrollwrapper {
    height: 250px;
    /*    margin-top: 15px;*/
  }
  .scrollimage img {
    height: 250px;
  }
	
	 .scrollimage video {
    height: 250px;
		 width: 187.5px;
  }
}