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

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    padding: 16px 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger.is-active:hover {
    opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 20px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}


/*
 * Boring
 */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}


/*
 * Emphatic
 */

.hamburger--emphatic {
    overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -60px;
    top: -60px;
    transform: translate3d(60px, 60px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -60px;
    top: -60px;
    transform: translate3d(-60px, 60px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}


/*
 * Spring
 */

.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}


/*
 * Vortex
 */

.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}


/*-- -------------------------------------------------------------------------------------------------------- --*/

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Exo", sans-serif;
}

#wrapper,
#show {
    padding-top: 50px;
}

@media (min-width: 799px) {
    #wrapper {
        padding-left: 230px;
        padding-top: 30px;
    }
}

#footer {
    padding: 20px;
}

@media (min-width: 799px) {
    #footer {
        padding: 40px;
        padding-left: 320px;
    }
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#theMenu {
    z-index: 999;
    color: #000;
    position: fixed;
    height: 100%;
    width: 250px;
    padding-top: 60px;
    padding-left: 10px;
}

.hamburger {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

@media (min-width: 799px) {
    .hamburger {
        display: none;
    }
}

#theMenu {
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    left: -300px;
}

@media (min-width: 799px) {
    #theMenu {
        left: 0;
    }
}

#theMenu.showing {
    left: 0;
}

.homePage #theMenu {
    left: -300px;
}

@media (min-width: 799px) {
    .homePage #theMenu {
        left: -300px;
    }
}

.homePage #theMenu.showing {
    left: 0;
}

.homePage {
    width: 100%;
    height: 100%;
}

.homePage #wrapper {
    padding-left: 0 !important;
    width: 100%;
    height: 100%;
}

.homePage .background-image {
    width: 100%;
    height: 100%;
}

.homePage .hamburger {
    display: block;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 0.2em;
    font-weight: 600;
}

h2 {
    font-size: 1.3em;
    margin-bottom: 1em;
    line-height: 1.1em;
}

h3 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 0.8em;
    line-height: 1.1em;
    color: #f60;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 0.2em;
    line-height: 1em;
    color: #f60;
}

p {
    line-height: 1.3em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.content {
    width: 100%;
    max-width: 940px;
    padding: 20px;
    padding-top: 60px;
}

@media (min-width: 799px) {
    .content {
        padding: 40px;
        padding-left: 90px;
    }
}

.content hr {
    border-top-width: 0;
    margin: 40px 0;
}

.btn {
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5em;
    display: inline-block;
    padding: 16px 25px;
}

.imageGrid {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0px;
}

.backImage {
    height: 50vw;
    width: 50%;
    overflow: hidden;
    position: relative;
    cursor: default;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.backImage .foreContent {
    position: absolute;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0.7em;
    line-height: 1.2em;
}

.edger {
    background-size: cover;
    background-repeat: no-repeat;
}


/*-- -------------------------------------------------------------------------------------------------------- --*/

#theContent {
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 2%;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    background-color: #000;
    color: #fff;
    z-index: 900;
}

#theContent p,
#theContent h4 {
    padding-left: 1%;
}

#theContent a,
#theContent a:visitied {
    color: #f60;
}

#show {
    position: absolute;
    padding: 10px;
    padding-right: 10px;
    right: 0px;
}

@media (min-width: 360px) {
    .backImage {
        height: 33.33vw;
        width: calc(33.33%);
    }
    .edger {
        background-image: url("../edge.php?w=3");
    }
    #theContent {
        top: calc(33.33vw + 40px);
    }
    #theContent,
    #show {
        height: calc(100% - 33.33vw - 40px);
        left: 33.33vw;
        width: 60vw;
    }
    .ss-slides img {
        width: 60vw;
    }
    .tooltiptext p,
    .tooltiptext h3 {
        font-size: 70%;
    }
}

@media (min-width: 800px) {
    .backImage {
        height: 25vw;
        width: 25%;
    }
    .edger {
        background-image: url("../edge.php?w=4");
    }
    #theContent {
        top: calc(25vw + 40px);
    }
    #theContent,
    #show {
        height: calc(100% - 25vw - 40px);
        left: 25vw;
        width: 70vw;
    }
    .ss-slides img {
        width: 70vw;
    }
    .tooltiptext p,
    .tooltiptext h3 {
        font-size: 80%;
    }
}

