@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Epilogue";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Epilogue-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Epilogue";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Epilogue/Epilogue-Italic-VariableFont_wght.ttf") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.woff2") format("woff2");
}
:root {
  --text-color: #181818;
  --text-color-on-dark: #e6e6e6;
  --background-color: #dfdfdf;
  --background-color-card-and-elements: #da5a3b;
  --background-color-secondary-section: #4d4946;
  --gradient-primary-start: #ddb11f;
  --gradient-primary-end: #da5a3b;
  --gradient-primary-signature: linear-gradient(135deg, #ddb11f 0%, #da5a3b 75%);
  --color-outline-variant: rgba(24, 24, 24, 0.15);
  --color-shadow: rgba(24, 24, 24, 0.06);
}

:root {
  --font-headline: Manrope, sans-serif;
  --font-text: Epilogue, sans-serif;
  --font-utility: Inter, sans-serif;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #da5a3b;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.15s ease, background-color 0.2s ease;
  transform: translate(-50%, -50%);
}
#custom-cursor.active {
  background-color: #da5a3b;
  transform: translate(-50%, -50%) scale(1.2);
}
#custom-cursor.active .cursor-label {
  opacity: 1;
  transform: scale(1);
}
#custom-cursor .cursor-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #da5a3b;
  color: #e6e6e6;
  padding: 4px 10px;
  border-radius: 4px 10px 10px 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.project-item, .btn-primary, header a, html, body {
  cursor: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: #dfdfdf;
  color: #181818;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-size: 2.75rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}
h1 {
  font-weight: 900;
  line-height: 1.1;
  color: #181818;
  letter-spacing: 0rem;
  word-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3.5rem;
  }
}
h2 {
  font-weight: 900;
  line-height: 1.1;
  color: #181818;
  letter-spacing: 0rem;
  word-wrap: break-word;
}

h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}
h3 {
  font-weight: 700;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
}

h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
}

h5 {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
}

h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #181818;
  letter-spacing: 0rem;
}

p {
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
}

a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #181818;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0.25rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.75rem - 2px) 2.5rem;
  background: transparent;
  color: #da5a3b;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: 2px solid #da5a3b;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(200px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), #da5a3b, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #da5a3b;
  background-color: rgba(218, 90, 59, 0.05);
  box-shadow: 0 5px 20px rgba(218, 90, 59, 0.2);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
  opacity: 1;
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  font-family: "Epilogue", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
  font-weight: 700;
  color: #da5a3b;
  text-decoration: none;
  border-bottom: 2px solid #da5a3b;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.btn-editorial:hover {
  color: #da5a3b;
  opacity: 0.8;
}

.project-item {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
}

.card-portfolio {
  background-color: transparent;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: none;
}
.card-portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(400px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), #da5a3b, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card-portfolio {
  transition: box-shadow 0.3s ease;
}
.card-portfolio__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 0;
  filter: grayscale(0%);
  transition: filter 0.4s ease;
  aspect-ratio: 6/4 !important;
}
.card-portfolio__body {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 0;
  background-color: transparent;
  opacity: 1;
  z-index: 1;
}
.card-portfolio__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
  margin-bottom: 0.5rem;
  color: #181818;
}
.card-portfolio__description {
  font-family: "Epilogue", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #181818;
  text-align: left;
  margin-bottom: 1.4rem;
  color: #181818;
}
.card-portfolio .chip {
  background-color: #da5a3b;
  color: #181818;
  align-self: flex-start;
}

.project-item:hover .card-portfolio {
  box-shadow: 0px 20px 40px rgba(24, 24, 24, 0.06);
}
.project-item:hover .card-portfolio::before {
  opacity: 1;
}
.project-item:hover .card-portfolio__image {
  filter: grayscale(0%);
}

.list-editorial {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-editorial li {
  margin-bottom: 1.4rem;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
  padding-inline: 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
.list-editorial li:hover {
  background-color: rgba(218, 90, 59, 0.5);
}

.input-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.input-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(24, 24, 24, 0.15);
  border-radius: 0;
  padding: 0.75rem 0;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
  color: #181818;
  outline: none;
  transition: border-color 0.25s ease, border-width 0.25s ease;
}
.input-field::-moz-placeholder {
  color: #181818;
  opacity: 0.4;
}
.input-field::placeholder {
  color: #181818;
  opacity: 0.4;
}
.input-field:focus {
  border-bottom: 2px solid #181818;
}

.chip {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #da5a3b;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  color: #e6e6e6;
  cursor: default;
  transition: background-color 0.2s ease;
}
.chip:hover {
  background-color: #da5a3b;
}
.chip--active {
  background-color: #181818;
  color: #e6e6e6;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(223, 223, 223, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
}
.nav-bar__logo {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #181818;
  text-decoration: none;
}
.nav-bar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-bar__links a {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  font-weight: 500;
  color: #181818;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-bar__links a:hover, .nav-bar__links a.is-active {
  color: #181818;
}

.surface-base {
  background-color: #dfdfdf;
}

.surface-low {
  background-color: #4d4946;
}

.surface-card {
  background-color: #da5a3b;
}

.section-break {
  padding-block: 7rem;
}
.section-break--large {
  padding-block: 8.5rem;
}

.layout-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .layout-editorial {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}
.layout-editorial__body {
  padding-top: 0;
}
@media (min-width: 768px) {
  .layout-editorial__body {
    padding-top: 2rem;
  }
}

body {
  padding-bottom: 12rem !important;
}
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
    padding-left: 8rem;
  }
}

.color-primary {
  color: #181818;
}

