@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');


body {background-color:rgb(255, 255, 255);}
/* Hero */
.hero-section {
  position: relative;
  background-image: url('/assets/images/hero.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 8rem 0;
  color: #fff;
  min-height: 550px;
}

.custom-bg {
  background-image: url('/assets/images/bg.webp ');
  background-repeat: repeat;
  background-position: top left;
  background-color: black;
  }

.light-blue-bg {background-color:#e8f0fe;}
.card small {color:#1a73e8!important;}


.hero-section h1, .hero-section p {color:#f24800;}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.85);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: .5em;
}

/* About */
.about-section {
  padding: 4rem 0;
}

/* Footer */
.footer {
  background-color: #e8f0fe;
  padding: 3rem 0;
}
.footer a {
  text-decoration: none;
}
.footer-last {
  background-color: #111;
  padding: 15px;
}

/* Headings */
.h3, h3 {color: #3c4043 !important;}
.h2, h2 {
  color: #5b0f00;
  font-family: Montserrat, Arial;
  font-weight: 400;
  font-size: 29pt;
  letter-spacing: -1px;
  line-height: 1.44;
}

/* Navbar */
.navbar span {
  display: inline-block;
  line-height: 1;
  max-width: 380px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 16px 12px;
  color: #5f6368!important;
  font-size: 23px;
  font-weight: 600;
}
.navbar a { text-decoration: none!important;color: #5f6368!important; }
.navbar img {height: 200px;width: auto;vertical-align: top;}
.navbar {

border-bottom: 3px solid #1a73e8;

background-color: var(--bs-dark-bg-subtle)!important;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .navbar-collapse {
    margin-top: 15px;
    background-color: #000;
    padding: 25px;
  }
  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .mobile-header a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile-header a img,
  .mobile-header a .QTKDff {
    margin-bottom: 0.5rem;
  }
  .navbar-toggler {
    margin-bottom: 1rem;
    align-self: center;
  }
  .navbar-collapse .navbar-nav {
    justify-content: flex-start;
    margin-left: 0!important;
  }
}

/* Nebraska Web Designers credit */
#nebraska-web-designers {
  margin: 0 auto!important;
  display: block;
  padding-bottom: 20px;
}
.idealhtml img {
  margin-top: 25px!important;
  display: block;
  width: 150px;
  margin: 0 auto;
}

.btn-contact {
  /* background & border */
  background-color: rgba(67, 29, 42, 1);
  border: 1px solid rgba(225, 223, 219, 1);
  /* text */
  color: rgba(225, 223, 219, 1);
  font-family: 'Open Sans', sans-serif;
  font-size: 12pt;
  line-height: 22px;
  /* some padding to match Bootstrap buttons */
  padding: 0.375rem 0.75rem;
  /* rounded corners like default Bootstrap */
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
}

.btn-contact:hover,
.btn-contact:focus {
  /* slightly darker on hover */
  background-color: rgba(55, 24, 34, 1);
  border-color: rgba(200, 198, 194, 1);
  color: rgba(225, 223, 219, 1);
  text-decoration: none;
}


.btn-facebook {
  background-color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-facebook:hover {
  background-color: #5b0f00;
  color: #ffffff;
}

/* make all carousel images a fixed height and cover the box */
.carousel-item img {
          /* adjust this to your desired visible height */
  object-fit: cover;    /* crop to fill without distortion */
  object-position: center center; /* center the crop */
  width: 100%;          /* full width as before */
}

