/* ================================= 
  Base Element Styles
==================================== */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat' , sans-serif;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
  font-size: 1em;
  overflow: overlay;

  background: url("./images/workback.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

::-webkit-scrollbar {
  width: 15px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #363636;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
}

.wrapper {
  width: 90%;
}

.section-title {
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 0;
}

.body-text {
  font-size: 1.3em
}

.button {
  text-decoration: none;
  color: inherit;
}

a {
  text-decoration: none!important;
}

a:link {
    text-decoration: none!important;
}

a:visited {
    text-decoration: none!important;
}





/* ================================= 
  Base Layout Styles
==================================== */

/* Landing */

.landing-page {
  height: 100vh;
  width: 100%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;

  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, .3));
}

.landing-gradient {  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.landing {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
} 



.landing-nav {
  color: #FFF;
  width: 95%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  margin-top: 1px;
  position: absolute;
  max-width: 100%;
}

.linkhome {
  display: flex;
  align-items: center;

  margin-right: auto;
}

.logocontainer {
  display: flex;
  align-items: center;
  align-content: top;
  justify-content: center;
}

#landing-logo {
  margin-right: auto;
  width: 55px;
  
  overflow: none;
}


.hmi {
  margin-bottom: 0;
}


.nav {
  font-weight: 500;
  width: 100%;
  max-width: 475px;
  min-width: 425px;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  justify-content: space-between; 

  display: none;
}

.nav li {
  font-size: 1.8em
}

.landing-content {
  margin: 0 auto;
  width: 100%;

  display: flex;
  flex: 1;
  text-align: center;
  align-items: center;
  flex-direction: column;
  
  justify-content: space-around;
}

.landing-pic {
  margin-top: 115px;
}

.landing-img {
  width: 125px;

  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .3));
}

.landing-text {
  font-size: 1.5em;
  
  vertical-align: center;
  text-align: center;
}

.workbutton {
  cursor: pointer;
  
  border: solid 3px white;
  border-radius: 100px;
}

.workbuttontext {
  color: #FFF;
  font-size: 1em;
  padding: 8px 12px 8px 12px;
  margin: 0;
  position: relative;
}


.arrowcontainer {
  cursor: pointer;
  border: 3px solid white;
  border-radius: 100px;
  width: 50px;
  height: 50px;

  margin-top: 20px;
  margin-bottom: 20px;
}
  

@keyframes scroll {
  0% { transform: translateY(-12px); opacity: 0; }
  50% { transform: translateY(0px); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0;}
}


.downarrow {
  width: 25px;
  padding-top: 10px;

  animation-name: scroll;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
  vertical-align: middle;
}

/* ================================= 
  Nav Animations
==================================== */

ul.nav li > a {
  position: relative;
  color: #FFF;
  text-decoration: none;
}

ul.nav li > a:hover {
  color: #FFF;
}

ul.nav li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

ul.nav li > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* ================================= 
  Landing Button Animations
==================================== */

.workbuttontext {
  transition: 0.25s;
}

.workbuttontext:hover {
  color: #363636;
  padding: 8px 20px 8px 20px;
  transition: 0.25s;
}

.workbutton {
  transition: 0.25s;
}

.workbutton:hover {
  background-color: white;
  transition: 0.25s;
}

/* ================================= 
  What I Do
==================================== */

.whatido {
  color: #FFF;
  background-color: rgba(0,0,0,.3);

  display: flex;
  flex-direction: column;
  align-items: center;

  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .4));
  box-shadow: 0 5px 10px rgb(0 0 0 / 45%);
  backdrop-filter: blur(6px);
}

.whatido-title {
  text-align: center;
  margin-top: 50px;
}



.skillset {
  padding-top: 15px;
  margin-bottom: 50px;

  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  text-align: center;
  align-self: center;
}

.skill {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 290px;
  align-content: center;
  padding-top: 25px;
}

.skill p {
  margin-top: 0;
}

.skill h1 {
  margin-bottom: 15px;
}


.icon {
  height: 150px;
}


/* ================================= 
  Work
==================================== */

.mywork {
  background-image: url("./images/workback.jpg");
  height: 100vh;
  width: 100%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
}

.gittext {
  margin-top: 0;
}

.gittext a {
  text-decoration: none;
  color: white;
}

.giticon {
  font-size: 50px;
  margin-top: 20px;
}

.mywork-gradient {
  background: rgba(0, 210, 255, 0.5); /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left top, rgba(0, 210, 255, 0.5), rgba(190, 50, 175, 0.5));  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bottom right, rgba(0, 210, 255, 0.5), rgba(190, 50, 175, 0.5)); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(bottom right, rgba(0, 210, 255, 0.5), rgba(190, 50, 175, 0.5)); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to bottom right, rgba(0, 210, 255, 0.5), rgba(190, 50, 175, 0.5)); /* Standard syntax */
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*.work-title {
  margin: 0 auto;
  padding-top: 20px;
}*/

