/*-------------
 	General
-------------*/

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

html{
	font: 1em 'Archivo Narrow', sans-serif;
	color: #000000;
}

ul, nav{
	list-style: none;
}

font-family: 'Archivo Narrow', sans-serif;
font-family: 'Archivo', sans-serif;
font-family: 'Archivo Black', sans-serif;


a:link{
	text-decoration: none;
	color: #C50003;
	cursor: pointer;
	opacity: 1;
}

a:hover{
	text-decoration: underline, overline;
	color: inherit;
	background-color: #C50003;
	opacity: 1;
}

a:active{
	text-decoration: none;
	color: #8A37D3;
	cursor: pointer;
	opacity: 1;
}

a:visited{
	text-decoration: none;
	color: #96D71C;
	cursor: pointer;
	opacity: 1;
}

p{
	font: 1.5em 'Archivo Narrow', sans-serif;
	color: inherit;
	line-height: 1.1;
}

h1{
	position: absolute;
	width: auto;
	height: auto;
	left: -9999px;
	top: -9999px;
}

h2{
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}

li{
	font: 1.5em 'Archivo Narrow', sans-serif;
	display: inherit;
	width: inherit;
	padding: inherit;
}

li a{
	text-decoration: inherit;
	color: inherit;
}

li a:hover{
	text-decoration: inherit;
	color: inherit;
}

li a:active{
	text-decoration: inherit;
	color: inherit;
}

li a:visited{
	text-decoration: inherit;
	color: inherit;
}

h2 a{
	text-decoration: inherit;
	color: inherit;
}

h2 a:hover{
	text-decoration: inherit;
	color: inherit;
}

h2 a:active{
	text-decoration: inherit;
	color: inherit;
}

h2 a:visited{
	text-decoration: inherit;
	color: inherit;
}

p a{
	text-decoration: none;
	color: #000000;
	background-color: #FFCDD4;
}

p a:hover{
	text-decoration: underline;
	color: #FFFFFF;
}

p a:active{
	text-decoration: underline;
	color: #FFFFFF;
}

p a:visited{
	text-decoration: inherit;
	color: #FFFFFF;
	background-color: #7836CA;
}

a.btn{
	color: #ffffff;
	border-radius: 4px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #C50003;
	font-weight: 800;
	text-align: center;
}

a.btn:hover{
	color: #000000;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #FFFFFF;
	font-weight: 800;
	text-align: center;
}

hr{
	width: 70%;
	height: 2px;
	background-color: #C50003;
	border: 0;
	margin-bottom: 10%;
}

section{
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 125px 100px;
}

section h3.title{
	color: #C50003;
	font: 3.75em 'Archivo Black', sans-serif;
	margin-bottom: 35px;
	text-align: center;
	text-shadow: 0.08em 0.08em 0.08em #bcbcbc;
	line-height: 0.5;
}

section h4.title{
	color: #7F0205;
	font: 3em 'Archivo Black', sans-serif;
	margin-bottom: 35px;
	text-align: center;
	text-shadow: 0.08em 0.08em 0.08em #bcbcbc;
	line-height: 0.5;
}

section h5{
	font: 1.75em 'Archivo Narrow', sans-serif;
	max-width: 800px;
	text-align: left;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 1;
}

section h5.title{
	font: 1.75em 'Archivo Narrow', sans-serif;
	font-weight: 600;
	max-width: 800px;
	text-align: left;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 1;
}

section p{
	font: 1.5em 'Archivo Narrow', sans-serif;
	max-width: 800px;
	text-align: left;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 1.1;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

ul.social-inline li{
	display: inline;
	width: 100%;
	padding: 0.5%;
}

ul.social-inline a:hover{
	color: #ffffff;
}

ul.footer-nav a:hover{
	color: #000000;
	background-color: #ffffff;
}

ul.social-links a:hover{
	color: #000000;
	background-color: #ffffff;
}

@media (max-width: 1000px){

	section{
		padding: 100px 50px;
	}

}

@media (max-width: 600px){

	section{
		padding: 80px 30px;
	}

	section h3.title{
		font: 3em;
		line-height: 0.9;
	}

	section h4.title{
		font: 2.75em;
		line-height: 0.9;
	}

	section h5{
		font: 1.25em;
		line-height: 1;
	}

	section h5.title{
		font: 1.25em;
		line-height: 1;
	}

	section p{
		font: 1em;
		line-height: 1.1;
	}

	ul.social-inline li{
		display: flex;
		width: 100%;
		padding: 0.5%;
	}

}


/*-------------
 	Header
-------------*/

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	padding: 40px 140px 0;
}

header h1{
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 1.5em;
	z-index: 15;
	width: 100%;
	display: flex;
	text-align: center;
	align-items: center;
}

header h2{
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 1.5em;
}

header nav{
	display: flex;
}

header nav li{
	margin: 0 15px;
}

header nav li:first-child{
	margin-left: 0;
}

header nav li:last-child{
	margin-right: 0;
}

.header-left {
	position: relative;
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #000000;

}

.header-center {
	position: relative;
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #000000;

}

.header-right {
	position: relative;
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #000000;

}

.logo {
	top: 0;
	left: 0;
	z-index: 11;
	width: 80%;
	height: 80%;
	display: flex;
	justify-content: space-between;
	align-items: center;

}





@media (max-width: 1000px){
	header{
		padding: 20px 50px;
	}
}


