/* updated 20 JULY 2023 */

/* PHOTO COLLAGE */
.photocollage
{
    background: none;
    transition: 500ms ease-in-out;
}
.photocollage:hover
{
    color: white;
    background: var(--black-ish);
    transition: 1s 1s ease-in-out;
}
.photocollage > div
{
    display:flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
    width: 100%;
    box-sizing: border-box;
}
.photocollage img 
{
    width: auto;
    height: auto;
    margin: 5px;
    cursor: pointer;
}
.photocollage .maxi 
{
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
}
.photocollage .maxi.show 
{
    display:flex;
}
.photocollage .maxi,
.photocollage .maxi img
{
    object-fit: none;
}
.photocollage .view .hint
{
    display: none;
}
@media screen and (max-width: 1000px)
{
    .photocollage > div 
    {
        position: relative;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        overflow-x: scroll;
    }
    .photocollage .maxi.show 
    {
        display:none;
    }
    @keyframes hint-move
    {
        0%   {transform: translate(0%, -50%);}
        100% {transform: translate(-100%, -50%);}

    }
    @keyframes hint-fade 
    {
        0%   {opacity:0;}
        20%  {opacity:1;}
        80%  {opacity:1;}
        100% {opacity:0;}
    }
    .photocollage .view .hint
    {
        position: absolute;
        top: 50%;
        left: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        font-size: 3rem;
        font-weight: 900;
        color: white;
        animation-name: hint-fade, hint-move;
        animation-duration: 7s, 1100ms;
        animation-delay: 0s, 0s;
        animation-direction: normal, alternate;
        animation-iteration-count: 1, infinite;
        animation-fill-mode: both, both;
        animation-timing-function: linear, ease-in-out;
    }
}



/* VIDEO PLAYER */
.vimeo-embed,
.youtube-embed
{
    padding: 56.25% 0 0 0;
    position: relative;
}

.vimeo-embed > iframe,
.youtube-embed > iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* EVENT SLIDER */
.event-slider .head {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    width: 100%;
    padding-bottom: 1rem;
}

.event-slider .head .label {
    flex: 1 1 calc(100% - 4.4rem);
    font-size: 2rem;
    font-weight: 900;
}

.event-slider .label a {
    color: var(--drc-red);
    text-decoration: none;
    font-weight:300;
    font-size:1.25rem;
    float:right;
    margin-right:1rem;
}

.event-slider .scroller {
    display: none;
}

@media screen and (min-width: 1000px) 
{
    .event-slider.wide {
        padding-left: 40px;
        padding-right: 40px;
    }

    .event-slider .scroller {
        display: block;
        flex: 0 0 4.4rem;
        text-align: right;
    }

    .event-slider .scroller button {
        display: inline-block;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--matte-blue);
        color: white;
        text-align: center;
        border: 0;
        outline: 0;
        transition: var(--fast);
        margin: 0 0 0 0.1rem;
        font-weight: 900;
    }

    .event-slider .scroller button:hover {
        background: var(--matte-blue-neon);
    }
    
    .event-slider .scroller button:focus {
        outline: 2px solid black;
    }

}

.event-slider .view {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: white;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.event-slider .view::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.event-slider .view::-webkit-scrollbar-thumb {
    background: transparent;
}

.event-slider .view::-webkit-scrollbar-track {
    background: transparent;
}

.event-slider .list {
    display: flex;
    flex-flow: row nowrap;
    width: 600%;
    height: auto;
}

@media screen and (min-width: 1000px) 
{
    .event-slider .list {
        /* width: 233.33%; */
        width: 175%;
    }
}

.event-slider .item {
    position: relative;
    flex: 0 0 calc(100% / 7);
    border-width: 0 5px 0 0 0;
    border-style: solid;
    border-color: white;
    padding: .5rem .5rem 2rem .5rem;
    transition: 250ms;
    scroll-snap-align: start;
    background: whitesmoke;
}

.event-slider .item:hover {
    background: white;
}

.event-slider .item picture {
    width: 100%;
    height: 150px;
    margin-bottom: .5rem;
}

.event-slider .item p:nth-of-type(1) {
    font-weight: 900;
    margin: 0;
}

.event-slider .item p:nth-of-type(2),
.event-slider .item p:nth-of-type(3) {
    font-weight: 300;
    font-size: .9rem;
    color: var(--matte-blue);
    margin: 0;
}

.event-slider .more {
    position: relative;
    flex: 0 0 calc(100% / 7);
    display: flex;
    background: white;
    color: var(--matte-blue);
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 10rem;
    font-weight: 900;
    opacity: .8;
    transition: 250ms;
    scroll-snap-align: end;
}

@media screen and (min-width: 1000px)
{
    .event-slider .item,
    .event-slider .more {
        opacity: .9;
    }
    .event-slider .item:hover,
    .event-slider .more:hover {
        opacity: 1;
    }
}

.event-slider .more a,
.event-slider .item a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.event-slider .enddate:before {
    content:' - ';
}

.event-slider .event-city:after {
    content:', ';
}


.event-slider .labels {
    position: absolute;
    bottom: 0;
    left: .5rem;
}

.event-slider .label {
    display: inline-block;
    padding: .1rem .5rem;
    font-weight: 900;
    font-size: .8rem;
}

.event-slider .label.free {
    background: var(--bright-yellow);
}

.event-slider .label.online {
    background: var(--bright-blue);
}






/* BOOK SLIDER */

.book-slider .head {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    width: 100%;
    padding-bottom: 1rem;
}

.book-slider .head .label {
    flex: 1 1 calc(100% - 4.4rem);
    font-size: 2rem;
    font-weight: 900;
}

.book-slider .label a {
    color: var(--drc-red);
    text-decoration: none;
    font-weight:300;
    font-size:1.25rem;
    float:right;
    margin-right:1rem;
}

.book-slider .scroller {
    display: none;
}

@media screen and (min-width: 1000px) 
{
    .book-slider.wide {
        padding-left: 40px;
        padding-right: 40px;
    }
    .book-slider .scroller {
        display: block;
        flex: 0 0 4.4rem;
        text-align: right;
    }

    .book-slider .scroller button {
        display: inline-block;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--matte-blue);
        color: white;
        text-align: center;
        border: 0;
        outline: 0;
        transition: var(--fast);
        margin: 0 0 0 0.1rem;
        font-weight: 900;
    }

    .book-slider .scroller button:hover {
        background: var(--matte-blue-neon);
    }
    
    .book-slider .scroller button:focus {
        outline: 2px solid black;
    }    
    
}

