
:root {
  --font-fallback: "Roboto", "Ubuntu", "Helvetica Neue", sans-serif;
  --black: #191919;
  --gray: #232323;
  --light-gray: #717171;
  --ghost-gray: #D9D9D9;
  --black-bg: #0b0b0b;
  --big-margin: 8.25%;
  --medium-margin: 4.13%;
  --small-margin: 2.07%;
  --half-lr-padding: 0 4.125%;
  --bs-body-font-family: "Source Sans 3", var(--font-fallback);
  --bs-body-color: var(--gray);
  --bs-body-font-weight: 300;
  --font-extra-black: 900;
  --font-black: 800;
  --font-bold: 700;
  --font-semibold: 600;
  --font-normal: 400;
  --font-light: 300;
}
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  src: url(../fonts/icons/MaterialSymbolsOutlined.woff2) format('woff2');
}
@font-face {
    font-family: "Ruda";
    src: url("../fonts/Ruda/Ruda-VariableFont_wght.ttf") format("truetype");
    font-weight: 400 900;
    font-style: normal;
  }
@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 900;
    font-style: normal;
  }
@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/Source_Sans_3/SourceSans3-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 900;
    font-style: italic;
  }
  .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
  }  
h1, h2, .quotation-mark-top, .quotation-mark-bottom, .thumbnail-title {
    font-family: "Ruda", var(--font-fallback);
    color: var(--black);
    font-weight: var(--font-black) !important;
    font-kerning: normal;
  }
.display-3 {
  font-kerning: normal;
  }
h3 {
  font-size: 2.625rem;
  font-kerning: normal;
}
p {
  font-size: 1.375rem;
  line-height: 1.5;
  font-kerning: normal;
}
.container {
    max-width: 1600px; 
}
.channel-split-button {
  position: relative; /* Ensure the pseudo-elements are positioned relative to this container */
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
  max-width: 189.55px;
}
.anna-primary-button::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it's behind the button */
  background-color: #00ffff;
  mix-blend-mode: multiply;
  transition: top 0.3s ease-in-out; /* Add a transition for smooth effect */
  transition: left 0.3s ease-in-out; /* Add a transition for smooth effect */
}
.anna-primary-button {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-semibold);
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  background-color: #ff00ff;
  position: relative; /* Ensure it's positioned above the pseudo-elements */
  z-index: 1; /* Ensure it's above the pseudo-elements */
  mix-blend-mode: multiply;
  width: max-content;
}
.portfolio-nav .channel-split-button:hover {
  margin-top: 0.440rem;
  margin-bottom: 0.440rem;
  padding-left: 2px;
}
.channel-split-button:hover {
  margin-top: 0.48rem;
  margin-bottom: 0.48rem;
}
.anna-primary-button:hover {
  color: white;
  background-color: #ff00ff;
  border: 0;
}
.anna-primary-button::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 100%;
  height: 100%;
  z-index: -2; /* Ensure it's behind both the button and the ::before pseudo-element */
  background-color: #ffff00;
  mix-blend-mode: multiply;
  transition: bottom 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.anna-primary-button:hover::before {
  top: 0rem;
  left: 0rem;
}
.anna-primary-button:hover::after {
  bottom: 0rem;
  right: 0rem;
}
.anna-secondary-button {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-semibold);
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  border: 1px solid white;
}
.anna-secondary-button:hover {
  color: var(--black-bg);
  background-color: white;
  transition: ease-in-out 0.8s;
}
.anna-secondary-button-black {
  color: var(--black-bg);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-semibold);
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--black-bg);
  font-kerning: normal;
}
.anna-secondary-button-black:hover {
  color: white;
  background-color: var(--black-bg);
  transition: ease-in-out 0.8s;
}
.difference-blend-mode {
  mix-blend-mode: difference;
  color: #ffffff;
}
.rainbox-text {
    color: #f35626;
    background-image: -webkit-linear-gradient(45deg, #f35626, #feab3a);
    background-clip: text;
    color: transparent;
    animation: hue 15s infinite linear;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 15s infinite linear;
  }
  
  @-webkit-keyframes hue {
    from {
      -webkit-filter: hue-rotate(0deg);
    }
    to {
      -webkit-filter: hue-rotate(-360deg);
    }
  }
    @keyframes hue {
      from {
        filter: hue-rotate(0deg);
      }
      to {
        filter: hue-rotate(-360deg);
      }
  }

/* 
Homepage Styles
*/
.homepage-banner {
    margin-top: 56px;
    background-color: var(--black-bg);
}
.homepage-banner h1 {
    color: #fff;
    font-weight: var(--font-black);
}
.homepage-banner p {
    color: #fff;
}
.homepage-banner .heart {
  font-size: 1.4rem;
  font-weight: 250;
}
.navbar-brand img {
    height: 18px;
    width: auto;
}
.full-tb-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-normal);
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: ease-in-out 0.8s;
  /*opera and mozilla support*/
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--light-gray);
  text-decoration-color: var(--light-gray);
   /*opera and mozilla support*/
   -webkit-text-decoration-color: var(--light-gray);
   -moz-text-decoration-color: var(--light-gray);
}
.portfolio-nav {
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2);
}
.projects-grid{
  position: relative;
  width: 100%
}
.projects-grid-in {
margin-top: var( --big-margin);
margin-bottom: var( --big-margin);
position: relative;
}
.vertical-text-column{
  margin-top: var( --big-margin);
  margin-bottom: var( --big-margin);
}
.vertical-text{
  position: sticky;
  text-transform: uppercase;
  top: 25%;
  float: left;
  transform: rotate(-90deg);
  margin: 45px 0 110px 26px;
  width: max-content;
  color: var(--light-gray);
  font-family: var(--bs-body-font-family), sans-serif; /* use a default value in font family for best practices, old browsers not support var() */
  font-weight: var(--font-normal);
  letter-spacing: 1px; /* The pixels always are integers */
  font-size: 0.9rem;
}
.bio-hp .vertical-text {
  position: absolute;
  bottom: 5%;
  left: -3%;
  top: unset;
  margin: 0;
}
.vertical-text .arrow{
  padding-top: 1%;
  position: absolute;
  left: -25%;
}
.hp-project-thumbnail {
  width:100%;
  max-width: 76%;
}
.hp-portfolio-project h3, .thumbnail-text h3 {
  margin-bottom: 0;
}
.hp-portfolio-project h3, .hp-portfolio-project p {
  opacity: 0;
  transition: all ease 0.8s
  }
