@import url(fontface.css);
:root{
  /* PAGE SETTING */
  --page-width: 78.375rem;
  --header-height: 6.9375rem;
  --subheader-height: 39.1rem;
  /* COLORS */
  --dark-blue: #13121B;
  --pink: #FC578C;
  --yellow: #FFEB3A;
  --light-purple: #D8DCFF;
  --sky-blue: #D1F3F3;
  --smoke-grey: #F0F3FA;
  --ligther-grey: #FAFAFA;
  --light-grey: #E5E5E5;
  --grey: #606065;
  --bg-primary: var(--dark-blue);
  --bg-secondary: white;
  --bg-cards: var(--smoke-grey);
  --bg-card-one: var(--pink);
  --bg-card-two: var(--yellow);
  --bg-card-three: var(--light-purple);
  --bg-card-four: var(--sky-blue);
  --bg-link-light: var(--sky-blue);
  --fg-link-light: black;
  --bg-link-dark: black;
  --fg-link-dark: white;
  --footer-bg: var(--dark-blue);
  --hr-color: var(--grey);
  --copyright-color: var(--light-grey);
  /* ANIMATIONS SETTINGS */
  --waves-height: 6.7pt;
  --waves-width: 22.5pt;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  flex: 0 0 auto;
  transition: all .5s;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: var(--regular);
  background-color: var(--ligther-grey);
}
body::before {
  content: "";
  background-color: var(--dark-blue);
  height: var(--header-height);
  width: 100%;
  
  display: block;
  position: absolute;
  top: calc(-1 * var(--header-height));
  z-index: 1;
  left: 0;
}
a {
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: delay 5s;
}
header, .sub-header {
  font-family: "Work Sans", sans-serif;
  font-weight: var(--regular);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-primary);
  width: 100%;
  color: white;
}
header {
  height: var(--header-height);
  position: fixed;
  transition: top .25s ease-out;
  top: 0;
  z-index: 10;
}

.scroll-down header {
  top: calc(-1 * var(--header-height));
}

.sub-header {
  height: var(--subheader-height);
  padding-top: 9rem;
  margin-top: var(--header-height);
}
.sub-header h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: var(--extrabold);
  letter-spacing: .12rem;
  font-size:3.50rem;
  color: #D1F3F3;
}
.sub-header p {
  font-family: "Poppins", sans-serif;
  font-weight: var(--regular);
  margin: auto;
  margin-bottom: 0;
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 2rem;
  width: 41rem;
}
#about-page .sub-header {
  padding-top: 6.5rem;
}
#about-page .sub-header p {
  font-size: 1.25rem;
  line-height: 1.75rem; 
}
.sub-header p strong {
  font-weight: var(--regular);
}
.sub-header p strong::after {
  content: "";
  display: block;
  position: absolute;
  top: 2.1rem;
  left: -4pt;
  -webkit-mask: url("../images/svg/stylized_underline.svg") no-repeat;
  -moz-mask: url("../images/svg/stylized_underline.svg") no-repeat;
  mask: url("../images/svg/stylized_underline.svg") no-repeat;
  background-color: var(--yellow);
  height: 12.52pt;
  width: 94.24pt;
  transform: scale(0.85);
}
h1 {
  font-size: 2rem;
  letter-spacing: .16rem;
  display: inline-block;
}
nav {
  display: flex;
  font-size: 1.5rem;
  margin-top:  0rem;
  margin-left: auto;
  list-style: none;
  gap: 5.125rem;
  transition: opacity .0s;
}
nav a {
  display: inline-block;
  margin: auto 0;
  text-align: left;
  height: 2.125rem;
  font-family: "Work Sans", sans-serif;
  font-weight: var(--medium);
  color: white;
}
nav a.active {
  font-weight: var(--bold);
  color: var(--yellow);
  overflow: visible;
}
nav a.active::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  background-color: var(--yellow);
  height: 3px;
  width: 100%;
}
nav a:not(.active):hover::after {
  content: "";
  display: block;
  left: 0;
  background-color: var(--yellow);
  height: 2px;
  width: 100%;
}
nav a:not(.active):hover::after {
  animation: showup .2s linear;
}

