@import url('https://fonts.googleapis.com/css?family=Abhaya+Libre:400,600,800|Heebo:300,400&display=swap');

body {
    margin: 0;
    font-family: 'Abhaya Libre', serif;
    height: 100%;
    background-color: white;
}

* {
    box-sizing: border-box;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

header {
    position: absolute;
    left: 0px;
    right: 0px;
    /*border-bottom: 1px solid black;*/
    padding: 0px 30px;
    z-index: 10;
    
}

header .row {
    justify-content: space-between;
    align-items: center;
}

header .brand-name a {
    display: block;
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    color: white;
    position: relative;
    float: left;
}

header .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .navbar ul li {
    display: inline-block;
    margin-left: 35px;
}

header .navbar ul li a {
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    text-decoration: none;
    line-height: 70px;
    color: white;
    display: block;
    font-weight: 300;
    position: relative;
}

header .navbar ul li a.active {
    font-weight: 400;
}

header .navbar ul li a::before {
    content: '';
    height: 1.55px;
    background-color: white;
    width: 0;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: -1px;
    transition: all .5s ease;
    font-family: 'Heebo', sans-serif;
}

header .navbar ul li a:hover::before {
    width: 100%;
    left: 0;
}

header .navbar ul li a.active::before {
    width: 100%;
    left: 0;
}


/*Header image*/

.project {
    display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
    width: 100%;
	height: 100vh;
    background-color: #FFF4F4;
	background: -moz-linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
	background: -webkit-linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
	background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url("../1x/Time_Page.png");
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e55d87', endColorstr='#5fc3e4', GradientType=1 );
}

.project .image {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 2rem;
    max-width: 960px;
    text-align: center;
}
/*END Header image*/

/*Project Info*/
.project-title {
    display: flex;
    width: 80%;
    margin: auto;
    max-width: 1200px;
    padding-top: 7em;
}
  
.realtalk {
    flex: 50%;
    width: 25%;
}

.realtalk ul {
    /*list-style-type: none;*/
    padding-left: 1em;
    padding-top: 3em;
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Heebo', sans-serif;
    line-height: 1.75;
}

.realtalk ul a:link {
    text-decoration: none;
    color: black;
}

.realtalk ul a:visited {
    text-decoration: none;
    color: black;
}

.realtalk ul a:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
}

.realtalk ul a:active {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
}


/*DotNavCSS*/
/*easy scroll dots - codepenVersion*/
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
/*.cd-img-replace {
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}*/
  
  /* -------------------------------- 
  
  Main components 
  
  -------------------------------- */
.cd-section {
    min-height: 100%;
    position: relative;
}
  
.cd-scroll-down {
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    width: 38px;
    height: 44px;
    background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}
  
/* No Touch devices */
.cd-nav-trigger {
    display: none;
}
  
.no-touch #cd-vertical-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.no-touch #cd-vertical-nav li {
    text-align: right;
}
.no-touch #cd-vertical-nav a {
    display: inline-block;
    /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
    content: "";
    display: table;
    clear: both;
}
.no-touch #cd-vertical-nav a span {
    float: right;
    display: inline-block;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
}
.no-touch #cd-vertical-nav a:hover span {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
    opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
    background-color: #802a2a;
}
.no-touch #cd-vertical-nav .cd-dot {
    position: relative;
    /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
    top: 8px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #ffd0d0;
    -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
    -moz-transition: -moz-transform 0.2s, background-color 0.5s;
    transition: transform 0.2s, background-color 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
ul#otis {
    list-style-type: none;
}
.no-touch #cd-vertical-nav .cd-label {
    position: relative;
    margin-right: 10px;
    padding: .25em .4em;
    color: #944d4d;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-size: 0.875rem;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}
  
/*Touch devices*/
.touch .cd-nav-trigger {
    display: none;
    /*display: block;*/
    z-index: 2;
    position: fixed;
    bottom: 30px;
    right: 5%;
    height: 44px;
    width: 44px;
    border-radius: 0.25em;
    background: #ffd0d0;
}
.touch .cd-nav-trigger span {
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: #944d4d;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
    top: -9px;
}
.touch .cd-nav-trigger span::after {
    bottom: -9px;
}
  
.touch #cd-vertical-nav {
    position: fixed;
    z-index: 1;
    right: 5%;
    bottom: 30px;
    width: 90%;
    max-width: 400px;
    max-height: 90%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    border-radius: 0.25em;
    background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
    display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
    color: #d88683;
}
.touch #cd-vertical-nav.open {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
    background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
    background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    background-color: #3e3947;
    height: 3px;
    width: 20px;
    border-radius: 0;
    left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
    border-bottom: none;
}
  
@media only screen and (min-width: 768px) {
    .touch .cd-nav-trigger, .touch #cd-vertical-nav {
      bottom: 40px;
    }
}
  
/*END Dot Nav*/


  
#myBtn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99;
    /*font-size: 18px;*/
    border: none;
    outline: none;
    background-color: rgba(245, 173, 173, 0.5);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Abhaya Libre', serif;
    font-size: 1.2rem;
    font-weight: 800;
}
  
#myBtn:hover {
    background-color: rgba(206, 143, 143, 0.65);
}

.info {
    width: 50%;
    font-size: 0.9rem;
    line-height: 30px;
    padding-bottom: 6em;
}
  
.realtalk h2 {
    list-style: none;
    padding-left: 0;
    font-size: 2.5rem;
    line-height: 40px;
    font-weight: 800;
    /*padding-top: 0.5em;*/
    padding-bottom: 0.5em;
}

.realtalk h3 {
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 400px;
    line-height: 25px;
}

.project-title p {
    font-size: 0.9rem;
    padding-bottom: 2em;
}

.realtalk p {
    font-size: 1rem;
    font-weight: 300;
}
  
p {
    font-family: 'Heebo', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    /*line-height: 30px;*/
}

.info h4 {
    font-size: 1.2rem;
    padding-bottom: 0.2em;
}
/**/

/*Solution Video*/
.solution-vid {
    background-color: #FFF4F4;
    /*padding-bottom: 1em;*/
}

