@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body,
html {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background-color: #000000;
  font-family: Barlow, Arial, Helvetica, sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
body .sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
body .header-nav {
  position: absolute;
  z-index: 1000;
  color: inherit;
  /* === Hamburger button === */
  /* === Menu: mobile/tablet default (uses Bootstrap Collapse) === */
  /* === Desktop: hide hamburger, show horizontal menu (≥ 992px) === */
}
body .header-nav .hamburger {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  border-radius: 999px;
  /* Animate bars when Bootstrap toggles aria-expanded */
}
body .header-nav .hamburger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
body .header-nav .hamburger .hamburger__bar {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 160ms ease, opacity 160ms ease;
}
body .header-nav .hamburger .hamburger__bar:nth-child(2) {
  top: 14px;
}
body .header-nav .hamburger .hamburger__bar:nth-child(3) {
  top: 21px;
}
body .header-nav .hamburger .hamburger__bar:nth-child(4) {
  top: 28px;
}
body .header-nav .hamburger[aria-expanded=true] .hamburger__bar:nth-child(2) {
  transform: translate(-50%, 7px) rotate(45deg);
}
body .header-nav .hamburger[aria-expanded=true] .hamburger__bar:nth-child(3) {
  opacity: 0;
}
body .header-nav .hamburger[aria-expanded=true] .hamburger__bar:nth-child(4) {
  transform: translate(-50%, -7px) rotate(-45deg);
}
body .header-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  /* Closed by default; opens when .show is added by Bootstrap */
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  flex-direction: column;
  width: min(280px, 90vw);
  max-height: 75vh;
  overflow-y: auto;
  background: #ffffff;
  color: #000000;
  border-radius: 0.75rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  padding: 0.5rem;
  z-index: 1100;
  /* Collapse states */
}
body .header-nav .menu li + li {
  margin-top: 0.25rem;
}
body .header-nav .menu a {
  display: block;
  padding: 0.25rem 0.875rem;
  text-decoration: none;
  color: #000000;
  border-radius: 0.5rem;
}
body .header-nav .menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}
body .header-nav .menu a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
  background: rgba(0, 0, 0, 0.06);
}
body .header-nav .menu.collapse:not(.show) {
  display: none;
}
body .header-nav .menu.collapse.show {
  display: flex;
}
body .header-nav .menu.collapsing {
  display: flex;
  overflow: hidden;
}
@media (min-width: 992px) {
  body .header-nav .hamburger,
  body .header-nav .navbar-toggler.hamburger {
    display: none !important;
  }
  body .header-nav .menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    gap: 0.75rem;
    width: auto;
    max-height: none;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  body .header-nav .menu li + li {
    margin-top: 0;
  }
  body .header-nav .menu a {
    padding: 0.25rem;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: white;
    border-top: 2px solid #c2382e;
    border-bottom: 2px solid #c2382e;
  }
  body .header-nav .menu a:hover {
    background: #2e2e2e;
  }
  body .header-nav .menu a:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }
}
body section.content-404, body section.content-contact {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}
body section.content-404 .h1, body section.content-contact .h1 {
  font-size: 5rem;
}
body section.content-404 a, body section.content-contact a {
  color: #ffffff;
  text-underline-offset: 6px;
}
body section .error-box ul {
  text-align: center;
  margin: 0 0 1rem 0;
  padding: 0;
}
body section .error-box ul li {
  list-style-type: none;
}
body section,
body .carousel {
  border-top: 1px solid #ccc;
}
body .carousel-item {
  height: 300px;
  position: relative;
}
@media (min-width: 768px) {
  body .carousel-item {
    height: 400px;
  }
}
@media (min-width: 992px) {
  body .carousel-item {
    height: 500px;
  }
}
body .carousel-item .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .carousel-item h1,
body .carousel-item h3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.75rem;
  line-height: 1;
  text-transform: capitalize;
  text-shadow: 2px 2px 2px rgb(0, 0, 0);
}
body .carousel-item h1 span,
body .carousel-item h3 span {
  text-transform: none;
}
body .carousel-item img {
  height: 100%;
  object-fit: cover;
}
body .carousel-item p.ai-disclaimer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ccc;
}
body .bg-dark-gray {
  background-color: #252525;
}
body .contact {
  background-color: #252525;
}
body .contact form {
  padding: 0;
  max-width: 768px;
}
body .contact form input,
body .contact form select,
body .contact form textarea,
body .contact form button {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  margin: 0.25rem 0 1rem;
  border-radius: 0.25rem;
  border: none;
}
body .contact form input,
body .contact form select {
  height: 44px;
}
body .contact form button {
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  width: fit-content;
  padding: 0.5rem 2rem;
}
body .contact form button.btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #c2382e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}
body .contact form button.btn-submit .btn-text {
  transition: opacity 0.2s ease;
}
body .contact form button.btn-submit .spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-left: 0.5rem;
  animation: spin 0.6s linear infinite;
}
body .contact form button.btn-submit.loading .btn-text {
  opacity: 0.6;
}
body .contact form button.btn-submit.loading .spinner {
  display: inline-block;
}
body .contact form button.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
body .contact form button:hover {
  background: #a61a10;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body footer {
  border-top: 1px solid #ccc;
  padding: 2rem 0 0 0;
}
body footer .ase {
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  width: fit-content;
}
body footer .ase span {
  font-size: 0.6rem;
}
body footer img {
  max-width: 60px;
}
body footer .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
body footer .nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
body footer .nav-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
body footer .nav-links span {
  color: #ffffff;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  body footer .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  body footer .nav-links span {
    display: none;
  }
}

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