section:not(.sub-header, .footer-section) {
  height: fit-content;
  width: var(--page-width);
  margin: auto;
  margin-top: 7rem;
  background-color: var(--ligther-grey);
}
section:not(.sub-header, .footer-section) > p:first-child {
  margin-top: 14rem;
}
.cards {
  display: flex;
  flex-direction: row;
  border-radius: 5px;
  background-color: var(--bg-cards);
  overflow: hidden;
}
.cards:hover img {
  -webkit-transform: scale(1.1); 
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.card-one .description {
  height: 20.875rem;
  background-color: var(--bg-card-one);
}
.card-two .description {
  width: 25.3125rem;
  background-color: var(--bg-card-two);
}
.card-three .description {
  width: 25.3125rem;
  background-color: var(--bg-card-three);
}
.card-four .description {
  background-color: var(--bg-card-four);
}

.cards:not(.coming-soon) .description.pink {
  background-color: var(--pink);
}
.cards:not(.coming-soon) .description.yellow {
  background-color: var(--yellow);
}
.cards:not(.coming-soon) .description.skyblue {
  background-color: var(--sky-blue);
}
.card-one img {
  width: 263px;
  margin: auto;
}
.card-two img {
  margin: auto auto 0;
  width: 273px;
  height: 299px;
}
.card-three img {
  margin: auto auto 0;
  width: 270px;
  height: 285px;
}
.cards .description + img {
  z-index: 0;
}
.cards .description {
  z-index: 1;
  text-align: left;
  height: 20.875rem;
  min-width: 26.0625rem;
}

.card-four .description,
.card-four img  {
  width: 41.625rem;
  height: 23.4375rem;
}
.card-four img  {
  width: 37.0625rem;
}

.logo {
  top: 0rem;
  left: 0;
  width: 50px;
  height: 71px;
  z-index: 10;
}
header h1 a {
  top:0rem;
  left:0;
  display: block;
  width: 50px;
  height: 71px;
}
.footer-section .logo {
  width: 41px;
  height: 58px;
  top: 0;
  margin: 0 0 4rem;
  z-index: 10;
}
.header-container {
  z-index: 10;
  display: flex;
  width: var(--page-width);
  margin:  auto;
}
.header-container .logo,
.header-container #nav-menu-icon
{
  position: absolute;
  z-index: 10;
}
.header-container nav {
  z-index: 9;
}
.section-title {
  padding-bottom: 3rem;
  font-family: "Work Sans", sans-serif;
  font-weight: var(--extrabold);
  font-size:2.5rem;
}
.tags {
  font-size: 0.9rem;
  text-transform:uppercase;
  list-style: none;
  display: flex;
  gap: 1rem;
}
.tags li {
  font-family: "Poppins", sans-serif;
  font-weight: var(--semibold);
  background-color: white;
  border-radius: 5px;
  padding: 4px 6px;
}
.card-one {
  grid-row: 2 / 4;
}
.card-two {
  grid-row: 2;
}
.card-three {
  grid-row: 3;
}
.card-four {
  grid-row: 4;
  grid-column: 1 / 3;
  height: fit-content;
}
.description,
.experience {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 4rem;
}
.description .tags,
.experience .tags {
  order: 1;
  margin-bottom: 1.5rem;
}
.description h3 {
  order: 2;
  font-size: 2.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: var(--bold);
  margin-bottom: .75rem;
}
.description p {
  order: 3;
  font-size: 1.1rem;
  margin-bottom: auto;
}
.cards.experience {
  height: 20.875rem;
}
.experience {
  grid-row: 2;
  background-color: #1A1B1E;
}
.experience img {
  display: flex;
  max-width: 326px;
  max-height: 95px;
  margin: auto auto auto;
}
.experience h3 {
  order: 2;
  margin: auto;
}
.experience .button-links {
  align-self: start;
  order: 3;
}
.coming-soon {
  background-color: #C6C6C6;
}
.coming-soon .description {
  background-color: #C6C6C6;
}
.coming-soon h3 {
  filter: grayscale();
}
.coming-soon h3:not(:not(.experience h3)) {
  margin: 1.5rem auto auto;
}
.coming-soon img {
  filter: grayscale();
}
.coming-soon a {
  display: none;
  pointer-events: none;
}
.coming-soon::after {
  content: "Coming soon";
  position: absolute;
  z-index: 1;
  top: 0rem;
  right: 0rem;
  background-color: #020202;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: var(--bold);
  font-size: 1rem;
  width: 7rem;
  padding: 0.53125rem 0.875rem;
  border-radius: 0 5px 0 2.7rem;
}
.behance::after {
  content: url('../images/svg/behance_logo.svg');
  font-size: 2rem;
  position: absolute;
  top: 0rem;
  right: 0rem;
  background-color: #003ECB;
  color: white;
  font-size: 1rem;
  width: 2rem;
  height: 1.75rem;
  padding: 0.75rem 1.5625rem;
  border-radius: 0 5px 0 2.7rem;
}

footer {
  margin: 7rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-color: var(--bg-primary);
}
.footer-section {
  width: var(--page-width);
}
.footer-section h2 {
  margin-top: 4rem;
  padding: 0;
  font-size: 2.25rem;
  font-family: "Work Sans", sans-serif;
  font-weight: var(--semibold);
  align-self: center;
}
.footer-section:first-of-type {
  padding: 0;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
}
.footer-section:last-of-type {
  padding: 0;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: row;
}
.footer-section .to-top {
  position: relative;
  align-self: flex-end;
  top: -2.5rem;
  transition: all .5s;
  padding: 0 .15rem;
  border-radius: 5px;
}
.footer-section .to-top:hover {
  background-color: var(--yellow);
}
.footer-section .to-top:hover path {
  stroke: black;
}
hr {
  border: 1px solid var(--hr-color);
  width: var(--page-width);
  margin: 2rem auto;
}
.copyright {
  font-size: 0.8rem;
  margin: 1rem auto auto 1rem;
  width: fit-content;
  color: var(--copyright-color);
}
.button-links.mailto-link {
  margin: -0.75rem auto 0;
  font-size: 1.5rem;
  /* background-color: var(--sky-blue); */
}
.button-links.mailto-link:hover span {
  color: black;
}
.button-links.mailto-link .wave {
  background-color: var(--yellow);
}
.button-links.mailto-link .wave::before {
  background-color: var(--yellow);
}
.button-links {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  font-size: 1rem;
  text-decoration: none;
  background-color: white;
  border: solid 3px black;
  order: 4;
}
.button-links span {
  color: black;
  z-index: 1;
  display: flex;
  gap: .5rem;
  transition: all 1s;
  font-family: "Poppins", sans-serif;
  font-weight: var(--semibold);
}
.button-links:not(.mailto-link,.download) {
  padding-right: 8px;
}
.button-links:not(.mailto-link) span::after {
  content: "";
  display: flex;
  position: relative;
  margin: 4.5pt 0 0;
  right: 0;
  width: 16pt;
  height: 14pt;
  -webkit-mask: url('../images/svg/arrow.svg') no-repeat;
  -moz-mask: url('../images/svg/arrow.svg') no-repeat;
  mask: url('../images/svg/arrow.svg') no-repeat;
  background-color: black;
  transition: all 1s;
}
.button-links .wave {
  position: absolute;
  top: calc(100% + var(--waves-height));
  left: 0;
  width: 100%;
  height: 100%;
  transition: .75s;
}
.button-links .wave::before {
  content: "";
  position: absolute;
  top: calc( 1pt + var(--waves-height) * -1);
  left: 0;
  width: 100%;
  height: var(--waves-height);
  -webkit-mask: url('../images/svg/waves3.svg');
  -moz-mask: url('../images/svg/waves3.svg');
  mask: url('../images/svg/waves3.svg');
  animation: waves 0.5s linear infinite;
}

.button-links:hover .wave {
  top: 0;
}
.button-links:hover span {
  color: white;
}
.button-links:hover:not(.mailto-link) span::after {
  background-color: white;
}
.experience .button-links:hover {
  border: solid 3px white;
}

@keyframes waves {
  0% {
    mask-position: 0px 0px;
  }
  100% {
    mask-position: var(--waves-width) 0px;
  }
}

.button-links .wave,
.button-links .wave::before {
  background-color: black;
}
.small-header {
  height: 8.9rem;
}

.mouse-cursor,
.mouse-cursor2 {
  --mouse-1-x: -4px;
  --mouse-1-y: 13px;
  --mouse-2-x: 12px;
  --mouse-2-y: 30px;
  z-index: 999;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.mouse-cursor {
  -webkit-transform: translate(var(--mouse-1-x), var(--mouse-1-y)); 
  -moz-transform: translate(var(--mouse-1-x), var(--mouse-1-y));
  -o-transform: translate(var(--mouse-1-x), var(--mouse-1-y));
  transform: translate(var(--mouse-1-x), var(--mouse-1-y));
  border: 1px solid black;
  height: 2.5rem;
  width: 2.5rem;
  transition: .1s;
}
.mouse-cursor2 {
  -webkit-transform: translate(var(--mouse-2-x), var(--mouse-2-y)); 
  -moz-transform: translate(var(--mouse-2-x), var(--mouse-2-y));
  -o-transform: translate(var(--mouse-2-x), var(--mouse-2-y));
  transform: translate(var(--mouse-2-x), var(--mouse-2-y));
  background-color: var(--yellow);
  height: .5rem;
  width: .5rem;
  transition: .15s;
}

.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  order: 2;
  column-gap: 3rem;
  align-self: flex-end;
  margin-top: -12rem;
  margin-bottom: 8rem;
}
.social-links .logos {
  width: 2rem;
  height: 2rem;
  background-color: white;
}
.social-links .logo-dribble {
  -webkit-mask: url('../images/svg/dribble_logo.svg') no-repeat;
  -moz-mask: url('../images/svg/dribble_logo.svg') no-repeat;
  mask: url('../images/svg/dribble_logo.svg') no-repeat;
}
.social-links .logo-behance {
  -webkit-mask: url('../images/svg/behance_logo.svg') no-repeat;
  -moz-mask: url('../images/svg/behance_logo.svg') no-repeat;
  mask: url('../images/svg/behance_logo.svg') no-repeat;
}
.social-links .logo-linkedin {
  -webkit-mask: url('../images/svg/linkedin_logo.svg') no-repeat;
  -moz-mask: url('../images/svg/linkedin_logo.svg') no-repeat;
  mask: url('../images/svg/linkedin_logo.svg') no-repeat;
}
.social-links .logo-instagram {
  -webkit-mask: url('../images/svg/instagram_logo.svg') no-repeat;
  -moz-mask: url('../images/svg/instagram_logo.svg') no-repeat;
  mask: url('../images/svg/instagram_logo.svg') no-repeat;
}
.social-links a:hover {
  -webkit-transform: scale(1.1); 
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.social-links .logos:hover {
  background-color: var(--yellow);
}

.sub-header .social-links {
  position: relative;
  margin-top: 2rem;
  align-self: center;
  column-gap: 4.2rem;
}
.sub-header .social-links .logos {
  width: 2.9375rem;
  height: 2.9375rem;
  mask-origin: view-box;
  mask-size: 2.9375rem;
}
.footer-section .social-links {
  position: relative;
  align-self: flex-end;
  margin: .5rem 0 auto auto;
}
#about-page main section:not(.sub-header) {
  width: 65.5rem;
}
#about-page p + p {
  margin-top: 2rem;
}
.sub-header .img-container {
  height: 22.6875rem;
  width: fit-content;
  align-self: flex-end;
  position: absolute;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  right: -9.5rem;
  top: -1rem;
}
.sub-header .img-container img {
  height: 98%;
  border-radius: 24px;
  right: 0;
  top: .5rem;
  z-index: 1;
}
.sub-header .img-container::before,
.sub-header .img-container::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 24px;
}
.sub-header .img-container::before {
  right: -.75rem;
  top: .75rem;
  background-color: var(--yellow);
  transform: rotate(5deg);
}
.sub-header .img-container::after {
  right: 1rem;
  top: 0;
  background-color: var(--pink);
  transform: rotate(-5deg);
}

