/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* Layout */
/* Breakpoints */
/* Colors */
/* Frosted glass blur background */
/* Animations */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scan {
  0% {
    transform: scale(1.1) translate(-2%, -2%);
  }
  25% {
    transform: scale(1.1) translate(2%, -2%);
  }
  50% {
    transform: scale(1.1) translate(2%, 2%);
  }
  75% {
    transform: scale(1.1) translate(-2%, 2%);
  }
  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  color: #464646;
}

.page-section h1,
.page-section h2,
.page-section h3,
.page-section h4 {
  color: #464646;
  margin-top: 40px;
  font-weight: 100;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0.1em;
}
.page-section a {
  color: #464646;
}
.page-section a:hover {
  color: #a6837f;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: black !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.page-section .content {
  max-width: 1200px;
  margin: 0 auto;
}

.basic-padding-vertical {
  padding-top: 20px;
  padding-bottom: 20px;
}

.basic-padding-horizontal {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .narrow-content {
    max-width: 60%;
  }
}
.arrow {
  border: solid #464646;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.columns {
  display: flex;
  gap: 20px;
}

@media (max-width: 767px) {
  .columns {
    flex-direction: column;
  }
  .columns .column-1-2 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .columns .column-1-2 {
    width: 50%;
  }
}
#footer {
  background: #fafafa;
}
#footer:after {
  content: "";
  display: block;
  height: 100px;
  position: fixed;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(250, 250, 250) 100%);
}
#footer .content {
  max-width: 1200px;
  margin: 0 auto;
}
#footer .content p {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0;
  color: #aaa;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
.form.disabled {
  opacity: 0.4;
}
.form.disabled .form-row input,
.form.disabled .form-row textarea {
  cursor: not-allowed;
}
.form.disabled .form-row button {
  cursor: not-allowed;
}
.form.disabled .form-row button:hover {
  background: #aaa;
  border: 1px solid #464646;
  color: #000;
}
.form .form-row label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  padding: 0 10px;
  color: #aaa;
}
.form .form-row input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #464646;
  color: #464646;
}
.form .form-row input:focus {
  border: 1px solid #000;
}
.form .form-row textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #464646;
  color: #464646;
}
.form .form-row.error label {
  color: #cb4646;
}
.form .form-row.error input,
.form .form-row.error textarea {
  border: 1px solid #cb4646;
}
.form .form-row .note {
  display: inline-block;
  font-size: 12px;
  padding: 0 10px;
  margin: 0;
  color: #aaa;
}
.form .form-row button {
  border: 1px solid #464646;
  color: #000;
  text-transform: uppercase;
  padding: 10px 40px;
  background: #aaa;
  cursor: pointer;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.form .form-row button:hover {
  color: #fafafa;
  background: #464646;
}
.form footer.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#header .content {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
#header #logo {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 0.1em;
  color: #464646;
  text-decoration: none;
  font-size: 34px;
  display: inline-block;
  float: left;
}
#header #logo span {
  display: inline-block;
  padding: 10px 20px 10px 0;
}
#header #social-networks {
  height: 67px;
  display: flex;
}
#header #social-networks ul {
  margin: auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 5px;
}
#header #social-networks ul li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
#header #social-networks ul li a {
  display: flex;
  padding: 2px;
  opacity: 0.6;
}
#header #social-networks ul li a:hover {
  opacity: 0.8;
}
#header #social-networks ul li a img {
  margin: auto;
}

