@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-v38-latin_latin-ext-100.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-v38-latin_latin-ext-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-v38-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-v38-latin_latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-v38-latin_latin-ext-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-v38-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: inherit;
}

body {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #333333;
  margin: 0;
}

.page-wrapper {
  margin: 0 auto;
}

.container {
  max-width: 70rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  line-height: 1.1;
  color: #550455;
}

h1 {
  font-size: clamp(1.8rem, 1.8rem + 2.6vw, 4rem);
  margin-top: 0;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(1.5rem, 1.5rem + 2vw, 2.9rem);
}

h3 {
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
}

h5 {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #800080;
  z-index: 999;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
}
.header__logo-link {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-size: clamp(0.875rem, 1rem + 1vw, 1.25rem);
  display: inline-block;
}
@media screen and (max-width: 350px) {
  .header__lastname {
    display: none;
  }
}
.header__logo-title {
  margin: 0;
}
.header__animated {
  border-right: 2px solid white;
  animation: cursor 0.75s step-end infinite;
}
@media screen and (max-width: 21.875rem) {
  .header__animated {
    display: none;
  }
}
.header__animated.typing-complete {
  animation: none;
  border-right: none;
}

@keyframes cursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
.header__nav-list {
  display: flex;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  list-style-type: none;
}
.header__nav-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__nav-link:hover {
  background-color: #660066;
}
.header__nav-link:focus-visible {
  outline: 3px solid #FFAA00;
  outline-offset: 2px;
  background-color: #660066;
  font-weight: 600;
}
.header__nav-item--active .header__nav-link {
  font-weight: 800;
}
.header__nav-link_cta {
  background-color: white;
  color: #800080;
}
.header__nav-link_cta:hover, .header__nav-link_cta:focus-visible, .header__nav-link_cta--active {
  background-color: #f5f5f5;
  opacity: 0.9;
  outline: 3px solid #FFAA00;
  outline-offset: 2px;
}

.header__menu-toggle {
  display: none;
}

@media screen and (max-width: 59.375rem) {
  .header__menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.25rem;
    gap: 0.5rem;
    z-index: 1000;
  }
  .header__hamburger-line, .header__hamburger-line::before, .header__hamburger-line::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 3px;
    border-radius: 2px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__hamburger-line {
    position: relative;
  }
  .header__hamburger-line::before, .header__hamburger-line::after {
    position: absolute;
    left: 0;
  }
  .header__hamburger-line::before {
    top: -0.5rem;
  }
  .header__hamburger-line::after {
    top: 0.5rem;
  }
  .header__menu-text {
    color: white;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 59.375rem) and (max-width: 26.25rem) {
  .header__menu-text {
    display: none;
  }
}
@media screen and (max-width: 59.375rem) {
  .header__menu-toggle.is-active .header__hamburger-line {
    transform: rotate(45deg);
    background-color: #800080;
  }
  .header__menu-toggle.is-active .header__hamburger-line::before {
    transform: rotate(-90deg) translateX(-0.5rem);
    background-color: #800080;
  }
  .header__menu-toggle.is-active .header__hamburger-line::after {
    opacity: 0;
  }
  .header__menu-toggle.is-active .header__menu-text {
    color: #800080;
  }
  .header__nav-list {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background-color: white;
    padding: 5rem 1rem 2rem 0;
    margin: 0;
    box-shadow: -4px 0 0.6em rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: transform 0.3s ease;
    transition: right 0.3s ease;
    z-index: 999;
  }
}
@media screen and (max-width: 59.375rem) and (min-width: 35rem) {
  .header__nav-list {
    width: 25%;
  }
}
@media screen and (max-width: 59.375rem) {
  .header__nav-list--visible {
    right: 0;
  }
  .header__nav-item {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }
  .header__nav-link {
    color: #800080;
    font-weight: 400;
  }
  .header__nav-link:focus {
    font-weight: 600;
  }
  .header__nav-link:hover {
    background-color: white;
    font-weight: 800;
  }
  .header__nav-item--active .header__nav-link {
    background-color: white;
    font-weight: 800;
  }
  .header__nav-link_cta {
    background-color: #800080;
    color: white;
  }
  .header__nav-link_cta:hover, .header__nav-link_cta:focus-visible, .header__nav-link_cta--active {
    background-color: #660066;
    color: white;
    opacity: 0.9;
    outline: 3px solid #FFAA00;
    outline-offset: 2px;
  }
}
.no-scroll {
  overflow: hidden;
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  background-color: #800080;
  color: white;
  font-size: 0.875rem;
}
.footer__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.footer__heading {
  color: white;
  margin-bottom: 0;
  margin-top: 0;
  font-size: clamp(1.125rem, 1vw + 0.7rem, 1.4rem);
  font-family: "Fraunces", serif;
}
.footer__subheading {
  color: white;
  margin-bottom: 0;
  margin-top: 0.3rem;
  font-size: clamp(1rem, 0.8vw + 0.6rem, 1.5rem);
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 0.875rem;
}
.footer__text {
  margin: 0;
}
.footer__section {
  margin-bottom: 2rem;
}
.footer__tagline {
  text-transform: uppercase;
  margin: 0.3rem 0 0 0;
}
.footer__contact-link {
  color: white;
  text-decoration: none;
  font-style: normal;
}
.footer__address {
  font-style: normal;
}
.footer__social-icon--img {
  width: 28px;
  height: 28px;
  margin-right: 5px;
}
.footer__social-link {
  text-decoration: none;
  display: inline-block;
  margin-right: 0.1rem;
  transition: transform 0.2s ease;
}
.footer__social-link:hover {
  transform: translateY(-2px);
}
.footer__social-link:focus-visible {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}
.footer__social-links {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: row;
}
.footer__section_info {
  margin-bottom: 0;
}
.footer__legal {
  color: white;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  margin-top: 1rem;
}

