/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}























/* ==========================================================================
   My CSS
   ========================================================================== */


/* --- DEFAULT --- */



/* --- Background Colors --- */
.bckg-pink{
  background-color: #FF90E7;
}

.bckg-grey {
  background-color: #F3F3F3;
}

.bckg-wgrey {
  background-color: #dcdad5;
}

.bckg-yellow {
  background-color: #FFFFD3;
}



/* --- Columns --- */

.col-12 {
  width: 100%;
}

.col-6 {
  width: 50%;
}

.col-4 {
  width: 33%;
}




/* --- Fonts --- */
* {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: black;
}

h1, h2, h3, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
}


h1 {
  font-size: 3.85em;
  letter-spacing: -3px;
  line-height: 1.2em;
}

h2 {
  font-size: 2.7em;
  text-align: center;
  letter-spacing: -1px;
}

h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
}

p {
  font-size: 1.4em;
}


a {
  text-decoration:none;
  color: inherit;
}


ul {
  list-style: none;
  padding: 0;
}


/* --- Buttons --- */
.border-btn, .black-btn{
  text-transform: uppercase;
  padding: 1.15em 3em;
  font-size: 1.1em;
  letter-spacing: .2em;
}

.border-btn{
  color: black;
  border: 1.5px black solid;
  background-color: white;
}

.border-btn:hover {
  color: white;
  background-color: black;
}

.black-btn {
  color: white;
  border: 1px black solid;
  background-color: black;
}

.black-btn:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0);
  border: 1px black solid;
}








/* --- Layout --- */

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

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

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-nospace {
  display: flex;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.first-section {
  padding-top: 6em;
}

.cover {
  background-size: cover;
}




/* ==========================================================================
  HEADER
  ========================================================================== */

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1.5px black solid;
  z-index: 1000;
}

.h-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 1.5em;
}

.logo img{
  max-width: 111px;
}

.h-left a, .h-right a{
  padding: 1em;
  color: black;
  font-size: 0.9em;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
}

.h-left a:hover, .h-right a:hover {
  color: #FF0013;
}

.hamburger{
  display: none;
  font-size: 1.7em;
}

/* hamburger */


/* -- Menu Dropdown -- */
header ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header li a {
  display: flex;
  padding: 15px;
  color: black;
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

header li a:hover,
header .menu-btn:hover {
  color: #FF0013;
}


/* -- menu -- */
header .menu {
  clear: both;
  max-height: 0;
  display: none;
}

/* menu icon */
header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 25px 20px;
  position: relative;
  user-select: none;
  z-index: 10;
}