.vid {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.vid object,
.vid embed,
.vid iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 2em;
    padding-bottom: 8em;
    padding-left: 10em;
    padding-right: 10em;
}

.solution-vid h4 {
    font-size: 1.2rem;
    padding-left: 8.75em;
    padding-top: 3.5em;
    padding-bottom: 0.25em;
}

.solution-vid p {
    padding-left: 10.5em;
    font-size: 1rem;
}

.brand h4 {
    font-size: 1.2rem;
    padding-left: 8.75em;
    padding-top: 3.5em;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 8vh;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    z-index: 9;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    -moz-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}

@-webkit-keyframes fade_move_down {
    0% {
   -webkit-transform:translate(0, -10px) rotate(45deg);
   opacity: 0;
   }
    50% {
   opacity: 1;
   }
    100% {
   -webkit-transform:translate(0, 10px) rotate(45deg);
   opacity: 0;
   }
}

@-moz-keyframes fade_move_down {
    0% {
   -moz-transform:translate(0, -10px) rotate(45deg);
   opacity: 0;
   }
    50% {
   opacity: 1;
   }
    100% {
   -moz-transform:translate(0, 10px) rotate(45deg);
   opacity: 0;
   }
}

@keyframes fade_move_down {
    0% {
   transform:translate(0, -10px) rotate(45deg);
   opacity: 0;
   }
    50% {
   opacity: 1;
   }
    100% {
   transform:translate(0, 10px) rotate(45deg);
   opacity: 0;
   }
}

/* Slideshow container */

/*App*/
.slideshow-container {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto;
    background-color: white;
    padding-top: 4em;
    padding-bottom: 4em;
    padding-left: 4em;
    padding-right: 4em;
}

.slideshow-container img {    
    padding-right: 1em;
    max-width: 85%;
}

/*.slideshow-container::-webkit-scrollbar {    
    display: none;
}*/

.mySlides1 {
    flex: 0 0 auto;
}

.slideshow-container2 {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto;
    background-color: white;
    padding-top: 4em;
    padding-bottom: 6em;
    padding-left: 4em;
    padding-right: 4em;
}

.slideshow-container2 img {    
    padding-right: 1em;
    max-width: 85%;
}

.slideshow-container3 {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto;
    background-color: white;
    padding-top: 4em;
    padding-bottom: 6em;
    padding-left: 4em;
    padding-right: 4em;
}

.slideshow-container3 img {    
    padding-right: 1em;
    max-width: 85%;
}

.slideshow-container4 {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto;
    background-color: white;
    padding-top: 15em;
    padding-bottom: 4em;
    padding-left: 4em;
    padding-right: 4em;
}

.slideshow-container4 img {    
    padding-right: 1em;
    max-width: 85%;
}


/*.slideshow-container2::-webkit-scrollbar {    
    display: none;
}*/

.mySlides1 {
    flex: 0 0 auto;
}


.app-container {
    background-color: white;
    position: relative;
    padding-left: 200px;
    padding-right: 200px;
    text-align: left;
    padding-bottom: 4em;
}

.app-container .app-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 3em;
    z-index: 100000;
}

.app-text img {
    max-width: 1000px;
}

.app-text h4 {
    padding-left: 7.35em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.5em;
}

.app-text p {
    padding-left: 9.75em;
    line-height: 1.75;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
    width: 720px;
    padding-bottom: 0.5em;
}



.pop-image {
    float: left;
    width: 50%;
    padding: 2em;
}

.popup::after {
    content: "";
    clear: both;
    display: table;
}

.popup2::after {
    content: "";
    clear: both;
    display: table;
}

.popup {
    padding-bottom: 8em;
    padding-left: 10em;
    padding-right: 10em;
}

.popup2 {
    background-color: #FFF4F4;
    padding-bottom: 8em;
    padding-top: 1em;
    padding-left: 8em;
    padding-right: 8em;
}

section#staggered {
    margin-top: 60px;
}

section#staggered2 {
    margin-top: 60px;
}

/*Website Video*/
.web-vid {
    background-color: #FFF4F4;
    /*padding-bottom: 1em;*/
}

.vid {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.vid object,
.vid embed,
.vid iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 2em;
    padding-bottom: 6em;
    padding-left: 10em;
    padding-right: 10em;
}

.web-vid h4 {
    font-size: 1.2rem;
    padding-left: 8.5em;
    padding-top: 3.5em;
    padding-bottom: 0.5em;
}

.web-vid p {
    background-color: #FFF4F4;
    padding-left: 11.25em;
    line-height: 1.75;
    font-size: 0.9rem;
    width: 720px;
    padding-bottom: 1.25em;
}

/*Website*/
.web-image {
    background-color: #FFF4F4;
    position: relative;
    padding-left: 220px;
    padding-right: 220px;
    text-align: left;
    padding-bottom: 6em;
    padding-top: 2.5em;
}

.desktop-image {
    background-color: #FFF4F4;
    position: relative;
    padding-left: 130px;
    padding-right: 130px;
    text-align: left;
    padding-bottom: 4.5em;
    padding-top: 0.5em;
}

.dock-gif {
    background-color: #FFF4F4;
    position: relative;
    padding-left: 220px;
    padding-right: 220px;
    text-align: left;
    padding-bottom: 8em;
    padding-top: 2em;
}

.dock-gif2 {
    background-color: white;
    position: relative;
    padding-left: 220px;
    padding-right: 220px;
    text-align: left;
    padding-bottom: 8em;
    padding-top: 11em;
}

.webimage-text img {
    max-width: 1200px;
    background-color: #FFF4F4;
}

.webimage-text p {
    background-color: #FFF4F4;
    padding-left: 14.25em;
    padding-right: 55em;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.75;
}



/*Window*/
.window-container {
    background-color: white;
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
    padding-bottom: 3em;
}

.window-container .window-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 3em;
}

/*.window-image .first {
    padding-top: 15em;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 0em;
    position: relative;
}*/

.window-image .first {
    padding-top: 13em;
    padding-left: 130px;
    padding-right: 130px;
    padding-bottom: 2em;
    position: relative;
}

.window-text h4 {
    padding-left: 7.35em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.5em;
}

.window-text p {
    padding-left: 9.75em;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    text-align: left;
    width: 720px;
    padding-bottom: 1em;
}