.book-slider .view {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: white;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.book-slider .view::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.book-slider .view::-webkit-scrollbar-thumb {
    background: transparent;
}

.book-slider .view::-webkit-scrollbar-track {
    background: transparent;
}

.book-slider .list {
    display: flex;
    flex-flow: row nowrap;
    width: 600%;
    height: auto;
}

@media screen and (min-width: 1000px) 
{
    .book-slider .list {
        /* width: 233.33%; */
        width: 175%;
    }
}

.book-slider .item {
    position: relative;
    flex: 0 0 calc(100% / 7);
    border-width: 0 0 0 2px;
    border-style: solid;
    border-color: var(--matte-blue);
    text-align: center;
    padding:  1rem;
    transition: 250ms;
    scroll-snap-align: start;
}

.book-slider .item img {
    box-shadow: var(--shadow);
    padding: .5rem;
}

.book-slider .item p:nth-of-type(1) {
    font-weight: 900;
    margin: 0;
}

.book-slider .item p:nth-of-type(2) {
    font-weight: 300;
    font-size: .9rem;
    color: var(--matte-blue);
    margin: 0;

}

.book-slider .more {
    position: relative;
    flex: 0 0 calc(100% / 7);
    display: flex;
    background: white;
    color: rgb(120,138,151);
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 10rem;
    font-weight: 900;
    opacity: .8;
    transition: 250ms;
    scroll-snap-align: end;
}

@media screen and (min-width: 1000px)
{
    .book-slider .item,
    .book-slider .more {
        opacity: .8;
    }
    .book-slider .item:hover,
    .book-slider .more:hover {
        opacity: 1;
    }
}

.book-slider .more a,
.book-slider .item a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}



/* NO CROP IMAGE */
.no-crop-image picture {
    display: block;
    width: 100%;
    height: auto;
} 
.no-crop-image picture img {
    position: relative;
    display: block;
    transform: none;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}

/*resize to fit screen option*/
.no-crop-image picture.fit img {
    width: auto;
    height: auto;
    min-height: unset;
    max-height: 80vh;
    min-width: unset;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%); 
}

.no-crop-image .caption 
{
    font-size: .9rem;
    color: var(--matte-blue);
    padding: 1rem 0 0 1rem;
}
.no-crop-image .caption .credits 
{
    color: var(--matte-blue-80);
    white-space: nowrap;
}
.no-crop-image .caption .credits .credits svg 
{
    height: 1.2em;
    margin: 0 0.4em;
    transform: translateY(3px);
    fill: var(--matte-blue-60);
}
@media screen and (min-width:800px) 
{
    .no-crop-image .caption 
    {
        margin: 0 0 0 50%; 
        border-left: 1px solid var(--matte-blue-40);
    }
}



/* BIG BUTTON */
section.button div {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
}

section.button a.button {
    display: inline-block;
    padding: 1em 3em;
    margin: 0 auto;
    width: auto;
    height: auto;
    border: 2px solid var(--drc-red);
    border-radius: var(--soft);
    color: var(--drc-red);
    font-size: 1.25rem;
    font-weight: 900;
    text-decoration: none;
    transition: var(--fast);
    letter-spacing: .05em;
}

section.button a.button:hover {
    background: var(--drc-red-10);
}





/* DIVIDER */
section.divider {
    text-align: center;
}

