@charset "UTF-8";

html,
body * {
    box-sizing: border-box;
    text-decoration: none;
    max-width: 100%; 
    margin: 0 auto; 

}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
}
.primary-main {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
section {
  position: relative;
}

/* FONTS */
@font-face {
  font-family: 'Lato Thin';
  src: url('Lato-Hairline.woff2') format('woff2'),
      url('Lato-Hairline.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato Black';
  src: url('Lato-Black.woff2') format('woff2'),
      url('Lato-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('Lato-Regular.woff2') format('woff2'),
      url('Lato-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rocksalt';
  src: url('RockSalt-Regular.woff2') format('woff2'),
      url('RockSalt-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
a {
  color: white;
}
/* HEADER */

header{
    height: .1rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-color:#89C0BA;
}
.header-container {
    /* width: 120rem; */
    margin-left: 60%;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: right;
    z-index: 200;
}
#phead,
#ahead,
#chead {
    color: white;
    margin-right: 10rem;
    font-size: 1.7rem;
    font-family: 'Lato';
    position: relative;
}
#phead:hover,
#ahead:hover,
#chead:hover {
  font-family: 'Lato Black';
}
#phead::before,
#ahead::before,
#chead::before {
  content: "";
  position: absolute;
  left: 25%;
  bottom: -15%;
  width: 100px;
  height: 13px;
  transform: skew(-12deg) translateX(-50%);
  background: rgba(158,129,158,0.5);
  box-shadow: rgba(77, 77, 77, .2) 0 -25px 18px -14px inset,rgba(77, 77, 77, .15) 0 1px 2px,rgba(77, 77, 77, .15) 0 2px 4px,rgba(77, 77, 77, .15) 0 4px 8px,rgba(77, 77, 77, .15) 0 8px 16px,rgba(77, 77, 77, .15) 0 16px 32px;
  z-index: -1;
  opacity: 0; 
  transition: opacity 0.3s ease;
}

#phead:hover::before,
#ahead:hover::before,
#chead:hover::before {
  opacity: 1;
  font-family: 'Lato';
}

#tagline {
  color: white;
  z-index: 800;
  position: absolute;
  font-size: 2.15rem;
  font-family: 'Lato Thin';
  margin-top: 23%;
  margin-left: 23%;
}
.bannerImage img {
    width: 100%;
}
#intro {
  width: 38%;
  z-index: 800;
  top: 40%;
  left: 49%;
  position: absolute;
  color: white;
  font-family: 'Lato';
  font-size: 1.5rem;
}
button {
  z-index: 800;
  position: absolute;
  background-color: white;
  border-radius: 100px;
  box-shadow: rgba(77, 77, 77, .2) 0 -25px 18px -14px inset,rgba(77, 77, 77, .15) 0 1px 2px,rgba(77, 77, 77, .15) 0 2px 4px,rgba(77, 77, 77, .15) 0 4px 8px,rgba(77, 77, 77, .15) 0 8px 16px,rgba(77, 77, 77, .15) 0 16px 32px;
  color: #8A6E88;
  margin-top: 1rem;
  cursor: pointer;
  display: inline-block;
  font-family: 'Lato Black';
  padding: 7px 20px;
  text-align: center;
  transition: all 250ms;
  border: 0;
  font-size: 1.2rem;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  }
#linked {
  background: url(../images/linkedin.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 2.6rem;
  height: 2.6rem;
  margin-top: 27%;
  margin-left: 52.5%;
}
#emailBtn {
  background: url(../images/email.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 2.6rem;
  height: 2.6rem;
  margin-top: 27%;
  margin-left: 49%;
}
#resume {
  margin-top: 27%;
  margin-left: 58%;
  width: 7.5rem;
  background-color: white;
  color: #4E7F7F;
}

button:hover {
transform: scale(1.05) rotate(-1deg);
}
/* PROJECTS */
#projectsContainer {
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 2rem;
}
#projectsContainer h1 {
    width: 100%;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #4E7F7F;
    font-family: 'Lato Black';
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

/* CARDS */

:root {
    --surface-color: #fff;
    --curve: 40;
  } 
.cards {
  width: 100%;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 0;
  list-style-type: none;
}

.card {
  position: relative;
  display: block;
  /* height: 100%;   */
  width: 100%;
  max-width: 400px;
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(118, 166, 162, 0.12), 0 1px 5px rgba(118, 166, 162, 0.24);
}