@media screen and (min-width: 38.75rem) {
  .footer__container {
    display: grid;
    gap: 1.25rem;
    grid-template-areas: "about contact" "info social";
  }
  .footer__section_about {
    grid-area: about;
  }
  .footer__section_contact {
    grid-area: contact;
  }
  .footer__section_social {
    grid-area: social;
  }
  .footer__section_info {
    grid-area: info;
  }
}
@media screen and (min-width: 53.75rem) {
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "about contact social" "info info info";
  }
  .footer__section_about {
    grid-area: about;
  }
  .footer__section_contact {
    grid-area: contact;
  }
  .footer__section_social {
    grid-area: social;
  }
  .footer__section_info {
    grid-area: info;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr, 2fr;
  }
  .footer__copyright {
    grid-column: 1/2;
  }
  .footer__credit {
    grid-column: 2/4;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background-color: #D3BDD8;
}
.hero__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
  background: url("/images/autoportret/output/large/Autoportret_vlastovky-u_large_1000_orez.webp") bottom right no-repeat;
  background-size: contain;
}
.hero__text-container {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: 50%;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
@media screen and (max-width: 58.125rem) {
  .hero__text-container {
    max-width: 60%;
  }
}
@media screen and (max-width: 54rem) {
  .hero__text-container {
    margin-bottom: 7rem;
    max-width: 50%;
  }
}
@media screen and (max-width: 43.75rem) {
  .hero__text-container {
    margin-bottom: 7rem;
    max-width: 60%;
  }
}
@media screen and (max-width: 37.5rem) {
  .hero__text-container {
    margin-bottom: 13rem;
    max-width: 80%;
  }
}
@media screen and (max-width: 31.25rem) {
  .hero__text-container {
    max-width: 100%;
  }
}
.hero__heading {
  padding-top: 4rem;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
}
.hero__name {
  display: block;
}
.hero__tagline {
  display: block;
  font-family: "Work Sans", sans-serif;
  text-transform: none;
  font-size: clamp(1.2rem, 1.2rem + 1vw, 2.4rem);
  color: #333333;
  margin-top: 1rem;
  font-weight: 200;
}
.hero__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 3rem;
  margin-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 37.5rem) {
  .hero__button-cta {
    margin-top: 1rem;
  }
}
.hero__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.hero__button-cta:focus-visible {
  outline: 3px solid #FFAA00;
  outline-offset: 3px;
}
.hero__button-cta:active, .hero__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.hero__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .hero__link {
    font-size: 1rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.small-gallery__container {
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.small-gallery__text-container {
  display: flex;
  flex-direction: column;
}
.small-gallery__heading {
  margin-bottom: 0;
}
.small-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 48rem) {
  .small-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 30rem) {
  .small-gallery__grid {
    grid-template-columns: 1fr;
  }
}
.small-gallery__column {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  filter: blur(5px);
  visibility: hidden;
}
.small-gallery__column.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.small-gallery__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  z-index: 1;
  border-radius: 0.3125rem;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid whitesmoke;
  padding-bottom: 100%;
}
.small-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.small-gallery__caption {
  position: absolute;
  width: 94%;
  height: 94%;
  bottom: 3%;
  left: 3%;
  right: 3%;
  background: rgba(255, 255, 255, 0.9);
  color: white;
  padding: 0.625rem;
  transform: translateY(120%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
}
.small-gallery__caption.visible {
  transform: translateY(0);
}
.small-gallery__figure:hover .small-gallery__caption {
  transform: translateY(0);
}
.small-gallery__figure:hover .small-gallery__image {
  transform: scale(1.1);
}
.small-gallery__figure.touched .small-gallery__caption {
  transform: translateY(0);
}
.small-gallery__figure.touched .small-gallery__image {
  transform: scale(1.1);
}
.small-gallery__title {
  margin: 0;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 52rem) {
  .small-gallery__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 48.125rem) {
  .small-gallery__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 35rem) {
  .small-gallery__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .small-gallery__title {
    font-size: 2rem;
  }
}
.small-gallery__category {
  color: #333333;
  text-align: center;
  text-transform: uppercase;
}
.small-gallery__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 2rem;
  margin-bottom: 3rem;
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 31.25rem) {
  .small-gallery__button-cta {
    margin-bottom: 2rem;
  }
}
.small-gallery__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.small-gallery__button-cta:active, .small-gallery__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.small-gallery__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .small-gallery__link {
    font-size: 1rem;
  }
}

