@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-align: left;
}
body {
	margin: 0;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: white;
	font-weight: 300;
	background-color: #34b44a;
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
	scrollbar-width: none; /* for Firefox */
	overflow-y: scroll;
}
body::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
#container {
	width: 100%;
	height: 100%;
	/*CSS Smooth Scroll */
	overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
	scrollbar-width: none; /* for Firefox */
	overflow-y: scroll;
}
#container::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
#navbar #logo, #navbar #logo-mobile {
	transition: 0.4s;
	width: 300px;
}
#navbar {
	overflow: hidden;
	padding: 10px 50px;
	transition: 0.4s;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 99;
	background-color: #34b44a;
}
#navbar ul {
	list-style: none;
	width: 100%;
	text-align: center;
	padding: 0;
}
#navbar ul li {
	display: inline-block;
	margin: 0;
	padding: 1rem;
	vertical-align: middle;
}
#navbar ul li#logo-container {
	padding: 0 !important;
}
#navbar ul li a {
	text-decoration: none;
	text-transform: uppercase;
	color: white;
	border-bottom: 3px solid transparent;
	text-align: center;
	padding: 12px;
	text-decoration: none;
	font-size: 18px;
	line-height: 25px;
}
#navbar a:hover, #navbar a:focus {
	color: white;
	border-bottom: 3px solid white;
}
section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: left;
	width: 100%;
	min-height: 100vh;
	padding: 0 10%;
	padding-top: 140px;
}
section h1 {
	font-size: 4rem;
	margin-bottom: 40px;
	text-align: center;
}
section h1 span {
	color: #c2e8c8;
}
section h2 {
	margin-bottom: 10px;
}
section h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
section p, section li {
	font-size: 1.2rem;
}
section li {
	margin-bottom: 12px;
}
ul.check-list {
	padding-left: 30px;
}
ul.check-list li {
	list-style: none;
}
ul.check-list li:before {
	content: '\f058';
	font-family: 'FontAwesome';
	float: left;
	margin-left: -1.5em;
	color: #ffffff;
}
/* flex container and items */
.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex-item {
	flex-basis: 20%;
	padding: 20px;
}
/* thumb code */
.thumb-container {
	position: relative;
	background-color: transparent;
	border-radius: 3px;
	height: 100%;
	align-items: center;
	display: flex;
}
.thumb-container img {
	display: block;
	max-width: 100%;
	margin: auto;
}
.thumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s;
	backdrop-filter: blur(5px);
	padding: 10px;
}
.thumb-overlay > * {
	transform: translateY(60px);
	transition: transform 0.25s;
}
.thumb-overlay:hover, .thumb-overlay:focus {
	opacity: 1;
	transform: translateY(0px);
}
.thumb-overlay:hover > *, .thumb-overlay:focus > * {
	opacity: 1;
	transform: translateY(0px);
}
.thumb-copy a {
	color: #B1B1B1;
	display: inline-block;
	padding: 10px 0 5px;
	text-decoration: none;
	border-bottom: 1px solid #B1B1B1;
}
.thumb-copy a:hover {
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
	font-style: italic;
}
/*lightbox */
#lightbox {
	position: fixed; /* keeps the lightbox window in the current viewport */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	text-align: center;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;

}
#lightbox p {
	text-align: right;
	color: #fff;
	margin-right: 20px;
	font-size: 12px;
}
#lightbox img {
	box-shadow: 0 0 25px #111;
	max-width: 100%;
	max-height: 100vh;
	background-color: white;
}
/*misc */
.navbar-mobile {
	display: none;
}
.btn {
	font-size: 1.2rem;
	padding: 15px 30px;
	border-radius: 10px;
	background-color: #EB7B00;
	text-decoration: none;
	color: #ffffff;
	display: inline-block;
}
.btn:hover, .btn:focus {
	background-color: #9E5708;
	text-decoration: underline;
	color: #ffffff;
}
section#home {
	padding-top: 150px;
}
section#home .flex-item {
	flex-basis: 50%;
}
section#branding .flex-item {
	flex-basis: 50%;
}
section#digital .flex-item {
	flex-basis: 50%;
}
section#digital .flex-item:first-of-type {
	flex-basis: 100%;
}
section#motion .flex-item {
	flex-basis: 50%;
}
.video-container {
	text-align: center;
}
.video-container .video-copy {
	transform: translateY(-60px);
	transition: transform 0.25s;
	opacity: 0;
}
.video-container:hover .video-copy, .video-container:focus .video-copy {
	transform: translateY(0px);
	opacity: 1;
}
iframe {
	width: 100%;
}
footer {
	margin-top: 100px;
	text-align: center;
	font-size: 1rem;
	padding: 10px;
}
footer p {
	text-align: center;
}
footer, footer a {
	color: #96dda2;
}
footer a:hover, footer a:focus {
	text-decoration: none;
}
img#logo-mobile {
	cursor: pointer;
}

@media screen and (min-width: 1071px) {
ul#navigation {
	display: block !important;
}
}

@media screen and (max-width: 1550px) {
section#logos .flex-item, section#print .flex-item, section#website .flex-item {
	flex-basis: 33%;
}
}

@media screen and (max-width: 1450px) {
#navbar #logo {
	max-width: 100px;
}
#navbar ul li {
	padding: 1rem .5rem;
}
#navbar ul li a {
	font-size: 16px;
}
section#home {
	margin-top: 0;
	padding-top: 0;
}
}

@media screen and (max-width: 1070px) {
#navbar {
	padding: 10px 0;
}
.navbar-mobile {
	display: block;
}
#navbar #logo-mobile {
	margin: auto;
}
#navbar ul #logo-container {
	display: none;
}
#navbar ul {
	transition: transform 1s;
	-webkit-transition: transform 1s;
	display: none;
}
#navbar ul li {
	float: none;
	display: block;
	text-align: center;
}
section#home {
	padding-top: 310px;
}
}

@media screen and (max-width: 1060px) {
section#branding .flex-item {
	flex-basis: 50%;
}
section#logos .flex-item, section#print .flex-item, section#website .flex-item {
	flex-basis: 33%;
}
.thumb-copy h3 {
	font-size: 1.5rem;
}
.thumb-copy p, .thumb-copy a {
	font-size: .8rem;
}
}

@media screen and (max-width: 850px) {
section#logos .flex-item, section#print .flex-item, section#website .flex-item {
	flex-basis: 50%;
}
}

@media screen and (max-width: 580px) {
.flex-item {
	flex-basis: 100% !important;
}
section {
	padding: 140px 5% 100px;
}
section#home {
	padding-top: 310px;
}
section h1 {
	font-size: 3rem;
}
.thumb-copy h3 {
	font-size: 2rem;
}
.thumb-copy p, .thumb-copy a {
	font-size: 1.2rem;
}
section#branding .flex-item {
	min-height: 200px;
	padding: 0 20px;
}
section#digital .flex-item {
	min-height: 250px;
	padding: 0 20px;
}
.video-container .video-copy {
	opacity: 1;
	transform: translateY(0);
}
}

@media screen and (max-height: 760px) {
section#home {
	padding-top: 320px;
}
}

@media screen and (max-height: 760px) and (max-width: 1450px) {
section#home {
	padding-top: 130px;
}
}

@media screen and (max-height: 760px) and (max-width: 1070px) {
section#home {
	padding-top: 310px;
}
}