:root {
    --myred: #f15a24;
    --mygreen: #22b573;
    --myblue: #29abe2;
    --myyellow: #edd811;
    --mypink: #ff7bac;
  }

* {
    
    font-family: sans-serif;
        
}

.hover:hover {
    transform: scale(1.5)
}

.process {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 30px 0 30px 0;
}

.process a {
    text-decoration: none;
    display: flex;
    margin: auto;
}

.process div:hover {
    opacity: 1 !important;
}

.empathise, .define, .ideate, .prototype, .test {
    width: 150px;
    height: 150px;
    display: flex;
}



.step {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: auto;
}

.empathise {
    background-color: #22b573;
}

.define {
    background-color: #f15a24;
}

.ideate {
    background-color: #29abe2;
}

.prototype {
    background-color: #edd811;
}

.test {
    background-color: #ff7bac;
}

#empathise, #define, #ideate, #prototype, #test {
    color: black;
    display: none;
    margin: 0;
    position: relative;
}

.empathise:hover ~ #empathise {
    display: block;
    background-color: white;
    animation-name: step;
    animation-duration: 1s;
}

@keyframes step {
  from {opacity: 0;}
  to {opacity: 1;}
}

.define:hover ~ #define {
    display: block;
    background-color: white;
    animation-name: step;
    animation-duration: 1s;

}

.ideate:hover ~ #ideate {
    display: block;
    background-color: white;
    animation-name: step;
    animation-duration: 1s;
}

.prototype:hover ~ #prototype {
    display: block;
    background-color: white;
    animation-name: step;
    animation-duration: 1s;
}

.test:hover ~ #test {
    display: block;
    background-color: white;
    animation-name: step;
    animation-duration: 1s;
}

p {line-height: 1.5;
font-size: 1.1rem}

a {
    color:#f15a24;
}

h1 {
    font-size: 60px;
 
}

h2 {
    margin-top:100px;
    margin-left: 0px;
    background-color: grey;
    color: white;
    padding: 10px;
    text-transform: uppercase;
}

h3 {
    
    margin-top: 60px;
    text-decoration: underline;
}


.red { font-size: 10px; }


hr {
    
    margin-top: 100px;
}

#keyterms {
    color: firebrick;
}

.singleimg { 
    width: 50%;
    display: block;
    margin: 50px auto 0px auto;
    
}

.singleimgsmall { 
    width:50%;
    display: block;
    margin: 50px auto 0px auto ;

}

.singleimgbig { 
    width:100%;
    display: block;
    margin: 50px 0 0px 0 ;
}

.imgcaption {
    margin-bottom: 50px;
    text-align: center;
    font-style: italic; 
    padding: 0 10% 0 10%; 
}

#filmstrip {
    
    height: 250px;
    width: 100%;
    object-fit: cover;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

#callout {
    display: none;
}

#callout:hover {
    display:block;
    z-index: 2;
}


.gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gallery img {
    flex-grow: 1;
    width: 50%;
    height: 25vh;
    min-width: 300px;
    padding: 0px;
    margin: 0px;
    border: 2px solid white;
    object-fit: cover;
    box-sizing: border-box;
}

.threeup {
    display: flex;
    justify-content: space-between;
}

.threeup a {
    width: 28%;
    display: inline-block;
    text-align: center;
}

.threeup a img {
    width: 100%;
    border: 1px solid #d3d3d3;
    height: 100%;
}


iframe {    
    width: 98%;
    height: 40vw;
}

.border {
    border: 2px solid grey;
}

.wrapper {
    
    width: 800px;
    margin: auto;
    padding: 20px;
    background-color: white;
    
}

.hide{
    opacity: 0;
}

.hide:hover{
    display: block;
    opacity: 1;
    animation-name: step;
    animation-duration: 1s;
}

q {
    border-left: 2px solid gray;
    font-style: italic;
    font-weight: bold;
    font-size: 21px;
    display: block;
    margin-top: 50px;
    padding-left: 3%; 
    color: #f15a24;
    quotes: none;
}

ul {
    line-height: 2;
    margin-bottom: 10px;
}


#transcript {
    height: 50px;
    overflow-y: scroll;
    color: darkgray;
}

body {background-color: white;}

.indent {
    font-family: monospace;
    font-size: 1.2rem;
    color: white;
    padding: 15px 0 15px 10px;
    background-color: black;
    
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  
  background-color: black;
  color: #fff;
  text-align: left;
  padding: 20px 20px;
  border-radius: 6px;
  position: absolute;
  width: 30vh;
  max-width: 250px;
  z-index: 1;


}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}


table {
    text-align: left;
        -webkit-text-size-adjust: 100%;
    font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.25rem;
    text-align: left;
    word-wrap: break-word;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    max-width: 100%;
    overflow: auto;
    display: table;
    width: 100%;
}

tbody {
        -webkit-text-size-adjust: 100%;
    font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.25rem;
    text-align: left;
    word-wrap: break-word;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    border-collapse: collapse;
    border-spacing: 0;
}

tr {
    -webkit-text-size-adjust: 100%;
    font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.25rem;
    text-align: left;
    word-wrap: break-word;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    border-collapse: collapse;
    border-spacing: 0;
}

td {    -webkit-text-size-adjust: 100%;
    font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.25rem;
    text-align: left;
    word-wrap: break-word;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: top;
    border: .0625rem solid #dadce0;
    padding: .25rem .75rem;
    border-color: #dadce0;
    background-color: #ffffff;
    border-right-color: #dadce0;}

.subtext {
    color: grey;
    line-height: 2;
}

th {background-color: gainsboro;
padding: 10px;}


video {
    width: 100%;
}

.videosmall {
    width:50%;
    margin-bottom: 60px;
}

.gallery > * {
    margin-right: 30px;
    flex:1;
}



.bookcover {
    width: 50px;
    margin-right: 50px;
}

.bookcover:hover {
    transform: scale(10) translateX(20px);
    border: .2px solid black;
}

.transcript {
    height: 50px;
    overflow-y: scroll;
    color: darkgray;
}

.fadegallery {
    position: relative;
    width: 100%;
    height: 500px;
}

.fadegallery img {
    position: absolute;
    top: 0;
    left: 0;
}

.fadegallery .topimg {
    opacity: 0;
    z-index: 1;
}

.fadegallery .topimg:hover {
    opacity: 1;
    transition: 1s;
}


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

.wrapper {
    
 width: 90%;
 padding: 5px;
   
}
    
    .process {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    position: static;
}
    
    .process > * {
    width: 100%;
    height: 150px;
    display: flex; 
    margin-bottom: 30px;
}

    }

    .responsivegallery img {

width:100%;
}

   .singleimg { 
  width:95%;
}
    
 

    