body {
    font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #333;
}
strong{
    font-weight: 600;
}
li{
    font-size: 1rem;
    padding-bottom: .625rem;
}
p{
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
a {
    color: #da0040;
    text-decoration: none;
}
a.btn:hover {
    background-color: #da0040;
    border-color: #da0040;
}
a.nav-link {
    color: #fff;
}
nav.custom-navbar {
    padding: 0px;
}
ul.navbar-nav li.nav-item {
    padding-bottom: 0px;
}
ul.navbar-nav li.nav-item a.nav-link {
    padding: 15px 18px;
}
.top-bar {
    background-color: #f8f9fa; /* Light gray background */
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.top-bar a {
    text-decoration: none;
    color: #333;
}
.top-bar a:hover {
    color: #000;
}
.custom-navbar {
    background-color: #da0040 !important; /* Custom background color */
}
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    right: 0%;
    bottom: 0rem;
    left: 0%;
    padding-top: 2.25rem;
    padding-bottom: 3.25rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
}
#portfolio .card-group {
    gap: 30px;
}
#portfolio .card {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #fefefe;
    transition: border .1s ease-in-out 0.1s;
}
#portfolio .card:hover {
    border-color: rgb(218 0 64 / 60%);
    transition: all .1s ease-in-out 0.1s;
}
#portfolio .card img.card-img-bottom {
    border-radius: 10px;
    padding: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

ul.footer-links a {
    color: #fff;
}
ul.footer-links a:hover {
    color: #da0040;
}
ul.navbar-nav li.nav-item.dropdown ul li a {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 15px;
}
ul.navbar-nav li.nav-item a.nav-link:hover, ul.navbar-nav li.nav-item a.active {
    background-color: #fefefe;
    color: #da0040;
}
ul.navbar-nav li.nav-item.dropdown ul li a:hover {
    background-color: #da0040;
    color: #fff;
}
#testimonials .card:hover {
    border-color: #da0040;
}
header.sub-hero {
    position: relative;
    height: 210px;
    overflow: hidden;
}
header.sub-hero h1 {
    position: absolute;
    color: #fff;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    margin: 0px;
    z-index: 1;
    text-align: center;
}
header.sub-hero:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0 0 0 / 35%);
    left: 0px;
    top: 0px;
}

@media (min-width: 992px) { /* applies only on lg and up */
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* removes small offset */
  }
}

@media (min-width: 767px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }
}

@media (max-width: 767px) {
    header.logo-header a {
        width: 50%;
    }
    header.logo-header a img {
        max-width: 100%;
    }
    header.sub-hero {
        height: auto;
    }
}