@charset "UTF-8";
/* Eric Meyer’s Reset CSS v2.0 (https://meyerweb.com/eric/tools/css/reset/) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Corriger le comportement des blocs */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Supprimer le comportement des listes */
ol, ul {
  list-style: none;
}

/* Supprimer l'héritage des citations */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* Correction des tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

#burger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  min-height: 60px;
  min-width: 65px;
  z-index: 9999;
  position: relative;
}
@media (min-width: 1024px) {
  #burger {
    display: none;
  }
}

.burger-wrapper {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #FFF;
  padding: 20px;
  border-radius: 0 0 10px 0;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .burger-wrapper {
    display: none;
  }
}

.burger-wrapper > span {
  background-color: #000;
  display: inline-block;
  min-height: 3px;
  width: 25px;
  transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing), background var(--animation-timing);
}

#burger:checked ~ .burger-wrapper > span:nth-child(2) {
  opacity: 0;
  width: 0;
}

#burger:checked ~ .burger-wrapper span:nth-child(1) {
  translate: 0 9px 0;
  rotate: 45deg;
}

#burger:checked ~ .burger-wrapper span:nth-child(3) {
  translate: 0 -6px 0;
  rotate: -45deg;
}

#burger:checked ~ .nav-list {
  translate: 0;
}