.about {
  background-color: #F8F2FA;
}
.about__container {
  display: flex;
  flex-direction: column;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: 0 auto;
  padding-bottom: 2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 50rem) {
  .about__container {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.about__heading {
  margin: 3rem 0rem 1rem 0rem;
}
.about__subheading {
  margin: 0;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
}
.about__text {
  margin: 2rem 0 3rem 0;
}
.about__text-container {
  display: flex;
  flex-direction: column;
  margin: 0 1.25rem;
  flex: 1;
}
.about__image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-left: 0.25rem;
}
.about__image {
  max-width: 70%;
  height: auto;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}
@media screen and (max-width: 31.25rem) {
  .about__image {
    max-width: 90%;
  }
}
.about__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  transition: box-shadow 150ms ease-out;
  width: -moz-fit-content;
  width: fit-content;
}
.about__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.about__button-cta:active, .about__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

.error {
  background-color: #D3BDD8;
}
.error__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 8rem 1.25rem;
}
.error__heading {
  padding: 4rem 0 2rem 0;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.error__paragraph {
  margin-top: 0;
}
.error__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  transition: box-shadow 150ms ease-out;
  width: -moz-fit-content;
  width: fit-content;
}
.error__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.error__button-cta:active, .error__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.error__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .error__link {
    font-size: 1rem;
  }
}