@media (max-width: 767px) {
  #header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 67px;
    overflow: hidden;
    z-index: 100;
  }
  #header .content {
    padding-right: 10px;
  }
  #header #nav-btn {
    float: right;
    padding: 10px;
    cursor: pointer;
    margin-top: 4px;
  }
  #header #nav-btn .icon {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #header #nav-btn .icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #464646;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  #header #nav-btn .icon span:nth-child(1) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  #header #nav-btn .icon span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  #header #nav-btn .icon span:nth-child(3) {
    top: 28px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  #header:not(.menu-expanded) #top-navigation {
    display: none;
  }
  #header:not(.menu-expanded) #social-networks {
    display: none;
  }
  #header.menu-expanded {
    height: 100%;
    z-index: 10;
  }
  #header.menu-expanded #nav-btn .icon span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
    left: 7px;
  }
  #header.menu-expanded #nav-btn .icon span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  #header.menu-expanded #nav-btn .icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 32px;
    left: 6px;
  }
  #header.menu-expanded #top-navigation {
    display: block;
    clear: both;
    padding-top: 40px;
    margin-right: 10px;
    margin-bottom: 20px;
  }
  #header.menu-expanded #top-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #header.menu-expanded #top-navigation ul li {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  #header.menu-expanded #top-navigation ul li a {
    text-decoration: none;
    color: #464646;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 22px;
    text-transform: uppercase;
    padding: 20px;
    display: block;
  }
  #header.menu-expanded #top-navigation ul li a:hover {
    background: #fafafa;
  }
  #header.menu-expanded #social-networks {
    position: fixed;
    bottom: 0;
    width: calc(100% - 40px);
    border-top: 1px solid #464646;
  }
}
@media (min-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 67px;
    overflow: hidden;
    z-index: 100;
  }
  #header #top-navigation {
    width: 560px;
    height: 67px;
    margin: 0 auto;
    display: flex;
  }
  #header #top-navigation ul {
    margin: auto;
    padding: 10px 0 0 0;
    list-style: none;
    display: flex;
  }
  #header #top-navigation ul li {
    margin: 0;
    padding: 0;
    border-right: 1px solid #464646;
  }
  #header #top-navigation ul li:last-of-type {
    border: none;
  }
  #header #top-navigation ul li a {
    text-decoration: none;
    color: #464646;
    padding: 10px 20px 10px 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 12px;
    text-transform: uppercase;
  }
  #header #top-navigation ul li a:hover span:after {
    width: 100%;
    left: 0;
  }
  #header #top-navigation ul li a span {
    display: inline-block;
    position: relative;
    padding: 0 0 5px 0;
  }
  #header #top-navigation ul li a span:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    position: absolute;
    background: #464646;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
  }
  #header #social-networks {
    float: right;
  }
}
#hero-banner {
  width: 100%;
  height: 360px;
  background-position: center;
  background-size: cover;
  position: relative;
  animation: fadeIn 1s ease-in forwards;
}

.more-info {
  display: none;
}

.expanded .more-info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: rgba(80, 80, 80, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.expanded .more-info .content {
  margin: auto;
  padding: 4em;
  width: 100%;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: #000;
  position: relative;
}
.expanded .more-info .content h2 {
  margin: 0;
}
.expanded .more-info .content .exit {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  border: 1px solid #464646;
  border-radius: 500px;
  cursor: pointer;
}
.expanded .more-info .content .exit:after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "X";
  width: 100%;
  height: 100%;
  font-size: 22px;
  color: #464646;
}
.expanded .more-info .content .exit:hover {
  border: 1px solid white;
}
.expanded .more-info .content .exit:hover:after {
  color: white;
}

#about #hero-banner {
  background-color: #a6837f;
  background-image: url("../img/banners/about.jpg");
}
#about .about-block {
  max-width: 800px;
  margin: 0 auto;
}
#about .about-block h3 {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin: 0;
  padding-left: 40px;
}
#about .about-block p {
  margin: 0 0 15px 0;
  padding-left: 40px;
}
#about section {
  max-width: 800px;
}
#about section > ul {
  list-style: none;
}
#about section > ul li {
  margin: 0 0 10px 0;
}
#about section strong {
  color: black;
  font-weight: 600;
}
#about section .light {
  color: #ccc;
}

@media (max-width: 567px) {
  #about .about-block h3, #about .about-block p {
    padding-left: 20px;
  }
}
#exhibitions #hero-banner {
  background-color: #a6837f;
  background-image: url("../img/banners/exhibitions.jpg");
}
#exhibitions section {
  margin: 0 auto;
  max-width: 800px;
}
#exhibitions section > ul {
  list-style: none;
}
#exhibitions section > ul li {
  margin: 0 0 10px 0;
}
#exhibitions section strong {
  color: black;
  font-weight: 600;
}
#exhibitions section .light {
  color: #ccc;
}

