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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.intro {
  min-height: 100vh;
}

.primary-overlay {
  position: relative;
}

.primary-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  opacity: 0.5;
  background: #c05f77;
}

.primary-overlay-sm {
  position: relative;
}

@media (min-width: 576px) {
  .primary-overlay-sm::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.9;
    background: #c05f77;
  }
}
.primary-overlay-md {
  position: relative;
}

@media (min-width: 768px) {
  .primary-overlay-md::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.9;
    background: #c05f77;
  }
}
.primary-overlay-lg {
  position: relative;
}

@media (min-width: 992px) {
  .primary-overlay-lg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.9;
    background: #c05f77;
  }
}
.primary-overlay-xl {
  position: relative;
}

@media (min-width: 1200px) {
  .primary-overlay-xl::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.9;
    background: #c05f77;
  }
}
.primary-overlay-xxl {
  position: relative;
}

@media (min-width: 1400px) {
  .primary-overlay-xxl::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    opacity: 0.9;
    background: #c05f77;
  }
}
.bg-cover {
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
}

.bg-center {
  background-position: center center !important;
}

.overlay-content {
  position: relative;
  z-index: 20;
}

svg {
  font-family: "saeada";
}

.intro-text {
  font-size: 1.15rem;
  font-family: "saeada";
}

@media (min-width: 992px) {
  .intro-strapline-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  .intro-strapline-text {
    font-size: 1.5rem;
  }
  .background-star {
    width: 400px;
    right: 0%;
  }
} /*ends max-width 991 media query */
@media (max-width: 767px) {
  #logo_acquire {
    height: 55px;
    width: 50px;
  }
  #curator_intro {
    flex-direction: column;
  }
}
.scroll-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 75%;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  position: absolute;
  bottom: 4rem;
  left: calc(50% - 1.25rem);
  z-index: 999;
}

.scroll-btn:hover, .scroll-btn:focus {
  color: #fff;
  text-decoration: none;
}

.wave {
  fill: #fffcfc;
  height: 15px;
}

.sector {
  font-family: "saeada", sans-serif;
}

.curator-color {
  color: #35aca5;
}

.artist-color {
  color: rgb(197, 105, 105);
}

.critic-color {
  color: #a767bb;
}

.collector-color {
  color: #6792bb;
}

.exhibition-color {
  color: #c9b37b;
}

.navbar {
  opacity: 0.92;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
}

.modal-dialog {
  max-width: 1040px;
}

.sector-icon {
  filter: drop-shadow(5px 5px 5px rgb(192, 191, 188));
  margin-right: 0.25rem;
}

.background-star {
  width: 650px;
  right: 5%;
  opacity: 0.6;
}

.to-top-btn {
  position: fixed;
  z-index: 20;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: rgb(247, 200, 200);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.to-top-btn:hover { /* sass syntax */
  background-color: #e6a3a3;
}

.to-top-btn img {
  margin-bottom: 0.25rem;
  width: 18px;
}

.show {
  opacity: 1;
}

#curator-modal .modal-dialog {
  max-width: 800px;
  /*margin-top: 130px;*/
}

.btn-primary {
  color: #fff !important;
}

/* Loading Overlay (used by _showLoading/_hideLoading) */
.epp-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.epp-loading-overlay.show {
  display: flex;
}

/* Character Counter (used in forms) */
.epp-char-counter {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.epp-char-counter.text-danger {
  font-weight: 500;
}

/* Offline Banner (used by offline indicator) */
.epp-offline-banner {
  border-left: 4px solid #ffc107;
}

/* Required Field Indicator */
.form-label.required::after {
  content: " *";
  color: #dc3545;
}

footer {
  margin-top: auto;
}
