* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    background: linear-gradient(#eee8e2, #f4f4ff);
    overscroll-behavior-y: none;
}

body.noscroll {
    overflow: hidden;
}

@media (pointer: fine) {
    html,
    body {
        scroll-behavior: smooth;
    }
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'EuclidFlex-Regular';
}

@font-face {
    font-family: 'EuclidFlex-Regular';
    src: url(EuclidFlex-Regular.otf) format('opentype');
}

@font-face {
    font-family: 'EuclidFlex-Medium';
    src: url(EuclidFlex-Medium.otf) format('opentype');
}

sup {
    display: inline-flex;
}

.titel-mobile {
    display: none;
}

.wit-navigatie-mobiel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    color: white;
    display: none;
    z-index: 9;
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f4f4fe;
    opacity: 1;
    pointer-events: none;
    z-index: 90;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.container-podcast {
    float: left;
    width: 50%;
}

.container-podcast-3 {
    float: left;
    width: 33.3%;
}

.podcast-txt {
    width: 100%;
    margin-top: 3%;
    margin-bottom: 2%;
}

.podcast-midden {
    width: 35%;
    margin-left: 30%;
}

#logo {
    width: 70%;
    margin-left: 15%;
}

#intro {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#intro canvas {
    width: 60vw !important;
    height: 45vw !important;
}

section#over,
section#partners,
section#colophon {
    position: relative;
}
img.overlay-over-de-prijs {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.over-de-prijs {
    padding-top: 12%;
    background: linear-gradient(white, #f4f4ff);
    padding-bottom: 12%;
}

section {
    position: relative;
    /* padding-top: 6%;
    */
}

.sticky-inner {
    padding-bottom: 8%;
    position: relative;
}

@media (pointer: fine) {
    .sticky-inner.fixed {
        width: 100%;
        position: fixed;
        bottom: 0;
    }
}

/* doet deze nog iets? section.sticky {
    position: sticky;
    bottom: 0;
}
*/
section.jumbo {
    position: fixed;
    display: flex;
    padding: 0%;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

section#home {
    background: linear-gradient(15deg, #fffd54, #f5e6ee, #aec2ff 80%);
    /* background: linear-gradient(15deg, #fffd54 , #ffe0ee, #aec2ff 80%);
   */
}

/* Daphne - dit is de achtergrond kleur van home recentie */
section#home-res {
    background: linear-gradient(15deg, #aec2ff 40%, #f5e6ee, #fffd54);
}

section#home-inno {
    background: linear-gradient(15deg, #fffd54, #e7d4ff, #aec2ff 90%);
}

section.jumbo * {
    box-sizing: border-box;
}

section.jumbo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

section.jumbo .title {
    position: relative;
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 5vw;
}

section#home.jumbo .title {
    flex: 1;
}

@media screen and (max-width: 1024px) {
    section.jumbo .title {
        flex: 0.5;
    }

    section#home.jumbo .title {
        flex: 0.5;
    }
}

section.jumbo .title h1 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #3844ac;
    transition: none;
}

section.jumbo .title .square {
    position: relative;
    width: 80%;
    height: 100px;
    margin: -20px auto 0;
    z-index: 0;
}

section.jumbo .title .square .fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#e3e0f4, #aec2ff);
    transform: rotate(22.5deg) skewx(-45deg);
}

section#home-inno .title .square .fill {
    background: linear-gradient(#e3e0f4, #aec2ff);
}

section#home-res .title .square .fill {
    background: linear-gradient(#e3e0f4, #aec2ff);
}

section.jumbo .title .square .shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3844ac;
    opacity: 0.5;
    transform: rotate(22.5deg) skewx(-45deg);
}

@keyframes float {
    from {
        /* opacity: 0;
        */
        box-shadow: 25px 12.5px 10px #8e99c1;
    }
    to {
        /* opacity: 1;
        */
        box-shadow: 70px 35px 20px #8e99c1;
    }
}

section.jumbo h1,
section.jumbo h2,
section.jumbo h3 {
    margin: 0;
    padding: 0;
    width: auto;
    font-size: 32px;
    line-height: 34px;
    text-align: left;
    transform: skewY(0);
    transform-origin: top left;
    transition: .5s;
}

section#home h2 span {
    font-weight: 200;
    color: #3844ac;
}

section.jumbo h2:hover {
    transform: skewY(-10deg);
}

section.jumbo h3 {
    font-family: 'EuclidFlex-Regular';
    font-size: 24px;
    margin-top: 12px;
}

