/* CSS RESET*/
/* 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;
}

/* BODY */
body{
    margin: 0;
    padding:0;
    font-size: 16px;
    line-height: 1.6;
    font-family: "akzidenz-grotesk-next", sans-serif;
}

/* GRID */
.grid_container{
    display:grid;
    row-gap: 50px;
    grid-template-columns: repeat(12, 1fr);
    box-sizing: border-box;
}

header{
    display: grid;
    grid-column: 1/span 12;
    row-gap: 50px;
    position: relative;
}

.banner{
    position: relative;
    width: 100%;
    padding-bottom: 25%;
}

.banner img{
    position: absolute;
    width: 25%;
    height: auto;
}

#image_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  z-index: 1;
}

#image_2 {
  position: absolute;
  top: 0px;
  left: 25%;
  width: 25%;
  z-index: 2;
}

#image_3 {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 25%;
  z-index: 3;
}

#image_4 {
  position: absolute;
  top: 0px;
  left: 75%;
  width: 25%;
  z-index: 4;
}

.title{
    text-align: center;
    margin-bottom: 50px;
}


.images, .video{
    grid-column:2/span 4;
}

.images{
    display: grid;
    padding-top: 25px;
    gap: 50px;
}

.images img{
    width:100%;
    height: auto;
}

.text, .links{
    grid-column:7/12;
}


.video iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit:cover;
}

.footer{
    grid-column: 1/-1;
    text-align: center;
}

/* OPMAAK */
h1{
    font-family: "sedgwick-ave-display", sans-serif;
    font-size: 50px;
    line-height: 0.1;
    color: #911317;
}

h2{
    font-family: "akzidenz-grotesk-next-pro", sans-serif;
    color: #911317;
    font-weight: 600; 
    font-size: 25px;
    margin-top: 10px;
}

blockquote{
    font-family: "akzidenz-grotesk-next-pro", sans-serif;
    margin: 50px;
    padding: 10px 10px;
    font-style: italic;
    font-weight: 400;
    border-left: solid 2px #911317;
}

.links ul{
    list-style: none;
    padding:0;
}

.links li::before {
  content: "🔗";
  margin-right: 10px;
}

.links a{
    text-decoration: none;
    color: black;
    line-height: 40px;
}

.links a:hover, a:focus{
    color: #911317;
    text-decoration: underline #911317;
}

.footer{
    background-color: #911317;
    color: white;
    padding: 25px;
    align-items: center;
}

/* RESPONSIVE */
@media (max-width:768px){
    .grid_container{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        column-gap: 0px;
        row-gap:50px;
    }

    .images img{
        max-width: 80%;
        margin: 0 auto;
    }

    .images, .text, .video, .links{
        grid-column: 1/-1;
        padding: 25px;
        margin: 0 auto;
    }
}