* {
  font-family: "Times New Roman", Times, serif;
}

.has-dimmer {
  position: relative;
}

.has-dimmer::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 1));
  z-index: 1;
}

.has-corner-decorations {
  position: relative;
}

.has-corner-decorations::before,
.has-corner-decorations::after,
.has-corner-decorations > .corner-top-left,
.has-corner-decorations > .corner-top-right {
  content: "";
  position: absolute;
  width: 75px; /* Adjust size as needed */
  height: 75px; /* Adjust size as needed */
  background-image: url("/static/images/corner-decorative.90cdd77e7791.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

/* Bottom Left Corner */
.has-corner-decorations::before {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}

/* Bottom Right Corner */
.has-corner-decorations::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

/* Top Left Corner */
.has-corner-decorations > .corner-top-left {
  top: 0;
  left: 0;
  transform: rotate(0deg);
}

/* Top Right Corner */
.has-corner-decorations > .corner-top-right {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}



.has-dimmer > * {
  position: relative;
  z-index: 2; /* Ensure child elements are above the dimmer */
}

.home {
    z-index: 2 !important;
}

.home-bg {
    background-image: url("/static/images/landing.55c7d9484730.webp") !important;
}

.home-overlay {
    position: relative;
}

.home-overlay::before {
    content: '';
    position: absolute;
/*     top: 0;
    left: 0; */
    width: 100%;
    height: 110%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .25)), 
        url("../../images/landing.55c7d9484730.webp");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: -2;
    background-position: bottom;
    background-repeat: no-repeat;
    position: fixed;
}


.bg-form {
  position: relative;
}

.bg-form::before {
  transition: all 0.3s ease;
  content: '';
  position: fixed !important; /* instead of absolute */
  background-attachment: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, 1)), 
      url("../../images/landing.55c7d9484730.webp");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -2;
  background-position: center;
  background-repeat: no-repeat;
  
}

.bg-paper {
  position: relative;
  background-color: #F5F5F5; /* Base solid color - adjust as needed */
}

.bg-paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/paper-bg.171645138181.png");
  background-size: cover;
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: darken;
  opacity: 0.9; /* Adjust opacity to control texture intensity */
}