section.divider::after {
    content: '';
    display: block;
    width: 50vw;
    height: 1px;
    background: var(--drc-red);
    margin: 0 auto;
}

section.divider h2 {
    
}

section.divider p {
    
}



/* NEWS SLIDER */
.news-slider .head {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    width: 100%;
    padding-bottom: 1rem;
}

.news-slider .head .label {
    flex: 1 1 calc(100% - 4.4rem);
    font-size: 2rem;
    font-weight: 900;
}

.news-slider .label a {
    color: var(--drc-red);
    text-decoration: none;
    font-weight:300;
    font-size:1.25rem;
    float:right;
    margin-right:1rem;
}

@keyframes newsdots {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.news-slider .label span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-left: .5rem;
    background: var(--black-ish);
    animation-name: newsdots;
    animation-duration: 2000ms;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.news-slider .label span:nth-of-type(1) {
    animation-delay: 250ms;
}

.news-slider .label span:nth-of-type(2) {
    animation-delay: 500ms;
}

.news-slider .label span:nth-of-type(3) {
    animation-delay: 750ms;
}

.news-slider .scroller {
    display: none;
}

@media screen and (min-width: 1000px) {
    .news-slider.wide {
        padding-left: 40px;
        padding-right: 40px;
    }

    .news-slider .scroller {
        display: block;
        flex: 0 0 4.4rem;
        text-align: right;
    }

    .news-slider .scroller button {
        display: inline-block;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--matte-blue);
        color: white;
        text-align: center;
        border: 0;
        outline: 0;
        transition: var(--fast);
        margin: 0 0 0 0.1rem;
        font-weight: 900;
    }

    .news-slider .scroller button:hover {
        background: var(--matte-blue-neon);
    }

    .news-slider .scroller button:focus {
        outline: 2px solid black;
    }        
    
}