.hp-portfolio-project:hover h3, .hp-portfolio-project:hover p {
 opacity: 100;
 transition: all ease 0.8s
}
.thumbnail-category {
  font-family: "Ruda", var(--font-fallback);
  color: var(--black);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hp-portfolio-project img, .thumbnail-image {
  box-shadow: 3px 7px 21px 0px rgba(0, 0, 0, 0.2);
}
/* 
Portfolio: Images hover
*/
.hp-portfolio-project img:hover, .thumbnail-image:hover {
  box-shadow: none;
  transition: all ease 1s;
}
.hp-portfolio-project .project-title {
  z-index: 5;

}
.hp-portfolio-project .img-on-hover {
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.related-projects-in .img-on-hover {
  opacity: 0;
  z-index: 1;
}
.hp-portfolio-project .img-on-hover:hover, .related-projects-in .img-on-hover:hover {
    opacity: 1;
    transition: all ease 1s;
}
.hp-portfolio-project .img-on-hover:not(:hover), .related-projects-in .img-on-hover:not(:hover) {
  opacity: 0;
  transition: all ease 0.8s;
}
.bio-hp {
  margin-bottom: var( --big-margin);
}
.bio-hp .lead-in, .bio-intro .about, .project-details-in {
  gap: 4%;
}
.bio-hp .lead-in .subtitle {
  position: absolute;
  top: -16%;
}
.bio-hp .lead-in .bio-picture img, .profile-pic img {
  box-shadow: 3px 7px 21px 0px rgba(0, 0, 0, 0.2);
}
.bio-hp .lead-in .bio-copy .linkedin-icon img {
  max-width: 36px;
}
.bio-img-title {
  height: fit-content;
  position: relative;
}
/*
Footer Styles
*/
.footer {
  background-color: var(--black-bg);
  position: relative;
  padding-top: var( --big-margin);
  padding-bottom: var( --medium-margin);
}
.footer .container{
  position: relative;
  z-index: 1;
}
.footer::before {
  background-image: url("../images/footer-vector-A.svg");
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  height: 50%;
  background-repeat: no-repeat;
  width: 100%;
  background-position: top left;
  background-size: contain;
}
.footer::after {
  background-image: url("../images/footer-vector-N.svg");
  background-position: right bottom;
  content: " ";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-repeat: no-repeat;
  width: 100%;
  background-size: contain;
}
.footer h2, .footer p, .footer a {
  color: white;
}
.footer .footer-link {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-light);
}
.footer-link:nth-child(1), .footer-link:nth-child(2) {
  padding-right: 2rem;
}
.footer .footer-link, .footer .footer-privacy {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: ease-in-out 0.8s;
  /*opera and mozilla support*/
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
}
.footer .footer-link:hover, .footer .footer-privacy:hover {
  color: var(--bs-gray-500);
  text-decoration-color: var(--bs-gray-500);
   /*opera and mozilla support*/
   -webkit-text-decoration-color: var(--bs-gray-500);
   -moz-text-decoration-color: var(--bs-gray-500);
}
.footer-nav {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    padding-top: var( --medium-margin);
}
.footer-contact {
  padding-bottom: var( --big-margin);
}
.copyright {
  margin-bottom: 0;
}

/* 
Project Template
*/
.project-banner, .bio-intro {
  margin-top: 77px; 
}
.project-intro, .project-details {
  padding-top: var( --big-margin);
  padding-bottom: var( --big-margin);
}
.project-category {
  min-width: 6%;
  position: relative;
}
.intro-content {
  flex-basis: fit-content;
}
.intro-content h2 {
  margin-bottom: 1.5rem;
}
.interior-vertical-text {
  transform: rotate(-90deg);
  color: var(--light-gray);
  font-family: var(--bs-body-font-family);
  text-transform: uppercase;
  font-weight: var(--font-normal);
  letter-spacing: 1.5px;
  position: absolute;
  top: 19%;
  left: -40%;
  font-size: 0.9rem;
  width: max-content;
}
.gallery-flexbox, .bio-gallery .gallery-columns {
  column-gap: 5.7%;
}
.gallery-first-box {
  row-gap: 8%;
}
.all-caps-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.all-caps-subtitle-black {
  font-weight: var(--font-black);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2.625rem;
}
.lowercase {
  text-transform: lowercase;
}
.quote-text {
  font-size: 2.125rem;
  font-weight: var(--font-bold);
  font-style: italic;
  text-align: center;
  line-height: 1.2;
}
.quotation-mark-top, .quotation-mark-bottom {
  font-size: 4rem;
  line-height: 0.5;
}
.quotation-mark-bottom {
  align-self: flex-end;
}
.project-details-in {
  width: 100%;
}
.project-details-in .quote {
  flex: 40%;
}
.quote {
  min-width: 36.4%;
}
.project-full-width {
  margin-bottom: var( --big-margin);
}
.related-projects {
  margin-top: var( --big-margin);
  margin-bottom: var( --big-margin);
}
.related-projects-in {
  column-gap: 4%;
  justify-content: center;
}
.related-projects-in .first-thumbnail, .related-projects-in .second-thumbnail, .related-projects-in .third-thumbnail {
  position: relative;
  height: fit-content;
}
.thumbnail-wrap {
  margin-left: 10%;
}
.related-projects-in .first-thumbnail .thumbnail-text, .related-projects-in .second-thumbnail .thumbnail-text, .related-projects-in .third-thumbnail .thumbnail-text {
  position: absolute;
  bottom: 12%;
  z-index: 5;
}
.related-projects-in .third-thumbnail {
  margin-right: 2.4%;
}
.first-thumbnail h3, .second-thumbnail h3, .third-thumbnail h3, .first-thumbnail p, .second-thumbnail p, .third-thumbnail p {
  opacity: 0;
 transition: all ease 0.8s
}
.first-thumbnail:hover h3, .second-thumbnail:hover h3, .third-thumbnail:hover h3, .first-thumbnail:hover p,  .second-thumbnail:hover p, .third-thumbnail:hover p {
  opacity: 100;
  transition: all ease 0.8s
}
.related-projects .all-caps-subtitle {
  margin-bottom: var(--big-margin);
  text-align: center;
}
.project-list {
  margin-left: var(--medium-margin);
}
.project-list ul {
list-style-type: none;
padding-inline-start: 0px;
margin-bottom: 1.75rem;
}
.project-list li {
  font-size: 1.25rem;
  line-height: 1.2;
  font-kerning: normal;
  font-weight: var(--font-normal);
}
.project-list h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  font-kerning: normal;
  font-weight: var(--font-light);
}
.project-list .left-border {
  border-left: var(--bs-border-width) solid;
  border-color: rgba(35, 35, 35, 0.35);
  padding-left: var(--big-margin);
}
/*
Bio Page
*/
.bio-intro {
  background-image: url("../images/bio-intro-background.webp");
  background-position: top center;
  content: " ";
  background-size: cover;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  margin-bottom: var( --big-margin);
  padding-top: var( --big-margin);
}
 .bio-intro .about .about-copy {
  justify-content: flex-start;
  flex: 1 1 40%; 
 }
