*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*@-webkit-keyframes toshiba {
  from {opacity: .75;}
  to {opacity: .25;}
}*/

header {
	/*background-color: rgba(57, 63, 65, .9);*/
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  transition: all 0.5s ease;
  z-index: 3;
}

html {
  scroll-behavior: smooth;
}

header:hover {
  background-color: rgba(255, 255, 255 .8);
  background-blend-mode: multiply;
  transition: background-color 0.3s ease-in-out; /* Smooth background color transition */
}

.one-edge-shadow {
  -webkit-box-shadow: 0 5px 5px -1px rgba(0,0,0,0.15)
     -moz-box-shadow: 0 5px 5px -1px rgba(0,0,0,0.15)
          box-shadow: 0 5px 5px -1px rgba(0,0,0,0.15)
}

.nav-up {
    top: -60px;
    background-color: rgba(255, 255, 255, .8);
}

.nav-backplate {
  background-color: rgba(255, 255, 255, .8);
}

nav {
  padding: 0 20px;
  z-index: 2;
  background-color: rgba(255, 255, 255, .8);
}

nav ul {
  list-style: none;
  display: flex; /* Use flexbox for alignment */
  justify-content: flex-end; /* Align items to the right */
  padding: 0;
  margin: 0;
}

nav li {
  height: 60px;
  display: inline-block;
  line-height: 60px;
  /*text-shadow: 0 1px 2px rgba(0,0,0,.5);*/
}
 
nav a {
  text-decoration: none;
  color: #1D2028;
  opacity: 90%;
  position: relative;
  transition: all 0.5s ease;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav>a {
  width: 75px;
  height: 60px;
}

nav a:hover {
	opacity: 1;
}

nav a.nav-word, nav li a.nav-icon {
  padding: 22px 20px;
  color: #232931;
}

nav a.nav-word:hover {
  color: #1D2028;
  background-color: rgba(0, 0, 0, .1);
}

nav li a.nav-icon {
  margin-right: 5px;
  color: #fff;
}

.nav-linkedin:hover {
  color: #0275b3;
}
.nav-spotify:hover {
  color: #1abd53;
}
.nav-envelope:hover {
  color: #be4539;
}

h1#logo {
  width: 60px;
  height: 60px;
  background-image: url(../images/AM-logo7.svg) ;
  float: left;
  margin: 0 0 0 20px;
  opacity: 1.0;
  transition: all 1.0s ease;
  padding: 0 8px;
}
h1#logo:hover {
  background-color: rgba(0, 0, 0, .1);
  transition: all 1.0s ease;
  width: 60px;
  height: 60px;
}
h1#logo span {
  display: none;
}

/*#hero {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
}*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  background-image: radial-gradient(circle at top right, rgba(121, 68, 154, 0.13), transparent),
    radial-gradient(circle at 20% 80%, rgba(41, 196, 255, 0.13), transparent);
}

#hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


@-webkit-keyframes hero-gradient {
    0%{background-position:0% 90%}
    50%{background-position:100% 11%}
    100%{background-position:0% 90%}
}
@keyframes hero-gradient { 
    0%{background-position:0% 90%}
    50%{background-position:100% 11%}
    100%{background-position:0% 90%}
}

a {
  cursor: pointer;
}

@-webkit-keyframes toshiba {
  0% { margin-bottom: 60px; }
  75% { margin-bottom: 30px; }
  100% {margin-bottom: 60px; }
}

#hero-content h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1D2028;
  font-family: "IBM Plex Mono", serif;
  font-optical-sizing: auto;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  display: block;
  width: 70%;
  line-height: 1.3;
  transition: border-width 500ms ease, all 600ms ease;
}

#hero-content h2 a {
  position: relative;
  display: inline-block;
  color: #1D2028;
  text-decoration: none;
  border-bottom: 4px solid #3668CC;
  padding: 0 .1em;
  font-style: italic;
  transition: color 0.3s ease;
  z-index: 10;
}

#hero-content h2 a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #3668CC;
  z-index: -1; /* Ensures the text stays on top */
  transition: width 0.3s ease;
}

#hero-content h2 a:hover {
  color: #ffffff;
}

#hero-content h2 a:hover::before {
  width: 100%;
}


.hi {
  padding-bottom: 4px;
}

span#js-rotating {
  font-size: 50px;
  padding: 0 10px 8px 10px;
  line-height: 2;
}

footer {
  background: #F7F8FA;
  border-top: 2px solid #EDEEF0;
}

.footer-project {
  border-radius: 8px;
  border: 1px solid #C7CBD1;
}
.footer-project:hover {
  border: none;
}

.footer3-project {
  border-radius: 8px;
  position: relative; /* Ensure proper positioning for hover effects */
  overflow: visible; /* Allow shadows to extend beyond the container */
  z-index: 5; /* Make sure it stays above other elements */
}

.page-wrap {
  padding: 5em 1.5em 0 1.5em;
  max-width: 1250px;
  margin: 0 auto;
}

.flex-grid-half, .extra-margin{
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}

.flex-grid-thirds, .flex-grid-fourths{
  display: flex;
  justify-content: space-between;
  margin: 24px auto;
/*  max-width: 1200px;*/
}