.news-slider .view {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: white;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.news-slider .view::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.news-slider .view::-webkit-scrollbar-thumb {
    background: transparent;
}

.news-slider .view::-webkit-scrollbar-track {
    background: transparent;
}

.news-slider .list {
    display: flex;
    flex-flow: row nowrap;
    width: 600%;
    height: auto;
}

@media screen and (min-width: 1000px) {
    .news-slider .list {
        width: 233.33%;
    }
}

.news-slider .item {
    position: relative;
    flex: 0 0 calc(100% / 7);
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: var(--matte-blue);
    padding: 0 2rem 0 1rem;
    opacity: .8;
    transition: 250ms;
    scroll-snap-align: start;
}

.news-slider .more {
    position: relative;
    flex: 0 0 calc(100% / 7);
    display: flex;
    background: var(--matte-blue-40);
    color: black;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: 900;
    border-radius: 4px;
    opacity: .8;
    transition: 250ms;
    scroll-snap-align: end;
}

.news-slider .item:hover,
.news-slider .more:hover {
    opacity: 1;
}

.news-slider .more a,
.news-slider .item a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.news-slider .item p:first-of-type {
    padding: 0;
    margin: 0 0 .5rem 0;
    font-size: .9rem;
    color: var(--matte-blue-dark);
}

.news-slider .item p:last-of-type {
    padding: 0;
    margin: 0;
    text-transform: none;
    font-weight: 900;
    font-size: 1.2rem;
    color: black;
}




/* VIDEO WITH CAPTION */
@media screen and (max-width:800px)
{
    .video-with-caption
    {
        padding-left:0;
        padding-right:0;
    }
}
.video-with-caption
{
    padding-top:0;
}
.video-with-caption.wide
{
    padding-left:0;
    padding-right:0;
}
.video-with-caption .cinema
{
	position: relative;
	display:block;
	width:100%;
	padding:0;
	margin:0;
}
.video-with-caption.one-half .cinema
{
    height:50vh;
}
.video-with-caption.two-thirds .cinema
{
    height:66vh;
}
.video-with-caption.three-fourths .cinema
{
    height:75vh;
}
.video-with-caption .cinema .screen
{
	position:absolute;
	top:50%;
	left:50%;
	display:block;
	width:100%;
	height:100%;
	transform:translate(-50.05%,-50.05%);
	background-color:var(--drc-red);
	overflow:hidden;
}
.video-with-caption .cinema .screen .movie
{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	pointer-events:none;
	overflow:hidden;
}
.video-with-caption .cinema .screen .movie iframe
{
	width:100vw;
	height:56.25vw;
	min-height:100vh;
	min-width:177.77vh;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}
.video-with-caption .caption
{
    display:block;
    padding:1rem 0 0 1rem;
    font-size:.9rem;
    color:var(--matte-blue);
}
@media screen and (min-width:800px)
{
    .video-with-caption .caption
    {
        margin:0 0 0 50%;
        border-left:1px solid var(--matte-blue-40);
    }
    .video-with-caption.wide .caption
    {
        margin-right: calc(50vw - 600px);
    }
}
.video-with-caption .caption .credits
{
    color: var(--matte-blue-80);
    white-space: nowrap;
}
.video-with-caption .frieze
{
    position:absolute;
    display:block;
    bottom:0;
    height:40px;
    width:100%;
    background-image:url('/svg/design-frieze.svg');
    background-size:cover;
}




/* HERO */
.hero
{
    position:sticky;
    display:block;
    top:0;
    width:100%;
    height:80vh;
    padding:0;
    margin:0;
}
.hero .video
{
	position:absolute;
	top:50%;
	left:50%;
	display:block;
	width:100%;
	height:100%;
	transform:translate(-50.05%,-50.05%);
	background-color:var(--drc-red);
	overflow:hidden;
}
.hero .video div
{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    pointer-events:none;
    overflow:hidden;
}
.hero .video div iframe
{
    width:100vw;
    height:56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height:100vh;
    min-width:177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
.hero picture
{
    position:absolute;
    top:0;
    left:0;
    display:block;
    width:100%;
    height:100%;
}
.hero picture img {
    animation: var(--pulsing);
}
.hero article {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero.dark article {
    color: white;
}
.hero.lite article {
    color: black;
}
.hero.dark.alpha-00 article {
    background: rgba(0,0,0,0);
}
.hero.dark.alpha-10 article {
    background: rgba(0,0,0,.1);
}
.hero.dark.alpha-20 article {
    background: rgba(0,0,0,.2);
}
.hero.dark.alpha-30 article {
    background: rgba(0,0,0,.3);
}
.hero.dark.alpha-40 article {
    background: rgba(0,0,0,.4);
}
.hero.dark.alpha-50 article {
    background: rgba(0,0,0,.5);
}
.hero.dark.alpha-60 article {
    background: rgba(0,0,0,.6);
}
.hero.dark.alpha-70 article {
    background: rgba(0,0,0,.7);
}
.hero.dark.alpha-80 article {
    background: rgba(0,0,0,.8);
}
.hero.dark.alpha-90 article {
    background: rgba(0,0,0,.9);
}
.hero.lite.alpha-0 article {
    background:rgba(255,255,255,0);
}
.hero.lite.alpha-10 article {
    background:rgba(255,255,255,.1);
}
.hero.lite.alpha-20 article {
    background:rgba(255,255,255,.2);
}
.hero.lite.alpha-30 article {
    background:rgba(255,255,255,.3);
}
.hero.lite.alpha-40 article {
    background:rgba(255,255,255,.4);
}
.hero.lite.alpha-50 article {
    background:rgba(255,255,255,.5);
}
.hero.lite.alpha-60 article {
    background:rgba(255,255,255,.6);
}
.hero.lite.alpha-70 article {
    background:rgba(255,255,255,.7);
}
.hero.lite.alpha-80 article {
    background:rgba(255,255,255,.8);
}
.hero.lite.alpha-90 article {
    background:rgba(255,255,255,.9);
}

.hero a,
.hero.dark a {
    background:white;
    color:var(--drc-red);
}
.hero.lite a {
    background:var(--drc-red);
    color:white;
}
@media screen and (min-width:1000px)
{
    .hero article {
        padding:10rem;
    }
}
.hero article .preheader {
    display: inline-block;
    margin-bottom: .5rem;
    border: 0;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: .05em;
    align-self: inherit;
    transition: var(--slow);
}
.hero article:hover .preheader {
    letter-spacing: .2em;
}
.hero article h1 {
    max-width: 800px;
}
.hero article a {
    display: inline-block;
    width: auto;
    height:auto;
    padding:1em 3em;
    margin:20px 0 0 0;
    border-radius:var(--soft);
    box-shadow:var(--box-shadow);
    font-weight:900;
    font-size:1.5rem;
    letter-spacing:.05em;
    white-space:nowrap;
    transition:var(--fast);
}
.hero article a:hover {
    letter-spacing:.2em;
}
.hero .left {
    align-items:flex-start;
}
.hero .right {
    align-items:flex-end;
}
.hero .left .preheader,
.hero .left h1,
.hero .left a {
    text-align:left;
}
.hero .right .preheader,
.hero .right h1,
.hero .right a {
    text-align:right;
}
.hero .frieze {
	display:block;
	height:40px;
	width:100%;
	position:absolute;
	bottom:0;
	background-image:url('/svg/design-frieze.svg');
	background-size:cover;
}


/* IMAGE WITH CAPTION */
.picture-with-caption 
{
    padding-top: 0;
}
.picture-with-caption.wide 
{
    padding-left: 0;
    padding-right: 0;
}
.picture-with-caption picture 
{
    width: 100%;
    margin: 0 auto;
}
.picture-with-caption.one-half picture 
{
    height: 50vh;
}
.picture-with-caption.two-thirds picture 
{
    height: 66vh;
}
.picture-with-caption.three-fourths picture 
{
    height: 75vh;
}
.picture-with-caption picture img 
{
    animation: var(--pulsing);
}
.picture-with-caption .caption 
{
    font-size: .9rem;
    color: var(--matte-blue);
    padding: 1rem 0 0 1rem;
}
@media screen and (min-width:800px) 
{
    .picture-with-caption .caption 
    {
        margin: 0 0 0 50%; 
        border-left: 1px solid var(--matte-blue-40);
    }
    .picture-with-caption.wide .caption 
    {
        margin-right: calc(50vw - 600px);
    }
}
.picture-with-caption .caption .credits 
{
    color: var(--matte-blue-80);
    white-space: nowrap;
}
.credits svg 
{
    height: 1.2em;
    margin: 0 0.4em;
    transform: translateY(3px);
    fill: var(--matte-blue-60);
}
.picture-with-caption .frieze 
{
	position: absolute;
	display: block;
	bottom: 0;
	height: 40px;
	width: 100%;
	background-image: url('/svg/design-frieze.svg');
	background-size: cover;
}


/* SIDE BY SIDE */
.side-by-side picture 
{
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 100% 0;
    background-size: cover;
    background-position: center;
}
.side-by-side article 
{
    display: block;
    width: 100%;
    height: auto;
    padding: 40px 0;
}
@media screen and (min-width:800px) 
{
    .side-by-side 
    {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 60vh;
    }
    .side-by-side picture 
    {
        flex: 0 0 48%;
        width: auto;
        height: auto;
        padding: 0;
    }
    .side-by-side article 
    {
        flex: 0 0 48%;
        width: auto;
        height: auto;
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .side-by-side .credits {
        bottom: 0;
        font-size: .9rem;
        margin-top: 1.8rem;
        color: var(--matte-blue);
    }
    .side-by-side .credits svg {
        margin-left: 0;
    }
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture 
    {
        order: 1;
    }
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture,
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side ~
    .side-by-side picture 
    {
        order: 3;
    }
}


/* TESTIMONIAL */
.testimonial svg,
.testimonial picture 
{
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
}
.testimonial .caption 
{
    font-weight: 900;
    font-size: 1.4rem;
    text-align: center;
    max-width: 800px;
    padding: 0;
    margin: 20px auto;
    color: var(--matte-blue);
}
.testimonial .credits 
{
    font-weight: 300;
    font-size: 1.1rem;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    color: var(--matte-blue-dark);
}


/* RICH TEXT */
@media screen and (min-width:1000px) 
{
    .rich-text.two-col 
    {
        column-count:2;
        column-gap:40px;
        column-rule:1px solid var(--matte-blue-40);
        column-fill:balance;
    }
    .rich-text h2 
    {
        column-span:all;
    }
    .rich-text p 
    {
        display:inline-block;
        max-width: 800px;
    }
}





/* POP OUT  */
.pop-out input[type="checkbox"]
{
    display: none;
}
.pop-out input[type="checkbox"] + label
{
    display: block;
    width: 100%;
    height: 100px;
    padding: 50px 0 20px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}
.pop-out.passive input[type="checkbox"] + label
{
    display: none;
}
.pop-out input[type="checkbox"] + label svg
{
    fill: var(--drc-red);
    width: auto;
    height: 100%;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: var(--slow);
    animation-name: pointer;
    animation-duration: 500ms;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
.pop-out input[type="checkbox"]:checked + label svg
{
    animation-play-state: paused;
    transform: rotate(180deg);
}
.pop-out .aperture
{
    display: block;
    width: 100%;
    height: auto;
    max-height: 200px;
    overflow-y: hidden;
    transition: var(--slow);
}
.pop-out input[type="checkbox"]:checked ~ .aperture,
.pop-out.passive .aperture
{
    max-height: 99em;
}
.pop-out article
{
    display: block;
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: var(--drc-red-10);
    border-radius: var(--soft);
}
@media screen and (min-width:1000px)
{
    .pop-out.one-col article
    {
        column-count: 1; 
        padding: 40px;
    }
    .pop-out.two-col article
    {
        column-count: 2; 
        column-gap: 40px;
        column-fill: balance;
        padding: 40px;
    }
}
.pop-out h2
{
    column-span: all;
}
.pop-out p
{
    display: inline-block;
    max-width: 800px;
}




/* EMBED */
.embed 
{
    background-size:auto 90%, 150% 150%;
    background-position:right 10px center, left top;
    background-repeat:no-repeat;
}
.embed.wide 
{
    padding-left:0;
    padding-right:0;
}
@media screen and (min-width:800px) 
{
    .embed.wide h2, 
    .embed.wide p, 
    .embed.wide .preheader 
    {
        padding-left:calc(50vw - 300px); 
        padding-right:calc(50vw - 300px);
    }
}
@media screen and (min-width:1000px) 
{
    .embed.wide h2, 
    .embed.wide p, 
    .embed.wide .preheader 
    {
        padding-left:calc(50vw - 400px); 
        padding-right:calc(50vw - 400px);
    }
}
@media screen and (min-width:1200px) 
{
    .embed.wide h2, 
    .embed.wide p, 
    .embed.wide .preheader 
    {
        padding-left:calc(50vw - 500px); 
        padding-right:calc(50vw - 500px);
    }
}
@media screen and (min-width:1400px) 
{
    .embed.wide h2, 
    .embed.wide p, 
    .embed.wide .preheader 
    {
        padding-left:calc(50vw - 600px); 
        padding-right:calc(50vw - 600px);
    }
}


/* ICONIC */
.iconic 
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
}
.iconic article 
{
    flex:0 0 100%;
    text-align:center;
}
.iconic article .icon 
{
    height:60px;
    margin:10px auto;
}
@media screen and (min-width:800px) 
{
    .iconic article 
    {
        flex:0 0 20%; 
        margin:0 20px;
    }
}


/* PEOPLE */
.people {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-content:center;
}
.people article {
    flex:0 0 100%;
    padding:20px 10px;
    margin:0;
    text-align:center;
}
@media screen and (min-width:800px) 
{
    .people article 
    {
        flex:0 0 20%;
    }
}
.people article p 
{
    margin:0;
}
.people article .firstname,
.people article .lastname 
{
    font-weight:900;
}
.people article .firstname 
{
    margin-bottom:-5px;
}
.people article .jobtitle 
{
    padding-top:5px;
    padding-bottom:5px;
}
.people article .email 
{
    text-transform:lowercase;
}
.people article .phone 
{
    text-transform:lowercase;
}
.people article picture 
{
    width:100px;
    height:100px;
    min-height:0;
    border-radius:50%;
    margin:0 auto 10px auto;
    transition:var(--slow);
}
.people article:hover picture svg, 
.people article:hover picture img 
{
    transform:translate(-50%,-50%) scale(1.1);
    transition:var(--slow);
}


/* DOWNLOADS */
.downloads 
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
}
.downloads article 
{
    flex:0 0 100%;
    padding:20px 10px;
    text-align:center;
    position:relative;
	min-width:190px;
}
@media screen and (min-width:800px) 
{
    .downloads article 
    {
        flex:0 0 20%;
    }
}
.downloads article picture 
{
    width:105px;
    height:150px;
    margin:0 auto 10px auto;
    border:5px solid white;
    box-shadow:var(--box-shadow);
}
.downloads article p.time,
.downloads article p.size 
{
    display:inline-block;
    margin-bottom:10px;
    font-size:.95rem;
    color:var(--matte-blue-dark);
}
.downloads svg.time 
{
	height:1em;
	margin-right:0.2em;
	transform:translateY(2px);
	fill:var(--matte-blue-80);
}
.downloads svg.size 
{
	height:1.2em;
	margin-left:1em;
	margin-right:0.2em;
	transform:translateY(4px);
	fill:var(--matte-blue-80);
}
.downloads article a 
{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    padding:0;
    margin:0;
    position:absolute;
    top:0;
    left:0;
    background:rgba(0,0,0,0);
    transition:var(--fast);
}
.downloads article:hover a 
{
    background:rgba(0,0,0,.25);
    transition:var(--fast);
}
.downloads article a svg {
    fill:rgba(255,255,255,0);
    transition:var(--slow);
    width:40px;
}
.downloads article:hover a svg 
{
    transform:translate(0,-5px);
    fill:white;
    transition:var(--slow);
}


/* LOGO CLOUD */
.logocloud 
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
}
.logocloud article 
{
    flex:0 0 50%;
    padding:20px 10px;
    text-align:center;
    position:relative;
    box-sizing:border-box;
}
@media screen and (min-width:800px) 
{
    .logocloud article 
    {
        flex:0 0 20%; 
        min-width:190px;
    }
}
.logocloud article picture 
{
    width:150px;
    height:150px;
    margin:0 auto 10px auto;
}
.logocloud article picture img 
{
    object-fit: contain;
}
.logocloud article a 
{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    padding:0;
    margin:0;
    position:absolute;
    top:0;
    left:0;
    background:rgba(0,0,0,0);
    transition:var(--fast);
}
.logocloud article:hover a 
{
    background:rgba(0,0,0,.25);
    transition:var(--fast);
}
.logocloud article a svg 
{
    width:40px;
    fill:none;
    transition:var(--fast);
}
.logocloud article:hover a svg 
{
    transform:translate(0,-5px);
    fill:white;
    transition:var(--fast);
}


/* FAQ */
.questions input[type="radio"] 
{
    display:none;
}
.questions label 
{
    display:block;
    width:100%;
    height:auto;
    padding:10px 20px;
    margin:2px 0 0 0;
    font-weight:900;
    font-size:18px;
    background:var(--matte-blue-10);
    color:var(--matte-blue-dark);
    transition:var(--fast);
    cursor:pointer;
}
.questions label:hover 
{
    color:var(--black-ish);
    transition:var(--fast);
}
.questions input[type="radio"]:checked + label 
{
    color:var(--black-ish);
    background:var(--white-ish);
    transition:var(--fast);
}
.questions label:first-of-type 
{
    border-radius:var(--soft) var(--soft) 0 0;
}
.questions label:last-of-type,
.questions label:last-of-type + .answer 
{
    border-radius:0 0 var(--soft) var(--soft);
}
.questions .answer 
{
    display:none;
    width:100%;
    height:auto;
    padding:0 20px 20px 20px;
    margin:0;
    background:var(--white-ish);
    color:var(--black-ish);
}
.questions input[type="radio"]:checked + label + .answer 
{
    display:block;
}
.questions .answer p 
{
    margin-bottom:10px;
}


/* CHILD PAGES */
.childpages 
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    background:whitesmoke;
}

.childpages article 
{
    flex:0 0 50%;
}
@media screen and (max-width:800px)
{
    .childpages 
    {
        padding:30px 8px;
    }
}
@media screen and (min-width:800px)
{
    .childpages article 
    {
        flex:0 0 25%;
    }
}
.childpages article 
{
    display:flex;
	align-content:flex-start;
    width:100%;
    height:100%;
    padding:8px;
    background:transparent;
    color:var(--black-ish);
    transition:var(--fast);
}
.childpages article:hover 
{
    background:white;
    color:black;
    box-shadow:var(--box-shadow);
}
.childpages article 
{
	flex-flow:row wrap;
}
.childpages picture 
{
    flex:0 0 100%;
    order:1;
	padding:0 0 50% 0;
    margin:0 0 8px 0;
}
.childpages article picture img 
{
    transform:translate(-50%,-50%) scale(1.1);
}
.childpages article:hover picture img 
{
    transform:translate(-50%,-50%) scale(1);
}
.childpages .text 
{
	order:2;
	flex:1 1 auto;
}
.childpages h5,
.childpages p 
{
    font-size:1rem;
}


/* TAG LIST */
.relatedByTag svg 
{
	display: block;
	width:auto;
	height:2.2rem;
	margin:0 auto 1rem auto;
	fill:var(--matte-blue);
}
.relatedByTag ul 
{
    list-style:none;
    display:block;
    width:100%;
    height:auto;
    padding:0;
    margin:0;
    text-align:center;
}
.relatedByTag ul li 
{
    list-style:none;
    display:inline;
    padding:0;
    margin:0;
}
.relatedByTag ul li a 
{
    display:inline-block;
    width:auto;
    height:auto;
    padding:.5em 1em;
    margin:0 0 .5em .5em;
    border-radius:var(--soft);
    background:var(--matte-blue-40);
    color:white;
    font-weight:900;
    text-decoration:none;
    letter-spacing:.1em;
    transition:var(--fast);
}
.relatedByTag ul li a:hover 
{
    color:white;
    background:var(--matte-blue-60);
}


/* PETITION */
.petition .wrap {
    display: flex;
    flex-flow: row wrap;
    border: 1rem solid white;
    box-shadow: var(--box-shadow);
}

.petition picture {
    flex: 0 0 100%;
    min-height: 40vh;
}

.petition .form {
    flex: 0 0 100%;
    padding: 2rem 1rem;
}

@media screen and (min-width: 1000px)
{
    .petition picture, .petition .form {
        flex: 0 0 50%;     
        padding: 4rem 2rem;
    }
}

.petition form 
{
    display:block;
    width:100%;
    height:auto;
    padding:0;
    margin:0;
}

.petition fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.petition input[type="text"],
.petition input[type="tel"],
.petition input[type="email"] {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 0 1rem 0;
    background: white;
    border: 2px solid black;
    border-radius: var(--soft);
    outline: 0;
}

.petition input:focus {
    box-shadow: var(--box-shadow);
}

.petition input::placeholder {
    color: var(--matte-blue);
}

.petition input[type="submit"] {
    width: 50%;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--soft);
    color: white;
    background: black;
    letter-spacing: .05em;
    transition: var(--slow);
    font-weight: 900;
}