header .menu-icon .navicon {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 25px;
  z-index: 8;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: black;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .menu {
  left: 0;
  top: 0;
  min-height: 100vh;
  background-color: #FF90E7;
  position: absolute;
  width: 100%;
  z-index: 3;
  display: flex;
}


header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


/* -- Social Media Icons -- */
.social {
  display: flex;
  position: inherit;
  bottom: 20px;
}

header .social a {
  padding: 10px;
  font-size: 0.65em;
}

.social .fa-linkedin:hover, .social .fa-behance:hover, .social .fa-envelope:hover .fa-instagram:hover {
  color: #FF0013;
}



/* ==========================================================================
   END OF HEADER
   ========================================================================== */






/* ==========================================================================
  HOMEPAGE
  ========================================================================== */
.aboutblurb {
  padding: -3px;
}


.hero-home {
  background: url("../img/vanessa-adao-header-village.png") center;
  background-size: cover;
  height: 80vh;
  width: 100%;
  text-align: center;
  padding: 0;
}

.home-about {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.home-about div {
  max-width: 80%;
  padding: 1%;
}

.home-about h4 {
  padding-bottom: 7px;
  border-bottom: 1px solid black;
  display: inline-block;
}

/* --- Portfolio Section within HOMEPAGE --- */
.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10px;
}

.gal-img {
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  width: 49%;
  min-height: 0;
}

.home-gal-1, .home-gal-4, .home-gal-5  {
  width: 65%;
}

.home-gal-2, .home-gal-3, .home-gal-6 {
  width: 32%;
}

.home-gal-1, .home-gal-2, .home-gal-4, .home-gal-5 {
  height: 500px;
}

.home-gal-2 {
  margin-top: 11em;
}

.home-gal-3 {
  height: 250px;
}

.home-gal-6 {
  height: 415px;
  margin-top: 20em;
}




/* ==========================================================================
  PORTFOLIO SECTION
  ========================================================================== */

.portfolio-gallery h4, .portfolio-gallery2 p {
  text-align: center;
  padding: 0 0 30px 0;
}

.portfolio-gallery {
  padding-top: 30px;
  max-width: 1400px;
  margin-bottom: 50px;
}

.portfolio-gallery .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.portfolio-gallery .gal-img {
  min-height: 500px;
  width: 100%;
}

.portfolio-gallery2 .gal-img {
  min-height: 300px;
  width: 100%;
}

.portfolio-gallery2 .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

/* --- Portfolio Page Imgs --- */
.port-gal-1 {
  background-image: url("../img/portfolio/VA Studio car-animation.gif");
}

.port-gal-2 {
  background-image: url("../img/portfolio/VA Studio babette dog.jpg");
}

.port-gal-3 {
  background-image: url("../img/portfolio/VA Studio owls.jpg");
}

.port-gal-4 {
  background-image: url("../img/portfolio/VA Studio witches.jpg");
}

.port-gal-5 {
  background-image: url("../img/portfolio/VA Studio grammy.jpg");
}

.port-gal-6 {
  background-image: url("../img/portfolio/VA Studio rancid.png");
}

.port-gal-7 {
  background-image: url("../img/portfolio/VA Studio baby.jpg");
}

.port-gal-8 {
  background-image: url("../img/portfolio/VA Studio characters.png");
}

.port-gal-9 {
  background-image: url("../img/portfolio/VA-Studio-foreigners.jpg");
}

.port-gal-10 {
  background-image: url("../img/portfolio/VA Studio Tarina.jpg");
}

.port-gal-11 {
  background-image: url("../img/portfolio/VA Studio ladybugs.png");
}

.port-gal-12 {
  background-image: url("../img/portfolio/VA Studio babette sleeps.jpg");
}

.port-gal-13 {
  background-image: url("../img/portfolio/VA blinks animation.gif");
}

.port-gal-14 {
  background-image: url("../img/portfolio/VA Studio PM avatar.jpg");
}

.port-gal-15 {
  background-image: url("../img/portfolio/VA scooter animation.gif");
}







.portfolio-gallery2 h4 {
  padding: 0 0 30px 0;
}

.portfolio-gallery2 {

  max-width: 1400px;
  padding: 50px 20px;
}

.otherprojects {
  padding-bottom: 30px;
}

/* ==========================================================================
  END PORTFOLIO SECTION
  ========================================================================== */






/* ==========================================================================
  ABOUT
  ========================================================================== */
.full-height {
  min-height: 90vh;
}

.about {
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-left {
  margin-right: 4vw;
}

.about h1 {
  line-height: 1.7em;
  margin: -0.5em 0;
}

.about h2 {
  margin: -0.55em 0;
}


.about img {
  width: 400px;
  margin: 40px 0px;
}

.about-blurb {
  margin: 30px 0 0 0;
}

.black-btn {
  margin: 30px 0 0 0;
}

.about .border-btn {
  margin: 1em;
}


/* ---.about-right {
  width: 100%;
}--- */

/* ---.aboutmeblurb p {
  margin-top: -1.3em;
}--- */


.about li {
  font-size: 1.4em;
}

.bckg-black {
  background-color: black;
}

.bckg-black h4, .bckg-black h3, .bckg-black h2, .bckg-black p {
  color: white;
}


.services h4, .clients h4 {
  margin: auto;
}




/* --- about - capabilities --- */
.services {
  padding-bottom: 3em;
}

.services h4 {
  padding: 50px 0  25px 0;
}

.services h2 {
  margin: 10px;
}

.services-list {
  padding: 2px;
  margin: auto;
}

.services-list1 {
  background-color: #f7f8f6;
}

.services-list2 {
  background-color: #f0f2f2;
}

.services-list3 {
  background-color: #e7ecec;
}

/* --.services-list:hover {
  color: #c9845d;
  background-color: #ebe2dc;
}-- */

.services-list p {
  margin-top: -15px;
}

.underline {
  border-bottom: 1px black solid;
}

.underline:hover {
  opacity: 50%;
}










/* --- about - process --- */
.process {
  padding: 9em 0 9em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}

.process-left {
  margin-right: 3vw;
  width: 90%;
}

.process-left img {
  width: 100%;
}



/* --- about - clients grid --- */
.clients h4 {
  padding: 50px 0  40px 0;
  margin: auto;
}

.clients {
}

.presslogos {
  text-align: center;
}

.clienteachlogo img {
  max-width: 90%;
}





/* --- about - fun facts --- */

.funfacts-left {
  width: 100%;
}

.funfacts-right {
  margin-left: 3vw;
  width: 90%;
}

.funfacts-right img {
  width: 100%;
}



/* --- All Projects Intro --- */
.proj-intro {
  padding-left: 110px;
  padding-right: 110px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.proj-intro h4 {
  margin-top: 3em;
  margin-bottom: 0px;
  text-align: left;
}

.proj-intro h2 {
  margin-top: 0px;
  margin-bottom: 0;
  text-align: left;
}

.proj-intro p {
  width: 80%;
}

.proj-01 {
  max-width: 400px;
  max-height: 600px;
  width: 100%;
  height: 75vh;
}

.proj-02 {
  max-width: 600px;
  height: 810px;
  float: right;
  margin-top: 150px;
  margin-bottom: -400px;
  width: 100%;
}
/* --- end All Projects Intro --- */

.projdetailA .col-6, .projdetailB .col-6, .projdetailC .col-6, .proj-item-full-c .col-6 {
    height: 90vh;
}



.proj-item-half {
    background-color: #f4efea;
    justify-content: center;
}

.img-half3 {
    width: 75%;
    height: 50%;
    background-size: cover;
    background-position: center;
}


.services-01 {
  background-image: url("../img/VA-Studio-s-drawing.png");
}





/* ==========================================================================
  END ABOUT
  ========================================================================== */







/* ==========================================================================
  CONTACT
  ========================================================================== */
.contact, .wbdhtgp {
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact div {
  max-width: 70%;
}
/* ==========================================================================
  END CONTACT
  ========================================================================== */







/* ==========================================================================
  RESUME
  ========================================================================== */

.resume {
  padding: 5em 0;
  justify-content: center;
}

.resume h2 {
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}

.resume-list {
    padding: 50px;
    margin: auto;
    border-bottom: 1px #D5C8B4 solid;
}

.resume-list-last {
    padding: 50px;
    margin: auto;
}


/* ==========================================================================
  END RESUME
  ========================================================================== */





/* ==========================================================================
  SERVICES FADE EFFECT
  ========================================================================== */

  /*FadeIn*/
  .fadeIn{
  	display: inline;
  	text-indent: 8px;
  }
  .fadeIn span{
  	animation: fadeEffect 12.5s linear infinite 0s;
  	-ms-animation: fadeEffect 12.5s linear infinite 0s;
  	-webkit-animation: fadeEffect 12.5s linear infinite 0s;
  	color: #FF0013;
  	opacity: 0;
  	overflow: hidden;
  	position: absolute;
    font-weight: 600;
  }
  .fadeIn span:nth-child(2){
  	animation-delay: 2.5s;
  	-ms-animation-delay: 2.5s;
  	-webkit-animation-delay: 2.5s;
  }
  .fadeIn span:nth-child(3){
  	animation-delay: 5s;
  	-ms-animation-delay: 5s;
  	-webkit-animation-delay: 5s;
  }
  .fadeIn span:nth-child(4){
  	animation-delay: 7.5s;
  	-ms-animation-delay: 7.5s;
  	-webkit-animation-delay: 7.5s;
  }
  .fadeIn span:nth-child(5){
  	animation-delay: 10s;
  	-ms-animation-delay: 10s;
  	-webkit-animation-delay: 10s;
  }

  /*FadeIn Animation*/
  @-moz-keyframes fadeEffect{
  	0% { opacity: 0; }
  	5% { opacity: 0; -moz-transform: translateY(0px); }
  	10% { opacity: 1; -moz-transform: translateY(0px); }
  	25% { opacity: 1; -moz-transform: translateY(0px); }
  	30% { opacity: 0; -moz-transform: translateY(0px); }
  	80% { opacity: 0; }
  	100% { opacity: 0; }
  }
  @-webkit-keyframes fadeEffect{
  	0% { opacity: 0; }
  	5% { opacity: 0; -webkit-transform: translateY(0px); }
  	10% { opacity: 1; -webkit-transform: translateY(0px); }
  	25% { opacity: 1; -webkit-transform: translateY(0px); }
  	30% { opacity: 0; -webkit-transform: translateY(0px); }
  	80% { opacity: 0; }
  	100% { opacity: 0; }
  }
  @-ms-keyframes fadeEffect{
  	0% { opacity: 0; }
  	5% { opacity: 0; -ms-transform: translateY(0px); }
  	10% { opacity: 1; -ms-transform: translateY(0px); }
  	25% { opacity: 1; -ms-transform: translateY(0px); }
  	30% { opacity: 0; -ms-transform: translateY(0px); }
  	80% { opacity: 0; }
  	100% { opacity: 0; }
  }

/* ==========================================================================
  END SERVICES FADE EFFECT
  ========================================================================== */






  /* ==========================================================================
    HORIZONTAL SCROLL MARQUEE
    ========================================================================== */



  /* ==========================================================================
    END HORIZONTAL SCROLL MARQUEE
    ========================================================================== */









  /* ==========================================================================
     Logo Slider section
     ========================================================================== */


  .site-section{
    /* --- width: 100vw;
    padding-bottom: 5%;
    box-sizing: border-box;--- */
    padding: 3em 0;
  }

  .section-header{
    width: 100%;
  }

  .header-content{
    /* --- width: 30% --- */
    margin: 0 auto;
    text-align: center;
  }

  .section-carrousel{
    display: flex;
    align-items: center;
    /* --- padding-left: 60px --- */
    overflow: hidden;
    overflow-x: scroll;
  }

  .block{
    width: 230px;
    /* --- background-color: white;
    height: 300px;
    padding: 15px;--- */
    margin: 0px 20px;
    flex-shrink: 0;
  }

  .portrait{
    height: 60%;
    width: 100%;
  }

  .portrait img{
    max-width: 100%;
  }


  /* ==========================================================================
     end Logo Slider section
     ========================================================================== */




/* ==========================================================================
  FOOTER
  ========================================================================== */
footer {
  font-size: 1.85em;
}

.back-to-the-top {
  text-align: center;
  width: 100vw;
  background-color: #FF90E7;
  padding: 0.5em 0;
}

.footer-main {
  text-align: center;
  background-color: #FF90E7;
  padding: 40px 0 40px 0;
  border-top: 1.5px black solid;
}

.footer-main .col-4 {
  max-width: 29%;
}

.footer-main p {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: black;
}

.footer-left p {
  text-align: center;
}

.span_underline {
  text-decoration: underline;
}

.fa-dribbble {
  padding: 0 5%;
}

.social-icons .fa-linkedin:hover, .social-icons .fa-behance:hover, .social-icons .fa-envelope:hover, .social-icons .fa-dribbble:hover, .fa-instagram:hover  {
  color: #FF0013;
}

.footer-main .email{
  float: left;
  border: none;
  padding: 0px;
  font-size: 12.5px;
  min-height: 30px;
  width: 80%;
  background: none;
  border: none;
  border-bottom: black 2px solid;
  letter-spacing: 0.07em;
  border-radius: 0px;
}

.footer-main .email::placeholder {
  color: black;
}

input[type="submit"] {
    color: black;
    width: 12%;
    float: left;
    padding: 8px;
    padding-right: 0px;
    min-height: 30px;
    font-size: 12.5px;
    background: none;
    border: none;
    border-bottom: black 2px solid;
    letter-spacing: 1px;
    text-align: right;
    border-radius: 0px;
}

.footer-main input:focus {
    outline:none;
}


/* --- Sub Footer --- */
.sub-footer {
  background-color: black;
  text-align: center;
  padding: .85em;
}

.sub-footer p {
  margin: 0;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
}
/* ==========================================================================
  END FOOTER
  ========================================================================== */












/* ==========================================================================
  MEDIA QUERIES
  ========================================================================== */


/* --- Tablet --- */
@media only screen and (max-width: 820px) {

  /* --- Menu --- */
  .h-left, .h-right {
    display: none;
  }

  .hamburger{
    display: inline;
  }

  .home-hero h1 {
    font-size: 0.1em;
  }


  /* --- Home --- */

  .gal-img {
    width: 49%;
    min-height: 0;
  }

  .home-gal-1, .home-gal-4, .home-gal-5  {
    width: 65%;
  }

  .home-gal-2, .home-gal-3, .home-gal-6 {
    width: 32%;
  }

  .home-gal-1, .home-gal-2, .home-gal-4, .home-gal-5 {
    height: 330px;
  }

  .home-gal-2 {
    margin-top: 11em;
  }

  .home-gal-3 {
    height: 195px;
  }

  .home-gal-6 {
    height: 215px;
    margin-top: 11em;
  }




  /* --- Portfolio --- */
  .port-section {
    width: 100%;
  }

  .port-flex {
    display: block;
  }

  .port-client3 {
    margin-left: 0;
    margin-top: 20%;
  }

  .port-client4 {
    margin-left: 320px;
}




  /* --- All Projects Pages --- */
  .proj-intro {
    padding: 70px 0 265px 0;
  }

  .project-blurb {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 25px;
    position: absolute;
  }

  .proj-intro p {
      width: 100%;
  }





  /* --- projects overview --- */
  .overview1 {
     margin-top: 7vh;
  }




  .proj-01 {
    height: 500px;
    width: 90%;
  }

  .proj-02 {
    height: 500px;
    margin-top: 75px;
  }

  .proj-mood {
    width: 100vw;
    height: 45vh;
  }


  .projdetailA, .projdetailB, .projdetailC {
    display: block;
  }

  .proj-item-full, .proj-item-half, .proj-item-half-n, .proj-item-half-w, .proj-item-half-c, .proj-item-title, .proj-item-caption, .proj-item-caption-c, .proj-item-title-c, .proj-item-title-n, .proj-item-caption-w, .proj-item-title-w, .proj-item-full-c, .proj-item-full-w {
    width: 100%;
  }

  .img-half3 {
      width: 85%;
      height: 30%;
  }







  /* --- Footer --- */

  /* ---.footer-main {
    padding: 40px 0 80px 0;
  }--- */

    /* ---.footer-center {
    padding: 10px 0 30px 0;
  }--- */

  .footer-main .container {
    max-width: 85%;
    margin: auto;
  }

  .footer-main .col-4 {
    width: 100%;
    max-width: 100%;
  }

  .footer-main p {
    text-align: center;
  }

  .footer-main .flex {
    display: block;
  }



  /* --- Tablet - About --- */

    /* ---.about {
    display: block;
    padding: 3em 0 1em 0;
    justify-content: left;
  }--- */

    /* ---.full-height {
    min-height: auto;
}--- */

  /* --- Tablet - About - Intro --- */
  .about-right {
    margin: 60px 5px 0 30px;
  }

  .about-bio {
    margin: 5px 5px 50px 5px;
  }

  .about img {
    width: 275px;
  }


  /* --- Tablet - About - SubMenu --- */
  .about-submenu-links.flex {
    flex-direction: row;
    padding: 2em 3em;
  }

  .about-submenu {
    min-height: auto;
  }


  /* --- Tablet - About - Process --- */
  .process-left {
    margin-right: auto;
    width: 100%;
  }

  .process-left, .funfacts-right {
    text-align: center;
  }

  .process-left img, .funfacts-right img {
    width: 400px;
  }

  .funfacts-right {
    margin-left: auto;
    width: 100%;
  }



  /* --- Tablet - About - Education --- */
  section.flex-nospace.set-height {
    flex-direction: column;
  }

  .about-item-title, .proj-item-caption-w {
    width: 100%;
  }

  .about-item-title h3 {
    margin-top: -275px;
    margin-left: -400px;
  }

  .about-item-title.col-6.flex.education-left {
    height: 500px;
  }

  .set-height {
    overflow: auto;
    max-height: 100%;
  }

  .va-education {
     background-position: bottom;
  }




  /* --- Tablet - About - Clients --- */
  .clients h4 {
    padding: 0 0 40px 0;
  }

  .clients {
    padding: 3em 0;
  }


  /* --- Tablet - About - FunFacts --- */
  .funfacts-left {
    padding: 1em 2em 3em;
    width: auto;
  }


  .half {
    width: 100%;
  }

  .flex {
    flex-direction: column;
  }


  /* --- Tablet - About - clients --- */

  .row, .portfolio-gallery .row, .portfolio-gallery2 .row {
    display: block;
    padding-bottom: 0;
  }


  .presslogos {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
  }



  /* --- wbdhtgp --- */

  .wbdhtgp-intro {
    max-width: 900px;
    padding: 0 50px 0 50px;
    margin: 100px 0 60px 0;
}


}








/* --- Mobile --- */

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

  header {
    position: absolute;
  }


  /* --- Fonts --- */
  h3 {
    font-size: 1em;
  }

  p {
    font-size: 0.9em;
    line-height: 16px;
  }

  h2 {
    font-size: 1.4em;
  }

  h1 {
    font-size: 2em;
    letter-spacing: -1px;
  }



  .border-btn, .black-btn {
    font-size: .75em;
  }



  /* --- All Projects Pages --- */
  .row {
    display: block;
  }

  .gal-img {
    width: 100%;
    min-height: 270px;
  }

  .home-gal-2, .home-gal-6 {
    margin-top: 0;
}

  .port-client1 {
    margin-top: 100px;
  }

  .port-client2 {
    margin-top: -470px;
  }

  .port-client4 {
    margin-top: -150px;
    margin-left: 10px;
  }

  .proj-intro {
    padding-bottom: 325px;
    grid-gap: 0px;
  }

  .project-blurb {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 50px;
  }






  /* --- project overview --- */

  .proj-overview .col, .proj-overview div, .project {
    width: 100%;
    margin: -3px 0;
    padding: 0;
  }

  .overview1, .overview2, .overview3, .overview4 {
    height: 40vh;
  }

  .proj-overview {
    text-align: center;
    padding-bottom: 0;
  }

  .projectgrid .six.col{
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .proj-overview .overview1 {
    margin-top: 0;
  }

  .projdetailA .proj-item-full, .projdetailB .proj-item-full, .projdetailC .proj-item-full-c, .proj-item-full-w {
    height: 70vh;
    background-position: center;
  }

  .proj-item-caption p, .proj-item-caption-c p, .proj-item-caption-w p {
    font-size: 9px;
    line-height: 15px;
}



  .proj-01 {
    height: 250px;
    max-width: 165px;
    width: 90%;
  }

  .proj-02 {
    height: 275px;
    max-width: 250px;
    margin-top: 50px;
  }

  .proj-mood {
    height: 30vh;
}

  .grid-a {
    display: block;
  }

  .proj-item-title h3, .proj-item-title-w h3, .proj-item-title-c h3, .proj-item-title-n h3 {
    margin-top: -190px;
    margin-left: -90px;
  }

  .img-half {
    width: 70%;
  }

  .clients {
    padding: 30px 5px;
  }

  .portfolio-gallery h3 {
    padding-bottom: 0;
  }

  .services-list {
    padding: 40px;
  }

  .img-half2 {
    width: 75%;
  }

  .video-overview .video {
    padding: 0px;
}



 /* --- videos --- */

 .video-overview {
   grid-template-columns: 1fr ;
 }

  .video-overview .video {
}



/* --- Mobile - About --- */
 .about {
  padding-top: 7em;
  margin-left: -1.5em;
}

.aboutme {
  margin-left: 0;
}

.about .border-btn {
    margin: 0.3em;
}

.aboutme .border-btn {
    margin: 0 0.5em;
}


.about-bio p{
  font-size: 1em;
  line-height: 21px;
}

/* --- .about p {
  margin-top: -1.3em;
} --- */

.projintro {
  padding-top: 7em;

.about-right  {
  margin: 1em 0 0 0.5em;
}

.about-fade h1 {
  font-size: 1em;
  letter-spacing: -1px;
}

.lmeio {
  font-size: 0.1em;
}

.about-blurb {
    margin: 20px 0px;
}


/* --- Mobile - About - SubMenu --- */
.about-submenu {
  display: none;
}

.process-left img, .funfacts-right img {
    width: 300px;
}




/* --- Mobile - About - Capabilities --- */
.underline {
    border-bottom: none;
    text-decoration: underline;
}



/* --- Mobile - About - Process --- */
.process-left {
  margin-top: -3em;
}


/* --- Mobile - About - Education --- */
.about-item-title.col-6.flex.education-left {
    height: 300px;
}

.about-item-title h3 {
    margin-top: -175px;
    margin-left: -150px;
}



/* --- Mobile - About - Clients --- */
.clients h4 {
    padding: 30px 0 40px 0;
}


/* --- Mobile - About - Fun Facts --- */
.funfacts-left {
  margin-top: -5em;
}


.footer-main p {
  font-size: 5px;
  line-height: 21px;
}




}











/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