.bio-intro .about .profile-pic {
  max-width: 100%;
  flex: 1 1 60%;
}
.bio-intro .about .about-copy .paragraph {
  justify-content: center;
  flex: 1 1 auto;
}
 .bio-intro h2 {
  margin-bottom: 1.5rem;
 }
 .bio-intro .about .subtitle {
  width: fit-content;
  margin-top: var(--big-margin);
 }
 .bio-intro .about .subtitle h2 {
  position: absolute;
  right: 10%;
 }
.grey-text {
  color: var(--light-gray);
  font-family: var(--bs-body-font-family);
  text-transform: uppercase;
  font-weight: var(--font-normal);
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}
.stats-wrapper .background-stat {
  color: var(--ghost-gray);
  font-family: "Ruda", var(--font-fallback);
  font-weight: var(--font-extra-black);
  font-size: 18rem;
  line-height: 18rem;
  position: absolute;
  z-index: -1;
  max-height: 100%;
}
.stats-wrapper .text-stat {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 100%;
} 
.stats-wrapper .first-stat, .stats-wrapper .second-stat, .stats-wrapper .third-stat {
  border-top: var(--bs-border-width) solid;
  border-color: rgba(35, 35, 35, 0.35);
  position: relative;
  min-height: 18.5rem;
  padding-right: 4.5%;
}
.stats-wrapper {
  gap: var(--big-margin);
  width: 100%;
  padding: 0 var(--big-margin);
}
 .gallery-columns .left-column-wrap {
  flex: 40%;
  margin-top: var(--big-margin);
 }
  .gallery-columns .right-column-wrap {
  flex: 60%;
 }