@media (max-width: 700px){
	header{
		flex-direction: column;
	}

	header h2{
		margin-bottom: 15px;
	}
}



/*----------------
 	Hero Section
----------------*/

.hero{
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #ffffff;
	z-index: -1;
}

.hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.8;
}

.hero h2{
	font: 4em 'Archivo Black', sans-serif;
	text-shadow: 0.04em 0.04em 0.04em #000000;
	margin-bottom: 15px;
}

.hero h3{
	font: 1.5em 'Archivo Narrow', sans-serif;
	margin-bottom: 40px;
}

.hero a.btn{
	padding: 20px 46px;
}

@media (max-width: 800px){

	.hero{
		min-height: 600px;
	}

	.hero h2{
		font-size: 4em;
		margin-bottom: 1%;
	}

	.hero h3{
		font-size: 1.5em;
	}

	.hero a.btn{
		padding: 15px 40px;
	}

}



/*--------------------
 	Our Work Section
---------------------*/

.оur-work{
	position: relative;
	padding: 10%;
}

.popout-menu {
  position: absolute;
  visibility: hidden;
	height: 150%;
	width: 150%;
  left: 0%;
	top: auto;
	background-color: #bcbcbc;
	background-clip: content-box;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	/* box-shadow: 0.5em 0.5em 0.5em 0.5em #bcbcbc; */
}

.our-work .grid li{
	padding: 2%;
	height: 350px;


	background-clip: content-box;
	background-size: cover;
	background-position: center;
	opacity: 0.5;

	transition: transform .2s ease-in-out;
}

.our-work .grid li:hover {
	z-index: 200;
	transform: scale(1.1);

	opacity: 1;
}

.our-work .grid li:hover > .popout-menu {
	z-index: 210;
	visibility: visible;
	opacity: 1;
}


.our-work .grid li.small{
	flex-basis: 40%;
}

.our-work .grid li.large{
	flex-basis: 60%;
}

.our-work .grid li.wide{
	flex-basis: 100%;
}

.our-work p{
	position: absolute;
	top: 0%;
	width: 80%;
	font: 1.5em 'Archivo Narrow', sans-serif;
	color: #FFFFFF;
	background-color: #000000;
	text-align: left;
}

@media (max-width: 1000px){

	.our-work .grid li.small,
	.our-work .grid li.large
	.our-work .grid li.wide{
		flex-basis: 100%;
	}

	.our-work p{
		position: absolute;
		top: 0%;
		width: 100%;
		font: 0.75em 'Archivo Narrow', sans-serif;
		color: #FFFFFF;
		background-color: #000000;
		text-align: left;
	}

	.our-work h5{
		font: 1.75em 'Archivo Narrow', sans-serif;
	}


	.our-work .grid li:hover > .popout-menu {
		z-index: 210;
		height: 100%;
		width: 100%;
		left: 0%;
		top: 100%;
	}

	.popout-menu {
		height: 100%;
		width: 100%;
	  left: 0%;
		top: 100%;
		background-clip: content-box;
		background-size: cover;
		background-position: center;
		/* box-shadow: 1em 1em 1em #bcbcbc; */
	}

}





/*----------------------
 	Features Section
----------------------*/

.features{
	background-color: #f7f7f7;
}

.features .grid li{
	padding: 0 30px;
	flex-basis: 33%;
	text-align: center;
}

.features .grid li i{
    font-size: 50px;
    color: #2196F3;
    margin-bottom: 25px;
}

.features .grid li h4{
	color: #555;
    font-size: 20px;
    margin-bottom: 25px;
}

.features .grid li p{
    margin: 0;
}

@media (max-width: 1000px){

	.features .grid li{
		flex-basis: 70%;
		margin-bottom: 65px;
	}

	.features .grid li:last-child{
		margin-bottom: 0;
	}

}


@media (max-width: 600px){

	.features .grid li{
		flex-basis: 100%;
	}

}



/*--------------------
 	Reviews Section
--------------------*/

.reviews{
	background-color: #fff;
}

.reviews .quote{
	text-align: center;
	width: 80%;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0;
}

.reviews .author{
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews .author:last-child{
    margin-bottom: 0;
}

@media (max-width: 1000px){

	.reviews .quote{
		font-size: 20px;
	}

	.reviews .author{
	    font-size: 16px;
	}

}



/*---------------------
 	Contact Section
---------------------*/

.contact{
	background-color: #f7f7f7;
}

.contact form{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

	max-width: 800px;
	width: 80%;
}

.contact form input{
	padding: 15px;
	flex: 1;
	margin-right: 30px;
	font-size: 18px;
	color: #555;
}

.contact form .btn{
	padding: 18px 42px;
}


@media (max-width: 800px){

	.contact form input{
		flex-basis: 100%;
		margin: 0 0 20px 0;
	}

}




/*-------------
 	Footer
-------------*/

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #7E0700;
	padding: 60px 0;
}

footer ul{
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;
}

footer ul li:first-child{
	margin-left: 0;
}

footer ul li:last-child{
	margin-right: 0;
}

footer p{
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer p a{
	color: #fff;
}

.footer-nav {
	text-transform: capitalize;
	font-weight: bold;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

.footer-nav-subs {
	text-transform: capitalize;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

@media (max-width: 700px){

	footer{
		padding: 80px 15px;
	}

}


/* -- Demo ads -- */

@media (max-width: 1200px) {
	#bsaHolder{ display:none;}
}
