@charset "UTF-8";
/* CSS Document */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
html, body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
}
body, div, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}
img {
  display: block;
}
body {
  width: 100%;
  background: rgb(255, 250, 240);
  background: -moz-linear-gradient(345deg, rgba(235, 226, 208, 1) 50%, rgba(255, 250, 240, 1) 100%);
  background: -webkit-linear-gradient(345deg, rgba(235, 226, 208, 1) 50%, rgba(255, 250, 240, 1) 100%);
  background: linear-gradient(345deg, rgba(235, 226, 208, 1) 50%, rgba(255, 250, 240, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  background-attachment: fixed;
}
#dashboard {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(255, 253, 247);
  background: -moz-linear-gradient(165deg, rgba(255, 253, 247, 1) 0%, rgba(255, 250, 240, 1) 100%);
  background: -webkit-linear-gradient(165deg, rgba(255, 253, 247, 1) 0%, rgba(255, 250, 240, 1) 100%);
  background: linear-gradient(165deg, rgba(255, 253, 247, 1) 0%, rgba(255, 250, 240, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  -moz-box-shadow: 0 0 5px rgba(68, 68, 68, 1);
  -webkit-box-shadow: 0 0 5px rgba(68, 68, 68, 1);
  box-shadow: 0 0 5px rgba(68, 68, 68, 1);
  height: 100px;
  flex-shrink: 0;
  z-index: 8;
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #000;
  max-width: 1364px;
  width: 84%;
  margin: 0 auto;
  height: 100px;
  padding: 0;
}
#headercontent {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  margin: 0;
}
#logo {
  display: block;
  width: 180px;
}
#tagline {
  margin: 0 0 -3px 30px;
  color: #4e8ea6;
}
#tagline h1, #tagline h2 {
  padding: 0;
  margin: 0;
  font: normal 300 18px/1.1em greycliff-cf, sans-serif;
}
#tagline strong {
  font: normal 800 26px/1.0em futura-pt, sans-serif;
  color: #004761;
  letter-spacing: 0.1px;
  background: -webkit-linear-gradient(350deg, #4E8EA6, #004761);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#tagline strong span {
  letter-spacing: 2px;
}
.menu {
  flex-grow: 1.2;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 120px;
  list-style-type: none;
  text-align: right;
  font: normal 300 16px/2.3em greycliff-cf, sans-serif;
  margin: 50px 0 0 0;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
}
.menu > li a, #footernav p a {
  text-decoration: none;
  color: #4E8EA6;
}
.menu > li a:hover, #footernav p a:hover {
  color: #004761;
}
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
  color: #4E8EA6;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}