.gallery__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 5rem 1.25rem 3rem 1.25rem;
}
.gallery__heading {
  text-align: center;
  font-size: clamp(1.5rem, 1.5rem + 2vw, 2.9rem);
  margin-bottom: 1rem;
}
.gallery__filter-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.gallery__btn {
  border: none;
  outline: none;
  padding: 0.5rem 0.8rem;
  background-color: white;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 100;
}
.gallery__btn:hover {
  font-weight: 700;
}
.gallery__btn.active {
  font-weight: 700;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 48rem) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 30rem) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.gallery__column {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  filter: blur(5px);
  visibility: hidden;
}
.gallery__column.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.gallery__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  z-index: 1;
  border-radius: 0.3125rem;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid whitesmoke;
  padding-bottom: 100%;
}
.gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery__caption {
  position: absolute;
  width: 94%;
  height: 94%;
  bottom: 3%;
  left: 3%;
  right: 3%;
  background: rgba(255, 255, 255, 0.9);
  color: white;
  padding: 0.625rem;
  transform: translateY(120%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
}
.gallery__caption.visible {
  transform: translateY(0);
}
.gallery__figure:hover .gallery__caption {
  transform: translateY(0);
}
.gallery__figure:hover .gallery__image {
  transform: scale(1.1);
}
.gallery__figure.touched .gallery__caption {
  transform: translateY(0);
}
.gallery__figure.touched .gallery__image {
  transform: scale(1.1);
}
.gallery__title {
  margin: 0;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 52rem) {
  .gallery__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 48.125rem) {
  .gallery__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 35rem) {
  .gallery__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .gallery__title {
    font-size: 2rem;
  }
}
.gallery__category {
  color: #333333;
  text-align: center;
  text-transform: uppercase;
}

.project__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 6rem 1.25rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 50.25rem) {
  .project__container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
  }
}
@media screen and (min-width: 50.25rem) {
  .project__text-container {
    grid-column: 1/3;
    grid-row: 1;
    align-self: start;
    position: sticky;
    top: 2rem;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.project__thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: auto;
  gap: 1rem;
}
@media screen and (min-width: 50.25rem) {
  .project__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: min-content;
    grid-column: 3/6;
    grid-row: 1;
    align-self: start;
  }
}
.project__gallery-item:first-of-type {
  grid-column: span 2;
  grid-row: span 2;
}
.project__image {
  display: block;
  max-width: 100%;
  height: auto;
  cursor: pointer;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.project__image:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.project__link {
  color: #333333;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}
.project__list {
  margin: 3rem 0 1rem 0;
  padding: 1rem 0;
  list-style-type: none;
  border-top: 1px solid #800080;
  border-bottom: 1px solid #800080;
  font-size: 0.9rem;
}
.project__list-none {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.project__label {
  font-weight: 600;
}
.project__heading {
  font-weight: 900;
  margin-bottom: 2rem;
}
.project__navigation {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 48rem) {
  .project__navigation {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.project__navigation-link {
  text-decoration: none;
  color: #333333;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project__navigation-arrow {
  border: 1px solid #800080;
  padding: 3px;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox.active {
  display: flex;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border: 2px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox__close, .lightbox__arrow {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1001;
}
.lightbox__close:hover, .lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .lightbox__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .lightbox__arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__arrow--prev {
  left: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__arrow--prev {
    left: 0.625rem;
  }
}
.lightbox__arrow--next {
  right: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__arrow--next {
    right: 0.625rem;
  }
}
.lightbox__counter {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__counter {
    top: 0.625rem;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

.offer {
  background-color: #D3BDD8;
}
.offer__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
}
@media screen and (min-width: 43rem) {
  .offer__container {
    flex-direction: row;
  }
}
.offer__text-container {
  flex: 3;
  padding-bottom: 1rem;
}
@media screen and (min-width: 62.5rem) {
  .offer__text-container {
    flex: 2;
  }
}
.offer__image-container {
  flex: 1;
  position: relative;
}
@media screen and (min-width: 43rem) {
  .offer__image-container {
    position: relative;
  }
}
.offer__image {
  width: 50%;
  height: auto;
  display: block;
}
@media screen and (min-width: 43rem) {
  .offer__image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
  }
}
.offer__heading {
  padding-top: 4rem;
}
.offer__perex {
  display: block;
  font-family: "Work Sans", sans-serif;
  text-transform: none;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  color: #333333;
  margin-top: 1rem;
  font-weight: 300;
}

.service__container {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 70rem;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: 0 auto;
  padding: 1.25rem;
}
@media screen and (min-width: 43rem) {
  .service__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media screen and (min-width: 62.5rem) {
  .service__container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.service__heading {
  text-align: center;
}
.service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 43rem) {
  .service__item:nth-child(1), .service__item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 62.5rem) {
  .service__item:nth-child(1), .service__item:nth-child(2), .service__item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
  }
}
.service__item.show {
  opacity: 1;
  transform: translateY(0);
}
.service__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
  border: 5px solid white;
}
.service__text-container {
  width: 100%;
}
.service__title {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  color: #333333;
  margin-bottom: 0;
  text-align: center;
}
.service__description {
  text-align: center;
}

.process {
  background-color: #F8F2FA;
}
.process__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 1.25rem;
  overflow: hidden;
}
.process__heading, .process__subheading {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 50rem) {
  .process__subheading {
    max-width: 75%;
    text-align: center;
  }
}
.process__perex {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 43rem) {
  .process__perex {
    width: 50%;
  }
}
.process__item {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
  height: 170px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 50rem) {
  .process__item {
    max-width: 60%;
  }
}
.process__item.show {
  opacity: 1;
  transform: translateY(0);
}
.process__icon-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
  height: 100%;
  background: #D3BDD8;
  border-radius: 11px 0 0 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.process__icon {
  font-family: "Fraunces", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #800080;
}
.process__text-container {
  flex: 5;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 0 11px 11px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.process__title {
  font-family: "Work Sans", sans-serif;
  color: #333333;
  margin-bottom: 0;
  text-align: start;
}
.process__subheading {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
  font-optical-sizing: auto;
  font-weight: 900;
  line-height: 1.1;
  color: #550455;
  margin: 2rem 0;
}
.process__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 3rem;
}
@media screen and (min-width: 31.25rem) {
  .process__button-cta {
    margin-bottom: 2rem;
  }
}
.process__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.process__button-cta:active, .process__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.process__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .process__link {
    font-size: 1rem;
  }
}

.calculation__container {
  margin: 0 auto;
  padding: 3rem 1.25rem;
  position: relative;
}
.calculation__text-conatiner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 50rem) {
  .calculation__text-conatiner {
    align-items: center;
  }
}
@media screen and (min-width: 50rem) {
  .calculation__heading {
    max-width: 75%;
    text-align: center;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 50rem) {
  .calculation__text {
    max-width: 75%;
    text-align: center;
  }
}
.calculation__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 31.25rem) {
  .calculation__button-cta {
    margin-bottom: 2rem;
  }
}
.calculation__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.calculation__button-cta:active, .calculation__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.calculation__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .calculation__link {
    font-size: 1rem;
  }
}

.about-me__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 5rem 1.25rem 0 1.25rem;
  display: flex;
}
@media screen and (max-width: 50rem) {
  .about-me__container {
    flex-direction: column;
  }
}
.about-me__text-container {
  flex: 3;
  margin: 1.25rem;
}
@media screen and (max-width: 50rem) {
  .about-me__text-container {
    order: 1;
  }
}
.about-me__heading {
  margin-bottom: 1rem;
}
.about-me__subheading {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.2rem, 1.2rem + 1vw, 2.4rem);
  color: #333333;
  margin: 0 0 3rem 0;
  font-weight: 200;
}
.about-me__image-container {
  flex: 2;
}
@media screen and (max-width: 50rem) {
  .about-me__image-container {
    order: 2;
  }
}
.about-me__image {
  width: 100%;
  height: auto;
}