/*Launchpad*/
.launch-container {
    background-color: #FFF4F4;
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
    padding-bottom: 3em;
}

.launch-container .launch-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 3em;
}

.launch-image .first {
    padding-top: 13em;
    padding-left: 130px;
    padding-right: 130px;
    padding-bottom: 4em;
    position: relative;
}

/*.launch-image .first {
    padding-top: 13.5em;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5em;
    position: relative;
}*/

.launch-text h4 {
    padding-left: 7.35em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.5em;
}

.launch-text p {
    padding-left: 9.75em;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    text-align: left;
    width: 720px;
    padding-bottom: 1em;
}

.exhibit-text2 p {
    font-size: 0.9rem;
    padding-right: 8em;
    flex: 50%;
    line-height: 1.75;
}

.exhibit-text2 {
    padding-left: 4em;
    padding-right: 4em;
    display: flex;
    padding-top: 7em;
    padding-bottom: 6em;
}
  
.launch-image {
    flex: 75%;
}


/*TaskBar*/
.task-container {
    background-color: #FFF4F4;
    position: relative;
    padding-left: 200px;
    padding-right: 0px;
    text-align: left;
    padding-bottom: 0em;
}

.task-container .task-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 3em;
}

.task-image .first {
    padding-top: 11.5em;
    /*padding-left: 20px;*/
    padding-right: 0px;
    padding-bottom: 0em;
    position: relative;
}

.task-text h4 {
    padding-left: 7.35em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.5em;
}

.task-text p {
    padding-left: 9.75em;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    text-align: left;
    width: 720px;
    padding-bottom: 1em;
}

.exhibit-text2 p {
    font-size: 0.9rem;
    padding-right: 8em;
    flex: 50%;
    line-height: 1.75;
}

.exhibit-text2 {
    padding-left: 4em;
    padding-right: 4em;
    display: flex;
    padding-top: 7em;
    padding-bottom: 6em;
}
  
.task-image {
    flex: 75%;
}


/*Exhibit*/
.exhibit-container {
    background-color: white;
    position: relative;
    padding-left: 140px;
    padding-right: 140px;
    text-align: left;
    padding-bottom: 3em;
}

.exhibit-container .exhibit-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 3em;
}

.exhibit-image .first {
    padding-top: 15em;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 0em;
    position: relative;
}

.finder-image .first {
    padding-top: 13.5em;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 4em;
    position: relative;
}

.exhibit-text h4 {
    padding-left: 7.35em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.5em;
}

.exhibit-text p {
    padding-left: 9.75em;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    text-align: left;
    width: 720px;
    padding-bottom: 1em;
}

.exhibit-text2 p {
    font-size: 0.9rem;
    padding-right: 8em;
    flex: 50%;
    line-height: 1.75;
}

.exhibit-text2 {
    padding-left: 4em;
    padding-right: 4em;
    display: flex;
    padding-top: 7em;
    padding-bottom: 6em;
}
  
.exhibit-image {
    flex: 75%;
}


/*Social*/
.social-container {
    background-color: #FFF4F4;
    position: relative;
    padding-left: 150px;
    padding-right: 100px;
    text-align: left;
    padding-bottom: 3em;
}

.social-container .social-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 3em;
}

.social-image .first {
    padding-top: 15em;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 3em;
    position: relative;
    /*max-width: 1200px;*/
}

.social-image .second {
    position: relative;
    padding-top: 4em;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 0em;
    max-width: 1200px;
}

.social-text h4 {
    padding-left: 7.35em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.5em;
}

.social-text p {
    padding-left: 9.75em;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    text-align: left;
    width: 780px;
}

/*Poster*/
.poster-container {
    background-color: white;
    position: relative;
    text-align: center;
    padding-bottom: 10em;
}

.poster-container .poster-text {
    /*position: absolute;*/
    top: 20px;
    left: 20px;
    color: black;
    padding-top: 4.5em;
}

.poster-text h4 {
    padding-left: 9.3em;
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
}