.gradient-text {
  background: linear-gradient(135deg, #ddb11f 0%, #da5a3b 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.full-width {
  max-width: unset !important;
  margin: 0 auto;
}

.wide-width {
  max-width: 1100px;
  margin: 0 auto;
}

.content-width {
  max-width: 700px;
  margin: 0 auto;
}

html {
  overflow-x: hidden;
}

.flex-group {
  display: flex;
}

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

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

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

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

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

.gap-6 {
  gap: 2rem;
}

.padding--0-6 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.padding--16-0 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.container {
  height: 100%;
  width: 100%;
}

.side-nav {
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(180, 180, 180, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 9999px;
  border: 1px solid rgba(230, 230, 230, 0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  overflow: hidden;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: row;
  padding: 0.5rem 2rem;
  gap: 2rem;
  width: calc(100% - 4rem);
  justify-content: center;
}
.side-nav.header--hidden {
  transform: translate(-50%, 150%);
  opacity: 0;
}
@media (min-width: 768px) {
  .side-nav {
    top: auto;
    bottom: 2.5rem;
    left: 2.5rem;
    transform: none;
    flex-direction: column;
    width: 4.5rem;
    padding: 2rem 0.5rem;
    gap: 2rem;
  }
  .side-nav.header--hidden {
    transform: translateX(-150%);
    opacity: 0;
  }
}
.side-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(400px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), #da5a3b, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.side-nav__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .side-nav__list {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}
.nav-link .nav-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(48%) sepia(40%) saturate(1142%) hue-rotate(329deg) brightness(91%) contrast(92%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-link:hover .nav-icon, .nav-link.is-active .nav-icon {
  transform: scale(1.1);
  filter: invert(53%) sepia(87%) saturate(1435%) hue-rotate(331deg) brightness(95%) contrast(101%);
}

nav li {
  list-style: none;
}
nav li a {
  color: #181818 !important;
}
nav li a:hover {
  color: #181818 !important;
}

.hero {
  height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(24, 24, 24, 0.3), transparent 60%);
  z-index: 0;
  pointer-events: none;
  transform: translate(25%, 50%);
}
.hero .container {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.hero .container > div {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 8rem !important;
}
@media (min-width: 768px) {
  .hero .container > div {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .hero .container {
    position: relative;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.hero img {
  filter: grayscale(100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero img {
    position: static;
    width: auto;
    height: auto;
    max-width: 45%;
    max-height: 80vh;
  }
}

.project-slider {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1.4rem;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .project-slider {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #181818 rgba(24, 24, 24, 0.1);
  }
  .project-slider::-webkit-scrollbar {
    display: block;
    height: 4px;
  }
  .project-slider::-webkit-scrollbar-track {
    background: rgba(24, 24, 24, 0.05);
    border-radius: 9999px;
  }
  .project-slider::-webkit-scrollbar-thumb {
    background: #181818;
    border-radius: 9999px;
  }
}
.project-slider article {
  flex: 0 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .project-slider article {
    position: sticky;
    top: 6rem;
    background-color: #dfdfdf;
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .project-slider article {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
}
@media (min-width: 1200px) {
  .project-slider article {
    flex: 0 0 30%;
  }
}

#tech-marquee {
  width: calc(100% - 4rem);
  overflow: hidden;
  background-color: rgba(180, 180, 180, 0.8);
  border-radius: 15px;
  border: rgba(24, 24, 24, 0.5) 1px solid;
  padding: 1.4rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 240s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  color: #181818;
  margin: 0 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 1;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.timeline {
  position: relative;
  border-left: 2px solid rgba(24, 24, 24, 0.2);
  padding-left: 2.5rem;
  margin-left: 0.5rem;
}
.timeline .timeline-item {
  position: relative;
  margin-bottom: 4rem;
}
.timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-2.5rem - 7px);
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #181818;
  border-radius: 9999px;
  box-shadow: 0 0 15px #181818;
}
.timeline .timeline-item .timeline-date {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  color: #181818;
  display: block;
  margin-bottom: 0.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
}
.bento-grid .bento-item {
  background: rgba(218, 90, 59, 0.4);
  border: 1px solid rgba(24, 24, 24, 0.05);
  border-radius: 0.75rem;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}
.bento-grid .bento-item:hover {
  border-color: rgba(24, 24, 24, 0.3);
}
@media (min-width: 768px) {
  .bento-grid .bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (min-width: 768px) {
  .bento-grid .bento-item--medium {
    grid-column: span 2;
  }
}
.bento-grid .bento-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  color: #181818;
  margin-bottom: 0.25rem;
}
.bento-grid .bento-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.4rem;
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem 2rem;
}
@media (max-width: 767px) {
  .portfolio-grid .project-item {
    position: sticky;
    top: 6rem;
    background-color: #dfdfdf;
    padding-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  margin-top: 1.4rem;
}
.slideshow-container .slideshow-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 6/4;
  overflow: hidden;
  border-radius: 0.75rem;
}
.slideshow-container .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  z-index: 1;
}
.slideshow-container .slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slideshow-container .slideshow-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
.slideshow-container .slideshow-nav .btn-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}
.slideshow-container .slideshow-nav .btn-nav:hover {
  transform: scale(1.2);
}
.slideshow-container .slideshow-nav .btn-nav img {
  width: 32px;
  height: 32px;
  filter: brightness(0);
}

@media (min-width: 768px) {
  .sticky-side {
    position: sticky;
    top: 8rem;
  }
}

@media (max-width: 767px) {
  .page-photography .card-portfolio__image {
    aspect-ratio: auto !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-photography .slideshow-inner {
    aspect-ratio: 2/3 !important;
  }
}/*# sourceMappingURL=styles.css.map */