.timeline {
  background-color: #F8F2FA;
}
.timeline__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.25rem;
}
.timeline__heading {
  text-align: center;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1rem;
}
.timeline__list {
  position: relative;
  padding: 1rem 0;
}
.timeline__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #D3BDD8;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(79, 172, 254, 0.3);
}
.timeline__item {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.timeline__item.show {
  opacity: 1;
  transform: translateY(0);
}
.timeline__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
}
.timeline__item:nth-child(odd) {
  flex-direction: row;
}
.timeline__item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline__frame {
  background-color: white;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: calc(50% - 50px);
  position: relative;
}
.timeline__frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.timeline__item:nth-child(odd) .timeline__frame::after {
  right: -30px;
  border-left-color: rgba(255, 255, 255, 0.95);
}
.timeline__item:nth-child(even) .timeline__frame::after {
  left: -30px;
  border-right-color: rgba(255, 255, 255, 0.95);
}
.timeline__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.timeline__icon {
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
  border: 5px solid white;
  width: 5rem;
  height: 5rem;
  z-index: 10;
}
.timeline__title {
  background-color: #800080;
  color: white;
  border-radius: 10px 10px 0 0;
  padding: 0.8rem 1.25rem;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
}
.timeline__description {
  padding: 0.5rem 1.25rem;
}