#about-page .sub-header h2,
#about-page .sub-header p,
.sub-header .social-links {
  text-align: left;
  left: calc(-1 * (65.5rem - 42.875rem) / 2);
  width:42.875rem;
}

#about-page .sub-header p {
  margin-top: 2rem;
}
.sub-header p a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .7rem;
}
.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.centered + .download{
  margin-top: 2rem;
}
#selected-work {
  display: grid;
  gap: 1.5rem;
  grid-template-rows: 5rem 20.875rem 20.875rem 23.4375rem;
  grid-template-columns: 30.75rem 46.5625rem;
}
#selected-work .card-one {
  flex-direction: column-reverse;
}
#experiences {
  display: grid;
  grid-template-rows: 5rem 20.875rem;
  grid-template-columns: 25.5rem 25.5rem 25.5rem;
  gap: 1.1rem;
}
#side-project {
  display: grid;
  gap: 1.5rem;
  grid-template-rows: 5rem 20.875rem;
  grid-template-columns: 46.5625rem 30.75rem ;
}
#selected-work h2 {
  grid-row: 1;
}
#side-project h2 {
  grid-row: 1;
}
#side-project .card-one .description {
  background-color: var(--sky-blue);
}
#side-project .card-one {
  grid-row: 2;
}
#side-project .card-one img {
  grid-row: 2;
  width: auto;
  margin: auto;
  max-height: 20.3rem;
}
#selected-work .card-three img  {
  width: auto;
  margin: auto;
  max-height: 20.3rem;
}
#side-project .card-two {
  grid-row: 2;
}
#side-project .card-two .description {
  width: 30.75rem;
}
#resume img {
  width: var(--page-width);
}
.download {
  font-size: 1.5rem;
  margin: 5.25rem auto 0;
  border: solid 4px black;
}
.download span {
  font-weight: var(--bold);
}
.button-links.download span::after {
  margin: 9pt 0 0 6pt;
  -webkit-transform: scale(1.5); 
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

/* Dropdown Button */
.dropdown-button {
  display: flex;
  align-items: center;
  top: 1.1rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
}
.dropdown-button span {
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

/* Dropdown button on hover & focus */
.dropdown-button:not(.mobile-version):hover,
.dropdown-button:not(.mobile-version):focus
{
  scale: 1.1;
}
/* Dropdown Content (Hidden by Default) */
.languages-dropdown ul {
  position: absolute;
  /* display: none; */
  opacity: 0;
  flex-direction: column;
  list-style: none;
  text-transform: capitalize;
  color: white;
  padding: 1rem .25rem;
  margin: 0;
  width: 4rem;
  top: 2.75rem;
  left: -1rem;
  text-align: center;
  align-items: center;
  background-color: var(--dark-blue);
  transition: opacity .1s;
  z-index: 1;
  border-radius: 5px;
}
/* Links inside the dropdown */
.languages-dropdown ul li {
  background-color: var(--dark-blue);
  padding: 2px;
  text-align: center;
  margin: auto;
  text-decoration: none;
  font-size: 1.125rem;
  font-family: "Work Sans", sans-serif;
  font-weight: var(--medium);
  display: block;
  width: 2rem;
  height: 2rem;
}

.languages-dropdown ul li:not(.active):hover::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 0;
  background-color: var(--yellow);
  height: 2px;
  width: 100%;
  /* animation: showup .1s linear; */
}
/* Change color of dropdown links on hover */
.languages-dropdown ul li.active {
  color: var(--yellow);
  font-weight: var(--bold);
}
.languages-dropdown ul li.active::after {
  content: "";
  display: block;
  position: relative;
  top: .125rem;
  left: 0;
  background-color: var(--yellow);
  height: 4px;
  width: 100%;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
ul.show {
  display:flex;
  opacity: 1;
}
.flag-en {
  content: url('../images/svg/flag_en.svg');
  animation: showup .1s linear;
}
.lang-en {
  content: "en";
  text-transform: uppercase;
}
.lang-fr {
  content: "fr";
  text-transform: uppercase;
}

.flag-fr {
  content: url('../images/svg/flag_fr.svg');
  animation: showup .1s linear;
}


.button-links.clicked span::after {
  animation: goto .3s ease-in;
} 
#project-page-vannes main .sub-header {
  background-image: url("../images/png/projects/vannes/header-bg.png?1.0");
  background-color: #EBEBEA;
}
#project-page-dailyui main .sub-header {
  background-image: url("../images/png/projects/dailyui/header-bg.png?1.1");
  background-color: #B4E1F1;
}
#project-page-barathon main .sub-header {
  background-image: url("../images/png/projects/barathon/header-bg.png?1.1");
  background-color: black;
}
#project-page-streetriders main .sub-header {
  background-image: url("../images/png/projects/streetriders/header-bg.png?1.1");
  background-color: #EDEEEF;
}
#project-page-onepoint main .sub-header {
  background-image: url("../images/png/experiences/onepoint/header-bg.png");
  background-color: #2B2B2B;
}