.card:hover {
  box-shadow: 0 14px 28px rgba(146, 212, 212, 0.25), 0 10px 10px rgba(146, 212, 212, 0.22);
}
.card__image {      
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--surface-color);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
  
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 1em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;    
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}
.card__arc {
  width: 80px;
  height: 80px;   
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
}     

.card:hover .card__header {
  transform: translateY(0);
}

.card__title {
  font-size: 1.5rem;
  margin: 0 0 0rem;
  color: #6277A0;
  font-family: 'Lato Black';
  margin-left: 1rem;
}

.cards li:nth-child(7) .card__title {
  font-size: 1.3rem;
}

.card__description {
  padding: 0 2rem 2rem;
  margin: 0;
  /* color: #d68f6b; */
  color: #8A6E88;
  font-family: 'Lato';
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; */
  overflow: hidden;
  font-size: 1.1rem;
}   

  /* CONTACT FORM */

#contactContainer {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 5rem;
  background-color: #4E7F7F;
}
#contactContainer h1 {
  width: 100%;
  margin-top: 3rem;
  font-size: 3rem;
  color: white;
  font-family: 'Lato Black';
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
#contactForm {
width:60%;
display: flex;
margin: 0 auto;
margin-top: 5rem;
align-items: top;
flex-direction: row;
justify-content: space-around;
}
.talkImg {
    width: 35%;
    margin-right: 1rem;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.talkImg img {
    width: 100%;
    margin-bottom: 4rem;
}
.the-form {
    color: white;
    font-size: 1.3rem;
    font-family: 'Lato';
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: block;
}
.the-form p {
    margin-bottom: .3rem;
}
#name,
#email {
    height: 2rem;
    width: 25rem;
    display: flex;
    align-items: center;
    margin-top: .5rem;
}
#message {
    height: 10rem;
    width: 25rem;
    display: flex;
    align-items: center;
    resize: none;
    margin-top: .5rem;
}
input {
    margin-bottom: 1rem;
}
::placeholder {
    color: #8A6E88;
    font-family: 'Lato';
    font-style: italic;
}
#submit {
    background-color: white;
    border-radius: 100px;
    box-shadow: rgba(77, 77, 77, .2) 0 -25px 18px -14px inset,rgba(77, 77, 77, .15) 0 1px 2px,rgba(77, 77, 77, .15) 0 2px 4px,rgba(77, 77, 77, .15) 0 4px 8px,rgba(77, 77, 77, .15) 0 8px 16px,rgba(77, 77, 77, .15) 0 16px 32px;
    color: #8A6E88;
    margin-top: 1rem;
    width: 6rem;
    cursor: pointer;
    display: inline-block;
    font-family: 'Lato Black';
    padding: 7px 20px;
    text-align: center;
    transition: all 250ms;
    border: 0;
    font-size: 1.2rem;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    }

#send:hover {
    transform: scale(1.05) rotate(-1deg);
    }



  /* ABOUT */
#aboutContainer h1 {
    width: 100%;
    margin-top: 5rem;
    margin-bottom: -2.5rem;
    font-size: 3rem;
    color: #4E7F7F;
    font-family: 'Lato Black';
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
#aboutContainer {
      display: flex;
      flex: wrap;
      flex-direction: column;
      justify-content: space-evenly;
      margin: 0 auto;
      margin-top: 1.5rem;
      width: 90%;
    }