@media screen and (max-width: 48rem) {
  .timeline__list::before {
    left: 1.875rem;
  }
  .timeline__item {
    flex-direction: row !important;
    margin: 2rem 0;
  }
  .timeline__frame {
    width: calc(100% - 5rem);
    margin-left: 5rem;
  }
  .timeline__circle {
    position: absolute;
    left: 1.875rem;
    transform: translateX(-50%);
  }
  .timeline__icon {
    width: 4rem;
    height: 4rem;
    border-width: 3px;
  }
}
.detail__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 70rem;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.detail__link {
  color: #333333;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}
.detail__text {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  font-weight: 200;
  text-align: center;
  max-width: 80%;
}
.detail__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 37.5rem) {
  .detail__button-cta {
    margin-top: 1rem;
  }
}
.detail__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.detail__button-cta:focus-visible {
  outline: 3px solid #FFAA00;
  outline-offset: 3px;
}
.detail__button-cta:active, .detail__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.detail__button-link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .detail__button-link {
    font-size: 1rem;
  }
}

.shop {
  background-color: #D3BDD8;
}
.shop__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.shop__heading {
  margin: 3rem 0;
}

.shop-intro {
  background-color: #F8F2FA;
}
.shop-intro__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
}
.shop-intro__text {
  display: block;
  font-family: "Work Sans", sans-serif;
  text-transform: none;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  color: #333333;
  margin-top: 1rem;
  font-weight: 300;
}

.pexeso__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}
.pexeso__heading {
  margin: 0;
}
.pexeso__text {
  color: rgb(46, 45, 45);
}
.pexeso__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 56.25rem) {
  .pexeso__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 37.5rem) {
  .pexeso__grid {
    grid-template-columns: 1fr;
  }
}
.pexeso__card {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.pexeso__card:hover {
  transform: translateY(-4px);
}
.pexeso__card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pexeso__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pexeso__item {
  border-radius: 5px;
  background: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid whitesmoke;
  margin-bottom: 2rem;
}
.pexeso__image-container {
  margin-bottom: 1rem;
}
.pexeso__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.3125rem 0.3125rem 0 0;
  background-color: rgb(246, 246, 246);
}
.pexeso__text-container {
  margin-bottom: 1rem;
  padding: 0 1rem 1rem 1rem;
}
.pexeso__name {
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  color: #333333;
  margin: 0.5rem 0;
}
.pexeso__category {
  color: #666;
  margin: 0 0 4px 0;
}
.pexeso__buy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 1rem 1rem 1rem;
}
.pexeso__price {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  font-weight: 900;
  margin: 0;
}
.pexeso__link {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  text-decoration: none;
  z-index: 10;
  margin: 0;
}
.pexeso__link:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.pexeso__link:active, .pexeso__link:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

