/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2041 {
    padding: clamp(9rem, 20vw, 11rem) 1rem clamp(3rem, 6vw, 4rem);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #f5f5f5;
  }
  #hero-2041 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-2041 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 34rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }
  #hero-2041 .cs-content .cs-topper {
    font-size: 0.8rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700 !important;
    color: var(--secondary) !important;
    margin-bottom: 1rem;
    display: block;
    padding: 0;
    background: none !important;
    border: none;
    border-radius: 0;
  }
  #hero-2041 .cs-content .cs-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem) !important;
    font-weight: 900 !important;
    color: var(--secondary) !important;
    line-height: 1.1 !important;
    margin: 0 0 1.25rem 0 !important;
    text-align: left;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--secondary) !important;
    text-shadow: none !important;
  }
  #hero-2041 .cs-content .cs-title .cs-title-red {
    color: #B71C1C !important;
    -webkit-text-fill-color: #B71C1C !important;
  }
  #hero-2041 .cs-divider {
    width: 3.5rem;
    height: 3px;
    background-color: #B71C1C;
    margin-bottom: 1.25rem;
  }
  #hero-2041 .cs-content .cs-text {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: #4e4b66 !important;
    margin: 0 0 1.5rem 0 !important;
    max-width: 28rem;
    text-align: left;
    width: auto !important;
  }
  #hero-2041 .cs-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
  }
  #hero-2041 .cs-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #hero-2041 .cs-badge-icon {
    width: 2rem;
    height: 2rem;
    padding: 0.35rem;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
  }
  #hero-2041 .cs-badge-icon.cs-badge-icon-red {
    background-color: #B71C1C;
  }
  #hero-2041 .cs-badge-icon.cs-badge-icon-navy {
    background-color: var(--secondary);
  }
  #hero-2041 .cs-badge-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
  }
  #hero-2041 .cs-badge-desc {
    display: block;
    font-size: 0.75rem;
    color: #4e4b66;
    line-height: 1.2;
  }
  #hero-2041 .cs-content .cs-button-solid {
    display: inline-flex !important;
    align-items: center;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    padding: 0.9rem 1.75rem !important;
    background-color: var(--secondary) !important;
    color: #fff !important;
    border-radius: 0.375rem;
    text-decoration: none;
    line-height: 1 !important;
    transition: background-color 0.3s;
  }
  #hero-2041 .cs-content .cs-button-solid:hover {
    background-color: #00152e !important;
  }
  #hero-2041 .cs-content .cs-button-solid:before {
    display: none !important;
  }
  #hero-2041 .cs-background {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 64rem) {
  #hero-2041 {
    min-height: 550px;
  }
  #hero-2041 .cs-background {
    display: block;
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
  }
  #hero-2041 .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 40%);
    pointer-events: none;
  }
  #hero-2041 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #hero-2041 .cs-content {
    max-width: 30rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-2041 {
    padding: 10rem 1rem 5rem;
    min-height: 600px;
  }
  #hero-2041 .cs-content {
    max-width: 34rem;
  }
  #hero-2041 .cs-content .cs-title {
    font-size: 3.5rem !important;
  }
  #hero-2041 .cs-background {
    width: 60%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-2041 {
    background-color: var(--dark);
  }
  body.dark-mode #hero-2041 .cs-content .cs-topper {
    color: var(--bodyTextColorWhite) !important;
  }
  body.dark-mode #hero-2041 .cs-content .cs-title {
    color: var(--bodyTextColorWhite) !important;
    -webkit-text-fill-color: var(--bodyTextColorWhite) !important;
  }
  body.dark-mode #hero-2041 .cs-content .cs-text {
    color: var(--bodyTextColorWhite) !important;
    opacity: 0.8;
  }
  body.dark-mode #hero-2041 .cs-badge-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hero-2041 .cs-badge-desc {
    color: var(--bodyTextColorWhite);
    opacity: 0.7;
  }
  body.dark-mode #hero-2041 .cs-background:before {
    background: linear-gradient(to right, var(--dark) 0%, transparent 40%);
  }
}
/*-- -------------------------- -->
<---         Search Bar         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #search-bar {
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    margin-bottom: 2rem;
  }
  #search-bar .search-container {
    width: 100%;
    max-width: 60rem;
    margin: auto;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
  }
  #search-bar .search-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  #search-bar .search-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f5f5f5;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    flex: 1;
  }
  #search-bar .search-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #999;
    flex-shrink: 0;
  }
  #search-bar .search-field input {
    border: none;
    background: none;
    font-size: 0.95rem;
    color: var(--headerColor);
    width: 100%;
    outline: none;
    font-family: inherit;
  }
  #search-bar .search-field input::placeholder {
    color: #999;
  }
  #search-bar .search-button {
    background-color: #B71C1C;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
  }
  #search-bar .search-button:hover {
    background-color: #8B1515;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #search-bar {
    margin-top: -2.5rem;
  }
  #search-bar .search-form {
    flex-direction: row;
    align-items: center;
  }
  #search-bar .search-button {
    flex-shrink: 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #search-bar .search-container {
    background: var(--medium);
  }
  body.dark-mode #search-bar .search-field {
    background: var(--accent);
  }
  body.dark-mode #search-bar .search-field input {
    color: var(--bodyTextColorWhite);
  }
}


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