@media (max-width: 567px) {
  #exhibitions section > ul {
    padding-left: 20px;
  }
}
#collections {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#collections .collection {
  width: 100%;
}
#collections .collection .hero {
  min-height: 80vh;
  position: relative;
}
#collections .collection .hero .image {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#collections .collection .hero .image picture,
#collections .collection .hero .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#collections .collection .hero .info {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: white;
}
#collections .collection .hero .info h2 {
  margin: 0;
  font-weight: 200;
  font-size: 63px;
}
#collections .collection .hero .info p {
  margin: 0 0 0 auto;
  width: 50%;
  display: none;
}
#collections .collection .hero .read-more {
  position: absolute;
  bottom: 4em;
  right: 4em;
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 500px;
}
#collections .collection .hero .read-more:hover {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#collections .collection .pieces {
  display: flex;
}
#collections .collection .pieces .piece {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#collections .collection .pieces .piece.pulse .image {
  overflow: hidden;
}
#collections .collection .pieces .piece.pulse .image img {
  animation: pulse 20s ease-in-out infinite;
}
#collections .collection .pieces .piece.dance .image {
  overflow: hidden;
}
#collections .collection .pieces .piece.dance .image img {
  animation: scan 20s ease-in-out infinite;
}
#collections .collection .pieces .piece:hover .image {
  overflow: hidden;
}
#collections .collection .pieces .piece:hover .image img {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}
#collections .collection .pieces .piece .image {
  width: 100%;
}
#collections .collection .pieces .piece .image img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
#collections .collection .pieces .piece .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  box-sizing: border-box;
  color: white;
}
#collections .collection .pieces .piece .info h3 {
  margin: 0;
  text-align: right;
  font-weight: 400;
  font-size: 16px;
}
#collections .collection .pieces .piece .info p {
  margin: 0;
  display: none;
}

@media (max-width: 567px) {
  #collections .collection .hero .info {
    bottom: 7em;
    left: 2em;
    width: calc(100% - 4em);
    max-width: 400px;
  }
  #collections .collection .hero .info h2 {
    line-height: 1em;
  }
  #collections .collection .hero .read-more {
    bottom: 2em;
    right: 2em;
  }
  #collections .collection .pieces {
    flex-direction: column;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  #collections .collection .hero .info {
    bottom: 7em;
    left: 3em;
    width: calc(100% - 6sem);
    max-width: 400px;
  }
  #collections .collection .hero .info h2 {
    line-height: 1.1em;
  }
  #collections .collection .hero .read-more {
    bottom: 2em;
    right: 3em;
  }
  #collections .collection .pieces {
    flex-wrap: wrap;
  }
  #collections .collection .pieces .piece {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #collections .collection .hero .info {
    bottom: 4em;
    left: 4em;
    max-width: 400px;
  }
  #collections .collection .hero .read-more {
    bottom: 4em;
    right: 4em;
  }
  #collections .collection .pieces {
    flex-wrap: wrap;
  }
  #collections .collection .pieces .piece {
    width: 50%;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  #collections .collection .hero .info {
    bottom: 4em;
    left: 4em;
    max-width: 400px;
  }
  #collections .collection .hero .read-more {
    bottom: 4em;
    right: 4em;
  }
}
@media (min-width: 1600px) {
  #collections .collection .hero .info {
    bottom: 4em;
    left: 4em;
    max-width: 400px;
  }
  #collections .collection .hero .read-more {
    bottom: 4em;
    right: 4em;
  }
}
#contact #hero-banner {
  background-color: #a6837f;
  background-image: url("../img/banners/contact.jpg");
}
#contact .content {
  max-width: 1000px;
  margin: 0 auto;
}

.form {
  max-width: 500px;
}

@media (max-width: 767px) {
  .form {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .form {
    margin-left: 40px;
  }
}
.home-page-wrapper {
  background: #a6837f;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #a6837f;
  background-image: url("../img/hero2.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-in forwards, pulse 20s ease-in-out infinite;
  opacity: 0;
}
.home-cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(213, 104, 135, 0.1), rgba(134, 126, 138, 0.2));
  pointer-events: none;
}