@media (min-width: 1000px) {
    .backImage {
        height: 20vw;
        width: 20%;
    }
    .edger {
        background-image: url("../edge.php?w=5");
    }
    #theContent {
        top: calc(20vw + 40px);
    }
    #theContent,
    #show {
        height: calc(100% - 20vw - 40px);
        left: 20vw;
        width: 75vw;
    }
    .ss-slides img {
        width: 75vw;
    }
    .tooltiptext p,
    .tooltiptext h3 {
        font-size: 90%;
    }
}

@media (min-width: 1200px) {
    .backImage {
        height: 16.66vw;
        width: 16.66%;
    }
    .edger {
        background-image: url("../edge.php?w=6");
    }
    #theContent {
        top: calc(16.66vw + 40px);
    }
    #theContent,
    #show {
        height: calc(100% - 16.67vw - 50px);
        left: 16.66vw;
        width: 80vw;
    }
    .ss-slides img {
        width: 80vw;
    }
    .tooltiptext p,
    .tooltiptext h3 {
        font-size: 100%;
    }
}

body {
    color: #000;
}

.bgcolor {
    background-color: #000;
}

.basecolor {
    color: #f60;
}

#theMenu {
    background-color: #000;
}

#theMenu>ul>li>a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 300%;
}

#theMenu>ul>li>a:hover,
#theMenu>ul>li>a.here {
    color: #f60;
    font-weight: 1000;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #f60;
}

#theMenu ul li {
    width: inherit;
    text-align: center;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    color: white;
    background-color: rgb(59, 58, 58);
    width: 90%;
    height: 90%;
    padding: 5%;
    border-radius: 6px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 5%;
    left: 5%;
}

.tooltiptext a,
#theContent a {
    color: #f60;
    text-decoration: none;
    border: 1px solid;
    padding: 2px;
}

.tooltiptext h3 {
    text-align: center;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.visi {
    visibility: visible;
}

p .c {
    color: #f60;
}

form {
    padding-left: 50px;
}


/* Background images --------------------------------------------------------------------------------- */

.img-Menu {
    background-image: url('../img/logo/TWnew.jpg');
    cursor: pointer;
}

.img-AnExhibition2024 {
    background-image: url('../img/makingexhibition.png');
}

.img-EveryoneIsDead2019 {
    background-image: url('../img/back/small/EveryoneisDead2019.jpg');
}

.img-TheOrator2016 {
    background-image: url('../img/back/small/TheOrator2016.jpg');
}

.img-Shipped2016 {
    background-image: url('../img/back/small/Shipped2016.jpg');
}

.img-TheRoomUpstairs2016 {
    background-image: url('../img/back/small/TheRoomUpstairs2016.jpg');
}

.img-AreYouThere2016 {
    background-image: url('../img/back/small/AreYouThere2016.jpg');
}

.img-StompingonShadows2016 {
    background-image: url('../img/back/small/StompingonShadows2016.jpg');
}


/* --------------- */

.img-Dogtag2015 {
    background-image: url('../img/back/small/Dogtag2015.jpg');
}

.img-Icebear2015 {
    background-image: url('../img/back/small/Icebear2015.jpg');
}

.img-Islanders2015 {
    background-image: url('../img/back/small/Islanders2015.jpg');
}

.img-TriptheLightFantastic2015 {
    background-image: url('../img/back/small/TriptheLightFantastic2015.jpg');
}

.img-Plunge2015 {
    background-image: url('../img/back/small/Plunge2015.jpg');
}


/* --------------- */

.img-HomewardBound2014 {
    background-image: url('../img/back/small/HomewardBound2014.jpg');
}

.img-CoastalDefences2014 {
    background-image: url('../img/back/small/CoastalDefences2014.jpg');
}

.img-InfinityPool2014 {
    background-image: url('../img/back/small/InfinityPool2014.jpg');
}

.img-solosolo2014 {
    background-image: url('../img/back/small/solosolo2014.jpg');
}

.img-IcarusinLove2014 {
    background-image: url('../img/back/small/IcarusinLove2014.jpg');
}


/* --------------- */

.img-100MilesNorthofTimbucktu2013 {
    background-image: url('../img/back/small/100MilesNorthofTimbucktu2013.jpg');
}

.img-Nets2013 {
    background-image: url('../img/back/small/Nets2013.jpg');
}

.img-DusttoDust2013 {
    background-image: url('../img/back/small/DusttoDust2013.jpg');
}

.img-Canis2013 {
    background-image: url('../img/back/small/Canis2013.jpg');
}

.img-Blackout2013 {
    background-image: url('../img/back/small/Blackout2013.jpg');
}


/* --------------- */