.nav-container:has(input:checked) {
  border-radius: 0 0 20px 0;
  background: var(--Color, #FFF);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
}

#burger:checked ~ .burger-wrapper {
  background: #FFF;
  padding: 20px;
  border-radius: 0;
  box-shadow: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.none {
  display: none;
}

.sr-only, .nav .nav-list-link-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.not-sr-only, .nav:hover .nav-list-link-text {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.flex, .nav-list-link {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1 1 0;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.content-start {
  align-items: flex-start;
}

.content-center {
  align-items: center;
}

.content-end {
  align-items: flex-end;
}

.content-between {
  align-items: space-between;
}

.content-around {
  align-items: space-around;
}

.content-evenly {
  align-items: space-evenly;
}

.place-content-start {
  place-content: start;
}

.place-content-center {
  place-content: center;
}

.place-content-end {
  place-content: end;
}

.place-content-between {
  place-content: space-between;
}

.place-content-around {
  place-content: space-around;
}

.place-content-evenly {
  place-content: space-evenly;
}

@font-face {
  font-family: "League Spartan";
  src: url("/wp-content/themes/portfolio/resources/fonts/LeagueSpartan-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Bold";
  src: url("/wp-content/themes/portfolio/resources/fonts/TitilliumWeb-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Regular";
  src: url("/wp-content/themes/portfolio/resources/fonts/TitilliumWeb-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Beth Ellen Regular";
  src: url("/wp-content/themes/portfolio/resources/fonts/BethEllen-Regular.ttf");
  font-display: swap;
}
.font-title, .single-project-content-text > p > strong, .legal-li-title:before {
  font-family: "League Spartan", sans-serif;
}

.font-span {
  font-family: "Titillium Web Bold", sans-serif;
}

.font-text, body, .single-project-content-text > p {
  font-family: "Titillium Web Regular", sans-serif;
}

.font-sm, .about-fig:after {
  font-family: "Beth Ellen Regular", sans-serif;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm, .article-presentation > p, .error {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg, .error-page-link, .error-page-text, .about-content-description > p, .field-label, .legal-li-description {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl, .archive-filter-tag-link, .legal-description {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl, .about-content-detail, .contact-footer-submit, .success {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl, .legal-li-title:before, .legal-li-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl, .error-page-title, .title, .page-form-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.text-9xl {
  font-size: 8rem;
  line-height: 1;
}

:root {
  --background-color: #FFFFF0;
  --foreground-color: #FFFFFF;
  --text-color: #1E1E1E;
  --success: #6D733A;
  --error: #cc0000;
}

:root {
  --animation-timing: 0.3s ease-in-out;
  --bouncing-timing: 10s ease-in-out;
  --slide-timing: 30s linear infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes upanddown {
  0% {
    top: 0;
  }
  20% {
    top: -125px;
  }
  50% {
    top: -125px;
  }
  80% {
    top: -125px;
  }
  100% {
    top: 0%;
  }
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer {
  border-top: 2px solid black;
  background: var(--background-color);
  margin: 20px 10% 0 10%;
  padding-top: 20px;
}
@media (min-width: 760px) {
  .footer {
    margin: 220px 3% 2% 3%;
  }
}
.footer-content {
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 760px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 480px) {
  .footer-content {
    gap: 2em;
  }
}
@media (max-width: 479px) {
  .footer-content {
    gap: 2em;
  }
}
.footer-section {
  gap: 1em;
  color: #000000;
}
.footer-section-title {
  font-family: "League Spartan", sans-serif;
  cursor: text;
}
.footer-section-list {
  gap: 1em;
}
.footer-section-content {
  gap: 1em;
  font-family: "League Spartan", sans-serif;
}
.footer-section-content-link {
  color: #000;
  transition: all ease-in-out 0.5s;
  font-family: "League Spartan", sans-serif;
  text-decoration: none;
}
.footer-section-content-link:hover {
  color: var(--success);
}
.footer-social {
  gap: 2em;
}
@media (min-width: 760px) {
  .footer-social {
    flex-direction: column;
  }
}
.footer-social-icon {
  width: 30px;
  height: 30px;
}

.icon {
  position: relative;
  width: 30px;
  height: 30px;
}

.icon svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover .github path {
  fill: #8C31AB;
  transition: opacity 0.3s ease;
}

.footer-social-icon-hover.instagram,
.footer-social-icon-hover.linkedin {
  opacity: 0;
}
.footer-social-icon-hover.instagram:hover,
.footer-social-icon-hover.linkedin:hover {
  opacity: 1;
}

.footer-social-icon.linkedin:hover {
  opacity: 0;
}

.footer-social-icon.instagram:hover {
  opacity: 0;
}

.legal {
  gap: 1em;
  margin: 20% 10px 5% 10px;
}
@media (min-width: 1024px) {
  .legal {
    max-width: 800px;
    margin: 5% auto;
  }
}
.legal-title {
  margin-bottom: 5%;
}
.legal-description {
  align-self: flex-start;
}
.legal-ul {
  counter-reset: step 0;
  gap: 1.5em;
}
.legal-li-title {
  counter-increment: step;
}
.legal-li-title:before {
  content: counter(step) ". ";
  color: var(--text);
}
@font-face {
  font-family: "League Spartan";
  src: url("/wp-content/themes/portfolio/resources/fonts/LeagueSpartan-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Bold";
  src: url("/wp-content/themes/portfolio/resources/fonts/TitilliumWeb-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Regular";
  src: url("/wp-content/themes/portfolio/resources/fonts/TitilliumWeb-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Beth Ellen Regular";
  src: url("/wp-content/themes/portfolio/resources/fonts/BethEllen-Regular.ttf");
  font-display: swap;
}
.font-title, .single-project-content-text > p > strong, .legal-li-title:before {
  font-family: "League Spartan", sans-serif;
}

.font-span {
  font-family: "Titillium Web Bold", sans-serif;
}

.font-text, body, .single-project-content-text > p {
  font-family: "Titillium Web Regular", sans-serif;
}

.font-sm, .about-fig:after {
  font-family: "Beth Ellen Regular", sans-serif;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm, .article-presentation > p, .error {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg, .error-page-link, .error-page-text, .about-content-description > p, .legal-li-description, .field-label {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl, .archive-filter-tag-link, .legal-description {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl, .about-content-detail, .success, .contact-footer-submit {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl, .legal-li-title, .legal-li-title:before {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl, .error-page-title, .title, .page-form-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.text-9xl {
  font-size: 8rem;
  line-height: 1;
}

.page-form {
  margin: 10% 5% 5%;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .page-form {
    max-width: 800px;
    margin: 5% auto;
  }
}
.page-form-title {
  text-align: center;
}

.success {
  color: var(--success);
  text-align: center;
}

.error {
  color: var(--error);
}

.contact-info {
  gap: 2rem;
}
.contact-container {
  gap: 2rem;
}
.contact-container-input {
  gap: 2rem;
}
.contact-footer-submit {
  padding: 18px 24px;
  border-radius: 14px;
  border: 3px solid var(--success);
  background: var(--foreground-color);
  font-family: "League Spartan", sans-serif;
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
}
.contact-footer-submit:hover {
  border: 3px solid var(--success);
  background: var(--success);
  color: var(--foreground-color);
}

.field-input {
  padding: 15px 8px;
  border-radius: 20px;
  border: 1px solid var(--success);
  font-family: "Titillium Web Regular", sans-serif;
}
.field-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--success);
}
.field-label {
  font-family: "League Spartan", sans-serif;
}
.field-fname {
  max-width: 800px;
}
.field-lname {
  max-width: 800px;
}
.field-email {
  max-width: 800px;
}
.field-txtarea {
  max-width: 800px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .header {
    max-width: 200px;
    position: fixed;
    top: 25%;
    left: 0;
  }
}

.nav {
  display: inline;
}
.nav-list {
  transition: translate 200ms ease-in-out;
  translate: -100%;
  padding: 0 20px;
  min-height: 300px;
}
@media (min-width: 1024px) {
  .nav-list {
    border-radius: 0 40px 40px 0;
    background: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    max-height: 495px;
    list-style: none;
    translate: 0;
  }
}
.nav-list-item:hover svg path {
  stroke: var(--success);
  transition: stroke 0.3s ease-in-out;
}
.nav-list-link {
  text-decoration: none;
  font-family: "Titillium Web Bold", sans-serif;
  color: var(--text-color);
  align-items: center;
  gap: 0.5em;
}
.nav-list-link:hover {
  transition: color 0.3s ease-in-out;
  color: var(--success);
}
.archive-container, .article-container {
  margin: 5%;
  display: flex;
  flex-direction: column;
  gap: 3em;
  justify-content: center;
  align-items: center;
}
@media (min-width: 760px) {
  .archive-container, .article-container {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .archive-container, .article-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.archive-filter {
  margin: 50px 60px;
}
@media (min-width: 1024px) {
  .archive-filter {
    margin: 5% 200px;
  }
}
.archive-filter-tag-list {
  display: flex;
  gap: 1em;
  align-items: center;
  flex-wrap: wrap;
}
.archive-filter-tag-item {
  background: var(--success);
  padding: 10px;
  border-radius: 15px;
  color: var(--foreground-color);
  align-self: center;
  font-weight: Bold;
  cursor: pointer;
  transition: background-color var(--animation-timing), box-shadow var(--animation-timing);
}
@media (max-width: 479px) {
  .archive-filter-tag-item {
    font-size: 0.5em;
    border-radius: 10px;
  }
}
@media (min-width: 760px) {
  .archive-filter-tag-item {
    font-size: 0.7em;
  }
}
.archive-filter-tag-item:hover {
  background-color: var(--foreground-color);
  box-shadow: 0 0 0 2px var(--success);
}
.archive-filter-tag-item--active {
  background-color: var(--foreground-color);
  box-shadow: 0 0 0 2px var(--success);
  transition: background-color var(--animation-timing);
}
.archive-filter-tag-item--active:hover {
  background-color: var(--success);
}
.archive-filter-tag-link {
  color: var(--foreground-color);
  text-decoration: none;
  transition: color var(--animation-timing);
}
.archive-filter-tag-link:hover {
  color: var(--success);
}
.archive-filter-tag-link--active {
  color: var(--success);
  transition: color var(--animation-timing);
}
.archive-filter-tag-link--active:hover {
  color: var(--foreground-color);
}

.archive-section {
  margin-top: 15%;
}
@media (min-width: 760px) {
  .archive-section {
    margin-top: 10%;
  }
}
@media (min-width: 1024px) {
  .archive-section {
    margin-top: 5%;
  }
}

.article {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: box-shadow var(--animation-timing), scale var(--animation-timing), transform var(--animation-timing);
  max-width: 300px;
  max-height: 450px;
}
.article-container {
  flex-direction: column;
  gap: 2em;
  padding: 1em 3em 2em;
}
.article-image {
  width: 280px;
  height: auto;
  margin: 5% 0;
  background-color: whitesmoke;
}
@media (min-width: 1024px) {
  .article-image {
    max-width: 350px;
    height: auto;
    max-height: 220px;
    -o-object-fit: contain;
       object-fit: contain;
    min-height: 220px;
  }
}
.article-title {
  text-decoration: none;
  color: var(--text-color);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5%;
}
.article-title-back {
  color: var(--foreground-color);
}
.article-more {
  cursor: pointer;
  font-weight: bold;
  background: var(--success);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 1em;
  color: var(--foreground-color);
  margin-bottom: 5%;
  width: -moz-fit-content;
  width: fit-content;
}
.article-presentation {
  padding: 0 1em;
}
.previous,
.next {
  margin: 10% 0;
}
.previous > a,
.next > a {
  color: var(--text-color);
  text-decoration: none;
  list-style: none;
}

.previous {
  margin-left: 7%;
}

.next {
  text-align: right;
  margin-right: 5%;
}

.project {
  margin: 5% 0;
}
.project-container {
  margin: 0 100px 0 100px;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 320px;
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: var(--foreground-color);
  color: var(--text-color);
}
.flip-card-back {
  gap: 5px;
  transform: rotateY(180deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.flip-card-back-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  background-color: #1F1013;
  color: var(--foreground-color);
  min-height: 220px;
  max-height: 220px;
  margin: 20px 10px 0 10px;
}

.tag-list {
  display: flex;
  gap: 1em;
  align-items: center;
  flex-wrap: wrap;
}
.tag-item {
  background: var(--success);
  padding: 10px;
  border-radius: 15px;
  color: var(--foreground-color);
  align-self: center;
  font-weight: Bold;
  cursor: pointer;
}
@media (max-width: 479px) {
  .tag-item {
    font-size: 0.5em;
    border-radius: 10px;
  }
}
@media (min-width: 760px) {
  .tag-item {
    font-size: 0.7em;
  }
}

.single-project {
  margin: 20% 10% 10% 10%;
}
@media (min-width: 760px) {
  .single-project {
    margin: 10% 5%;
  }
}
@media (min-width: 1024px) {
  .single-project {
    margin: 5% 7%;
  }
}
.single-project-title {
  text-align: center;
  margin-bottom: 100px;
}
@media (min-width: 1024px) {
  .single-project-title {
    margin-bottom: 5%;
  }
}
@media (max-width: 479px) {
  .single-project-content {
    gap: 4em;
    max-width: 300px;
  }
}
@media (min-width: 760px) {
  .single-project-content {
    gap: 6em;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .single-project-content {
    gap: 9em;
  }
}
.single-project-content-text {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.single-project-content-text > p {
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  .single-project-content-text > p {
    font-size: 1.1em;
  }
}
.single-project-content-fig {
  position: relative;
  max-width: 300px;
  max-height: 225px;
  background: var(--foreground-color);
  padding: 10px 10px 60px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 300px;
}
@media (min-width: 1920px) {
  .single-project-content-fig {
    max-width: 600px;
    min-width: 600px;
    max-height: 550px;
  }
}
.single-project-content-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  min-width: 300px;
  background-color: whitesmoke;
}
.single-project-presentation {
  gap: 2em;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (min-width: 760px) {
  .single-project-presentation {
    flex-direction: row;
    justify-content: space-around;
  }
}
.single-project-presentation-content {
  gap: 1em;
}
@media (min-width: 760px) {
  .single-project-presentation-content {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .single-project-presentation-content {
    max-width: 600px;
  }
}
.single-project-colors {
  overflow-x: scroll;
}
.single-project-colors-list {
  gap: 1em;
}
.single-project-colors-item {
  padding: 20px;
  border-radius: 40px;
  color: var(--foreground-color);
  align-self: center;
  font-weight: Bold;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.single-project-colors-item :hover {
  scale: 1.2;
}
@media (max-width: 479px) {
  .single-project-colors-item {
    padding: 10px;
    border-radius: 15px;
    font-size: 0.9rem;
  }
}
.single-project .single-project-colors-item.light-bg {
  color: #000;
  border: 2px solid #000;
}
.single-project .single-project-colors-item.dark-bg {
  color: #fff;
  border: 1px solid #fff;
}
.single-project-gallery {
  gap: 2em;
}
@media (min-width: 760px) {
  .single-project-gallery {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .single-project-gallery {
    flex-direction: row;
    gap: 5em;
    justify-content: space-around;
  }
}
@media (min-width: 760px) {
  .single-project-gallery-sticky {
    position: sticky;
    top: 10%;
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 1024px) {
  .single-project-gallery-sticky {
    position: sticky;
    top: 10%;
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.single-project-gallery-display {
  gap: 2em;
}
.single-project-gallery-frame {
  background: var(--foreground-color);
  padding: 10px 10px 60px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 300px;
}
@media (min-width: 1024px) {
  .single-project-gallery-frame {
    max-width: 400px;
    max-height: 300px;
    min-height: 300px;
  }
}
@media (min-width: 1920px) {
  .single-project-gallery-frame {
    max-width: 600px;
    min-width: 600px;
    max-height: 480px;
  }
}
.single-project-gallery-layout {
  max-width: 300px;
  max-height: 225px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
@media (min-width: 1024px) {
  .single-project-gallery-layout {
    max-width: 400px;
    width: 100%;
    max-height: 300px;
    min-height: 300px;
  }
}
@media (min-width: 1920px) {
  .single-project-gallery-layout {
    width: 100%;
    max-width: 600px;
    min-width: 600px;
    max-height: 480px;
  }
}
.single-project-gallery-scroll {
  text-align: center;
  margin-top: 5%;
}
@media (min-width: 1920px) {
  .single-project-gallery-list {
    max-width: 600px;
    min-width: 600px;
    max-height: 480px;
  }
}
.single-project-gallery-fig {
  margin-bottom: 1%;
}
@media (min-width: 1920px) {
  .single-project-gallery-fig {
    max-width: 600px;
    min-width: 600px;
    max-height: 480px;
  }
}
.single-project-gallery-img {
  width: 100%;
  max-height: 300px;
  min-height: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: whitesmoke;
}
@media (min-width: 1920px) {
  .single-project-gallery-img {
    max-width: 600px;
    min-width: 600px;
    max-height: 480px;
  }
}
.single-project-links {
  margin: 0 5%;
  width: 100%;
}
.single-project-link {
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: var(--foreground-color);
  text-decoration: none;
  color: var(--text-color);
  transition: color var(--animation-timing), background var(--animation-timing), scale var(--animation-timing);
}
.single-project-link:hover {
  scale: 1.2;
  text-align: center;
  background: var(--success);
  color: var(--foreground-color);
}
.single-project-features {
  position: relative;
  margin-top: 5%;
  gap: 2em;
  max-width: 300px;
}
@media (min-width: 760px) {
  .single-project-features {
    margin-top: 0;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .single-project-features {
    max-width: 600px;
    justify-content: flex-start;
  }
}
.single-project-features-list {
  gap: 0.6em;
}
@media (max-width: 479px) {
  .hero {
    justify-content: space-evenly;
  }
}
.hero-container {
  width: 100%;
}
.hero-fig {
  position: relative;
}
.hero-image {
  width: 100dvw;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: var(--foreground-color);
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 8.75rem;
    line-height: 1;
  }
}

.anchor {
  position: relative;
  z-index: 1;
  color: var(--foreground-color);
  text-decoration: none;
  gap: 0.2em;
  scroll-behavior: smooth;
  margin-bottom: 2%;
  cursor: pointer;
  transition: scroll-behavior var(--animation-timing), scale var(--animation-timing);
}
@media (min-width: 1024px) {
  .anchor {
    font-size: 2em;
  }
}
.anchor:after {
  cursor: pointer;
  content: "";
  display: block;
  background-image: url("/wp-content/themes/portfolio/resources/img/arrow-down-circle.svg");
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: bounce var(--bouncing-timing) infinite;
}
@media (min-width: 1024px) {
  .anchor:after {
    width: 49px;
    height: 49px;
  }
}
.anchor:hover {
  scale: 1.2;
}

.capybara {
  position: absolute;
  bottom: 2%;
  left: 10%;
  z-index: 1;
}
@media (max-width: 479px) {
  .capybara {
    bottom: 10%;
  }
}
.capybara-img {
  transform: scaleX(-1);
}
@media (max-width: 479px) {
  .capybara-img {
    width: 60%;
    height: auto;
  }
}

.project-section {
  gap: 3em;
}
.project-container {
  gap: 3em;
  flex-wrap: wrap;
  flex-direction: row;
}

.about {
  margin: 100px 7% 2% 7%;
  gap: 3em;
}
.about-front-capybara {
  position: absolute;
  top: -25%;
  z-index: -1;
  animation: upanddown var(--bouncing-timing) infinite;
}
.about-main {
  gap: 3em;
}
@media (min-width: 1920px) {
  .about-main {
    gap: 3em;
    flex-direction: row;
    justify-content: space-around;
  }
}
.about-main-content {
  gap: 3em;
}
@media (min-width: 480px) and (max-width: 759px) {
  .about-main-content {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .about-main-content {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .about-main-content {
    margin-left: 3%;
    flex-direction: row;
  }
}
@media (min-width: 1920px) {
  .about-main-content {
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
  }
}
.about-fig {
  max-width: 300px;
  max-height: 300px;
  background: var(--foreground-color);
  padding: 10px 10px 60px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  position: relative;
}
.about-fig:after {
  content: "XOXO";
  position: absolute;
  bottom: 20%;
  right: 5%;
  rotate: -30deg;
  color: var(--foreground-color);
}
.about-img {
  width: 100%;
  max-height: 300px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: whitesmoke;
}
.about-content {
  max-width: 500px;
  gap: 2em;
}
@media (max-width: 479px) {
  .about-content {
    gap: 1em;
    max-width: 300px;
  }
}
@media (min-width: 760px) {
  .about-content {
    gap: 1em;
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .about-content {
    gap: 1em;
    max-width: 600px;
  }
}
@media (min-width: 1920px) {
  .about-content {
    gap: 1em;
    max-width: 600px;
    justify-content: space-between;
  }
}
.about-content-description {
  gap: 1em;
}
@media (min-width: 480px) {
  .about-content-description > p {
    font-size: 1em;
  }
}
@media (min-width: 1920px) {
  .about-content-description > p {
    font-size: 1.5em;
    max-width: 600px;
  }
}
.about-career {
  margin: 0 7% 10% 7%;
  gap: 2em;
}
@media (max-width: 479px) {
  .about-career {
    gap: 1em;
    max-width: 300px;
  }
}
.about-career-list {
  gap: 1.5em;
}
@media (max-width: 479px) {
  .about-career-list {
    flex-direction: column;
    justify-content: space-around;
  }
}
@media (min-width: 1920px) {
  .about-career-list {
    flex-direction: column;
  }
}
.about-career-item {
  gap: 0.2em;
}
.about-knowledge {
  padding: 1em 2em;
  overflow: hidden;
  max-width: 300px;
}
@media (max-width: 479px) {
  .about-knowledge {
    margin: 0;
  }
}
.about-knowledge-list {
  gap: 2em;
  animation: slide var(--slide-timing);
  overflow: hidden;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (max-width: 479px) {
  .about-knowledge-list {
    overflow: hidden;
  }
}
.about-knowledge-list-item-img {
  width: 30px;
  height: auto;
}

.title {
  text-align: center;
}

body {
  background: var(--background-color);
}

.error-page {
  background-image: url("/wp-content/themes/portfolio/resources/img/background_capybara.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  max-width: 100dvw;
  min-height: 100vh;
  color: var(--foreground-color);
  gap: 4em;
  padding: 0 7%;
}
.error-page-title {
  text-align: center;
}
@media (min-width: 1024px) {
  .error-page-title {
    font-size: 3rem;
    line-height: 1;
  }
}
.error-page-container {
  gap: 4em;
}
@media (min-width: 1024px) {
  .error-page-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.error-page-link {
  color: var(--foreground-color);
  text-decoration: none;
}
@media (min-width: 1024px) {
  .error-page-link {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.error-page-link:hover {
  color: var(--success);
}