.work {
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-title {
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  width: 90%;

  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, .3));
}

.workcontainer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
}

.work-text {
  margin-bottom: 80px;
}

.exampletitle {
  color: #363636;
  text-decoration: none;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8em;
  margin-top: 10px;
  margin-bottom: 5px;
}

.exampletitle:link {
  color: #363636;
  text-decoration: none;
}

.exampletitle:visited {
  color: #363636;
  text-decoration: none;
}

.examplecontainer {
  width: 100%;
}

.child span,
.child p {
  display: none;
}

.child {
  display: flex;
  justify-content: center;
}

.example {
  background-color: #363636;
  width: 100%;
  height: 350px;
  margin: 0 0 80px 0;
  overflow: hidden;
  cursor: pointer;

  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .4));
}

/* ================================= 
  Gallery Filter
==================================== */





/* ================================= 
  Gallery Images
==================================== */

.threefifty { background-image: url(./images/350coloradologo.png); }
.example1 { background-image: url(./images/posterdisplay.jpg); }
.example2 { background-image: url(./images/stationary.jpg);
            background-position: top !important; }
.example3 { background-image: url(./images/scentsiblelogothumb.jpg); }
.example4 { background-image: url(./images/tedlogo.jpg); }
.example5 { background-image: url(./images/mars-thumb.jpg);
            background-position: bottom !important; }
.example6 { background-image: url(./images/happyemail-thumb.jpg);
            background-position: top !important; }
.example7 { background-image: url(./images/crystallakestationary-thumb.jpg); }

.example8 { background-image: url(./images/frogheartfull-thumb.jpg); }
.example9 { background-image: url(./images/flowerilli.jpg); }
.example10 { background-image: url(./images/dragon-thumb.jpg); }


/* ================================= 
  Gallery Hover Effects
==================================== */

.child {
  width: 100%;
  height: 100%;
  background-color: black; /* fallback color */
  background-position: center;
  background-size: cover;

  transition: all .5s;
}




/* ================================= 
  Testimonials
==================================== */

.testimonial-container {
  margin: 0 auto;
  width: 80%;
  margin-bottom: 100px
}

.testimonial-quote {
    font-size: 16px;
}

.testimonial-quote blockquote {
    /* Negate theme styles */
    border: 0;
    margin: 0;
    padding: 0;

    background: none;
    font-size: 1.3em;
    font-style: italic;
    line-height: 1.4 !important;
    margin: 0;
    position: relative;
    z-index: 600;

    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, .4));
}

.testimonial-quote blockquote * {
    box-sizing: border-box; 
}

.testimonial-quote blockquote p {
    color: white; 
    line-height: 1.4 !important;
}

.testimonial-quote blockquote p:first-child:before {
    content: '\201C';
    color: white;
    font-size: 7.5em;
    font-weight: 700;
    opacity: .2;
    position: absolute;
    top: -.4em;
    left: -.3em;    
    text-shadow: none;
    z-index: -300;
}

.testimonial-quote img {
    margin: 0 auto;
    border: 3px solid #9CC1D3;
    border-radius: 50%;
    display: block;
    width: 120px;
    height: 120px;
    top: 23px;
    left: 0;
    
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .4));
}

.testimonial-quote cite {

    display: block;
    font-size: .93em; 
    
}
  
.testimonial-quote cite span {
    color: #363636;
    font-size: .93em;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase; 
}

.testimonial-quote {
    position: relative; 
}

.testimonial-quote .quote-container {
    padding-left: 0px; 
}
  
.testimonial-quote.right .quote-container {
    padding-left: 0;
    padding-right: 0px; 
}

.testimonial-quote.right img {
    left: auto;
    right: 0;
}

.testimonial-quote.right cite {
    text-align: left; 
}




/* ================================= 
  About Me
==================================== */

.aboutme {
  color: #FFF;
  margin-bottom: 0;

  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .4));
  box-shadow: 0 5px 10px rgb(0 0 0 / 45%);
  backdrop-filter: blur(6px);
}

.about {
  background-color: rgba(0,0,0,.3);
  width: 100%;

  display: flex;
  flex-direction: column;
  text-align: center;
}

.aboutmetext {
  line-height: 1.9em;
}

.abouttextcontainer {
  width: 80%;
  text-align: left;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
}

.minime {
  width: 300px;
  border-radius: 100%;
  margin-top: 20px;
}

.aboutme-title h1 {
  text-align: center;
  margin-top: 35px;
}