.petition input[type="submit"]:hover {
    letter-spacing: .1em;
}

.petition .dataconsent > label {
    display: none;
}

.petition .field-validation-error {
    color: red;
}

.petition .umbraco-forms-submitmessage {
    display: block;
    width: 100%;
    height: auto;
    padding: 4rem 0;
    font-size: 2rem;
    font-weight: 900;
    color: black;
    background: transparent;
    border-radius: 0;
}




/* NEWSLETTER */
.newsletter 
{
    text-align:center;
}
.newsletter fieldset 
{
	border:0;
}
.newsletter form 
{
    display:block;
    width:100%;
    height:auto;
    padding:0;
    margin:auto;
}
.newsletter form input 
{
    display:inline-block;
    width:100%;
    height:auto;
    padding:.75rem 1rem;
    margin:0 0 .5rem 0;
    border:none;
    outline:none;
    border-radius:var(--soft);
    color:var(--black-ish);
    background:var(--white-ish);
    font-weight:900;
    font-size:1rem;
    letter-spacing:.05em;
    font-family:"Source Sans 3", sans-serif;
}
.newsletter form button,
.newsletter input[type="submit"] 
{
    display:inline-block;
    width:100%;
    height:auto;
    padding:.75rem 1rem;
    margin:0;
    border:none;
    outline:none;
    border-radius:var(--soft);
    color:white;
    background:var(--black-ish);
    font-size:1rem;
    font-weight:900;
    letter-spacing:.05em;
    transition:var(--fast);
    font-family:"Source Sans 3", sans-serif;
    cursor:pointer;
}
.newsletter form button:hover,
.newsletter input[type="submit"]:hover 
{
    background:var(--drc-red);
    transition:var(--fast);
}
.umbraco-forms-submitmessage 
{
    box-sizing:border-box;
	display:block;
	width:100%;
	height:auto;
	padding:3em;
	border-radius:var(--soft);
	background:var(--bright-green-20);
	color:var(--bright-green);
	font-size:20px;
}
@media screen and (min-width:800px) 
{
    .newsletter form input, 
    .newsletter form button, 
    .newsletter input[type="submit"] 
    {
        width:500px; 
        border-radius:var(--soft);
    }
}