.project {
  --page-width: 53.25rem
}

.projects .project {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.projects main .sub-header {
  padding: 0;
  z-index: 1;
  width: 100vw;
  height: 34.25rem;
  overflow: hidden;
  background-size: auto 34.25rem;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 21px rgba(0,0,0,0.11),
  inset 0px 4px 4px rgba(0,0,0,0.25);
  /* opacity: 1;
  -webkit-transition: background-image .5s ease-in;
  -moz-transition: background-image .5s ease-in;
  -o-transition: background-image .5s ease-in;
  -ms-transition: background-image .5s ease-in;
  transition: background-image .5s ease-in; */
  ;
}
.projects .project h2 {
  order: 1;
  margin: 4rem 0;
  padding: 0;
}
.projects .project-summary {
  order: 2;
  align-self: flex-start;
  display: flex;
  flex-direction: row;
  width: var(--page-width);
  height: fit-content;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 4rem;
}
.projects .project-summary h3 {
  margin-top: 0;
}
.experiences .project-summary {
  margin-bottom: 0rem;
}
.project article {
  order: 3;
}
.project article p:not(:last-child) {
  margin-bottom: 2rem;
}
.project article p,
.project article li {
  font-size: 1.125rem;
}
.project article p strong {
  background-color: var(--light-purple);
  font-weight: var(--regular);
}
.project article img {
  max-width: var(--page-width);
}
.project article video {
  width: var(--page-width);
}
.project-summary ul {
  list-style: none;
  margin-top: 0.75rem;
}

.project article:not(.overview) h3:not(.project .project-summary h3) {
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.project article.overview h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.experiences article.overview h3 {
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.experiences article img +  p,
.experiences article p + img {
  margin-top: 2rem;
}

.projects .discover-more {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projects .discover-more .container {
  display: flex;
  flex-direction: row;
  height: 26.625rem;
  gap: 3rem;
}
.projects:not(.experiences) .discover-more .container .cards {
  flex-direction: column-reverse;
  height: 26.625rem;
  width: 22.25rem;
}
.projects:not(.experiences) .discover-more .cards .description {
  padding: 1.5rem 2rem;
  height: 11.25rem;
}
.projects:not(.experiences) .discover-more .cards .description .tags li {
  font-size: 0.75rem;
  padding: 1px 6px;
}
.projects:not(.experiences) .discover-more .cards .description h3 {
  font-size: 1.5rem;
}
.projects:not(.experiences) .discover-more .container .cards img {
  max-height: 13.25rem;
  width: auto;
  margin: auto;
}

.project article p a {
  background-color: var(--yellow);
  text-decoration: none;
  color: black;
  text-decoration: underline black;
}
.project article p a:hover {
  font-weight: var(--medium);
}

.discover-more .button-links {
  margin: 0;
  padding: 0;
  content: "";
  position: absolute;
  height: 26.625rem;
  width: 22.25rem;
  left: 0rem;
  top: -15.375rem;
  background-color: transparent;
  border: none;
}
.discover-more .button-links span,
.discover-more .button-links span::after,
.discover-more .button-links .wave,
.discover-more .button-links .wave::before {
  display: none;
}

#resume-page .sub-header {
  padding: 0;
  height: 0;
}

#barathon img {
  max-height: 15.5rem;
  height: 100%;
  width: auto;
  margin: 0;
}
#street-riders img {
  margin: auto auto 0;
}

.demo-gif {
  width: var(--page-width);
}
.projects ul:not(.project-summary ul, .cards ul) {
  padding-left: 1rem;
}
.projects ul:not(.project-summary ul, .cards ul) + h4,
.projects ul:not(.project-summary ul, .cards ul) + p {
  margin-top: 2rem;
}
.projects h4,
.projects ul:not(.project-summary ul, .cards ul) {
  font-size: 1.125rem;
}
.projects h4 {
  font-weight: var(--bold);
}

#project-page-streetriders article p + img + p,
#project-page-streetriders article img + img + p  {
  margin-top: 4rem;
}
#project-page-streetriders article img + img {
  margin-top: 2rem;
}

@keyframes showup {
  0% {
    -webkit-transform: scale(0); 
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  75% {
    -webkit-transform: scale(1.25); 
    -moz-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1); 
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes goto {
  0% {
    left: -.2rem;
  }
  75% {
    left: .8rem;
  }
  100% {
    left: 0rem;
  }
  
}