.flex-grid-thirds,{
  padding: 0 0 50px 0;
}

.flex-grid-thirds:nth-child(4){
  padding: 0;
}

.flex-grid-thirds .col-1-3 {
  width: 32%;
  overflow:hidden;
}

.flex-grid-half .col-1-2, .col-2-4 {
  width: 48%;
}

.col-2-3 {
  width: 64%;
}

.col-1-4 {
  width: 24%;
  margin-left: 50px;
}

.footer3-project {
  border-radius: 8px;
  position: relative; /* Ensure proper positioning for hover effects */
  overflow: visible !important; /* Allow shadows to extend beyond the container */
  z-index: 5; /* Make sure it stays above other elements */
}

.my-work {
  padding-left: 50px;
}

.col-1-3 ul {
  list-style: none;
  padding: 0;
  color: #676C74;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  line-height: 2;
  margin-top: 6px;
}
iframe {
  margin: 0 auto;
  display: block;
}

ol {
  list-style: none; /* Remove default numbering */
  counter-reset: list-counter; /* Initialize the counter for the list */
  padding-left: 0; /* Optional: adjust to align items properly */
  font-family: 'Inter', sans-serif; /* Apply "Inter" font to the list content */
  margin-top: 24px;
}

ol li {
  counter-increment: list-counter; /* Increment the custom counter */
  position: relative;
  margin-bottom: 30px; /* Add some space between list items */
  padding-left: 36px; /* Add space for the circle */
  color: #676C74;
  font-size: 14px;
  text-align: left;
  line-height: 20px;
}

ol li::before {
  content: counter(list-counter); /* Display the counter */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Center the circle vertically */
  background-color: #C5423F;
  color: white;
  border-radius: 50%; /* Make the circle */
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px; /* Adjust font size as needed */
}
.project-example-section .flex-grid-thirds .col-1-3 p {
  color: #676C74;
  font-size: 16px;
}

.before-example {
  padding: 24px;
  background-color: #F7F8FA;
  mix-blend-mode: multiply;
  border-radius: 4px;
  margin-bottom: 12px;
  border-radius: 8px;
}

span.label {
  width: auto;
}
span.red, .red {
  color: #C5423F;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

img.multiply {
  mix-blend-mode: multiply;
}

.col-1-3 h5 , h4.project-text-title, span.project-text-title{
  font-family: "IBM Plex Mono", monospace;
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 28px;
  color: #C5423F;
/*  text-transform: uppercase;*/
/*  letter-spacing: 1px;*/
  margin-bottom: 10px;
  margin: 0;
  font-weight: bold;
}

h3.project-text-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 30px;
  color: #333;
  margin-bottom: 10px;
  margin: 0;
  font-weight: 400;
}

i.fas {
  color: #EF4836;
  padding-right: 10px;
}
i.section-icon {
  color: #676C74;
  font-size: 36px;
  margin-bottom: 10px;
}
img.section-img {
  width: 50px;
  margin: 0 auto 16px;
}
img.publication-img {
    width: 150px;
    margin: 0 auto 16px;
}

.case-studies {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 5rem;
  font-weight: 400;
  LETTER-SPACING: 1px;
  text-transform: uppercase;
  color: white;
  margin: 0 auto 70px;
  text-align: center;
}
#case-study {
  border-top: 1px #C7CBD1 solid;
}

.wireframe-3up {
  margin: 50px auto 0;
  max-width: 1200px;
  padding: 0 0 50px;
}

img {
  width: 100%;
  display: block;
  }

    .project-hero-title > img.hero-logo {
    width: auto;
    height: auto;
    /*padding-bottom: 5px;*/
    margin: auto;
    border-radius: 6px;

  }

a img.nav-image {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%); 
  filter: grayscale(100%);

  transition: filter 0.3s, box-shadow 0.3s;
  -webkit-transition: filter 0.3s, -webkit-filter 0.3s, box-shadow 0.3s;
}

a img.nav-image:hover,
a img.nav-image:focus {
  -webkit-filter: none;
  filter: none;
  background-color: rgba(255, 0, 0, .5);
}

/*-------Project header hero*/
.project-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

.project-image {
  opacity: .7;
}

.project-hero-title {
  position: absolute;
/*  left: 48px;*/
  margin-top: 50px;
  z-index: 1;
}

.project-hero-title h3 {
    color: white;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 48px;
    margin-top: 0;
    letter-spacing: 2px;
    font-weight: 600;
    padding-top: 10px;
}

h3.about-titles {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
    font-size: 48px;
    margin: 0 auto 10px;
    letter-spacing: 2px;
    color: #000;
}
.iframe-googledoc-container {
  width: 0 auto 0 0;
      height: 800px;
      resize: vertical;
      overflow: auto;
      border: 1px solid #C7CBD1;
      border-radius: 8px;
    }

.iframe-googledoc-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      text-align: center;
    }

.image-border {
  border: 1px solid #efefef;
}

a.project{
  text-decoration: none;
  color:#fff;
}

a.project:hover {
  color: #ababab;
}

.project-name {
  font-family: "Inter", monospace;
  font-optical-sizing: auto;
  margin-top: 12px;
  font-size: 16px;
  transition: all 0.5s ease;
}