.menu-button, .menu-button::before, .menu-button::after {
  display: block;
  background-color: #4E8EA6;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
.menu-button::before {
  content: "";
  margin-top: -8px;
}
.menu-button::after {
  content: "";
  margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
footer {
  flex-grow: 1;
  background: rgb(255, 253, 247);
  background: -moz-linear-gradient(165deg, rgba(255, 253, 247, 1) 0%, rgba(255, 250, 240, 1) 100%);
  background: -webkit-linear-gradient(165deg, rgba(255, 253, 247, 1) 0%, rgba(255, 250, 240, 1) 100%);
  background: linear-gradient(165deg, rgba(255, 253, 247, 1) 0%, rgba(255, 250, 240, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  padding: 40px 0;
  text-align: center;
  color: #8E9DA4;
  font: normal 300 15px/1.6em greycliff-cf, sans-serif;
  -moz-box-shadow: 0 0 5px rgba(68, 68, 68, 1);
  -webkit-box-shadow: 0 0 5px rgba(68, 68, 68, 1);
  box-shadow: 0 0 5px rgba(68, 68, 68, 1);
}
#footernav {
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 446px;
  width: 80%;
  margin: 0 auto 80px auto;
  color: #4E8EA6;
}
/*PORTFOLIO STYLES */
#mainbody {
  margin-top: 150px;
}
.earlybackground {
  width: 100%;
  height: 400px;
  position: absolute;
  background: transparent url("../images/section_bg.jpg") no-repeat top center;
  background-size: 100% 100%;
  z-index: -4;
  margin: 0;
  padding: 0;
  top: 0;
}
.collection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #000;
  max-width: 960px;
  margin: 0 auto;
  width: 80%;
}
.sample {
  flex-basis: 33%;
  position: relative;
}
.sample img {
  width: 100%;
}
.unselected {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  color: #A4D8E5;
  text-align: center;
  text-transform: uppercase;
  font: normal 300 14px/1.3em greycliff-cf, sans-serif;
}
.unselected p {
  position: absolute;
  bottom: 12px;
  width: 100%;
}
#marketing .unselected {
  background-color: rgba(1, 83, 112, 0.6);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.35) 51%, rgba(0, 55, 74, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.35) 51%, rgba(0, 55, 74, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 51%, rgba(0, 55, 74, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#015370", endColorstr="#00374a", GradientType=1);
}
#editorial .unselected {
  background-color: rgba(28, 75, 140, 0.6);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 51%, rgba(12, 45, 840, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 51%, rgba(12, 45, 84, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 51%, rgba(12, 45, 84, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#015370", endColorstr="#00374a", GradientType=1);
}
#identity .unselected {
  background-color: rgba(49, 56, 140, 0.6);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.3) 51%, rgba(49, 56, 140, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.3) 51%, rgba(49, 56, 140, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 51%, rgba(30, 35, 87, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#015370", endColorstr="#00374a", GradientType=1);
}
#marketing .unselected:hover, #editorial .unselected:hover, #identity .unselected:hover {
  background-color: rgba(0, 0, 0, 0.1);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgba(0, 55, 74, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgba(0, 55, 74, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgba(0, 55, 74, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#00374a", GradientType=1);
  color: #fff;
}
/* SLICK STYLES */
#maincarousel {
  max-width: 960px;
  width: 100%;
  margin: 5px auto 80px auto;
  text-align: center;
  background-color: #fff;
  border-radius: 18px;
  -moz-box-shadow: 0 0 5px rgba(68, 68, 68, 0.6);
  -webkit-box-shadow: 0 0 5px rgba(68, 68, 68, 0.6);
  box-shadow: 0 0 5px rgba(68, 68, 68, 0.6);
  padding: 40px 0;
}
#minilist {
  max-width: 820px;
  height: 150px;
  margin: 0 auto;
  background: transparent url('../images/Carousel_BG.png') no-repeat center -15px;
  background-size: 100% 150%;
}
.slick-arrow {
  z-index: 7;
}
.carouselfocus {
  text-align: left;
}
#mainbody .carouselfocus h4 {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4e8ea6;
  width: 92%;
  margin: 10px auto 5px 9%;
  font: normal 300 15px/1.2em greycliff-cf, sans-serif;
}
#mainbody .carouselfocus h3 {
  width: 92%;
  margin: 0 auto 10px 9%;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font: normal 800 34px/1.2em futura-pt, sans-serif;
  background: -webkit-linear-gradient(290deg, #336F85, #004761);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.minicarousel img, .carouselfocus img {
  margin: 0 auto;
}
.minicarousel img {
  max-width: 70px;
  width: 60%;
}
.carouselfocus img {
  width: 90%;
  margin-bottom: 30px;
}
#mainbody .carouselfocus p {
  color: #4b8096;
  width: 90%;
  text-align: left;
  margin: 20px auto 0 auto;
  font: normal 16px/1.5em greycliff-cf, sans-serif;
}
#mainbody .carouselfocus p strong {
  color: #00678b;
}
.minicarousel img {
  opacity: 0.4;
}
.minicarousel img:hover {
  opacity: 1;
}
.slick-center img {
  opacity: 1;
}
#maincarousel .slick-prev, #maincarousel .slick-next {
  top: auto;
  bottom: -50px;
}
#maincarousel .slick-prev::before, #maincarousel .slick-next::before {
  color: #7a9a3d;
}
/* ABOUT ME STYLES */
#lifestyle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 700px;
  width: 80%;
  margin: 0 auto;
}
#lifestyle img {
  max-width: 30%;
  width: auto;
  max-height: 200px;
  flex-shrink: 1;
}
#lifestyle img.middleimg {
  align-self: center;
  transform: rotate(3deg);
}
/* HOME Universal Styles */
#homebody {
  position: relative;
}
#homebody section, #aboutmebody section {
  overflow: hidden;
}
#homebody section:first-of-type, #homebody section:last-of-type, #aboutmebody section:first-of-type, #aboutmebody section:last-of-type {
  width: 100%;
}
#homebody section:first-of-type, #aboutmebody section:first-of-type {
  background: transparent url("../images/section_bg.jpg") no-repeat top center;
  background-size: 100% 100%;
  margin-top: 100px;
}
#homebody section:last-of-type {
  background: transparent url("../images/section_bg02.jpg") no-repeat top center;
  background-size: 100% 100%;
}
.grid {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 16px;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.grid img {
  width: 100%;
  position: relative;
}
#homebody h3, #aboutmebody h3 {
  color: #a1c165;
  font: 700 40px/1.32em kepler-std-extended, serif;
}
#homebody section:first-of-type h3 em {
  color: #ebe2d0;
}
#homebody h3 span {
  color: #4e8ea6;
  font: 800 56px/1.12em futura-pt, serif;
  background: -webkit-linear-gradient(45deg, #4E8EA6, #004761);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#homebody p, #aboutmebody p {
  color: #FFFAF0;
  font: 200 21px/1.615em greycliff-cf, serif;
  grid-row: 4/5;
  grid-column: 2/6;
  align-self: start;
}
/* HOME Intro Styles */
#introgrid {
  grid-template-rows: 80px auto 30px auto 80px;
}
#introgrid h3 {
  grid-row: 2/3;
  margin: 0;
  align-self: end;
  grid-column: 2/6;
  max-width: 320px;
}
#self {
  width: 100%;
  max-width: 700px;
  position: relative;
  grid-column: 7/13;
  grid-row: 1/6;
  align-self: end;
  margin: 100px auto 0 auto;
}
#self img {
  width: inherit;
  z-index: 3;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