@media screen and (max-width: 1024px) {
    section.jumbo h1,
    section.jumbo h2,
    section.jumbo h3 {
        font-size: 24px;
        line-height: 1.2em;

    }

    section.jumbo h3 {
        font-family: 'EuclidFlex-Regular';
        font-size: 24px;
        margin-top: 12px;
    }
}

section.jumbo .winners {
    position: relative;
    flex: 0 0 40%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    top: 0;
    right: 0;
    height: 100%;
    padding: 5vw;
}

section.jumbo .winner {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    margin-bottom: 32px;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    section.jumbo .winner {
        margin-bottom: 42px;
    }
}

section.jumbo .winner a {
    text-decoration: underline;
    color: #3844ac;
    z-index: 98;
}

section.jumbo .winner .dot {
    /* align-self: center;
    */
    margin-left: 8%;
    margin-top: 2%;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: #fefd9d;
}

section.jumbo .winner:last-of-type {
    margin-bottom: 0;
}

section.jumbo .shine {
    position: fixed;
    top: 0;
    left: 0;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(rgba(255, 255, 187, 0.7), rgba(255, 255, 187, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

section#home .title h1[data-shadow-text] {
    /* transition: none;
    */
}

section#hp {
    background: linear-gradient(#f4f4fe 5%, #f9f2d9, #ffe0ee, #e7e8ff 90%);
}

/* Daphne - Achtergrond kleur hoofdprijs recentie */
section#hp-res {
    background: linear-gradient(#f4f4fe 15%, #efbfbb, #f6ffef, #f8ecff, #e7e8ff 80%);
}

section#hp-inno {
    background: linear-gradient(#f4f4fe 15%, #efbfbb, #f6ffef, #f8ecff, #e7e8ff 80%);
}

section#bp {
    background: linear-gradient(#f4f4fe 10%, #f5e6ee, #f6ffef, #f8ecff, #e7e8ff 95%);
}

/* Daphne - Achtergrond kleur basisprijs (1) recentie */
section#bp-res {
    background: linear-gradient(#f4f4fe 5%, #aec2ff, #efbc9c, #e7e8ff 80%);
}

section#bp-inno {
    background: linear-gradient(#f4f4fe 5%, #aec2ff, #efbc9c, #e7e8ff 80%);
}

section#bp1 {
    background: linear-gradient(#f4f4fe 10%, #e7d4ff, #efbfbb, #e7e8ff 90%);
}

/* Daphne - Achtergrond kleur basisprijs (2) recentie */
section#bp1-res {
    background: linear-gradient(#f4f4fe 5%, #f5e6ee, #e7e8ff 80%);
}

section#bp1-inno {
    background: linear-gradient(#f4f4fe 5%, #f5e6ee, #e7e8ff 80%);
}
div.afbeelding,
div.afbeelding1,
div.afbeelding2,
div.afbeelding3 {
    margin-left: 14%;
    margin-top: 5%;
    margin-bottom: 5%;
}
div.afbeelding img {
    width: 60%;
    height: 100%;
}
div.afbeelding1 img {
    width: 80%;
    height: 100%;
}
div.afbeelding2 img {
    width: 50%;
    height: 100%;
}
div.afbeelding3 img {
    width: 90%;
    height: 100%;
}

p.beschrijving {
    font-family: 'EuclidFlex-Regular';
    margin-top: 8px;
    margin-left: 12px;
    font-size: 16px;
    line-height: 22px;
    color: #0f0864;
}

.stick-nav {
    width: 100%;
    height: 65px;
    margin-top: 100vh;
    background: white;
    position: sticky;
    top: 0;
    font-size: 18px;
    text-align: center;
    padding-top: 25px;
    z-index: 80;
}

.stick-nav a {
    color: #0f0899;
    /* text-decoration-style: wavy;
    */
    text-decoration: none;
    padding-left: 20px;
    padding-right: 20px;
}

.stick-nav a.selected {
    color: #f7505e;
}

.stick-nav a:hover {
    color: #f7505e;
}

.overgang {
    height: 212px;
    margin-bottom: 12px;
    transform: translate3d(0, 0, 0);
}

.overgang img {
    float: right;
}

.overgang .shadow {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    transform: translateY(-100%);
    background: linear-gradient(rgba(255, 226, 42, 0), rgba(255, 226, 42, 0.4));
}

.overgang .peel {
    overflow: hidden;
    position: relative;
    height: 100%;
    background: linear-gradient(#6c68b8, #f5e6ee 50%);
    transform: translate3d(0, 0, 0);
}

.overgang .peel .gradient {
    position: absolute;
    background: #eeeaea;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    box-shadow: 0px 0 50px rgba(255, 153, 128, 1);
    transform: translate3d(0, 0, 0);
    transform-origin: top left;
}

#hp .overgang .peel .gradient {
    background: #f4f4fe;
}

/* Daphne - overgang - hoofdprijs - recentie */
#hp-res .overgang .peel .gradient {
    background: #f4f4fe;
}

#hp-inno .overgang .peel .gradient {
    background: #f4f4fe;
}