p.footer-byline {
  margin: 40px 0 0 0;
  text-align: center;
  border-top: 1px solid #C7CBD1;
  padding: 40px 0;
  color: #676C74;
  font-weight: 300;
  font-family: "IBM Plex Mono", serif;
}

.all-caps {
  text-transform: uppercase;
  font-family: "Inter", monospace;
  font-optical-sizing: auto;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 400;
}

.all-caps-resume {
  text-transform: uppercase;
  font-family: "Inter", monospace;
  font-optical-sizing: auto;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

div.project-section {
  padding-top: 3em;
}

.page-wrap2 {
  max-width: 100%;
  padding: 24px 0 100px;
  margin: 0 auto;
}

section.project-text {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  margin-top: 50px;
  text-align: center;
}
section.project-text-google {
  max-width: 800px;
  margin: 0 auto;
  box-sizing: content-box;
  margin-top: 50px;
  text-align: center;
}
section.centered {
  text-align: center;
  max-width: 1200px;
}

section.extra-space {
  margin-top: 150px;
  border-left: 2px #C7CBD1 solid;
  padding-left: 24px;
}


section.default-space {
  margin: 120px 0 50px;
  border-left: 2px #3668CC solid;
  padding-left: 24px;
}

section.little-space {
  margin-top: 60px;
}

img.single-img, .single-img{
  max-width: 1200px;
  margin: 60px auto;
  box-sizing: border-box;
  border-radius: 8px;
}

.old-project {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    color: #676C74;
}

img.old-project {
  margin-top: 0;
}

h4.project-text-title, .my-work >h5, span.project-text-title {
  color: #1D2028;
  font-family: "IBM Plex Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  margin-bottom: 0;
  text-align: left;
/*  letter-spacing: 4px;*/
}

h4.sub-text-title {
  color: #1D2028;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  margin-bottom: 0;
  text-align: left;
}

.project-text p, .about-me-text p{
  color: #676C74;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  max-width: 800px;
}

.project-text p.green {
  color: #10B981;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-align: left;
  max-width: 400px;
  font-style: italic;
}
.no-top-margin {
  margin-top: 0 !important;
}

.margin-top {
  margin-top: 80px !important;
}

.hero-intro {
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero-intro h3 {
  font-size: 54px;
  font-family: "IBM Plex Mono", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 300;
  margin: 0 auto;
  padding-bottom: 8px;
}
.hero-intro p {
  text-align: center;
  margin: 0 auto;
  color: #1D2028;
}

/* Greyscale */
.greyscale {
  filter: grayscale(100%);
  transition: filter 0.7s ease; /* Smooth transition for grayscale */
}

.greyscale:hover {
  filter: grayscale(0%); /* Transition to color */
}

/* Animation on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(5px); /* Only apply blur here */
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0); /* Bring into focus */
}

/* Combination class handling */
.greyscale.animate-on-scroll {
  filter: grayscale(100%) blur(5px); /* Initial state */
}

.greyscale.animate-on-scroll.visible {
  filter: grayscale(100%) blur(0); /* On scroll, remove blur but keep greyscale */
}

.greyscale.animate-on-scroll.visible:hover {
  filter: grayscale(0%) blur(0); /* On hover, show color */
}


.project-text a {
  color: #676C74;

}

.project-text a:hover {
  color: #000;
}

.page-wrap2 > .background-stripe {
  padding: 50px 10%;
  background-color: #EDEEF0;
}

.background-stripe .col-1-3 img.portfolio-image {
  margin: 0;
}

h4.all-caps {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 0;
}

span.all-caps-resume {
  color: #000;
}

/* Carousel Container */
.carousel {
  position: relative;
  max-width: 1200px; /* Adjust to your container width */
  margin: 50px auto; /* Center the carousel */
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* Track Container (Holds Slides) */
.carousel-track-container {
  overflow: hidden; /* Hides overflowing slides */
}

/* Track (Moves Slides Horizontally) */
.carousel-track {
  display: flex; /* Align slides horizontally */
  transition: transform 0.5s ease-in-out; /* Smooth sliding transition */
}

/* Each Slide */
.carousel-slide {
  min-width: 100%; /* Each slide takes full carousel width */
  text-align: center; /* Centers the content (images & captions) */
}

/* Image Styling */
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid  #C7CBD1;
}

/* Caption Styling */
.carousel-caption {
  margin: 16px 0;
  padding: 0 20px;
  color: #676C74;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 40%;
  background-color: rgba(54, 104, 204, 1);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 60px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease; /* Smooth animation for background color */
  border: 1px solid rgba(113, 151, 228, 1);
}

.carousel-arrow svg {
    display: block;
    width: 16px;
    height: auto;
}

.carousel-arrow:hover {
  background-color: rgba(50, 86, 156, 1);
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px; /* Space between dots */
  position: relative; /* Relative to the carousel */
  margin-bottom: 16px; /* Space below the caption */
  bottom: 0; /* Ensure they stay aligned */
  z-index: 1; /* Stay above the background but below other elements */
}

.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background-color: #3668CC; /* Highlight active dot */
}

