:root 
{
	--blue: #171716;
	--orange: #e46800;
	--light: #f0f2f7;
	--dark: #171716;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.1em;
	color: var(--blue);
	font-family: 'Montserrat';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--blue);
 	color: #fff; 
}

::-moz-selection 
{
  	background-color: var(--blue);
 	color: #fff;
}

h1, h2, h3
{
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 2.5em;
}

h2
{
	font-size: 1.6em;
	color: var(--orange);
}

h3
{
	font-size: 1.3em;
}

h1 + p
{
	font-size: 1.5em;
	margin-top: 1em;
}

h2 + p, h2 + ul, h3 + p, h3 + ul
{
	margin-top: 1em;
}

p + p
{
	margin-top: 1em;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: var(--orange);
	text-align: center;
}

.wrap
{
	max-width: 1200px;
	padding: 0px 100px;
	display: block;
	margin: auto;
}

#logo
{
	height: 150px;
	margin-bottom: -10px;
	padding: 15px 0px;
}

#bgImg
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -10;
	background-size: cover;
	background-position: center;
	opacity: 1;
}

.text
{
	margin: 100px 0px;
}

#contentBox
{
	padding: 65px 80px;
	background-color: #fff;
	text-align: center;
}

.text p a
{
	color: var(--blue);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
}

.text p a:hover
{
	border-bottom: 1px solid var(--blue);
}

.gallery
{
	width: calc(100% + 10px);
	margin-left: -10px;
	margin-bottom: -10px;
	display: flex;
	flex-wrap: wrap;
	padding: 65px 0px;
}

.galleryItem
{
	cursor: zoom-in;
	width: calc(25% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
}

.galleryImg
{
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
}

.divider
{
	width: 100%;
	height: 50px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: 60px 0px;
}

#footer
{
	padding: 40px 0px;
	background-color: var(--blue);
	color: #fff;
	text-align: center;
}

strong
{
	font-weight: 700;
}

.text ul li
{
	list-style: none;
}

@media all and (max-width: 600px){
	.galleryItem
	{
		width: calc(50% - 10px);
	}
}

@media all and (max-width: 750px){
	.wrap
	{
		padding: 0px 40px!important;
	}

	.text
	{
		margin: 40px 0px!important;
	}

	#contentBox
	{
		padding: 35px 40px;
	}

	.gallery
	{
		padding: 40px 0px;
	}

	#logo
	{
		height: 90px!important;
	}

	h1
	{
		font-size: 1.5em!important;
	}

	h2
	{
		font-size: 1.25em!important;
	}

	h3
	{
		font-size: 1.1em!important;
	}

	h1 + p
	{
		font-size: 1.15em!important;
	}

	.divider
	{
		height: 45px;
		margin: 40px 0px;
	}
}

@media all and (max-width: 1050px){
	.wrap
	{
		padding: 0px 60px;
	}

	.text
	{
		margin: 60px 0px;
	}

	#logo
	{
		height: 120px;
		padding: 10px 0px;
	}

	#footer
	{
		padding: 25px 0px;
	}

	h1
	{
		font-size: 2.2em;
	}

	h2
	{
		font-size: 1.4em;
	}

	h3
	{
		font-size: 1.2em;
	}

	h1 + p
	{
		font-size: 1.3em;
	}
}