#bp .overgang .peel .gradient {
    background: #f4f4fe;
}

/* Daphne - overgang - basisprijs (1) - recentie */
#bp-res .overgang .peel .gradient {
    background: #f4f4fe;
}

#bp-inno .overgang .peel .gradient {
    background: #f4f4fe;
}

#bp1 .overgang .peel .gradient {
    background: #f4f4fe;
}

/* Daphne - overgang - basisprijs (2) - recentie*/
#bp1-res .overgang .peel .gradient {
    background: #f4f4fe;
}

#bp1-inno .overgang .peel .gradient {
    background: #f4f4fe;
}

.container {
    position: relative;
}

p,
h1,
h2,
h3,
h5,
h6 {
    width: 44vw;
    margin-left: 28%;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    line-height: 34px;
    color: #0f0864;
    margin-top: 2%;
}

p.tentoonstelling {
    width: 44vw;
    margin-left: 28%;
    font-family: 'EuclidFlex-Regular';
    font-size: 20px;
    line-height: 26px;
    color: #0f0864;
    margin-top: 2%;
}

p.links {
    margin-left: 28%;
}

p.rechts {
    margin-left: 42%;
}

p.kop {
    font-size: 30px;
    line-height: 34px;
}

p a {
    color: #0f0864;
    text-decoration-style: solid;
    text-decoration-thickness: 0.8px;
    text-underline-offset: 8px;
}

p a:hover {
    /*color:white;
    background-color:#433f90;
   */
}

/* jury rapport */
section#jury-hoofdprijs {
    background-color: white;
}

section#jury-hoofdprijs .sticky-inner {
    padding-top: 12%;
    padding-bottom: 20%;
}

section#jury-bp {
    background-color: white;
}

section#jury-bp .sticky-inner {
    padding-top: 12%;
    padding-bottom: 20%;
}

section#jury-bp1 {
    background-color: white;
}

section#jury-bp1 .sticky-inner {
    padding-top: 12%;
    padding-bottom: 20%;
}

p.jury-left,
p.jury-right {
    font-family: 'EuclidFlex-Regular';
    float: left;
    padding-top: 2%;
    padding-bottom: 5%;
    margin-top: 0%;
    margin-right: 0%;
    margin-bottom: 0%;
}

p.jury-right a {
    color: #f7505e;
}

p.jury-left {
    font-size: 24px;
    line-height: 30px;
    color: #3844ac;
    width: 44%;
    margin-left: 16.2%;
}

p.jury-right {
    font-size: 20px;
    line-height: 26px;
    color: #f5505f;
    width: 22%;
    margin-left: 4%;
}

p.jury-left-rapport,
p.jury-right-rapport {
    font-family: 'EuclidFlex-Regular';
    float: left;
    padding-top: 2%;
    padding-bottom: 3%;
    margin-top: 0%;
    margin-right: 0%;
    margin-bottom: 0%;
}

p.jury-right-rapport a {
    color: #f7505e;
}

p.jury-left-rapport {
    font-size: 24px;
    line-height: 30px;
    color: #3844ac;
    width: 44%;
    margin-left: 16.2%;
}

p.jury-right-rapport {
    font-size: 20px;
    line-height: 26px;
    color: #f5505f;
    width: 22%;
    margin-left: 4%;
}

/* biographie */
section#bio-hoofdprijs {
    /*background: yellow;
   */
    padding-top: 12%;
}
img.img-bio {
    float: left;
    margin-left: 0%;
    padding-bottom: 5%;
    width: 60%;
    height: 100%;
}

p.txt-bio {
    font-family: 'EuclidFlex-Regular';
    font-size: 20px;
    line-height: 32px;
    color: #3844ac;
    float: left;
    padding-top: 2%;
    padding-bottom: 5%;
    width: 30%;
    margin-top: 0%;
    margin-left: 2%;
    margin-right: 0%;
    margin-bottom: 0%;
}