.page-wrap h2, .bio-title {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  color: #333;
  font-size: 45px;
  margin: 0;
  line-height: 1.3;
}

.page-wrap h3 {
  margin: 50px 0 0 0;
}

.work-wrap {
  padding-bottom: 100px;
}

.grey-background {
  background-color: #1a1a1a;
}

.about-wrap {
  padding: 80px 1.5em 100px;
}

p.project-description, p.bio-description, {
  color: #676C74;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  margin-top: 0;
  -moz-column-count: 1;
  -webkit-column-count: 1;
  column-count: 1;
  line-height: 1.6;
}

p.resume-text {
  color: #1D2028;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  margin-top: 0;
  line-height: 24px;
}

h4.centered {
  text-align: center;
}
 
p.resume-text {
  font-weight: 300;
}

#case-study-eyebrowtext {
  color: #3668CC;
  font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 48px;
    font-style: normal;
}

#blue-text {
  color: #3668CC;
  font-family: "IBM Plex Mono", monospace;
}

a.case-study-link{
  text-decoration: none;
  color: #3668CC !important;
}
a.case-study-link:hover {
  text-decoration: underline;
  color: #253F7C !important;
}

p.case-study-link {
  color:#3668CC;
}


/*New footer test*/
.clickable-container, .clickable-container {
  position:relative;
  color:white;
  display:block;
}

.clickable-container:hover {
  cursor:pointer;
  color:#efefef;
}

.overlay{
  display:none;
  text-align: center;
}

.overlay-image {
  width: 35px;
  margin: 0 auto;
  padding-bottom: 10px;
   filter: grayscale(0%);
}

hr.hrstyle {
  width: 50px;
  margin: 0 auto;
    height: 1px;
    border: 0;
    border-top: 3px solid #EF4836;
    padding: 0; 
}

.clickable-container:hover .overlay {
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position:absolute;
  top:0;
  left:0;
  display: flex;
  flex-direction:column;
  justify-content:center;
  background: rgba(0, 0, 0, .7);
  width:100%;
  height:100%;
}

.clickable-container:hover .nav-image2 {
  max-width: 100%;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  filter: grayscale(1);
}

.clickable-container3 {
    position: relative; /* Ensure proper positioning for hover effects */
  overflow: visible; /* Allow shadows to extend beyond the container */
}

.clickable-container3 img.nav-image3 {
/*  filter: grayscale(1);*/
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  object-fit: cover;
  filter: grayscale(100%);
}


.clickable-container3:hover .nav-image3 {
  filter: grayscale(0);
  max-width: 100%;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  
}

.nav-image3:hover {
filter: grayscale(0);
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

img.project-icon {
  width: 48px;
  margin: 0 auto;
}

.footer3-project-info {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between the logo and project name */
  margin-top: 8px; /* Space between the image and the text */
}
.footer3-brand-logo {
  width: 24px; /* Adjust as needed */
  height: 24px; /* Ensure the logo is a square for consistency */
  object-fit: contain; /* Ensure the logo fits within the dimensions without cropping */
}

.footer3-project-name {
  font-size: 18px;
  font-family: "IBM Plex mono", monospace;
  font-style: italic;
  font-weight: 400; /* Adjust for emphasis */
  color: #1D2028; /* Adjust color as needed */
}

.overlay-content {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.credits, .credits a{
  font-size: 13px;
  font-style: italic;
  color: #999
}

.portfolio-image, .video-margin, .second-description, p.second-description, .page-wrap hr, .before-after-pair {
  margin: 50px 0;
}

hr.hrstyle {
  width: 50px;
  margin: 0 auto 12px;
    height: 1px;
    border: 0;
    border-top: 3px solid #3668CC;
    padding: 0; 
}

span.bold-400 {
  font-weight: 400;
  color: #1D2028;
}
span.bold-500 {
  font-weight: 500;
  color: #1D2028;
}

span.sub-title-bold {
  font-weight: 500;
  color: #676C74;
}

p#quote {
  font-style: italic;
}
p#byline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1;
  font-family: "Inter";
  font-optical-sizing: auto;
  font-weight: 600;
}
.app-tile-image {
  float: left;
  padding-top: 14px;
}

img.bio-image {
  max-width: 250px;
  border-radius: 150px;
  float: left;
  margin: 80px 30px 0 0;
}

.bold {
  font-weight: 500;
  color: #222;
}

.work-experience .all-caps-resume {
  margin: 0;
}

a.body-link {
  color: #666;
  text-decoration: underline;
  transition: all 0.5s ease;
}

a.body-link:hover {
  text-decoration: none;
  color: #000;
}

a.description-link {
  line-height: 2.5;
}

.hackathon {
  background-color: #c20000;
  color: white;
  padding: 0 6px 0 8px;
}

.app-tile {
  max-width: 150px;
  margin-right: 20px;
}

.caption, .caption a  {
  font-size: 12px;
  color: #999;
}

img.border {
  border: 1px solid #C7CBD1;
}

.hide {
  display: none;
}

.download-button {
  font-family: "IBM Plex Mono", serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #3668CC;
  background-color: #FFF;
  border: 1px solid #3668CC;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 16px;
}

.download-button:hover {
  background-color: #DEEFFF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.download-button svg {
  fill: #FFF;
}