.gallery-columns .left-column-wrap .left-column {
  height: 100%;
 }
 .bio-gallery {
  margin-bottom: var( --big-margin);
  margin-top: var( --big-margin);
 }
 .bio-gallery .right-column .details-with-button {
  max-width: 805px;
  margin-top: var(--big-margin);
 }
 .bio-gallery .left-column .spotify-widget, .bio-gallery .left-column .quote {
  padding-left: var(--big-margin);
 }
 .bio-gallery .left-column .spotify-widget {
  width: 100%;
 }
 .bio-gallery .left-column .quote {
  margin-bottom: var(--big-margin);
  margin-top: var(--big-margin);
 }
 .quote-author {
   font-size: 1.375rem;
   font-style: italic;
   text-align: center;
   font-weight: var(--font-normal);
 }
 .spotify-list-subtitle {
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-semibold);
 }
 .spotify-bttn-text {
  padding: var(--medium-margin) 0;
  border-bottom: var(--bs-border-width) solid;
  border-color: rgba(35, 35, 35, 0.35);
 }

/* RESPONSIVE */

/* 1920px */
@media (max-width: 1920px) {
  .bio-hp .lead-in .subtitle {
    top: -12%;
  }
}
/* 1600px */
@media (min-width: 1600px) {
  .bio-hp .lead-in, .project-details-in {
    gap: 5.65%;
  }
}
/* 1500px */
@media (max-width: 1500px) {
  .bio-intro .about .profile-pic {
    align-self: flex-end;
  }
  .bio-intro .about .about-copy .grey-text {
    margin-bottom: var( --small-margin);
  }
  .bio-intro .about .about-copy {
    padding-bottom: 0;
  }
  h3 {
  font-size: 2rem;
}
.thumbnail-category {
  font-size: 1.125rem;
}
.bio-hp .lead-in .bio-img-title .bio-picture {
  max-width: 87%;
}
.quote-text {
  font-size: 1.4375rem;
}
.quotation-mark-top, .quotation-mark-bottom {
font-size: 2rem;
line-height: 0.2;
}
}
/* 1440px */
@media (max-width: 1440px) {
.spotify-bttn-text {
  flex-direction: column;
}
.spotify-bttn-text .spotify-list-subtitle {
  margin-bottom: var(--small-margin);
}
.bio-stats .stats-wrapper {
  gap: var(--small-margin);
}
.stats-wrapper .first-stat, .stats-wrapper .second-stat, .stats-wrapper .third-stat {
  min-height: 14rem;
  padding-right: 0;
}
.stats-wrapper .background-stat {
  font-size: 11.75rem;
  line-height: 11.75rem;
}
.text-stat .all-caps-subtitle-black {
  font-size: 2rem;
  margin-bottom: 0;
}
}

