/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/**
*
* #120450
* #FF3126
**/

img{
    max-width: 100%;
    height: auto;
}

body{
    font-family: 'PT Sans', sans-serif;
    background-color: #120450;
    color: #FF3126;
    background-image: url("assets/bg.jpg");
    background-size: cover;
    background-position: center;
}

h1,h2,h3,h4{
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 1.5rem;
    color: #FFF;
}

a{
    color: #FF3126;
}

a:hover{
    text-decoration: none;
}

small{
    font-size: 0.8em;
}

strong{
    font-weight: 700;
}



.hero{
    position: relative;
    background-image: url("assets/hero.jpg");
    background-size: cover;
    background-position: center 55%;
    text-align: center;
    padding: 34rem 3rem 6rem;
}

@media only screen and (max-width: 700px) {
    .hero{
        background-position: center;
        padding: 30rem 2rem 4rem;
    }
}

.hero::after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: linear-gradient(#FF3126, #120450);
    opacity: 0.1;
}

.hero .content{
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 400px;
    padding: 0 3rem;
    color: #FFF;
}

.hero svg {
    width: 32px;
    height: 32px;
    padding: 0 0.25rem;
}

.hero svg path{
    fill: #FFF;
}

.info{
    padding: 10rem 3rem;
}

.info--content{
    margin: 0 auto;
    display: flex;
    align-items:start;
    justify-content: center;
    max-width: 600px;
    padding: 0 3rem;
}


.info--content div{
    padding: 0 2rem;
}

@media only screen and (max-width: 700px) {

    .info{
        padding: 4rem 2rem;
    }

    .info--content{
        display: block;
    }

    .info--content div{
        padding: 0 0 3rem 0;
    }
}

.images{
    margin: 0 auto 8rem auto;
    max-width: 600px;
    padding: 0 3rem;
}

.images--content{
    margin: 0 auto;
    color: #fff;
    
}

.images--content div{
    background-color: #120450;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    border-radius: 0.8rem;
    padding: 0;
    overflow: hidden;
}

.images--content div div{
    padding: 2rem 1.5rem 2rem 1.5rem;
    border-left: none;
    background-color: none;
    margin: 0;
}

.images--content div:first-child{
    border-left: none;
}

@media only screen and (max-width: 700px) {

    .images--content{
        display: block;
    }

}


footer{
    padding: 10rem 3rem;
    background-color: #040B2F;
}

footer .content{
    margin: 0 auto;
    display: flex;
    align-items:start;
    justify-content: center;
    padding: 0 3rem;
}

footer .content div{
    padding: 0 3rem;
}


@media only screen and (max-width: 700px) {
    
    footer{
        padding: 5rem 2rem;
    }

    footer .content{
        display: block;
    }
    
    footer .content div{
        padding: 0 0 3rem 0;
    }

}