div.scroll {
  content: '';
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -8px;
  border: 3px solid #1D2028;
  border-left: 0;
  border-top: 0;
  outline: 0;
  padding: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
  -webkit-animation: toshiba 2s linear infinite;
  -moz-animation: toshiba 2s infinite;
  -o-animation: toshiba 2s infinite;
  animation: toshiba 2s infinite;
}

.about-me-wrap {
  padding-top: 50px;
}

.about-me-text {
  padding-right: 50px;
  text-align: left;
}
.resume-column {
  padding-right: 48px;
  text-align: left;
}

.about-project-text {
  max-width: 1200px;
  margin: auto;
  padding-top: 24px;
  border-top: 1px solid #C7CBD1;
}

.project-example-section {
  max-width: 1200px;
  margin: auto;
}

img.image-with-caption, div.image-with-caption {
  margin-bottom: 10px;
}
.image-caption, .table-caption {
  font-family: "Inter";
  font-optical-sizing: auto;
  font-size: 14px;
  font-style: italic;
  color: #676C74;
  font-weight: 200;
  float: left;
}
.table-caption {
  margin: 8px auto;
}

img.no-margin {
  margin-top: 12px;
  margin-bottom: 0;
}

.margin-bottom {
  margin-bottom: 75px;
}

#quote a.no-decoration {
  text-decoration: none;
  font-style: italic;
  font-family: "Inter", sans-serif;
}

.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

div.col-1-4 p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #676C74;
  text-align: center;
}

/* Before and after image comparison */

.image-container {
    position: relative;
    display: inline-block;
    overflow: visible;
    border-radius: 8px;
}

.comparison-image-first {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
    position: relative;
    z-index: 1;
    filter: none;
}

.comparison-image-second {
    position: absolute;
    object-fit: cover;
    transition: filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
    z-index: 2;
    width: 80%;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    opacity: 0;
    border-radius: 8px;
    transition: opacity 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, 
                rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, 
                rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.image-container:active .comparison-image-first {
    filter: blur(4px) grayscale(100%);
}

.image-container:active .comparison-image-second {
    opacity: 1;
}

.cursor-label-2 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  background-color: #3668CC;
  color: #fff;
  font-size: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.ScreenStudio-video-container {
  display: flex;              /* Enable flexbox */
      justify-content: center;    /* Center horizontally */
      align-items: center;        /* Center vertically */
      overflow: hidden;           /* Hide overflow for better layout */
      width: 100vw; /* Full width of the viewport */
    overflow: hidden; /* Prevents any overflow content */
    position: relative; /* Ensures proper positioning if needed */
}


.video-container {
      display: flex;              /* Enable flexbox */
      justify-content: center;    /* Center horizontally */
      align-items: center;        /* Center vertically */
      overflow: hidden;           /* Hide overflow for better layout */
      margin: 50px 0;
      padding: 50px 0;
      background-color: #F7F8FA;
    }

/*video {
  border: 1px #C7CBD1 solid;
  border-radius: 8px;
  max-width: 1200px;
}*/
.ScreenStudio-video-container video {
    max-width: 1200px;
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes any inline spacing around the video */
    border: 1px #C7CBD1 solid;
border-radius: 8px;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  table-layout: fixed;
  border-radius: 8px;
}

.styled-table th,
.styled-table td {
  padding: 10px;
  border: 1px solid #ddd;
}

/* Style for the first row (header) */
.styled-table thead th {
  background-color: #F7F8FA;
}

/* Style for the first column */
.styled-table td.first-col {
  background-color: #F7F8FA;
}

/* Font styling for all cells */
.styled-table th,
.styled-table td {
  font-size: 16px;
  color: #676C74;
}

td.high, td.medium, td.low {
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center; /* Vertically aligns text and image */
  justify-content: center; /* Horizontally centers the content */
  gap: 8px; /* Adds space between the image and text */
}
.header-icon {
  height: 20px; /* Adjust size as needed */
  width: 20px;
  object-fit: contain; /* Ensures the image maintains aspect ratio */
}
.header-content span {
  font-size: 16px;
  color: #676C74;
  font-family: "Inter", sans-serif;
  font-weight: normal;
}
.styled-table thead tr th.selected-header {
  background-color: #A7F3D0;
}
.styled-table tbody tr td.selected-row {
  background-color: #EDFFF6;
}
p.resume-text span.place-date, span.place-date, p.place-date {
  font-family: "IBM Plex Mono", serif;
  font-weight: 400;
  color: #676C74;
  margin-bottom: 8px;
  font-size: 16px;
}
.resume-column p.resume-title {
  color: #5384E6;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.resume-section {
  margin-bottom: 40px;
}

h1.type-title {
  font-family: "DM Sans", sans-serif;
  font-size: 100px;
  text-align: left;
}
h1.type-title-mono {
  font-family: "DM Mono", monospace;
  font-size: 100px;
  text-align: left;
}
p.type-caption {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: #676C74;
  margin-bottom: 0px;
}
p.type-style {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #1D2028;
  margin: 0 auto 12px;
}
p.type-style-mono {
  font-family: "DM Mono", monospace;
  font-weight: 600;
  color: #1D2028;
  margin: 0 auto 24px;
}



/* Comparison Slider */
.comparison-container {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Comparison Slider2 */
.comparison-container2 {
  position: relative;
  width: 100%;
  height: 627px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.comparison-container img, .comparison-container2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1; /* Ensure images are on the same layer */
}

.comparison-container .image-dark, .comparison-container2 .image-old {
  clip-path: inset(0 50% 0 0); /* Initially shows half of the dark image */
  z-index: 2; /* Dark image on top for clipping */
}

.comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #3668CC;
  cursor: pointer;
  z-index: 3;
  transform: translateX(-50%);
}

.handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 48px;
  background-color: #3668CC;
  border: 2px solid #7197E4;
  border-radius: 40px;
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 4; /* Ensure handle is on top */
  cursor: grab; /* Suggest draggable behavior */
}

