
#top-container {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 0;
      /* You might need to adjust flex-direction depending on desired layout */
    }


#top-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to left, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.7)),
      url('/user/images/spray.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: -1;
    /* opacity: 0.4; adjust this */
    z-index: -1;
} 


    #disappearing-section {
      padding: 20px;
      text-align: center;
      /* Initial state: visible */
      transition: transform 0.3s ease-out, opacity 0.3s ease-out;
      display: flex; /* Arrange children in a row */
      align-items: center; /* Vertically align items in the center */
      padding-left: 7rem;
      padding-right: 7rem;

    }

    #header {
      /* Keep your existing fixed positioning */
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10; /* Ensure it stays on top */
      width: 100%;
    }


    #disappearing-section hr {
       width: auto; /* Or a specific width */
       margin-top: 5px; /* Adjust spacing */
       margin-bottom: 5px; /* Adjust spacing */
       border: none;
       border-top: 1px solid #ccc; /* Example rule style */
    }


    .text-container {
      display: flex;
      flex-direction: column; /* Stack the text divs vertically */
      margin-left: 10px; /* Space between logo and text block */
      text-align: left;

    }

    .text-container div {
      /* Styles for individual text lines */
    }

    img.navbar-logo {
      width: 150px; /* Adjust size as needed */
      height: auto; /* Maintain aspect ratio */
      margin-right: 10px; /* Add space between logo and text */
    }



@media only all and (max-width: 59.938em) {
  #disappearing-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media only all and (max-width: 47.938em) {
  #disappearing-section {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.6em; 
  }
}


.logo-text-upper {
  font-family: 'Anton', sans-serif;
  font-size: 2.4em; /* Adjust this value to control the size */
  font-weight: bold; /* Make the text bold */
  font-style: italic;
}

.logo-text-lower {
  font-size: 1.5em; /* Adjust this value to control the size */
}


a {
  color: #E91B1B;
}
a:hover {
  color: #901010;
}


ul.navigation li a {
  font-size: 1.2em;
}


#header #navbar ul.navigation {
      margin-top: 0;
      /* padding-top: 0; */
      /* padding-bottom: 0; */
    }

#header.scrolled {
  padding-bottom: 1rem;
}

#header.scrolled #navbar a {
  color: #E91B1B !important;
}

#header.scrolled #navbar span {
  color: #E91B1B !important;
}


#header.scrolled #navbar a:hover {
  color: #901010 !important;
}
#header.scrolled #navbar a:before, #header.scrolled #navbar a:after {
  background-color: #E91B1B !important;
}
#header #navbar ul.navigation li a:before, #header #navbar ul.navigation li a:after {
  background-color: #E91B1B;
}
#header #navbar ul.navigation li ul li.active > a {
  color: #000000;
}
#header #navbar ul.navigation li ul li:hover > a {
  background-color: #E91B1B;
}
.header-image #header .navigation .has-children:hover a {
  color: #E91B1B;
}
.page-title {
  background: #E91B1B;
}
.label {
  background: #E91B1B;
}
textarea:focus, input:focus {
  border-color: #E91B1B;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(163, 21, 21, 0.7);
}
.button {
  color: #E91B1B;
  border: 1px solid #E91B1B;
}
.button:hover {
  background: #E91B1B;
  color: #fff;
}
.button:active {
  box-shadow: 0 1px 0 #B51111;
}
.tags a {
  border: 1px solid #E91B1B;
}
.list-item .list-blog-header h4 a:hover {
  color: #E91B1B;
}
.bullet-icon {
  background: #E91B1B;
}
.bullet-icon-1 {
  background: #E91B1B;
}
.modular .features .feature i.fa {
  color: #E91B1B;
}

.container {
  max-width: 100%;
  box-sizing: border-box;
}

#navbar {
  display: flex;
  align-items: center;
  padding: 0 2rem; /* optional padding */
  display: flex;
  justify-content: center;
}


   header#header.scrolled ul.navigation li a {
      padding-top: 12px; /* Adjust this value */
      padding-bottom: 12px; /* Adjust this value */
      /* Keep other styles like horizontal padding, color, font-size, etc. */
    }

    /* Ensure the padding for the non-scrolled state is still correct (e.g., 23px) */
    ul.navigation li a {
      padding-top: 23px; /* Original padding for 80px height */
      padding-bottom: 23px; /* Original padding for 80px height */
      /* Keep other styles */
    }


.form-row .form-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: auto;
  align-content: start
}

.form-row .form-field {
  flex: 0 1 auto;
}
/* Optional: make full-width rows expand */
.form-field .form-full {
  flex: 1 1 auto;
  width: 100%;
}
.form-row .form-col.form-wide {
  flex: 2 1 0; /* 2x the width of normal columns */
}