.clear-float {
    clear: both;
}

.test {
    z-index: 55;
    height: auto;
    position: sticky;
    top: 0;
    font-size: 18px;
    line-height: 28px;
    text-align: right;
    padding-right: 15px;
    padding-top: 100px;
    padding-bottom: 8%;
}

.test a {
    color: #0f0899;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration-style: wavy;
}
h2 {
    font-size: 32px;
    line-height: 38px;
    color: #f7505e;
    text-align: center;
    padding-bottom: 8%;
}
h5 {
    padding-top: 5%;
    font-size: 32px;
    line-height: 38px;
    color: #f7505e;
    text-align: center;
}
h6 {
    font-size: 22px;
    line-height: 38px;
    color: #001a82;
    text-align: center;
    font-weight: 200;
}

span.bold-teksten {
    font-family: 'EuclidFlex-Regular';
    padding-bottom: 2%;
    font-size: 20px;
    color: #f5505f;
}
h3 {
    font-size: 32px;
    line-height: 34px;
    color: #f7505e;
    text-align: center;
    padding-bottom: 4%;
    margin-top: 0%;
}
h1 {
    text-align: center;
    color: #3844ac;
    font-size: 45px;
    line-height: 50px;
}
h4 {
    font-size: 24px;
    line-height: 28px;
    margin-left: 16.2%;
    color: #3844ac;
}
h1 span {
    font-weight: 200;
}

/* side navigation */
nav {
    position: fixed;
    z-index: 89;
    left: 50px;
    top: 15px;
    color: #001a82;
}

.sidenav {
    height: 70%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #ffffd8;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 5%;
    box-shadow: 12px 0px 120px 0px #ff99d1;
}

.sidenav a {
    padding: 0px 8px 8px 32px;
    padding-left: 75px;
    text-decoration: none;
    font-size: 25px;
    line-height: 28px;
    color: #001a82;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    transform: skewY(-5deg);
    transform-origin: top left;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidenav .closebtn:hover {
    transform: skewY(0deg);
    transform-origin: top left;
}

a#select {
    transform: skewY(-5deg);
    transform-origin: top left;
}