.poster-text p {
    padding-left: 9.75em;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.poster-1 {
    float: left;
    width: 50%;
    padding: 1em;
}

.poster-image {
    padding-top: 1.5em;
    padding-bottom: 0em;
    padding-left: 10em;
    padding-right: 10em;
}

.poster-image::after {
    content: "";
    display: table;
    clear: both;
}

/*Research*/
.research-container {
    background-color: #FFF4F4;
    position: relative;
    text-align: left;
    padding-bottom: 1em;
    /*padding-left: 5em;
    padding-right: 5em;*/
}

.research-text h4 {
    top: 20px;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    padding-bottom: 0.75em;
    padding-top: 4em;
    padding-left: 7.65em;
}

.research-finding-text {
    display: flex;
    padding-left: 6.25em;
    padding-right: 6.25em;
    padding-bottom: 10em;
}

.research-find {
    flex: 50%;
    padding-left: 2.75em;
    padding-right: 2.75em;
}

.research-find h5 {
    font-size: 1.4rem;
    padding-top: 1.25em;
    padding-bottom: 0.5em;
}

.research-find h6 {
    padding-bottom: 0.35em;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgb(170, 85, 85);
}





/*Responsive*/

@media screen and (min-width: 1800px) {
    .body {
        background-color: #FFF4F4;
    }
    .container {
        max-width: 1600px;
        margin: auto;
    }
    .web-vid {
        max-width: 1800px;
        margin: auto;
        /*margin-left: 380px;
        margin-right: 380px;*/
        align-content: center;
        background-color: #FFF4F4;
    }
    .app-container {
        max-width: 1800px;
        margin: auto;
        /*margin-left: 380px;
        margin-right: 380px;*/
        align-content: center;
        background-color: white;
    }
    .slideshow-container2 {
        max-width: 1800px;
        margin: auto;
        /*margin-left: 380px;
        margin-right: 380px;*/
        align-content: center;
        background-color: white;
    }
    .dock-gif {
        max-width: 1800px;
        margin: auto;
        /*margin-left: 380px;
        margin-right: 380px;*/
        align-content: center;
        background-color: #FFF4F4;
    }
    .dock-gif2 {
        max-width: 1800px;
        margin: auto;
        /*margin-left: 380px;
        margin-right: 380px;*/
        align-content: center;
        background-color: white;
    }

    .project {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 75vh;
        background-color: #FFF4F4;
        background: -moz-linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
        background: -webkit-linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
        background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url("../1x/Time_Page.png");
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e55d87', endColorstr='#5fc3e4', GradientType=1 );
    }
    .scroll-down {
        bottom: 32vh;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
    }
}




@media only screen and (max-width: 1020px) {
    header .navbar ul li a {
        font-size: 16px;
        line-height: 60px;
    }
    header .brand-name a {
        font-size: 22px;
    }
    .project-title {
        flex-direction: column;
        padding-top: 4em;
    }
    .realtalk {
        width: 100%;
        padding-bottom: 3em;
    }
    .info {
        width: 100%;
    }
    .realtalk h2 {
        font-size: 1.75rem;
        line-height: 35px;
        padding-top: 1em;
        /*padding-bottom: 2.5em;*/
    }
    .project-title .realtalk {
        font-size: 0.9em;
    }

    .no-touch #cd-vertical-nav {
        right: 20px;
    }

    .web-vid {
        background-color: #FFF4F4;
        /*padding-bottom: 1em;*/
    }
    .vid {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }
    .vid object,
    .vid embed,
    .vid iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 2em;
        padding-bottom: 6em;
        padding-left: 10em;
        padding-right: 10em;
    }
    .web-vid h4 {
        font-size: 1.2rem;
        padding-left: 8.5em;
        padding-top: 3.5em;
        padding-bottom: 0em;
    }
    .solution-vid h4 {
        font-size: 1.2rem;
        padding-left: 4.75em;
        padding-top: 2.5em;
    }
    .brand h4 {
        font-size: 1.2rem;
        padding-left: 4.75em;
        padding-top: 3.5em;
    }

    /*App*/
    .slideshow-container {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 3em;
        padding-bottom: 3em;
        padding-left: 3em;
        padding-right: 3em;
    }
    .slideshow-container img {    
        padding-right: 1em;
        max-width: 85%;
    }
    /*.slideshow-container::-webkit-scrollbar {    
        display: none;
    }*/
    .mySlides1 {
        flex: 0 0 auto;
    }
    .slideshow-container2 {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 1.5em;
        padding-bottom: 4em;
        padding-left: 2.5em;
        padding-right: 3em;
    }
    .slideshow-container2 img {    
        padding-right: 1em;
        max-width: 85%;
    }

    .slideshow-container3 {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 1.5em;
        padding-bottom: 6em;
        padding-left: 3em;
        padding-right: 3em;
    }
    
    .slideshow-container3 img {    
        padding-right: 1em;
        max-width: 85%;
    }
    
    .slideshow-container4 {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 15em;
        padding-bottom: 4em;
        padding-left: 4em;
        padding-right: 4em;
    }
    
    .slideshow-container4 img {    
        padding-right: 1em;
        max-width: 85%;
    }

    /*.slideshow-container2::-webkit-scrollbar {    
        display: none;
    }*/
    .mySlides1 {
        flex: 0 0 auto;
    }
    .app-container {
        background-color: white;
        /*position: relative;*/
        /*display: flex;
        text-align: left;*/
        padding-bottom: 0em;
        padding-top: 0em;
        padding-left: 0px;
        padding-right: 50px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 10vh;
    }
    .app-container .app-text {
        /*position: absolute;*/
        color: black;
        padding-top: 2.5em;
    }
    .app-container img {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
        /*padding: 2rem;*/
        max-width: 1000px;
        text-align: center;
        padding-left: 50px;
        padding-right: 50px;
    }
    .app-text h4 {
        padding-left: 3.75em;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .app-text p {
        padding-left: 5em;
        padding-right: 4.75em;
        line-height: 1.75;
        font-size: 0.9rem;
        margin: 0;
        text-align: left;
        /*width: 680px;*/
        padding-bottom: 0em;
    }

    .pop-image {
        float: left;
        width: 50%;
        padding: 1em;
    }
    .popup::after {
        content: "";
        clear: both;
        display: table;
    }
    .popup2::after {
        content: "";
        clear: both;
        display: table;
    }
    .popup {
        padding-bottom: 6em;
        padding-left: 4em;
        padding-right: 4em;
    }
    .popup2 {
        background-color: #FFF4F4;
        padding-bottom: 6em;
        padding-top: 0em;
        padding-left: 4em;
        padding-right: 4em;
    }    
    section#staggered {
        margin-top: 60px;
    }
    section#staggered2 {
        margin-top: 60px;
    }

    /*Research*/
    .research-container {
        background-color: #FFF4F4;
        position: relative;
        text-align: left;
        width: 100%;
        /*padding-left: 5em;
        padding-right: 5em;*/
    }

    .research-text h4 {
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-top: 2.5em;
        padding-left: 4.75em;
        padding-bottom: 1em;
    }

    .research-finding-text {
        display: flex;
        padding-left: 3em;
        padding-right: 3em;
        padding-bottom: 6em;
    }

    .research-find {
        flex: 100%;
        padding-left: 2.75em;
        padding-right: 2.75em;
    }

    .research-find h5 {
        font-size: 1.3rem;
        padding-top: 1em;
        padding-bottom: 0.5em;
    }

    .research-find h6 {
        padding-bottom: 0.35em;
        font-size: 0.75rem;
        font-weight: 300;
        color: rgb(170, 85, 85);
    }

    /*Website Video*/
    .web-vid {
        background-color: #FFF4F4;
        /*padding-bottom: 1em;*/
    }
    .vid {
        position: relative;
        padding-bottom: 56.25%;
        height: 600px;
        width: 100%;
    }
    .vid object,
    .vid embed,
    .vid iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 1em;
        padding-bottom: 4em;
        padding-left: 5.75em;
        padding-right: 5.75em;
    }
    .web-vid h4 {
        font-size: 1.2rem;
        padding-left: 4.75em;
        padding-top: 3.5em;
        padding-bottom: 0.5em;
    }
    .web-vid p {
        background-color: #FFF4F4;
        padding-left: 6.25em;
        line-height: 1.75;
        font-size: 0.9rem;
        width: 720px;
        padding-bottom: 1.25em;
    }

    /*Website*/
    .web-image {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 00px;
        padding-right: 00px;
        text-align: left;
        padding-bottom: 4em;
        padding-top: 1.5em;
    }

    .desktop-image {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 75px;
        padding-right: 75px;
        text-align: left;
        padding-bottom: 3.5em;
        padding-top: 1em;
    }

    .dock-gif {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 90px;
        padding-right: 90px;
        text-align: left;
        padding-bottom: 4em;
        padding-top: 1.5em;
    }
    .dock-gif2 {
        background-color: white;
        position: relative;
        padding-left: 90px;
        padding-right: 90px;
        text-align: left;
        padding-bottom: 4em;
        padding-top: 9em;
    }

    .webimage-text img {
        max-width: 1200px;
        background-color: #FFF4F4;
    }
    .webimage-text p {
        background-color: #FFF4F4;
        padding-left: 11em;
        padding-right: 12em;
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.75;
        padding-bottom: 0.75em;
    }

    /*Exhibit*/
    .exhibit-container {
        background-color: white;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 3.5em;
    }
    .exhibit-container .exhibit-text {
        position: absolute;
        top: 20px;
        /*left: 20px;*/
        color: black;
        padding-top: 3em;
    }
    .exhibit-image .first {
        padding-top: 14.5em;
        padding-left: 130px;
        padding-right: 130px;
        position: relative;
    }
    .exhibit-text h4 {
        padding-left: 3.75em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .exhibit-text p {
        padding-left: 5em;
        padding-right: 4.75em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        /*width: 720px;*/
        padding-bottom: 1em;
    }
    .exhibit-text2 p {
        font-size: 0.9rem;
        padding-right: 4em;
        padding-left: 0em;
        flex: 100%;
        line-height: 1.75;
    }
    .exhibit-text2 {
        padding-left: 6em;
        padding-right: 6em;
        display: flex;
        padding-top: 5.5em;
        padding-bottom: 5em;
    }
    .exhibit-image {
        flex: 100%;
    }

    /*Social*/
    .social-container {
        background-color: #FFF4F4;
        position: relative;
        text-align: center;
        padding-bottom: 0em;
        padding-left: 0em;
        padding-right: 0em;
    }

    .social-container .social-text {
        position: absolute;
        top: 0px;
        left: 20px;
        color: black;
        padding-top: 4em;
    }

    .social-image .first {
        position: relative;
        padding-top: 14em;
        padding-left: 6em;
        padding-right: 4em;
        padding-bottom: 4em;
        opacity: 100%;
        /*max-width: 1200px;*/
    }

    /*.social-image .second {
        position: relative;
        padding-top: 2em;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 0em;
        max-width: 1200px;
    }*/

    .social-text h4 {
        padding-left: 3.75em;
        top: 0px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }

    .social-text p {
        padding-left: 5em;
        padding-right: 4.75em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
    }

    /*Window*/
    .window-container {
        background-color: white;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 0em;
    }
    .window-container .window-text {
        position: absolute;
        top: 20px;
        left: 20px;
        color: black;
        padding-top: 3em;
    }
    /*.window-image .first {
        padding-top: 15em;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 0em;
        position: relative;
    }*/
    .window-image .first {
        padding-top: 13em;
        padding-left: 75px;
        padding-right: 75px;
        padding-bottom: 4em;
        position: relative;
    }
    .window-text h4 {
        padding-left: 3.75em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .window-text p {
        padding-left: 5em;
        padding-right: 4.75em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        width: 720px;
        padding-bottom: 1em;
    }

    /*TaskBar*/
    .task-container {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 100px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 0em;
    }
    .task-container .task-text {
        position: absolute;
        top: 20px;
        left: 0px;
        color: black;
        padding-top: 3em;
    }
    .task-image .first {
        padding-top: 12.5em;
        /*padding-left: 20px;*/
        padding-right: 0px;
        padding-bottom: 0em;
        position: relative;
    }
    .task-text h4 {
        padding-left: 4.75em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .task-text p {
        padding-left:  6.25em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        width: 720px;
        padding-bottom: 1em;
    }
    .task-image {
        flex: 75%;
    }

    /*Finder*/
    .finder-image .first {
        padding-top: 13.5em;
        padding-left: 75px;
        padding-right: 75px;
        padding-bottom: 1.5em;
        position: relative;
    }

    /*Launchpad*/
    .launch-container {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 3em;
    }
    .launch-container .launch-text {
        position: absolute;
        top: 20px;
        left: 20px;
        color: black;
        padding-top: 3em;
    }
    .launch-image .first {
        padding-top: 13em;
        padding-left: 75px;
        padding-right: 75px;
        padding-bottom: 3em;
        position: relative;
    }
    .launch-text h4 {
        padding-left: 3.75em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .launch-text p {
        padding-left: 5em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        width: 720px;
        padding-bottom: 1em;
    }
    .launch-image {
        flex: 75%;
    }

    /*Poster*/
    .poster-container {
        background-color: white;
        position: relative;
        text-align: center;
        padding-bottom: 8em;
    }

    .poster-container .poster-text {
        /*position: absolute;*/
        /*top: 20px;
        left: 20px;*/
        color: black;
        padding-top: 4em;
    }

    .poster-text h4 {
        padding-left: 4.75em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
    }

    .poster-text p {
        padding-left: 9.75em;
        font-size: 0.9rem;
        margin: 0;
        text-align: left;
    }

    .poster-1 {
        float: left;
        width: 50%;
        padding: 1em;
    }

    .poster-image {
        padding-top: 0.75em;
        padding-bottom: 0em;
        padding-left: 4.75em;
        padding-right: 4.75em;
    }

    .poster-image::after {
        content: "";
        display: table;
        clear: both;
    }
}

@media only screen and (max-width: 768px) {
    header .navbar ul li a {
        font-size: 16px;
        line-height: 60px;
    }
    /*header .brand-name {
        padding-top: 1em;
    }*/

    .project-title {
        flex-direction: column;
        padding-top: 1em;
    }
    .realtalk {
        width: 100%;
        padding-bottom: 0.5em;
    }

    .realtalk ul {
        /*list-style-type: none;*/
        padding-left: 1em;
    }

    .no-touch #cd-vertical-nav {
        display: none;
    }

    .info {
        width: 100%;
        line-height: 28px;
        padding-top: 3em;
    }
    .realtalk h2 {
        font-size: 1.75rem;
        line-height: 32px;
        padding-top: 2em;
        /*padding-bottom: 2.5em;*/
    }
    .project-title .realtalk {
        font-size: 0.9em;
    }

    .scroll-down {
        position: absolute;
        left: 50%;
        bottom: 28vh;
        display: block;
        text-align: center;
        font-size: 20px;
        z-index: 100;
        text-decoration: none;
        text-shadow: 0;
        width: 20px;
        height: 20px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        z-index: 9;
        -webkit-transform: translate(-50%, 0%) rotate(45deg);
        -moz-transform: translate(-50%, 0%) rotate(45deg);
        transform: translate(-50%, 0%) rotate(45deg);
        -webkit-animation: fade_move_down 2s ease-in-out infinite;
        -moz-animation: fade_move_down 2s ease-in-out infinite;
        animation: fade_move_down 2s ease-in-out infinite;
    }

    .project {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 80vh;
        background-color: #FFF4F4;
        background: -moz-linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
        background: -webkit-linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
        background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url("../1x/Time_Page1.png");
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e55d87', endColorstr='#5fc3e4', GradientType=1 );
    }

    .project-title p {
        line-height: 25px;
    }

    .no-touch #cd-vertical-nav {
        right: 20px;
    }

    /*.web-vid {
        background-color: #FFF4F4;
        /*padding-bottom: 1em;
    }
    .vid {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }
    .vid object,
    .vid embed,
    .vid iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 2em;
        padding-bottom: 6em;
        padding-left: 1em;
        padding-right: 1em;
    }
    .web-vid h4 {
        font-size: 1.2rem;
        padding-left: 8.5em;
        padding-top: 3.5em;
        padding-bottom: 0em;
    }*/
    .solution-vid h4 {
        font-size: 1.2rem;
        padding-left: 2.75em;
        padding-top: 2.5em;
    }
    .brand h4 {
        font-size: 1.2rem;
        padding-left: 4.75em;
        padding-top: 3.5em;
    }

    /*App*/
    .slideshow-container {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 1.5em;
        padding-bottom: 1.5em;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .slideshow-container img {    
        padding-right: 0.5em;
        max-width: 99%;
    }
    /*.slideshow-container::-webkit-scrollbar {    
        display: none;
    }*/
    .mySlides1 {
        flex: 0 0 auto;
    }
    .slideshow-container2 {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 1.5em;
        padding-bottom: 3em;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .slideshow-container2 img {    
        padding-right: 0.5em;
        max-width: 99%;
    }

    .slideshow-container3 {
        display: flex;
        flex-wrap: nowrap; 
        overflow-x: auto;
        background-color: white;
        padding-top: 0.5em;
        padding-bottom: 4em;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    
    .slideshow-container3 img {    
        padding-right: 1em;
        max-width: 85%;
    }

    /*.slideshow-container2::-webkit-scrollbar {    
        display: none;
    }*/
    .mySlides1 {
        flex: 0 0 auto;
    }
    .app-container {
        background-color: white;
        /*position: relative;*/
        /*display: flex;
        text-align: left;*/
        padding-bottom: 0em;
        padding-top: 0em;
        padding-left: 0px;
        padding-right: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 8vh;
    }
    .app-container .app-text {
        /*position: absolute;*/
        color: black;
        padding-top: 2em;
    }
    .app-container img {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
        /*padding: 2rem;*/
        max-width: 1000px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 9em;
    }
    .app-text h4 {
        padding-left: 1.5em;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .app-text p {
        padding-left: 2em;
        padding-right: 2em;
        line-height: 1.65;
        font-size: 0.9rem;
        margin: 0;
        text-align: left;
        width: 100%;
        padding-bottom: 1em;
    }

    .pop-image {
        float: left;
        width: 100%;
        padding: 1em;
    }
    .popup::after {
        content: "";
        clear: both;
        display: table;
    }
    .popup2::after {
        content: "";
        clear: both;
        display: table;
    }
    .popup {
        padding-bottom: 5em;
        padding-left: 2.5em;
        padding-right: 2.5em;
    }
    .popup2 {
        background-color: #FFF4F4;
        padding-bottom: 3em;
        padding-top: 1em;
        padding-left: 2.5em;
        padding-right: 2.5em;
    }    
    section#staggered {
        margin-top: 0px;
    }
    section#staggered2 {
        margin-top: 0px;
    }

    /*Research*/
    .research-container {
        background-color: #FFF4F4;
        position: relative;
        text-align: left;
        width: 100%;
        /*padding-left: 5em;
        padding-right: 5em;*/
    }

    .research-text h4 {
        top: 0px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-top: 2.5em;
        padding-left: 2.5em;
        padding-bottom: 0em;
    }

    .research-finding-text {
        flex-direction: column;
        padding-left: 1em;
        padding-right: 1em;
        padding-bottom: 4.5em;
    }

    .research-find {
        flex: 100%;
        width: 100%;
        padding-left: 2em;
        padding-right: 2em;
    }

    .research-find h5 {
        font-size: 1rem;
        padding-top: 1.25em;
        padding-bottom: 0.5em;
    }

    .research-find h6 {
        padding-bottom: 0.35em;
        font-size: 0.75rem;
        font-weight: 300;
        color: rgb(170, 85, 85);
    }

    .research-find p {
        font-size: 0.85rem;
    }

    /*Website Video*/
    .web-vid {
        background-color: #FFF4F4;
        /*padding-bottom: 1em;*/
    }
    .vid {
        position: relative;
        padding-bottom: 56.25%;
        height: 600px;
        width: 100%;
    }
    .vid object,
    .vid embed,
    .vid iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 1em;
        padding-bottom: 2.5em;
        padding-left: 0em;
        padding-right: 0em;
    }
    .web-vid h4 {
        font-size: 1.2rem;
        padding-left: 2.5em;
        padding-top: 2.5em;
        padding-bottom: 0.5em;
    }
    .web-vid p {
        background-color: #FFF4F4;
        padding-left: 3.25em;
        padding-right: 3.25em;
        line-height: 1.65;
        font-size: 0.9rem;
        width: 100%;
        padding-bottom: 1.5em;
    }

    /*Website*/
    .web-image {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 3em;
        padding-top: 0.5em;
    }
    .desktop-image {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 30px;
        padding-right: 30px;
        text-align: left;
        padding-bottom: 2.5em;
        padding-top: 0.25em;
    }

    .dock-gif {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 45px;
        padding-right: 45px;
        text-align: left;
        padding-bottom: 3em;
        padding-top: 1em;
    }
    .dock-gif2 {
        background-color: white;
        position: relative;
        padding-left: 45px;
        padding-right: 45px;
        text-align: left;
        padding-bottom: 3em;
        padding-top: 8,em;
    }
    
    .webimage-text img {
        max-width: 1200px;
        background-color: #FFF4F4;
    }
    .webimage-text p {
        background-color: #FFF4F4;
        padding-left: 3.25em;
        padding-right: 3.25em;
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.65;
        padding-bottom: 0.75em;
    }

    /*Exhibit*/
    .exhibit-container {
        background-color: white;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 3em;
    }
    .exhibit-container .exhibit-text {
        position: absolute;
        /*top: 20px;*/
        left: 0px;
        color: black;
        padding-top: 2em;
    }
    .exhibit-image .first {
        padding-top: 14em;
        padding-left: 70px;
        padding-right: 70px;
        position: relative;
    }
    .exhibit-text h4 {
        padding-left: 2.5em;
        /*top: 20px;*/
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .exhibit-text p {
        padding-left: 3.25em;
        padding-right: 3.25em;
        font-size: 0.9rem;
        line-height: 1.65;
        margin: 0;
        text-align: left;
        width: 100%;
        padding-bottom: 1em;
    }
    .exhibit-image .second {
        /*flex: 100%;*/
        width: 100%;
        padding-top: 2em;
        padding-bottom: 0em;
    }

    /*Social*/
    .social-container {
        background-color: #FFF4F4;
        position: relative;
        text-align: center;
        padding-bottom: 0em;
    }
    .social-container .social-text {
        position: absolute;
        top: 0px;
        left: 0px;
        color: black;
        padding-top: 3.25em;
    }
    .social-image .first {
        position: relative;
        padding-top: 14em;
        padding-left: 3.75em;
        padding-right: 2.75em;
        padding-bottom: 3.5em;
        opacity: 100%;
        /*max-width: 1200px;*/
    }
    /*.social-image .second {
        position: relative;
        padding-top: 1em;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 0em;
        max-width: 1200px;
    }*/
    .social-text h4 {
        padding-left: 2.5em;
        top: 0px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .social-text p {
        padding-left: 3.25em;
        padding-right: 3.25em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        width: 100%;
        text-align: left;
    }

    /*Window*/
    .window-container {
        background-color: white;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 0em;
    }
    .window-container .window-text {
        position: absolute;
        top: 0px;
        left: 0px;
        color: black;
        padding-top: 3.25em;
    }
    /*.window-image .first {
        padding-top: 15em;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 0em;
        position: relative;
    }*/
    .window-image .first {
        padding-top: 13.5em;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 3em;
        position: relative;
    }
    .window-text h4 {
        padding-left: 2.5em;
        top: 0px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .window-text p {
        padding-left: 3.25em;
        padding-right: 3.25em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        width: 100%;
        padding-bottom: 1em;
    }

    /*TaskBar*/
    .task-container {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 25px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 0em;
    }
    .task-container .task-text {
        position: absolute;
        top: 0px;
        left: 0px;
        color: black;
        padding-top: 3em;
    }
    .task-image .first {
        padding-top: 13em;
        /*padding-left: 20px;*/
        padding-right: 0px;
        padding-bottom: 0em;
        position: relative;
    }
    .task-text h4 {
        padding-left: 2.5em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .task-text p {
        padding-left:  3.25em;
        padding-right: 3.25em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        width: 100%;
        padding-bottom: 1em;
    }
    .task-image {
        flex: 75%;
    }
    
    /*Finder*/
    .finder-image .first {
        padding-top: 13.5em;
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 1em;
        position: relative;
    }
    
    /*Launchpad*/
    .launch-container {
        background-color: #FFF4F4;
        position: relative;
        padding-left: 0px;
        padding-right: 0px;
        text-align: left;
        padding-bottom: 3.75em;
    }
    .launch-container .launch-text {
        position: absolute;
        top: 0px;
        left: 0px;
        color: black;
        padding-top: 3em;
    }
    .launch-image .first {
        padding-top: 12.5em;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 0em;
        position: relative;
    }
    .launch-text h4 {
        padding-left: 2.5em;
        top: 20px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
        padding-bottom: 0.5em;
    }
    .launch-text p {
        padding-left: 3.25em;
        padding-right: 3.25em;
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
        text-align: left;
        width: 100%;
        padding-bottom: 1em;
    }
    .launch-image {
        flex: 75%;
    }

    /*Poster*/
    .poster-container {
        background-color: white;
        position: relative;
        text-align: center;
        padding-bottom: 6em;
    }

    .poster-container .poster-text {
        /*position: absolute;*/
        /*top: 20px;
        left: 20px;*/
        color: black;
        padding-top: 3em;
    }

    .poster-text h4 {
        padding-left: 2.5em;
        top: 0px;
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
        text-align: left;
    }

    .poster-text p {
        padding-left: 9.75em;
        font-size: 0.9rem;
        margin: 0;
        text-align: left;
    }

    .poster-1 {
        float: left;
        width: 50%;
        padding: 0.5em;
    }

    .poster-image {
        padding-top: 0.5em;
        padding-bottom: 0em;
        padding-left: 2.25em;
        padding-right: 2.25em;
    }

    .poster-image::after {
        content: "";
        display: table;
        clear: both;
    }
}


@media screen and (max-width: 600px) {

    .dock-gif {
        padding-left: 20px;
        padding-right: 20px;
    }
    .dock-gif2 {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 16.5em;
    }

    .slideshow-container2 {
        padding-left: 1em;
        padding-top: 5.5em;
    }

    .project {
        background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url("../1x/Time_Page3.png");
    }

    /*header .navbar ul li a {
        display: none;
    }*/
    .app-container img {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
        /*padding: 2rem;*/
        max-width: 1000px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 13em;
    }
    .app-container {
        background-color: white;
        /*position: relative;*/
        /*display: flex;
        text-align: left;*/
        padding-bottom: 0em;
        padding-top: 0em;
        padding-left: 0px;
        padding-right: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 2vh;
    }
    /*.exhibit-image .first {
        padding-top: 16em;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }*/
    
    header .navbar {
        text-align: center;
    }


    /*hamburger menu*/
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    header {
        width: 100%;
        display: inline-block;
        left: 0px;
        right: 0px;
        padding: 16px;
        padding-left: 20px;
        z-index: 1000000;
    }
    header .navbar ul li {
        display: inline-block;
        margin-left: 0px;
    }

    header .navbar ul li a {
        font-family: 'Heebo', sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    /*hamburger menu*/

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1000;
        background: black;
        opacity: 0;
        transition: all .2s ease;
        transform: translateX(1000px);
        overflow-x: hidden;
    }
    .nav-container ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .nav-container ul li {
        display: block;
        float: none;
        width: 100%;
        text-align: right;
        margin-bottom: 10px;
    }
    .nav-container ul li:nth-child(1) a {
        transition-delay: .2s;
    }
    .nav-container ul li:nth-child(2) a {
        transition-delay: .3s;
    }
    .nav-container ul li:nth-child(3) a {
        transition-delay: .4s;
    }
    .nav-container ul li:nth-child(4) a {
        transition-delay: .5s;
    }
    .nav-container ul li:not(:first-child) {
        margin-left: 0;
    }
    .nav-container ul li a {
        padding: 10px 25px;
        opacity: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        /*transform: translateY(-20px);*/
        transition: all .2s ease;
    }
    .nav-open {
        position: fixed;
        right: 4px;
        top: 4px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
        /*background-color: white;*/
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        margin-left: 14px;
    }


    .nav-open i:nth-child(1) {
        margin-top: 17px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }

    #nav:checked ~ .nav-container {
        transform: translateX(0);
    }
}

#nav:checked + .nav-open {
    transform: rotate(45deg);
}
#nav:checked + .nav-open i {
    background: white;
    transition: transform .2s ease;
    z-index: 9999999;
}
#nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-container {
    z-index: 0;
    opacity: 0.75;
}
#nav:checked ~ .nav-container ul li a {
    opacity: 1;
    transform: translateY(0);
}
.hidden {
    display: none;
}




@media screen and (max-width: 400px) {

    .web-vid h4 {
        font-size: 1.1rem;
        padding-left: 1.75em;
    }
    .web-vid p {
        font-size: 0.75rem;
        padding-left: 2.5em;
    }

    .app-text h4 {
        font-size: 1.1rem;
        padding-left: 0.75em;
    }
    .app-text p {
        font-size: 0.75rem;
        padding-left: 1em;
    }

    .web-image {
        padding-top: 1em;
    }

    .dock-gif {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 0.75em;
    }
    .dock-gif2 {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 14em;
    }

    .slideshow-container2 {
        padding-left: 1em;
        padding-top: 6em;
    }

    .project {
        background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url("../1x/Time_Page3.png");
    }

    /*header .navbar ul li a {
        display: none;
    }*/
    .app-container img {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
        /*padding: 2rem;*/
        max-width: 1000px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 13em;
    }
    .app-container {
        background-color: white;
        /*position: relative;*/
        /*display: flex;
        text-align: left;*/
        padding-bottom: 0em;
        padding-top: 0em;
        padding-left: 0px;
        padding-right: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 0vh;
    }
    /*.exhibit-image .first {
        padding-top: 16em;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }*/
    
    header .navbar {
        text-align: center;
    }


    /*hamburger menu*/
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    header {
        width: 100%;
        display: inline-block;
        left: 0px;
        right: 0px;
        padding: 16px;
        padding-left: 20px;
        z-index: 1000000;
    }
    header .navbar ul li {
        display: inline-block;
        margin-left: 0px;
    }

    header .navbar ul li a {
        font-family: 'Heebo', sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    /*hamburger menu*/

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1000;
        background: black;
        opacity: 0;
        transition: all .2s ease;
        transform: translateX(1000px);
        overflow-x: hidden;
    }
    .nav-container ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .nav-container ul li {
        display: block;
        float: none;
        width: 100%;
        text-align: right;
        margin-bottom: 10px;
    }
    .nav-container ul li:nth-child(1) a {
        transition-delay: .2s;
    }
    .nav-container ul li:nth-child(2) a {
        transition-delay: .3s;
    }
    .nav-container ul li:nth-child(3) a {
        transition-delay: .4s;
    }
    .nav-container ul li:nth-child(4) a {
        transition-delay: .5s;
    }
    .nav-container ul li:not(:first-child) {
        margin-left: 0;
    }
    .nav-container ul li a {
        padding: 10px 25px;
        opacity: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        /*transform: translateY(-20px);*/
        transition: all .2s ease;
    }
    .nav-open {
        position: fixed;
        right: 4px;
        top: 4px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
        /*background-color: white;*/
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        margin-left: 14px;
    }


    .nav-open i:nth-child(1) {
        margin-top: 17px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }

    #nav:checked ~ .nav-container {
        transform: translateX(0);
    }
}




.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100%;
}
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 70%;
  background-color: #ffeeee;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000000000000;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid rgb(15, 15, 15);
  animation: loader 2s infinite ease;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: rgb(15, 15, 15);
  animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
  0% { transform: rotate(0deg);}
  25% { transform: rotate(180deg);}
  50% { transform: rotate(180deg);}
  75% { transform: rotate(360deg);}
  100% { transform: rotate(360deg);}
}
@keyframes loader-inner {
  0% { height: 0%;}
  25% { height: 0%;}
  50% { height: 100%;}
  75% { height: 100%;}
  100% { height: 0%;}
}