#aboutcontent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 4rem;
}
.left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 3rem;
  margin-bottom: 3rem;
  line-height: 1.1rem;
}
.text1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6277A0;
  width: 80%;
  margin: 0 auto;
  font-family: 'Lato';
  font-size: 1rem;

}
.text2 {
  display: flex;
  color: #8A6E88;
  font-family: 'Lato Black';
  width: 80%;
  margin: 0 auto;
  font-size: 1.7rem;
  text-align: center;
  margin-top: 1rem;
  justify-content: center;

}
.right {
  width: 40%;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.profileImg {
  height: 100%;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8rem;
}
.profileImg img {
  width: 100%;
  margin-right: 10rem;
}

.kineticText{
  width: 100%;
  color: white;
  font-family: 'Lato Thin';
  text-align: center;
  /* margin-top: 4rem;
  margin-left: 6.1rem; */
  /* position: absolute;
  margin-top: 10%;
  margin-left: 1%; */
}
.kineticText img {
  width: 60%;
  margin-right: 26%;
  margin-bottom: 1rem;
  z-index: 0;
}
.kineticText>div {
  display: inline-block;
  text-align: left;
  height: 2rem;
  line-height: 2rem;
  overflow: hidden;
  font-size: 1.5rem;
  z-index: 300;
  
}
#iam {
  position: absolute;
  margin-top: 4%;
  margin-left: 4.5%;
}
.message span {
  display: block;
  color: white;
  padding: 0 10px;
  font-family: 'Lato';
  /* position: relative; */
  z-index: 300;
}
.text-wrap {
  position: absolute;
  margin-top: 4%;
  margin-left: 9%;
  
}
.message {
  position: relative;
  animation: text-animation ease 8s infinite;
  z-index: 300;
}
@keyframes text-animation {
  0% {
    top: 0;
  }
  10% {
    top: 0;
  }
  20% {
    top: -32px;
  }
  30% {
    top: -32px;
  }
  40% {
    top: -64px;
  }
  50% {
    top: -64px;
  }
  60% {
    top: -95px;
  }
  70% {
    top: -95px;
  }
  80% {
    top: -127px;
  }
  90% {
    top: -127px;
  }
  100% {
    top: 0px;
  }
}
footer {
      height: 3.5rem;
      background-color:#4E7F7F;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size:.8rem;
      font-family: 'Lato Thin';
      margin-top: 4rem;
    }
    
    .footer-container {
      display: flex;
      align-items: center; /* Ensures both elements align vertically */
      gap: 8rem; /* Adjusts spacing between the two items */
  }

    /* OVERLAY POPOUT */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 91, 90, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.overlay.show-overlay {
  display: flex;
}
#close-overlay {
  position: fixed;
  top: -.5rem;
  right: 7.5rem;
  /* margin-top: -41%;
  right: 8%; */
  background-color: #8A6E88;
  color: white;
  font-family: 'Rocksalt';
  width: 3em;
}

#iframe {
  display: flex;
  width: 80%;
  height: 90%;
  justify-content: center;
  align-items: center;
}
#casestudy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: relative;
}
#casestudy li {
  margin-top: .5rem;
}
/* #casestudy :last-child {
  margin-bottom: .5rem;
} */
#banner-container {
  position: relative;
}
#featureImg {
  width: 98%;
  margin-top: .6rem;
  margin-bottom: 2rem;
}
#featurePhone {
  display: none;
}
#projectBtn {
  margin-top: 22%;
  margin-left: 5%;
  position: absolute;
}

#role-container {
  display: flex;
  justify-content: space-between;
  align-items: top;
  flex-direction: row;
  margin: 0 auto;
  margin-bottom: 5rem;
  width: 90%;
}
#role {
  height: auto;
  width: 25%;
  margin-right: 2rem;
  line-height: 1.2rem;
}
#deliver {
  height: auto;
  width: 35%;
  margin-right: 1rem;
  line-height: 1.2rem;
}
#specifics {
  width: 25%;
  height: auto;
  margin-left: 1rem;
  line-height: 1.2rem;
}
#role-container h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lato Black';
  color: #4E7F7F;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
#brand-container h2,
.sketch-container h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lato Black';
  color: #4E7F7F;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
#role-container h3 {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  color: #8A6E88;
  font-family: 'Lato';
  /* text-align: center; */
  margin-bottom: 1rem;
}
ul {
  list-style-type: disc; 
  color: #8A6E88;
  line-height: 1.3rem;
  font-family: 'Lato';
  width: 90%;
}
.nested-ul {
  list-style-type: square;  
  font-size: smaller;
  line-height: 1rem;
}
.sketch-container,
#brand-container {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  margin-bottom: 6rem;
}
.sketch-container {
  position: relative;
}
.sketchbanner {
  width: 85%;
  /* margin-bottom: 2rem; */
}
.sketch-container:last-child {
  margin-bottom: 5rem;
}
.iconbanner {
  width: 65%;
}
.iconbanner img {
  margin-top: -2rem; 
}
.brandbanner {
  width: 85%;
  /* margin-bottom: 3rem; */
}
.brandbanner:last-child {
  width: 70%;
  margin-bottom: 5rem;
}
.gif-container {
  width: 20%;
  position: absolute;
  margin-top: 89%;
  margin-left: 52%;
}
.gif-container:last-child {
  width: 38%;
  position: absolute;
  margin-top: 108%;
  margin-left: 52%;
}