#self::before {
  content: "";
  position: absolute;
  width: 100%;
  top: -50px;
  left: 40px;
  z-index: 2;
  height: 100%;
  overflow: visible;
  background: transparent url("../images/horns.png") no-repeat top left;
  background-size: 70%;
  transform: rotate(346deg);
  animation: fadeIn 15s infinite alternate;
}
/* HOME Portfolio Styles */
section#introportfolio {
  background: rgb(255, 250, 240);
  background: -moz-linear-gradient(345deg, rgba(235, 226, 208, 1) 50%, rgba(255, 250, 240, 1) 100%);
  background: -webkit-linear-gradient(345deg, rgba(235, 226, 208, 1) 50%, rgba(255, 250, 240, 1) 100%);
  background: linear-gradient(345deg, rgba(235, 226, 208, 1) 50%, rgba(255, 250, 240, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}
.portfoliogrid {
  grid-template-rows: auto 30px auto;
  align-items: start;
}
.introsamples {
  grid-column: 2/7;
  grid-row: 1/4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 240px;
  flex-wrap: nowrap;
  padding-top: 86px;
}
.logosamples {
  grid-column: 2/7;
  grid-row: 1/4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 240px;
  padding-top: 86px;
}
.leadershipsample {
  grid-column: 2/7;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 240px;
  padding-top: 86px;
}
.grid img.report01img {
  width: 27%;
  margin-top: 15px;
  flex-shrink: 1;
  --animate-duration: 1.3s;
}
.grid img.report02img {
  width: 23%;
  margin-top: -10px;
  flex-shrink: 1;
  --animate-duration: 1.0s;
}
.grid img.report03img {
  width: 23%;
  margin-top: 20px;
  order: 4;
  flex-shrink: 1;
  --animate-duration: 1.5s;
}
.grid img.report04img {
  width: 27%;
  order: 3;
  flex-shrink: 1;
  --animate-duration: 1.2s;
}
.grid img.page01img {
  flex-shrink: 1;
  width: 30%;
  --animate-duration: 1.2s;
}
.grid img.page02img {
  flex-shrink: 1;
  order: 3;
  width: 30%;
  --animate-duration: 1.3s;
}
.grid img.page03img {
  flex-shrink: 1;
  order: 2;
  width: 40%;
  --animate-duration: 1.0s;
}
.grid img.logo01img {
  max-width: 280px;
  flex-shrink: 1;
  width: 60%;
  margin-right: 4%;
  --animate-duration: 1.2s;
}
.grid img.logo02img {
  max-width: 280px;
  order: 4;
  width: 50%;
  flex-shrink: 1;
  --animate-duration: 0.8s;
}
.grid img.logo03img {
  max-width: 220px;
  margin-right: 10%;
  order: 3;
  width: 40%;
  flex-shrink: 1;
  --animate-duration: 0.8s;
  --animate-delay: 0.1s;
}
.grid img.logo04img {
  max-width: 180px;
  order: 2;
  flex-shrink: 1;
  width: 30%;
  --animate-duration: 0.8s;
}
.leadership01img {
  border-bottom: 4px solid #004761;
}
#homebody .autoplay .portfoliogrid h3 {
  grid-column: 8/12;
  grid-row: 1/2;
  align-self: end;
  letter-spacing: 0.5px;
  color: #7a9a3d;
  overflow: hidden;
  padding: 70px 0 0 0;
}
#homebody .autoplay .portfoliogrid p {
  color: #004761;
  grid-row: 3/4;
  grid-column: 8/12;
  padding-bottom: 70px;
}
#loopingexamples {
  font-weight: 500;
  color: #7A9A3d;
}
@keyframes animate {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/* SUMMARY Styles */
#summarygrid {
  justify-content: center;
}
#homebody section:last-of-type p {
  grid-column: 2/9;
  padding: 50px 0;
  grid-row: 1/2;
}
#homebody section:last-of-type a, #aboutmebody section:first-of-type a {
  color: #a1c164;
  font-weight: 500;
  text-decoration: none;
}
#homebody section:last-of-type a:hover, #aboutmebody section:first-of-type a:hover {
  color: #6DB3CD;
}
.contacticon, .linkedin, .contacticon:hover, .linkedin:hover {
  max-height: 60px;
  max-width: 60px;
  width: 100%;
}
.linkedindark, .linkedindark:hover {
  max-height: 80px;
  max-width: 80px;
  width: 100%;
}
.contacticon {
  grid-column: 10/11;
  background: transparent url("https://www.evlaue.com/images/Email_hover.png") no-repeat center center;
  background-size: 100%;
}
.linkedin {
  grid-column: 11/12;
  background: transparent url("https://www.evlaue.com/images/LinkedIn_hover.png") no-repeat center center;
  background-size: 100%;
}
.linkedindark {
  grid-column: 11/12;
  background: transparent url("https://www.evlaue.com/images/LinkedIn_darkhover.png") no-repeat center center;
  background-size: 100%;
}
.linkedindark img:hover, .linkedin img:hover, .contacticon img:hover {
  opacity: 0;
}
/*ABOUT Styles*/
#aboutgrid, #contactgrid {
  grid-template-rows: 80px auto 30px auto 50px;
}
#aboutmebody section #aboutgrid h3, #aboutmebody #aboutgrid .abouttext, #contactgrid h3 {
  grid-column: 2/12;
}
#aboutmebody section #aboutgrid h3, #contactgrid h3 {
  grid-row: 2/3;
}
#aboutmebody #aboutgrid .abouttext {
  grid-row: 4/5;
}
#contactgrid p {
  grid-row: 4/5;
  grid-column: 2/12;
  padding-bottom: 70px;
}
#aboutmebody #aboutgrid .abouttext p {
  margin-bottom: 30px;
}
.references {
  grid-column: 2/10;
  padding: 70px 0 40px;
}
#aboutmebody .references p {
  color: #004761;
  padding-bottom: 30px;
}
#aboutmebody .references a {
  text-decoration: none;
  color: #789A33;
  font-weight: 600;
}
#aboutmebody .references a:hover {
  color: #4C612C;
}
/* MEDIA QUERIES */
@media only screen and (max-width: 1200px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 100px;
    right: 0;
    flex-direction: column;
    width: 8%;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 6;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border-bottom: 1px solid rgba(200, 200, 200, 0.75);
    height: 1.3em;
    padding: 1.2em 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0 0 0;
    width: 280%;
    color: white;
    line-height: 0.3em;
  }
  .menu > li a {
    text-decoration: none;
    color: #c4e483;
  }
  .menu > li a:hover {
    color: #ffffff;
  }
  .menu > li#portfolio {
    background-color: rgba(0, 83, 113, 1);
  }
  .menu > li#about {
    background-color: rgba(22, 59, 111, 1);
  }
  .menu > li#resume {
    background-color: rgba(40, 45, 111, 1);
  }
  .menu > li#contact {
    background-color: rgba(62, 45, 113, 1);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid rgba(200, 200, 200, 0.75);
  }
  .menu-button {
    top: 68px;
  }
  #self {
    grid-column: 6/13;
    width: 94%;
  }
  #self::before {
    width: 94%;
  }
  #homebody .autoplay .portfoliogrid h3 {
    font-size: 30px;
  }
  #homebody h3 span {
    font: 800 40px/1.12em futura-pt, serif;
  }
  #maincarousel {
      max-width: 780px;
  }
}
@media only screen and (max-width: 1050px) {
  #homebody section:first-of-type .grid {
    grid-template-rows: 80px auto 60px auto 80px;
  }
  #homebody section:first-of-type h3, #aboutmebody section:first-of-type h3, #homebody section:last-of-type h3 {
    font: 700 40px/1.32em kepler-std-extended, serif;
    text-align: center;
    grid-column: 2/12;
    max-width: 100%;
  }
  #homebody section:first-of-type p, #aboutmebody section:first-of-type p {
    grid-column: 2/7;
    font: 200 20px/1.615em greycliff-cf, sans-serif;
  }
  #homebody section:last-of-type p {
    grid-column: 2/12;
    font: 200 20px/1.615em greycliff-cf, sans-serif;
    padding-bottom: 30px;
  }
  #aboutmebody section:first-of-type #contactgrid p {
    grid-column: 2/12;
    font: 200 20px/1.615em greycliff-cf, sans-serif;
  }
  .contacticon, .contacticon:hover {
    grid-column: 5/6;
    margin: 0 auto 50px;
  }
  .linkedin, .linkedin:hover {
    grid-column: 8/9;
    margin: 0 auto 50px;
  }
  #self {
    width: 100%;
    grid-column: 7/13;
    grid-row: 3/6;
    margin: 0 auto;
  }
  #self::before {
    top: -40px;
    left: 40px;
    background-size: 70%;
    transform: rotate(348deg);
  }
  .portfoliogrid {
    grid-template-rows: auto 30px 270px auto;
    align-items: center;
  }
  #homebody .autoplay .portfoliogrid h3 {
    text-align: center;
    grid-column: 2/12;
    grid-row: 1/2;
    align-self: end;
    letter-spacing: 0.5px;
    color: #7a9a3d;
    overflow: hidden;
    padding: 70px 0 0 0;
  }
  .introsamples, .logosamples, .leadershipsample {
    grid-row: 3/4;
    grid-column: 3/11;
    padding-bottom: 30px;
    justify-content: center;
    padding-top: 0;
  }
  #homebody .autoplay .portfoliogrid p {
    color: #004761;
    grid-row: 4/5;
    grid-column: 2/12;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 780px) {
  .top-nav {
    height: 90px;
  }
  #logo {
    display: block;
    width: 160px;
  }
  #headercontent {
    margin-top: 5px;
  }
  #tagline {
    margin: 0 0 -5px 30px;
    letter-spacing: 0.6px;
  }
  #tagline h1 {
    padding: 0;
    margin: 0;
    font-size: 15px;
  }
  #tagline strong {
    font-size: 22px;
    line-height: 1.2em;
  }
  .menu-button {
    top: 62px;
  }
  .menu {
    margin-top: 100px;
  }
  #mainbody {
    margin-top: 140px;
  }
  #maincarousel {
    margin-top: 25px;
    border-radius: 0;
  }
  #mainbody .carouselfocus h4 {
    text-align: center;
    margin: 0 auto 12px auto;
  }
  #mainbody .carouselfocus h3 {
    text-align: center;
    margin: 0 auto 22px auto;
    font-size: 30px;
    line-height: 1.2em;
  }
  #mainbody .carouselfocus p {
    font: normal 15px/1.5em greycliff-cf, sans-serif;
  }
  #minilist {
    height: 120px;
  }
  #homebody section:first-of-type, #aboutmebody section:first-of-type {
    margin-top: 90px;
  }
  #homebody section:first-of-type .grid {
    grid-template-rows: 80px auto 30px auto 50px auto;
  }
  #homebody section:first-of-type h3, #homebody section:last-of-type h3, #aboutmebody section:first-of-type h3 {
    grid-column: 3/11;
    font-size: 30px;
  }
  #homebody section:first-of-type p, #homebody .autoplay .portfoliogrid p, #homebody section:last-of-type p, #aboutmebody section p, #aboutmebody #aboutgrid .abouttext, #aboutmebody #aboutgrid .abouttext p, #aboutmebody section:first-of-type #contactgrid p {
    grid-column: 3/11;
    font: 200 18px/1.615em greycliff-cf, sans-serif;
    /*text-align: center;*/
  }
  #self {
    grid-row: 6/7;
    grid-column: 3/11;
    margin: 0 auto;
  }
  #self::before {
    top: -40px;
    left: 50px;
    background: transparent url("../images/horns.png") no-repeat top left;
    background-size: 70%;
    transform: rotate(350deg);
  }
  .portfoliogrid {
    grid-template-rows: auto 30px 200px auto;
  }
  .portfoliogrid p {
    margin-top: 10px;
  }
  .grid img.logo02img {
    max-width: 280px;
    order: 4;
    width: 45%;
    flex-shrink: 1;
    --animate-duration: 0.8s;
  }
	  .introsamples, .logosamples, .leadershipsample {
    grid-row: 3/4;
    grid-column: 2/12;
    padding-bottom: 30px;
    justify-content: center;
    padding-top: 0;
		  width: 90%;
		  margin: 0 auto;
		  height: auto;
  }
  #homebody #aboutgrid .abouttext {
    grid-column: 3/11;
  }
  #homebody #aboutgrid .abouttext p:first-of-type {
    width: 80%;
    margin: 0 auto 30px auto;
  }
  .contacticon, .contacticon:hover {
    grid-column: 5/7;
    margin: 0 auto 50px;
    width: 80%;
  }
  .linkedin, .linkedin:hover {
    grid-column: 7/9;
    margin: 0 auto 50px;
    width: 80%;
  }
  .references {
    grid-column: 3/11;
    padding: 70px 0 0 0;
  }
  .linkedindark, .linkedindark:hover {
    grid-column: 6/8;
    margin: 0 auto 70px auto;
  }
}
@media only screen and (max-width: 640px) {
  header {
    height: 80px;
  }
  .top-nav {
    height: 80px;
    width: 86%;
  }
  #headercontent {
    margin-top: 0;
  }
  #logo {
    width: 120px;
  }
  #tagline {
    margin-right: 2%;
    margin-left: 5%;
    width: 150px;
  }
  #tagline h1 {
    margin: 0 auto;
  }
  #tagline h1 strong {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .menu-button {
    top: 50px;
  }
  .menu {
    margin-top: 80px;
  }
  .menu-button, .menu-button:before, .menu-button:after {
    height: 3px;
    width: 20px;
  }
  .menu-button::before {
    content: "";
    margin-top: -7px;
  }
  .menu-button::after {
    content: "";
    margin-top: 7px;
  }
  .menu > li {
    width: 400%;
  }
  #mainbody {
    margin-top: 120px;
  }
  #footernav {
    font-size: 14px;
  }
  #lifestyle {
    flex-direction: column;
    align-items: center;
  }
  #lifestyle img {
    max-width: 90%;
    max-height: 240px;
  }
  #lifestyle img.middleimg {
    max-width: 75%;
    max-height: 180px;
    margin-bottom: 20px;
  }
  #Qcat {
    transform: rotate(96deg);
  }
  #maincarousel {
    margin-top: 5px;
  }
  #homebody section:first-of-type, #aboutmebody section:first-of-type {
    margin-top: 80px;
  }
  #self::before {
    top: -30px;
    left: 40px;
    background: transparent url("../images/horns.png") no-repeat top left;
    background-size: 70%;
    transform: rotate(356deg);
  }
}
@media only screen and (max-width: 480px) {
  #footernav {
    flex-direction: column;
    height: 100px;
    margin-bottom: 50px;
    font-size: 13px;
  }
  #minilist img {
    max-width: 60px;
  }
  .menu-button {
    top: 51px
  }
  .portfoliogrid {
    grid-template-rows: auto 30px 140px auto;
  }
}
@media only screen and (max-width: 360px) {
  #logo {
    width: 110px;
    margin-top: 4px;
  }
  #tagline {
    margin-left: 5%;
    width: 140px;
  }
  #tagline h1 {
    font-size: 12px;
    font-weight: 400;
  }
  #tagline h1 strong {
    font-size: 15px;
    line-height: 1.2em;
  }
  .menu-button {
    top: 52px
  }
  #homebody section:first-of-type h3 {
      grid-column: 2/12;
  }
}