/* SCROLL EFFECTS */
.side-by-side picture.scroll-effect 
{
  transition:2000ms;
  opacity:0;
}
.side-by-side picture.reveal 
{
  opacity:1;
}
h3.scroll-effect 
{
  transition:1000ms;
  letter-spacing:.05em;
}
h3.reveal 
{
  letter-spacing:.1em;
}
.testimonial picture.scroll-effect 
{
  transition:1000ms;
}
.testimonial picture.reveal 
{
  transform:scale(1.1);
}
.iconic.scroll-effect .icon 
{
  transition-duration:1000ms;
  opacity:.2;
}
.iconic.reveal .icon 
{
  opacity:1;
}
.iconic.reveal article:nth-of-type(1) .icon 
{
  transition-delay:200ms;
}
.iconic.reveal article:nth-of-type(2) .icon 
{
  transition-delay:400ms;
}
.iconic.reveal article:nth-of-type(3) .icon 
{
  transition-delay:600ms;
}
.iconic.reveal article:nth-of-type(4) .icon 
{
  transition-delay:800ms;
}





/* SHORTCUTS BASIC */
section.shorts {
    display: flex;    
    flex-flow: row wrap;
}

section.shorts article {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 10px 10px 0;
    background-color: whitesmoke;
    background-image: url("/svg/design-dots.svg");
    background-position: bottom right 10px;
    background-repeat: no-repeat;
    background-size: auto 50%;    
    transition: var(--fast);
}