@media only screen and (min-width: 1800px) {
#close-overlay {
  top: -.5rem;
  right: 10.5rem;
}
.left {
  line-height: 1.8rem;
}
.text1 {
  font-size: 1.5rem;
}
.text2 {
  font-size: 2.1rem;
}
.cards li:nth-child(7) .card__title {
  font-size: 1.4rem;
}

}

/* BIGGER THAN 1800 */
@media only screen and (min-width: 1800px) {
  #emailBtn, #resume, #linked {
    padding: 2px 5px;
    width: 4rem;
    height: 4rem;
    font-size: 2.5rem;
  }
  #resume {
    margin-top: 28%;
    margin-left: 63%;
    height: 4rem;
    width: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #emailBtn {
    margin-top: 28%;
    margin-left: 51%;
  }
  #linked {
    margin-top: 28%;
    margin-left: 56%;
  }
  #intro {
    font-size: 2rem;
  }
}

/* TABLET */
@media only screen and (min-width: 935px) and (max-width: 1280px) {
  #close-overlay {
    top: .5rem;
    right: 7rem;
  }
  .left {
    line-height: 1.3rem;
  }
  .text1 {
    font-size: 1rem;
  }
  .text2 {
    font-size: 2.4rem;
  }
  .profileImg img {
    margin-right: 5rem;
  }
  .kineticText img {
    width: 77%;
  }
  .kineticText>div {
    font-size: 1.25rem;
  }
  #iam {
    margin-left: 6.5%;
  }
  .text-wrap {
    margin-left: 11%;
  }
  .header-container {
    margin-left: 43%;
  }
  #phead,
  #ahead,
  #chead {
    margin-right: 7rem;
    font-size: 1.4rem;
  }
  #tagline {
    font-size: 1.5rem;
  }
  #intro {
    font-size: 1rem;
  }
  #emailBtn, #resume, #linked {
    width: 4rem;
    height: 4rem;
    margin-top: 28%;
  }
  #resume {
    margin-left: 65%;
    width: 10rem;
    font-size: 1.8rem;
  }
  #linked {
    margin-left: 57%;
  }
  .cards li:nth-child(7) .card__title {
    font-size: 1.4rem;
  }
  .gif-container {
    width: 16%;
    margin-top: 93%;
    margin-left: 54%;
  }
  .gif-container:last-child {
    width: 35%;
    margin-top: 109%;
    margin-left: 54%;
  }
  }

  