.biopic {
  width: 50%;
  display: none;
}

.about-title {
  text-align: center;
}



/* ================================= 
  Contact
==================================== */

.contact {
  margin: 0;
  width: 100%;
}

.contactcontainer {
  height: 100%;
  width: 90%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.contactheader {
  margin-top: 110px;
  font-weight: 700;
  font-size: 2.3em
}

.contactbutton {
  margin-top: 10px;
  margin-bottom: 110px;
  border: solid 3px #363636;
  border-radius: 100px;
}

.contactbuttontext {
  font-size: 1.3em;
  padding: 8px 12px 8px 12px;
  margin: 0;
  position: relative;
  color: #363636;
}

/* ================================= 
  Contact Button Hover
==================================== */

.contactbutton {
  transition: 0.25s;
}

.contactbutton:hover {
  background-color: #363636;
  transition: 0.25s;
}

.contactbuttontext {
  transition: 0.25s;
}

.contactbuttontext:hover {
  color: white;
  padding: 8px 20px 8px 20px;
  transition: 0.25s;
}




/* ================================= 
  Footer
==================================== */

.footer {
  background-color: rgba(0,0,0,.3);
  color: #FFF;
  width: 100%;

  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .4));
  box-shadow: 0 5px 10px rgb(0 0 0 / 45%);
  backdrop-filter: blur(6px);
}

.footercontainer {
  width: 90%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footericon {
  width: 100px;
  margin-top: 50px;
  margin-bottom: 20px;

  cursor: pointer;
}

.footercontainer p {
  font-size: 20px
}

.socialnav {
  height: 25px;
}


/* ================================= 
  Case Study Exclusive Styles
==================================== */

/* General */

.examplepage {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.mockupnav {
  display: flex;

  margin: 0 auto;
  margin-top: 50px;
  color: #FFF;
}

.casestudytitlecontainer {
  margin: 0 auto;
  margin-top: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.casestudytitle {
  margin: 0 auto;
  text-align: center;
}

.casestudytitle,
h1 {
  font-size: 2em;
}

.category {
  font-size: 25px;
  font-weight: 500;
  margin: 10px auto;
}



.casestudycontainer {
  color: #FFF;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;

  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  box-shadow: 10px 10px 10px rgb(0 0 0 / 45%);
}

.cstextcontainer {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 17px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.cstext {
  text-align: center;
  font-weight: 500;
  font-size: 1em;
}

.gidescrip {
  background: rgba(0,0,0,.25);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgb(0 0 0 / 40%);
}

#lightgallery li a {
  filter: drop-shadow(10px 10px 10px rgb(0 0 0 / 50%));
}

.tedlink {
  text-decoration: none;
  color: white;
}





.gallerycontainer {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 105px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}




#lightgallery {
  display: flex;
  justify-content: space-between;
  align-items: auto;
  flex-wrap: wrap;
  padding: 0;
}

.visitsitelink {
  border: solid 3px #363636;
  border-radius: 100px;
  min-width: 150px;
  margin: 10px auto;
}

.visitsitelinktext {
  font-size: 1.3em;
  padding: 8px 12px 8px 12px;
  margin: 0;
  position: relative;
  color: #363636;
}

.anigallerycontainer {
  width: 80%;
  margin: 0 auto;
  margin-top: 105px;
  margin-bottom: 105px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: center;
}

/* ================================= 
  Visit Site Button Hover
==================================== */

.visitsitelink {
  transition: 0.25s;
}

.visitsitelink:hover {
  background-color: #363636;
  transition: 0.25s;
}

.visitsitelinktext {
  transition: 0.25s;
}

.visitsitelinktext:hover {
  color: white;
  padding: 8px 40px 8px 40px !important;
  transition: 0.25s;
  cursor: pointer;
}




/* ================================= 
  Light Gallery
==================================== */

.demo-gallery {
  width: 100%;
}

.demo-gallery > ul {
  margin-bottom: 0;
}

.demo-gallery > ul > li {
  margin: 0 auto;
  margin-top: 75px;
  padding-right: 20px;
  width: 500px;
  align-self: auto;
  display: inline-block;
  list-style: outside none none;
}

.demo-gallery > ul > li a {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  position: relative;
}

.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery > ul > li a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}


/* ================================= 
  Gallery Image Sizes
==================================== */

.demo-gallery > ul > li.threefiftyhomemobile {
  width: 300px;
}

.demo-gallery > ul > li.threefiftygallery {
  width: 500px;
}

.demo-gallery > ul > li.threefiftydonation {
  width: 600px;
}

.demo-gallery > ul > li.hgstationary {
  width: 675px;
}

.demo-gallery > ul > li.hgbc {
  width: 675px;
}

.demo-gallery > ul > li.hg-ppt-img {
  width: 550px;
}

.demo-gallery > ul > li.polyposterdisplay {
  width: 850px;
}

.demo-gallery > ul > li.polyanimalposter {
  width: 400px;
}

.demo-gallery > ul > li.polymantisposter {
  width: 700px;
}

.demo-gallery > ul > li.tedxlogo {
  width: 850px;
}

.demo-gallery > ul > li.biopac-illi {
  width: 590px;
}

.demo-gallery > ul > li.uniflower {
  width: 790px;
}

.demo-gallery > ul > li.dragondp {
  width: 790px;
}

.demo-gallery > ul > li.logoprimary {
  width: 700px;
}

.demo-gallery > ul > li.logodraft {
  width: 550px;
}

.demo-gallery > ul > li.crystallakelogo {
  width: 700px;
}

.demo-gallery > ul > li.clstationary {
  width: 700px;
}

.demo-gallery > ul > li.happyhourtabletopper {
  width: 300px;
}

.demo-gallery > ul > li.happyhouremail {
  width: 500px;
}

.demo-gallery > ul > li.typoimageposter {
  width: 425px;
}





/* ================================= 
  Media Queries
==================================== */



@media (min-width: 650px) {

  .logocontainer {
    margin-left: 0px;
    margin-top: 10px;
  }

  #landing-logo {
    width: 90px;
  }

  .landing-img {
    width: 190px;
  }

  .landing-text {
    font-size: 2.5em;
    font-weight: 800;
  }

  .landing-text br {
    display: block;
  }

  .workbuttontext {
    font-size: 1.3em;
  }

  .whatido-title p,
  .work-title p {
    font-size: 21px;
  }

  .skill {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 40px;
  }

  .work-title {
    padding-bottom: 25px;
  }

  .work-text {
    margin-bottom: 25px;
  }

  .work {
    padding-bottom: 50px;
  }

  .workcontainer {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .exampletitle {
    width: 100%;
    margin-top: 30px;
  }

  .examplecontainer {
    width: auto;
  }

  .example {
    display: flex;
    width: 432px;
    height: 312px;

    margin: 5px 20px 20px 20px;
    border-radius: 12px;

    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .4));
  }

  .casestudycontainer {
    width: 95%;
  }
  
 /* .minime {
    width: 40%;
  }
*/

  .contactcontainer p {
    font-size: 21px;
    margin-bottom: 35px;
  }

  .cstextcontainer {
    width: 70%;
  }

  .cstext {
    font-size: 1.1em;
  }

  .casestudytitle,
  h1 {
  font-size: 3em;
}

}