.contact-hero {
  background-color: #D3BDD8;
}
.contact-hero__container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
}
@media screen and (max-width: 43.75rem) {
  .contact-hero__container {
    flex-direction: column;
  }
}
.contact-hero__text-container {
  flex: 6;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.contact-hero__image-container {
  flex: 5;
  display: flex;
  align-items: end;
  justify-content: end;
}
.contact-hero__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
@media screen and (max-width: 43.75rem) {
  .contact-hero__image {
    max-width: 80%;
  }
}
.contact-hero__heading {
  padding-top: 4rem;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
}

.contact {
  background-color: #F8F2FA;
}
.contact__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column: 1rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
}
@media screen and (max-width: 43.75rem) {
  .contact__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.contact__form-container {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 43.75rem) {
  .contact__form-container {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.contact__info-container {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 43.75rem) {
  .contact__info-container {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.contact-form__legend {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
}
@media screen and (max-width: 43.75rem) {
  .contact-form__legend {
    margin-top: 1rem;
  }
}
.contact-form__fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 50rem) {
  .contact-form__fieldset {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.contact-form__label {
  display: block;
  margin: 0.5rem 0 0.2rem 0;
  font-weight: 500;
}
.contact-form__label--textarea {
  margin-top: 0.8rem;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #800080;
  border-radius: 10px;
  font-family: inherit;
  margin-bottom: 0.5rem;
}
.contact-form__GDPR {
  color: #333333;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}
.contact-form__note {
  font-style: italic;
  margin-bottom: 1rem;
}
.contact-form__input:focus, .contact-form__textarea:focus, .contact-form__button:focus {
  outline: 2px solid #FFAA00;
}
.contact-form__button {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  font-size: 1rem;
}
.contact-form__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 3rem;
}
.contact-form__button-cta:focus-visible {
  outline: 3px solid #FFAA00;
  outline-offset: 3px;
  margin-bottom: 3rem;
}
.contact-form__button-cta:active, .contact-form__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 3rem;
}
.contact-form__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .contact-form__link {
    font-size: 1rem;
  }
}
.contact-form__input.is-invalid, .contact-form__textarea.is-invalid, .contact-form__checkbox.is-invalid {
  border: 2px solid #C71585 !important;
  background-color: #fff8f8;
}
.contact-form__input.is-invalid:focus, .contact-form__textarea.is-invalid:focus {
  outline-color: #C71585;
  box-shadow: 0 0 5px rgba(217, 48, 37, 0.3);
}
.contact-form__error {
  color: #C71585;
  font-size: 0.85rem;
  margin: 0 0 0.8rem 0;
  font-weight: 500;
}

#checkbox-error {
  margin-left: 0;
  display: block;
}

.contact__subheading {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
}
.contact__address, .contact__address-name {
  font-style: normal;
  margin: 0;
}
.contact__address-link {
  color: #333333;
  text-decoration: none;
}
.contact__subheading--business, .contact__subheading--social {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Work Sans", sans-serif;
  color: #333333;
  font-weight: 800;
}
.contact__business-text {
  margin-top: 0;
}
.contact__social {
  margin-bottom: 3rem;
}
.contact__social-links {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.contact__social-icon--img {
  width: 35px;
  height: 35px;
  fill: #800080;
  margin-right: 10px;
  margin-top: 2px;
}
.contact__social-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 0.1rem;
  transition: transform 0.2s ease;
  font-family: "Work Sans", sans-serif;
  color: #333333;
}
.contact__social-link:hover {
  transform: translateY(-2px);
}
.contact__social-link:focus-visible {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

.gdpr-hero {
  background-color: #D3BDD8;
}
.gdpr-hero__container {
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.gdpr-hero__heading {
  padding-top: 4rem;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.gdpr__container {
  margin: 0 auto;
  padding: 2rem 1.25rem;
}
.gdpr__heading {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  margin: 2rem 0 0 0;
}
.gdpr__list {
  padding: 0.5rem 1.2rem;
  margin: 0;
}
.gdpr__paragraph {
  padding: 0.5rem 0;
  margin: 0;
}

.thanks {
  background-color: #D3BDD8;
}
.thanks__container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-columns: auto;
  grid-column: 2rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media screen and (max-width: 37.5rem) {
  .thanks__container {
    grid-template-columns: 1fr;
  }
}
.thanks__text-container {
  grid-column: 1/2;
  grid-row: 1/2;
}
.thanks__heading {
  padding: 4rem 0 2rem 0;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.thanks__paragraph {
  margin-top: 0;
}
.thanks__image-container {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 37.5rem) {
  .thanks__image-container {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: center;
    align-items: center;
  }
}
.thanks__image {
  display: block;
  max-width: 200px;
  min-height: auto;
  margin-top: 1rem;
}
.thanks__buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (max-width: 48.75rem) {
  .thanks__buttons {
    flex-direction: column;
  }
}
.thanks__button-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
@media screen and (max-width: 48.75rem) {
  .thanks__button-cta {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.thanks__button-cta:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.thanks__button-cta:focus-visible {
  outline: 3px solid #FFAA00;
  outline-offset: 3px;
}
.thanks__button-cta:active, .thanks__button-cta:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.thanks__link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .thanks__link {
    font-size: 1rem;
  }
}
.thanks__button-secondary {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  background-color: #D3BDD8;
  border: 2px solid #C71585;
}
@media screen and (max-width: 48.75rem) {
  .thanks__button-secondary {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.thanks__link-secondary {
  color: #C71585;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .thanks__link-secondary {
    font-size: 1rem;
  }
}
.thanks__social-icon {
  font-size: 2.5rem;
  color: #800080;
}
.thanks__social-icon--img {
  width: 35px;
  height: 35px;
  fill: #800080;
  margin-left: 7px;
  align-self: flex-end;
}
.thanks__social-link {
  text-decoration: none;
  display: inline-block;
  margin-right: 0.1rem;
  transition: transform 0.2s ease;
}
.thanks__social-link:hover {
  transform: translateY(-2px);
}
.thanks__social-link:focus-visible {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}
.thanks__social-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 6rem 1.25rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 50.25rem) {
  .product__container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
  }
}
.product__image-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 50.25rem) {
  .product__image-container {
    grid-column: 1/4;
    gap: 1rem;
  }
}
.product__image-main {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
}
.product__image-main:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.product__image-main img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.product__image-main:hover img {
  transform: scale(1.05);
}
.product__thumbnails {
  grid-column: 1/-1;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media screen and (min-width: 50.25rem) {
  .product__thumbnails {
    gap: 1rem;
  }
}
.product__thumbnail {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.product__thumbnail:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.product__thumbnail img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__thumbnail:hover {
  border-color: #800080;
}
@media screen and (min-width: 50.25rem) {
  .product__text-container {
    grid-column: -1/-3;
    grid-row: 1;
  }
}
.product__subheading {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
  font-family: "Work Sans", sans-serif;
  color: #333333;
  margin-bottom: 0;
}
.product__link--web {
  color: #333333;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}
.product__list {
  margin: 3rem 0 1rem 0;
  padding: 1rem 0;
  list-style-type: none;
  border-top: 1px solid #800080;
  border-bottom: 1px solid #800080;
  font-size: 0.9rem;
}
.product__list-item {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.product__label {
  font-weight: 600;
}
.product__price {
  font-weight: 900;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  margin: 1rem 0 2rem 0;
}
.product__buttons {
  display: flex;
  gap: 2rem;
}
.product__link {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #C71585;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  text-decoration: none;
  margin: 0;
}
.product__link:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #660066;
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.product__link:active, .product__link:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #4d004d;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.product__link--back {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: white;
  border-radius: 0.3125rem;
  border: 1px solid #C71585;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #C71585;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}
.product__link--back:hover {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: white;
  border-radius: 0.3125rem;
  border: 2px solid #800080;
  cursor: pointer;
  transform: translateY(-4px);
  transition: all ease-in 1s;
  box-shadow: 0 8px 20px rgba(255, 200, 100, 0.3);
  color: #800080;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.product__link:active, .product__link:focus {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #F8F2FA;
  border-radius: 0.3125rem;
  transform: translateY(3px);
  transition: all ease-in 1s;
  color: #800080;
  text-decoration: none;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
  border: 2px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1001;
}
@media screen and (max-width: 48rem) {
  .lightbox__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__close:hover {
  color: #ccc;
}
.lightbox__nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1001;
  top: 50%;
  transform: translateY(-50%);
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__nav:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.lightbox__nav--prev {
  left: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__nav--prev {
    left: 0.625rem;
  }
}
.lightbox__nav--next {
  right: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__nav--next {
    right: 0.625rem;
  }
}/*# sourceMappingURL=style.css.map */