/* footnotes */
.collapsible {
    color: white;
    cursor: pointer;
    padding: 18px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active,
.collapsible:hover {
}

.collapsible:after {
    content: '(1)';
    color: #00095b;
    font-weight: bold;
    margin-left: 5px;
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
button {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

/* ProgressBar */
.progressBar {
    position: sticky;
    top: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(to right, #ffff00, #ffff00);
    width: 0%;
    z-index: 100;
    transition: width 0.2s ease-out;
}

/* is de webkit scrollbar nodig? deze doet raar op chrome ::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}
*/
::-webkit-scrollbar-thumb {
    border-radius: 15px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    background: rgb(255, 61, 94);
}

/* Arrow back to top */
.arrow {
    display: block;
    position: absolute;
    z-index: 99;
    bottom: 2%;
    left: 50%;
}

/* Collapsibles */
.collapsible-button {
    color: #f7505e;
}

.collapsible-button.active {
    color: #f7505e;
}

.collapsible-text {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background: none;
}

.collapsible-text a {
    color: #f7505e;
    text-decoration-style: solid;
    text-decoration-thickness: 0.8px;
    text-underline-offset: 8px;
    font-size: 18px;
    line-height: 28px;
}

.collapsible-text.active {
    display: block;
}

.collapsible-text > span {
    font-family: 'EuclidFlex-Regular';
    display: block;
    margin: 1rem;
    color: #f7505e;
    font-size: 18px;
    line-height: 28px;
}

.esmp {
    display: inline-block;
}

.esmp:after {
    content: '\2003';
}

.intro {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    font-family: 'EuclidFlex-Regular';
}

.intro.mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .intro {
        display: none;
    }
    .intro.mobile {
        display: inline-block;
    }
}


.intro-afb {
	width:100%;
	margin-top:15%;
	margin-left:0%;
}


.intro.mobile img {
    width: 100%;
    height: 100%;
}



.intro.mobile p {
	margin-left:10%;
}


.intro .column {
    position: relative;
    background: #e7e8ff;
}

.intro .column canvas {
    width: 100% !important;
    height: auto !important;
}

.intro .column.intro-left {
    display: flex;
    /* flex-basis: 30%;
    */
    width: 30%;
    flex-direction: column;
    justify-content: center;
    background: #f4f4fe;
    box-shadow: 12px 0px 60px 10px #6059c1;
    z-index: 10;
}

.intro .column.intro-center {
    display: flex;
    width: 30%;
    flex-direction: column;
    justify-content: space-between;
}

.intro .intro-year {
    font-size: 26px;
    margin-top: 15px;
}

.intro .intro-category {
    margin-bottom: 15px;
    color: #021b82;
}

.intro .column.intro-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 10;

}

.intro .column.intro-right canvas {
    position: absolute;
    bottom: 0;
    left: 0;
}

.intro p,
.intro h2 {
    margin: 0;
    font-family: 'EuclidFlex-Regular';
}




.intro h2 {
    padding-bottom: 12px;
    width: 100%;
    text-align: center;
}

.intro .column.intro-right p {
	width: 80%;
    margin: 10vh 32px 0;
    color: #f8595e;
	font-size: 24px;
	line-height: 30px;
}



.intro .categories {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    top: 0;
    right: 0;
}

.intro .category {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 16px;
    z-index: 1;
    width: 100%;
}

.intro .category a {
    color: #021b82;
    z-index: 98;
    font-size: 32px;
    text-decoration-style: solid;
    text-decoration-thickness: 0.8px;
    text-underline-offset: 8px;
}

.intro .category .dot {
    align-self: center;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    margin: 10px 0;
    background: #fefd9d;
}

.intro .category:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
    .stick-nav {
        font-size: 16px;
        text-align: right;
        padding-top: 27px;
    }
    .stick-nav a {
        padding-right: 8px;
        padding-left: 0px;
    }
	

}

@media screen and (max-width: 768px) {
    /* html,body {
        scroll-behavior: auto;
   }
    */
    .wit-navigatie-mobiel {
        display: block;
    }
    p,
    p.kop,
    h1,
    h2,
    p.links,
    p.rechts,
    p.tentoonstelling {
        width: 80vw;
        margin-left: 10%;
    }
    nav {
        left: 15px;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 30px;
    }
    p {
        font-size: 20px;
		line-height:28px;
    }
    p.kop {
        font-size: 28px;
    }
    p.jury-left-rapport,
    p.jury-right-rapport,
    p.jury-left,
    p.jury-right,
    img.img-bio {
        font-size: 20px;
		line-height: 28px;
        width: 80%;
        margin-left: 10%;
    }
    p.txt-bio {
        font-size: 18px;
        line-height: 28px;
        width: 80%;
        margin-left: 10%;
    }
    div.afbeelding,
    div.afbeelding1,
    div.afbeelding2,
    div.afbeelding3 {
        width: 80%;
        margin-left: 10%;
    }
    div.afbeelding img,
    div.afbeelding1 img,
    div.afbeelding2 img,
    div.afbeelding3 img {
        width: 100%;
    }
	
	p.beschrijving {
    font-size: 14px;
    line-height: 20px;
}

p.tentoonstelling {
	margin-top: 5%;
    }
	
 h4 {
	 margin-left:10%;
 }
 
	
	body.noscroll {
    overflow-y: auto;
	height: auto;
}




}

@media screen and (max-width: 567px) {
    section#home {
        display: none;
        height: 0vh;
    }
    section#jury-hoofdprijs .sticky-inner,
    section#jury-bp .sticky-inner,
    section#jury-bp1 .sticky-inner {
        padding-top: 30%;
        padding-bottom: 50%;
    }
    .stick-nav {
        margin-top: 0vh;
        height: 90px;
        font-size: 15px;
        text-align: left;
        padding-top: 60px;
        padding-left: 16px;
        margin-right: 4px;
		color:yellow;
    }
    .stick-nav a.verberg {
        display: none;
    }
    section#home,
    section#home-inno,
    section#home-res {
        display: none;
    }
    .esmp {
        display: none;
    }
    .titel-mobile {
        margin-top: -25%;
        display: block;
        padding-bottom: 12%;
    }
	
    .titel-mobile img {
        width: 100%;
        height: 100%;
    }
	
	p.categorie-mobiel {
	font-family: 'EuclidFlex-Regular';
	color:#f7505e;
	font-size:28px;
	}
	
	p.categorie-type {
    font-family: 'EuclidFlex-Medium';
	color:#f7505e;
	font-size:28px;
	padding-top:0px;
	margin-top:0px;
	}
	
	
    h3 {
        margin-top: 15%;
    }
	
	.sidenav {
    padding-top: 20%;
	}

}