@media screen and (min-width:1000px)
{
    section.shorts article {
        flex: 0 0 calc(33.33% - 10px);
    }
}

section.shorts article picture {
    padding:0 0 50% 0;
    background: var(--matte-blue);
}

section.shorts article picture img {
    transform:translate(-50%,-50%) scale(1.1);
    transition-delay:200ms;
    transition:var(--slow);
}

section.shorts article:hover picture img {
    transform:translate(-50%,-50%) scale(1);
    transition-delay:200ms;
    transition:var(--slow);
}

section.shorts article div.txt {
    display: block;
    width: 100%;
    height: auto;
    padding: var(--tight);
}


/* PREVIEWS */
.previews {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.previews h3 {
    padding-top: 2rem;
}

.previews article {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 10px 10px 0;
    transition: var(--fast);
}

@media screen and (min-width:800px)
{

    .previews.fixed {
        align-content: flex-start;
    }

    .previews.responsive {
        align-content: stretch;
    }
    
    .previews.slim {
    }

    .previews.wide {
        padding-left: 10px;
        padding-right: 0;
    }
    
    .previews.slim article {
        flex: 0 0 calc(33.33% - 10px); 
        margin: 0 10px 10px 0;
    }

    .previews.wide article {
        flex: 0 0 calc(25% - 10px); 
        margin: 0 10px 10px 0;
    }

    .previews.responsive article.count-1 {
        flex: 0 0 calc(100% - 10px); 
        margin: 0 10px 10px 0;
    }

    .previews.responsive article.count-2 {
        flex: 0 0 calc(50% - 10px); 
        margin: 0 10px 10px 0;
    }
    
    .previews.responsive article.count-3 {
        flex: 0 0 calc(33.33% - 10px); 
        margin: 0 10px 10px 0;
    }

    .previews.responsive article.count-1 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .previews.responsive article.count-1 picture {
        flex: 0 0 50%;
        padding: 30% 0 0 0;
    }
    
    .previews.responsive article.count-1 .textside {
        flex: 0 0 50%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-content: center;
        align-items: flex-start;
    }
}

.previews article picture {
    padding:0 0 50% 0;
}

.previews article picture img {
    transform:translate(-50%,-50%) scale(1.1);
    transition:var(--slow);
    transition-delay:200ms;
}

.previews article:hover picture img {
    transform:translate(-50%,-50%) scale(1);
}

.previews article .textside {
    padding: var(--tight);
}