/* CELL PHONE */
  @media only screen and (min-width: 360px) and (max-width: 430px) {
  .header-container {
    display: none;
  }
  #tagline {
    font-size: .6rem;
    margin-left: 22%;
    font-family: 'Lato';
  }
  #intro {
    display: none;
  }
  #emailBtn, #resume, #linked {
    padding: 2px 5px;
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  #resume {
    margin-left: 52%;
    height: 2.2rem;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #emailBtn {
    margin-top: 10%;
    margin-left: 54%;
  }
  #linked {
    margin-top: 10%;
    margin-left: 70%;
  }
  .cards li:nth-child(7) .card__title {
    font-size: 1.2rem;
  }
  .cards li:nth-child(8) .card__title {
    font-size: 1.3rem;
  }
  #aboutcontent {
    flex-direction: column;
  }
  .kineticText {
    display: none;
  }
  .left {
    width: 90%;
    margin-left: 0rem;
    margin: 0 auto;
  }
  .text1 {
    width: 100%;
  }
  .right {
    width: 80%;
  }
  .profileImg {
    justify-content: initial;
    margin-top: 2rem;
  }
  #close-overlay {
    top: .5rem;
    right: 0rem;
  }
  #iframe {
    width: 100%;
  }
  #casestudy {
    overflow-x: hidden;
  }
  #role-container {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      margin: 0 auto;
      margin-bottom: 3rem;
      width: 100%;
  }
  #role {
    margin: 0 auto;
    width: 90%;
    margin-bottom: 2rem;
  }
  #deliver {
    margin: 0 auto;
    width: 90%;
    margin-bottom: 2rem;
  }
  #specifics {
    margin: 0 auto;
    width: 90%;
    margin-bottom: 2rem;
  }
  #projectBtn {
    font-size: .5rem;
    padding: 5px 12px;
    margin-top: 23.5%;
  }
  #brand-container h2, .sketch-container h2 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
  }
  #brand-container, .sketch-container {
    margin-bottom: 2rem;
  }
  #featurePhone {
    display: block;
    width: 100%;
    margin-top: .6rem;
    margin-bottom: 2rem;
    height: auto;
    }
  #featureImg {
    display: none;
  }
  .gif-container {
    width: 15%;
    margin-top: 101%;
    margin-left: 54%;
  }
  .gif-container:last-child {
    width: 35%;
    margin-top: 116%;
    margin-left: 54%;
  }
  }

  @media only screen and (min-width: 431px) and (max-width: 500px) {
    .header-container {
      display: none;
    }
    #intro {
      display: none;
    }
    #tagline {
      font-size: .7rem;
      font-family: 'Lato';
    } 
    #emailBtn, #resume, #linked {
      padding: 2px 5px;
      width: 3rem;
      height: 3rem;
      font-size: 1.2rem;
    }
    #resume {
      margin-left: 52%;
      height: 2.2rem;
      width: 8rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #emailBtn {
      margin-top: 10%;
      margin-left: 54%;
    }
    #linked {
      margin-top: 10%;
      margin-left: 70%;
    }
    #aboutcontent {
      flex-direction: column;
    }
    .kineticText {
      display: none;
    }
    .left {
      width: 90%;
      margin-left: 0rem;
      margin: 0 auto;
    }
    .text1 {
      width: 100%;
    }
    .right {
      width: 80%;
    }
    .profileImg {
      justify-content: initial;
      margin-top: 2rem;
    }
    #close-overlay {
      top: 1rem;
      right: 0rem;
    }
    #iframe {
      width: 100%;
    }
    #casestudy {
      overflow-x: hidden;
    }
    #role-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 3rem;
        width: 100%;
    }
    #role {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #deliver {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #specifics {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #projectBtn {
      font-size: .5rem;
      padding: 5px 12px;
      margin-top: 23.5%;
    }
    #brand-container h2, .sketch-container h2 {
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2rem;
    }
    #brand-container, .sketch-container {
      margin-bottom: 2rem;
    }
    #featurePhone {
      display: block;
      width: 100%;
      margin-top: .6rem;
      margin-bottom: 2rem;
      height: auto;
      }
    #featureImg {
      display: none;
    }
    .gif-container {
      width: 15%;
      margin-top: 101%;
      margin-left: 54%;
    }
    .gif-container:last-child {
      width: 35%;
      margin-top: 116%;
      margin-left: 54%;
    }
  }

  @media only screen and (min-width: 501px) and (max-width: 600px) {
    .header-container {
      display: none;
    }
    #intro {
      display: none;
    }
    #tagline {
      font-size: .85rem;
      font-family: 'Lato';
    } 
    #emailBtn, #resume, #linked {
      padding: 2px 5px;
      width: 4rem;
      height: 4rem;
      font-size: 1.2rem;
    }
    #resume {
      margin-left: 55%;
      height: 2.2rem;
      width: 9rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #emailBtn {
      margin-top: 10%;
      margin-left: 54%;
    }
    #linked {
      margin-top: 10%;
      margin-left: 70%;
    }
    #aboutcontent {
      flex-direction: column;
    }
    .kineticText {
      display: none;
    }
    .left {
      width: 90%;
      margin-left: 0rem;
      margin: 0 auto;
    }
    .text1 {
      width: 100%;
    }
    .right {
      width: 80%;
    }
    .profileImg {
      justify-content: initial;
      margin-top: 2rem;
    }
    #close-overlay {
      top: 1rem;
      right: 0rem;
    }
    #iframe {
      width: 100%;
    }
    #casestudy {
      overflow-x: hidden;
    }
    #role-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 3rem;
        width: 100%;
    }
    #role {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #deliver {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #specifics {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #projectBtn {
      font-size: .5rem;
      padding: 5px 12px;
      margin-top: 23.5%;
    }
    #brand-container h2, .sketch-container h2 {
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2rem;
    }
    #brand-container, .sketch-container {
      margin-bottom: 2rem;
    }
    #featurePhone {
      display: block;
      width: 100%;
      margin-top: .6rem;
      margin-bottom: 2rem;
      height: auto;
      }
    #featureImg {
      display: none;
    }
    .gif-container {
      width: 15%;
      margin-top: 101%;
      margin-left: 54%;
    }
    .gif-container:last-child {
      width: 35%;
      margin-top: 116%;
      margin-left: 54%;
    }
  }

  @media only screen and (min-width: 601px) and (max-width: 700px) {
    .header-container {
      display: none;
    }
    #intro {
      display: none;
    }
    #tagline {
      font-size: 1rem;
      font-family: 'Lato';
    } 
    #emailBtn, #resume, #linked {
      padding: 2px 5px;
      width: 4rem;
      height: 4rem;
      font-size: 1.2rem;
    }
    #resume {
      margin-left: 56%;
      height: 2.5rem;
      width: 9rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #emailBtn {
      margin-top: 14%;
      margin-left: 55%;
    }
    #linked {
      margin-top: 14%;
      margin-left: 69%;
    }
    #aboutcontent {
      flex-direction: column;
    }
    .kineticText {
      display: none;
    }
    .left {
      width: 90%;
      margin-left: 0rem;
      margin: 0 auto;
    }
    .text1 {
      width: 100%;
    }
    .right {
      width: 80%;
    }
    .profileImg {
      justify-content: initial;
      margin-top: 2rem;
    }
    #close-overlay {
      top: 1rem;
      right: 0rem;
    }
    #iframe {
      width: 100%;
    }
    #casestudy {
      overflow-x: hidden;
    }
    #role-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 3rem;
        width: 100%;
    }
    #role {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #deliver {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #specifics {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #projectBtn {
      font-size: .5rem;
      padding: 5px 12px;
      margin-top: 23.5%;
    }
    #brand-container h2, .sketch-container h2 {
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2rem;
    }
    #brand-container, .sketch-container {
      margin-bottom: 2rem;
    }
    #featurePhone {
      display: none;
      width: 100%;
      margin-top: .6rem;
      margin-bottom: 2rem;
      height: auto;
      }
    #featureImg {
      display: block;
    }
    .gif-container {
      width: 15%;
      margin-top: 101%;
      margin-left: 54%;
    }
    .gif-container:last-child {
      width: 35%;
      margin-top: 116%;
      margin-left: 54%;
    }
  }
  @media only screen and (min-width: 701px) and (max-width: 934px) {
    .header-container {
      display: none;
    }
    #tagline {
      font-size: 1.2rem;
      font-family: 'Lato';
    }
    #intro {
      font-size: .9rem;
    }
    #emailBtn, #resume, #linked {
      width: 3rem;
      height: 3rem;
      margin-top: 29%;
    }
    #resume {
      margin-left: 65%;
      width: 10rem;
      font-size: 1.8rem;
    }
    #linked {
      margin-left: 57%;
    }
    #aboutcontent {
      flex-direction: column;
    }
    .kineticText {
      display: none;
    }
    .left {
      width: 90%;
      margin-left: 0rem;
      margin: 0 auto;
    }
    .text1 {
      width: 100%;
    }
    .right {
      width: 80%;
    }
    .profileImg {
      justify-content: initial;
      margin-top: 2rem;
    }
    #close-overlay {
      top: 1rem;
      right: 0rem;
    }
    #iframe {
      width: 100%;
    }
    #casestudy {
      overflow-x: hidden;
    }
    #role-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 3rem;
        width: 100%;
    }
    #role {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #deliver {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #specifics {
      margin: 0 auto;
      width: 90%;
      margin-bottom: 2rem;
    }
    #projectBtn {
      font-size: .5rem;
      padding: 5px 12px;
      margin-top: 23.5%;
    }
    #brand-container h2, .sketch-container h2 {
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2rem;
    }
    #brand-container, .sketch-container {
      margin-bottom: 2rem;
    }
    #featurePhone {
      display: none ;
      width: 100%;
      margin-top: .6rem;
      margin-bottom: 2rem;
      height: auto;
      }
    #featureImg {
      display: block;
    }
    .gif-container {
      width: 15%;
      margin-top: 101%;
      margin-left: 54%;
    }
    .gif-container:last-child {
      width: 35%;
      margin-top: 116%;
      margin-left: 54%;
    }
  }