@media (max-width: 700px)
  and (orientation: landscape) {
    .landing-img {
      display: none;
    }
  }


@media (min-width: 1000px) {

  .nav {
    display: flex;
  }

  .content {
    display: none;
  }

}


@media (min-width: 1000px) {

  .landing {
    width: 80%;
  }

  .cstextcontainer {
    width: 60%;
  }

  .testimonial-quote img {
    margin: 0;
    position: absolute;
  }

  .testimonial-quote .quote-container {
    padding-left: 160px; 
}
  
  .testimonial-quote.right .quote-container {
    padding-left: 0;
    padding-right: 160px; 
}
  .testimonial-quote.right cite {
    text-align: right; 
}

}


@media (min-width: 1300px) {

  .landing-img {
    width: 190px;
  }

  .biopic {
    display: block;
    width: 100%;
  }

  .aboutme {
    display: flex;
    flex: 1;
    width: 100%;
  }

  .exampletitle {
    display: none;
  }






.child span, 
.child p {
  display: block;
}










.example:hover .child,
.example:focus .child {
  transform: scale(1.15);
}
  
.child::before {
  content: "";
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(54, 54, 54, 0.85);
}

.example:hover .child:before,
.example:focus .child:before {
  display: block;
}

.example
span {
  font-size: 1.7em;
  font-weight: 700;
  color: white; /* Good thing we set a fallback color! */
  padding: 20%;
  display: none;
  position: relative;
  text-align: center;
}

span
p {
  font-size: 0.75em;
  font-weight: 400;
  border: 1px solid white;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.example:hover span,
.example:focus span {
  display: block;
}









  .about {
    width: 50%;
    height: auto;
  }

  .aboutmetextcontainer {
    margin-top: 0;
  }

  .me {
    width: 50%;
  }

  .minime {
    display: none;
  }

}



@media (min-width: 1800px) {

  .landing {
    width: 50%;
  }

  .landing-logo {
    width: 10px;
  }

  .landing-text {
    font-size: 3.5em;
  }

   




}