.home-nav-wrapper {
  display: flex;
  flex-flow: column;
  padding: 1.5em;
  width: 100%;
  background-color: rgba(124, 141, 143, 0.1);
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeIn 1s ease-in forwards 1.5s;
}
.home-nav-wrapper a.home-title {
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  color: #fafafa;
  position: relative;
}
.home-nav-wrapper a.home-title:hover h1 {
  color: #ccc;
}
.home-nav-wrapper a.home-title h1 {
  margin: 0;
  padding: 0;
  line-height: 1.2em;
  color: #e6e6e6;
  font-weight: 100;
  height: 100%;
}
.home-nav-wrapper .home-nav {
  margin: 1em auto 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1em;
}
.home-nav-wrapper .home-nav li {
  margin: 0;
  padding: 0;
  opacity: 0;
}
.home-nav-wrapper .home-nav li:nth-child(1) {
  animation: fadeSlideIn 0.5s ease-in forwards 2.6s;
}
.home-nav-wrapper .home-nav li:nth-child(2) {
  animation: fadeSlideIn 0.5s ease-in forwards 2.7s;
}
.home-nav-wrapper .home-nav li:nth-child(3) {
  animation: fadeSlideIn 0.5s ease-in forwards 2.8s;
}
.home-nav-wrapper .home-nav li:nth-child(4) {
  animation: fadeSlideIn 0.5s ease-in forwards 2.9s;
}
.home-nav-wrapper .home-nav li a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #e6e6e6;
  font-weight: 400;
}
.home-nav-wrapper .home-nav li a:hover {
  color: #ccc;
}

@media (max-width: 567px) {
  .home-nav-wrapper a.home-title h1 {
    font-size: 3em;
  }
  .home-nav-wrapper .home-nav {
    flex-direction: column;
    text-align: center;
    gap: 0.2em;
    margin-top: 1.25em;
  }
  .home-nav-wrapper .home-nav li a {
    display: block;
    padding: 0.4em;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .home-nav-wrapper a.home-title h1 {
    font-size: 5em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-nav-wrapper a.home-title h1 {
    font-size: 5em;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .home-nav-wrapper a.home-title h1 {
    font-size: 5em;
  }
}
@media (min-width: 1600px) {
  .home-nav-wrapper a.home-title h1 {
    font-size: 5em;
  }
}
#piece .content {
  display: flex;
}
#piece .piece-wrapper {
  text-transform: none;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  text-align: center;
  padding-bottom: 40px;
  margin: 0 auto;
}
#piece .piece-wrapper .piece-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 40px;
  max-height: 1000px;
  object-fit: contain;
}
#piece .piece-wrapper .piece-name {
  text-transform: none;
  font-style: italic;
  font-weight: 300;
  margin: 10px 0;
  color: #464646;
}
#piece .piece-wrapper .piece-technique,
#piece .piece-wrapper .piece-size {
  font-size: 12px;
  margin: 2px 0;
}
#piece .slider-nav {
  background: rgba(240, 240, 240, 0.5);
  border-radius: 50%;
  display: none;
  text-decoration: none;
  color: #464646;
  opacity: 1;
}
#piece .slider-nav:hover {
  background: rgba(220, 220, 220, 0.7);
}
#piece .slider-nav span {
  display: none;
}

@media (max-width: 767px) {
  #piece .content {
    position: relative;
  }
  #piece .content .slider-nav {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 35%;
  }
  #piece .content #previous {
    left: 0;
  }
  #piece .content #previous i {
    width: 12px;
    height: 12px;
    margin: auto;
    position: relative;
    left: 4px;
  }
  #piece .content #next {
    right: 0;
  }
  #piece .content #next i {
    width: 12px;
    height: 12px;
    margin: auto;
    position: relative;
    right: 4px;
  }
}
@media (min-width: 768px) {
  #piece .content {
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  #piece .content .piece-wrapper {
    order: 2;
    flex: auto;
    margin: auto;
  }
  #piece .content .slider-nav {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 35%;
    min-width: 80px;
    margin: 0 20px;
  }
  #piece .content #previous {
    order: 1;
    left: 0;
  }
  #piece .content #previous i {
    width: 20px;
    height: 20px;
    margin: auto;
    position: relative;
    left: 7px;
  }
  #piece .content #next {
    order: 3;
    right: 0;
  }
  #piece .content #next i {
    width: 20px;
    height: 20px;
    margin: auto;
    position: relative;
    right: 7px;
  }
}

/*# sourceMappingURL=main.css.map */