/* 1200px */
@media (max-width: 1200px) {
  .bio-hp .lead-in .subtitle {
    top: -17%;
  }
  .interior-vertical-text {
    left: -51%;
  }
  .bio-intro .about .subtitle h2 {
    right: 1%;
    top: 28%;
  }
  .bio-intro .about .about-copy .paragraph {
    padding-top: 60%;
  }
}
/* Mobile 991px - Start of hamburger menu */
@media (max-width: 991px) {
.project-banner, .bio-intro {
  margin-top: 56px; 
}
.interior-vertical-text {
  top: 17%;
  left: -51%;
  font-size: 0.8rem;
}
p {
  font-size: 1.125rem;
}
.navbar-collapse {
    margin-bottom: 1.5rem;
  }
.navbar-nav .nav-item .nav-link {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
.navbar-collapse .navbar-nav {
    margin-bottom: 2rem;
  }
.bio-stats .stats-wrapper {
  padding: 0 var(--small-margin);
}
}
/* Mobile 768px */
@media (max-width: 768px) {
  .footer::before {
    height: 40%;
  }
  .footer::after {
    height: 65%;
  }
  .bio-hp .lead-in .bio-picture, .bio-intro .about .profile-pic {
    max-width: 84%;
  }
  .bio-intro {
    padding-top: 15%;
  }
  .bio-intro .about .subtitle h2 {
    right: unset;
    top: 13%;
    }
  .flex-column-mobile, .gallery-flexbox {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bio-hp .lead-in .bio-copy .linkedin-icon {
    padding-top: 4%;
    padding-bottom: 4%;
  }
  .bio-hp .lead-in .subtitle {
    top: -2.6rem;
  }
  .tb-border {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  }
  .copyright, .footer-contact .anna-secondary-button {
    margin-top: 1rem;
  }
  .footer-contact, .footer-nav {
    align-items: center;
  }
  .gallery-first-box, .gallery-flexbox {
    row-gap: 1.5rem;
    column-gap: 0;
  }
  .project-details-in .details-with-button {
    order: 2;
    flex: 60%;
  }
  .details-with-button {
    margin-top: var(--small-margin);
  }
  .related-projects-in {
    align-items: center;
  }
  .related-projects-in .third-thumbnail, .related-projects-in .second-thumbnail, .related-projects-in .first-thumbnail {
    margin-right: 6%;
  }
  .related-projects-in .second-thumbnail, .related-projects-in .first-thumbnail {
    margin-bottom: var(--big-margin);
  }
  .interior-vertical-text {
    top: 13%;
    left: -74%;
    font-size: 0.7rem;
  }
  .stats-wrapper .first-stat, .stats-wrapper .second-stat, .stats-wrapper .third-stat {
  min-height: 14.5rem;
  padding-right: 0;
  display: flex;
  align-items: flex-end;
}
.stats-wrapper .background-stat {
  font-size: 11rem;
  line-height: 13.5rem;
}
.vertical-text {
  font-size: 0.875rem;
  margin: 45px 0 80px -26px;
}
.bio-intro .about .subtitle br {
  display: none;
}
.bio-stats .stats-wrapper {
  padding: 0 var(--big-margin);
  gap: 1.5rem;
  width: 100%;
  align-items: center;
}
.stats-wrapper .first-stat, .stats-wrapper .second-stat, .stats-wrapper .third-stat {
  min-height: 14rem;
}
.bio-gallery .left-column .spotify-widget, .bio-gallery .left-column .quote {
  padding: 0 var(--big-margin);
}
.bio-gallery .right-column .details-with-button {
  margin: var(--big-margin) var(--small-margin) 0 var(--small-margin);
}
  .bio-intro .about .about-copy .paragraph {
    padding-top: 0;
  }
  .project-list {
    margin-left: 0;
  }
  .project-list .left-border {
    border-left: none;
    padding-left: 0;
  }
  .footer-link:nth-child(2) {
  padding-right: 0;
}
}
@media (min-width: 768px) {
.bio-hp .lead-in .bio-copy {
    flex-basis: 520px;
  }
}
/* 576px */
@media (max-width: 576px) {
  .interior-vertical-text {
    top: 10%;
    left: -90%;
  }
  .bio-hp .lead-in .bio-copy .linkedin-icon img {
    max-width: 30px;
  }
  .bio-hp .vertical-text {
   bottom: 11%;
   left: -6%;
  }
  .bio-hp {
    margin-top: var( --medium-margin);
  }
  }
  /* 500px */
@media (max-width: 500px) {
    .interior-vertical-text {
      top: 8%;
      left: -90%;
    }
    .project-category {
      min-width: 8%;
    }
    }
/* 400px */
@media (max-width: 400px) {
.footer::before {
    height: 25%;
  }
  .footer::after {
    height: 56%;
  }
.interior-vertical-text {
  top: 4.5%;
  left: -100%;
}
.bio-intro {
  padding-top: 30%;
}
}