/* Box Sizing */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}


html {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; /* 1 */
	color: #ddd;
	background: #1b1211;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.4;
}
body {
	margin: 0;
	padding: 0;

}
::-moz-selection {
	background: #222;
	text-shadow: none;
}
::selection {
	background: #222;
	text-shadow: none;
}
a {
	text-decoration: none;
	color: #E5582E;
}
a:focus,
a:hover {
	text-decoration: underline;
	color: #E5582E;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 300;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ddd;
	margin: 1em 0;
	padding: 0;
}

.browserupgrade {
    margin: 0;
    padding: 1em;
    background: #E5582E;
    color: #fff;
    text-align: center;
}
.browserupgrade a {
    text-decoration: underline;
    color: #fff;
}

.feature-container {
	position: relative;
	width: 100%;
	height: 100vh;

	background-image: url(../img/background_mod.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

}

.feature-container:after {
	content: '';
    position: absolute;
    width: 100%;
    bottom: -1px;
    height: 70vh;
    left: 0;
    background: -webkit-linear-gradient(transparent,#1b1211);
    background: linear-gradient(transparent, #1b1211);
    opacity: 1;
}


.feature-content {
	position: relative;
	z-index: 2;
	padding-top: 60vh;

	/*
	-webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
	*/

	width: 80vw;
	max-width: 540px;
	margin: 0 auto;
	padding-bottom: 5vh;

    transition: all 0.3s ease;
}
img.badge {
	display: block;
	margin: 0 auto;
	width: 100px;
}
.feature-content h1 {
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	color: #fff;
	line-height: 1.1em;
    margin-bottom: 4rem;
    /*text-align: center;*/
}
.feature-content p {
	margin-top: 0;
	margin-bottom: 2rem;
	color: rgba(255,255,255,.8);
}
.feature-content p.caption {
	font-size: 1.25em;
}
.feature-content p.small {
	font-size: 0.85em;
	/*margin-top: 3rem;*/
	color: rgba(255,255,255,.6);
}
.feature-content p.credits {
	/*font-weight: 400;*/
	font-size: 0.6em;
	/*margin-top: 3rem;*/
	text-transform: uppercase;
	color: rgba(255,255,255,.4);
}

ul.list-2-col {
    padding-left: 0;
    margin: 0 0 2rem;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}
ul.list-2-col > li {
    display: inline-block;
    vertical-align: top;
    width: 46%;
    margin: 0 0 1rem;
    padding: 0.5em;
    /*background-color: rgba(229,88,46,.8);*/
    border-bottom: 1px solid rgba(229,88,46,.5);
}
ul.list-2-col > li > small {
    font-size: 0.65em;
    text-transform: uppercase;
}
ul.list-2-col > li > small:before { content: " ["; }
ul.list-2-col > li > small:after { content: "]"; }

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

@media(min-width: 480px) {

}