.handle:active {
  cursor: grabbing; /* Change the cursor when the user clicks and holds */
}

/* Cursor Label */
.cursor-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 12px;
  background-color: #3668CC;
  color: #fff;
  font-size: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  border-radius: 4px;
  border: 1px solid #7197E4;
  pointer-events: none; /* Ensures the label doesn't interfere with hover events */
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  z-index: 5;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.rainbow-text {
  background: linear-gradient(to right, red, orange, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-of-logos {  width: 100%;
  overflow: hidden;
  background: white;
  padding: 20px 0;
}

.carousel-logos-track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.carousel-logo {
  height: 32px; /* Fixed height */
  margin: 0 40px; /* Consistent spacing */
  filter: grayscale(100%); /* Make logos grayscale */
  opacity: 80%;
  transition: filter 0.3s ease; /* Smooth transition for hover effect */
  object-fit: contain; /* Maintain aspect ratio */
}

.carousel-logo:hover {
  filter: grayscale(0%); /* Remove grayscale on hover */
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

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









/* Sifflet data stack diagram */
.data-stack-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 2rem 2rem 0; /* Padding adjusted to avoid overlap */
  position: relative;
  border-radius: 80px 80px 0 0;
  overflow: visible;
  background: #fff; /* Ensure white background for clarity */
  padding-top: 130px;
}

/* Border animation with pseudo-element */
.data-stack-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #E8154D; /* Red border */
  border-radius: 80px 80px 0 0;
  border-bottom: none; /* Remove bottom border */
  z-index: -1; /* Push behind content */
  animation: border-draw 4s ease-in-out forwards; /* Adjust timing for smooth animation */
}

/* Keyframes for evenly distributed animation */
@keyframes border-draw {
  0% {
    clip-path: inset(50% 50% 100% 50%); /* Start from the top center */
  }
  25% {
    clip-path: inset(0 50% 100% 50%); /* Reveal the top border */
  }
  50% {
    clip-path: inset(0 50% 50% 50%); /* Reveal halfway down the left and right borders */
  }
  75% {
    clip-path: inset(0 0 50% 0); /* Fully reveal the left and right borders */
  }
  100% {
    clip-path: inset(0 0 0 0); /* Complete the bottom corners */
  }
}

/* Adjust logo positioning */
.sifflet-logo {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 250px;
  background-color: #fff;
  padding: 0 24px;
}


.single-row-logos {
  display: flex; /* Enables a flexible layout */
  justify-content: space-between; /* Evenly spaces the logos horizontally */
  align-items: center; /* Aligns logos vertically in the center */
  flex-wrap: wrap; /* Ensures the logos wrap if they don't fit in one row */
  gap: 16px; /* Adds spacing between logos for better responsiveness */
}
.brand-logo-grid img {
  width: auto; /* Adjust the logo size */
  height: auto; /* Maintain aspect ratio */
  max-width: 55px;
}

.col-span-16 {
  grid-column: span 16 / span 16;
  transition: background 0.3s ease-in-out;
}
.col-span-16 img {
  max-width: 250px;
  margin: 0 auto;
}
.col-span-12 {
  grid-column: span 12 / span 12; /* Default span of 12 columns */
  grid-column-start: 4; /* Starts at column 3 */
  grid-column-end: 14; /* Ends at column 15 */
  border: 1px solid #000;
  border-radius: 8px;
  padding: 16px;
  transition: background 0.3s ease-in-out;
}
.col-span-3 {
  grid-column: span 3 / span 3;
  border: 1px solid #000;
  padding: 16px;
  border-radius: 8px;
  transition: background 0.3s ease-in-out;
}
.col-span-4 {
  grid-column: span 4 / span 4;
  transition: background 0.3s ease-in-out;
}
.col-span-12 h2, .col-span-3 h2, .transformations h2, .data-storage h2, .sifflet-logo h2{
  text-align: center; /* Centers the heading */
  margin-bottom: 16px; /* Adds space between the title and the logos */
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  margin-top: 0;
  color: #676C74;
}

.col-span-12:hover h2, .col-span-3:hover h2, .transformations:hover h2, .data-storage:hover h2, .sifflet-logo h2{
color: #1D2028;
}
.col-span-12 p, .col-span-3 p, .transformations p, .data-storage p, p.sifflet-observability{
color: #1D2028;
font-size: 16px;
text-align: center;
line-height: 24px;
margin-top: -10px;
font-weight: 300;
}
.col-span-12:hover p, .col-span-3:hover p, .transformations:hover p, .data-storage:hover p, p.sifflet-observability {
color: #1D2028;

}
p.sifflet-observability {
  font-size: 16px;
}
h2.sifflet-observability-title {
      position: absolute;
    left: 17px;
    top: 60px;
}



.data-sources {
  grid-column-start: 1;
  grid-column-end: 4;
  height: fit-content;
}
.ingest-data {
  grid-column-start: 4;
  grid-column-end: 7;
  height: fit-content;
}
.data-sharing {
  grid-column-start: 11;
  grid-column-end: 14;
  height: fit-content;
}
.destinations {
  grid-column-start: 14;
  grid-column-end: 17;
  height: fit-content;
}
.center-container {
display: grid; /* Ensures grid layout for transformations and storage */
  gap: 2rem; /* Adds 2rem space between "Transformations" and "Data Storage" */
}
.transformations, .data-storage {
  border: 1px solid #000;
  justify-items: center; /* Centers logos horizontally in their grid cells */
  align-items: center; /* Centers logos vertically in their grid cells */
  border-radius: 8px;
  padding: 16px;
}

.brand-logo-grid.three-up-row {
  display: grid; /* Enables grid layout */
  grid-template-columns: repeat(3, 1fr); /* Defines 2 columns of equal width */
  gap: 16px; /* Adds space between grid items */
  justify-items: center; /* Centers logos horizontally in their grid cells */
  align-items: center; /* Centers logos vertically in their grid cells */
}

.brand-logo-grid.two-up-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
  width: 100%; /* Add this line to make the grid container take up the full width */
}

.brand-logo-grid.two-up-row img, .brand-logo-grid.three-up-row img {
  width: 100%; /* Add this line to make the images take up the full width of their grid cells */
  max-width: 55px; /* Remove the max-width to allow the images to stretch */
  height: auto; /* Maintain the aspect ratio */
}

.grid {
  display: grid;
}

.grid-cols-data-stack {
  grid-template-columns: repeat(16, 1fr);
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
  gap: 2rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-gray-300 {
  border-color: #D1D5DB;
}

.p-4 {
  padding: 1rem;
}
.data-sources, .ingest-data, .data-sharing, .destinations {
  margin: auto;
}
/* Base styles for divs with rounded borders */
.rounded-border {
  background-color: #F7F8FA;
  border: 1px solid #C7CBD1;
  border-radius: 8px; /* Assumes rounded borders */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  filter: grayscale(100%); /* Start in greyscale */
}

/* Remove greyscale and change styles on hover */
.rounded-border:hover {
  background-color: #FFFFFF;
  border-color: #E8154D;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
  filter: grayscale(0%); /* Remove greyscale */
}

[data-tooltip] {
  position: relative; /* Ensures the tooltip is positioned relative to the card */
  display: inline-block; /* Ensures the parent wraps around the card content */
}

.tooltip-data-stack {
  position: absolute;
  top: -100px; /* Positions the tooltip directly below the card */
  left: 50%; /* Centers the tooltip horizontally relative to the card */
  transform: translateX(-50%); /* Corrects the alignment to center it */
  background-color: rgba(0, 0, 0, 0.8); /* Tooltip background color */
  color: white; /* Tooltip text color */
  padding: 8px 12px; /* Padding inside the tooltip */
  border-radius: 4px; /* Rounded corners */
  font-size: 14px; /* Text size */
  font-family: "Inter", sans-serif;
  visibility: hidden; /* Default: tooltip is hidden */
  opacity: 0; /* Default: tooltip is invisible */
  transition: opacity 0.3s ease-in-out; /* Smooth fade-in/out */
  z-index: 10; /* Ensures the tooltip appears above other elements */
  width: 400px;
  text-align: center;
}

[data-tooltip]:hover .tooltip-data-stack {
  visibility: visible; /* Show the tooltip on hover */
  opacity: 1; /* Fade in the tooltip */
}

.sifflet-observability {
    position: absolute;
    width: 750px;
    text-align: center;
    left: -250px;
    top: 85px;
    font-weight: 300;
}

.star-icon-text, .star-icon-text-case {
  gap: 20px; /* Add spacing between the SVG and text */  
  background-color: #fff;
  position: relative;
}

.flex-grid-thirds .star-icon-text img.star-image {
  width: 24px;
  height: 24px;
}

.star-text-content {
  display: flex;
  gap: 8px;
  align-items: center;
}

.star-text-content h5.star-title {
  font-family: "IBM Plex Mono;", monospace;
  font-optical-sizing: auto;
  text-align: left;
  font-size: 16px;
  color: #1D2028;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

ul.star-description {
  list-style: none; /* Remove default bullets */
  padding-left: 16px; /* Add padding to simulate indentation */
}

ul.star-description li {
  position: relative;
  font-size: 16px;
  color: #1D2028;
  font-family: "Inter", sans-serif;
  margin-top: 0px;
  text-align: left;
  line-height: 1.5;
  font-weight: 300;
}

ul.star-description li:nth-of-type(1) {
margin-top: 8px;
}

ul.star-description li::before {
  content: '●';
  font-size: 12px;
  position: absolute;
  left: -16px;
  top: 3px;
}

.star-icon-text:nth-of-type(1) ul.star-description li::before {
  color: #EA4336;
}

.star-icon-text:nth-of-type(2) ul.star-description li::before {
  color: #EFB401;
}

.star-icon-text:nth-of-type(3) ul.star-description li::before {
  color: #34A853;
}

.star-icon-text:nth-of-type(1) ul.star-description-case-study li::before, .star-icon-text:nth-of-type(2) ul.star-description-case-study li::before, .star-icon-text:nth-of-type(3) ul.star-description-case-study li::before {
  color: #3668CC;
}

























/*.
..
Media Queries
..
.*/

@-webkit-keyframes hero-gradient {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@-moz-keyframes hero-gradient {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes hero-gradient { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

@media (max-width: 1248px) {
  .about-me-wrap {
    padding: 24px;
  }
}

@media (max-width: 1200px) {
  .data-stack-container {
    display: none;
  }
  .single-img, .flex-grid-half {
    padding: 0 48px;
  }
  img.border {
    border: none;
  }
  .clickable-container:hover .nav-image2 {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #hero-content h2, span#js-rotating {
    font-family: "Inter" sans-serif;
    font-optical-sizing: auto;
    font-size: 30px;
    line-height: 1.5;
    width: 75%;
    text-align: center;
  }
  section.project-text {
    padding: 0 24px;
  }
  video, iframe {
    width: 100%;
  }
  .comparison-container img {
    height: 100%;
  }
}

@media (max-width: 900px) {
  #hero-content h2, span#js-rotating {
    font-size: 28px;
    line-height: 1.5;
    width: 75%;
  }
  .flex-grid-fourths > .col-2-4, .flex-grid-thirds > .col-2-3 {
    width: 100%;
  }

  .my-work {
    display: none;
  }
  .bio-image {
    display: none;
  }
  .about-me-text {
    padding-right: 0;
  }
  .clickable-container:hover .nav-image2 {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  iframe {
    width: 100%;
  }
  button svg {
    display: none;
  }
}



@media (max-width: 700px) {
.resume-column {
  padding-right: 0;
}


  .single-img, .flex-grid-half, .image-caption, .table-caption {
    padding: 0 24px;
  }
  

  .page-wrap h2, .bio-title {
    font-size: 36px;
    line-height: 1.2;
  } 
  p.project-description, p.bio-description, p.resume-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .all-caps {
    font-size: 12px;
        letter-spacing: 1px;
  } 
  .app-tile {
    max-width: 100px;
  }
  h2.windows-title {
    line-height: 1.4
  }
  .flex-grid-thirds, .flex-grid-fourths{
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .flex-grid-thirds > .col-1-3, .flex-grid-thirds > .col-2-3, .flex-grid-fourths > .col-1-4, .flex-grid-fourths > .col-2-4 {
    width: 100%;
  }

  .flex-grid-fourths > .col-1-4 {
    display: none;
  }

  #work-list > .flex-grid-thirds > .col-1-3, .background-stripe > .col-1-3 {
    margin-bottom: 40px;
  }
  #work-list > .flex-grid-thirds:nth-child(1) {
    padding: 0;
  }
  p.project-name {
    font-size: 16px;
  }
  img.bio-image {
    max-width: 200px;
    padding-left: 20px;
  }
  #hero-content h2, span#js-rotating {
    font-size: 24px;
    line-height: 1.5;
    width: 70%;
  }
  .project-hero {
    overflow: hidden;
    background-color: #333;
    height: 300px;
  }
  .project-hero-title {
    left: 24px;
  }
  .project-image {
    opacity: 0;
  }
  .hero-logo {
    display: none;
  }

  h1#logo {
    margin: 0;
  }
  nav ul li {
    margin-right: 12px;
  }
  nav ul li:last-child {
    margin-right: 0;
  }
  section.project-text {
  padding: 24px;
  }
  .background-stripe {
    padding: 50px 5%;
  }
  .project-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
  }
  .clickable-container:hover .nav-image2 {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  iframe {
    width: 100%;
  }
}

@media (max-width: 500px) {
  img.bio-image {
    display: none;
  }
  #hero-content h2, span#js-rotating {
    font-size: 20px;
    line-height: 1.5;
    width: 80%;
  }
  .app-tile {
    display: none;
  }
  h2.windows-title {
    line-height: 1.2
  }
  #hero {
  background: rgb(255, 255, 255);
  }
  .clickable-container:hover .nav-image2 {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  iframe {
    width: 100%;
  }
}

@media (max-width: 400px) {
  nav li .nav-envelope, nav li .nav-linkedin {
    display: none;
  }
  nav li {
    height: 35px;
    margin-right: 5px;
  }
    #hero-content h2, span#js-rotating {
    font-size: 16px;
    line-height: 1.5;
    width: 80%;
  }
  .hi {
  padding-bottom: 4px;
}
span#js-rotating {
  padding: 0 10px 4px 10px;
}
.clickable-container:hover .nav-image2 {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  iframe {
    width: 100%;
  }
  }



