h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}


/* Ensure html and body take up the full height of the viewport */
html, body {
    height: 100%; /* Full height for both html and body */
    margin: 0; /* Remove default margin */
    display: flex;
    flex-direction: column; /* Arrange content vertically */
}

/* Body Styling */
body {
    /* font-family: "Arial", sans-serif; */
    line-height: 1.6;
    background-image: url('../images/hernando-bg.jpg'); /* background image */
    background-size: cover; /* Ensures background covers entire viewport */
    background-position: center; /* Centers background image */
    background-attachment: fixed; /* Fixes background while scrolling */
    background-repeat: no-repeat; /* Prevents background tiling */
    flex-grow: 1; /* Ensures the body takes up the remaining space */
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

ul {
    list-style-type: none;
}

a {
    color: inherit;
}

    a:hover,
    a:focus {
        color: #007bff;
        text-decoration: underline;
    }


/* Main Content Styling */
.main-content {
    background: white; /* White background for content */
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow */
    margin-bottom: 0; /* Ensures no gap between content and footer */
    flex-grow: 1; /* Ensures the main content expands to fill available space */
}

/* Navbar Styling */
.logo-wrapper {
    padding-top: 0.5rem;
}

    .logo-wrapper .container {
        border-radius: 10px 10px 0px 0px;
        background-color: #ffffff; /* Localized background only */
    }

.site-logo {
    max-width: 100%;
    height: auto;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav {
    text-align: center;
}

    .navbar-nav .nav-link {
        font-size: 1rem;
        font-weight: 500;
    }

/* Navbar Container Styling */
.navbar-container {
    background: #e79839;
    margin-bottom: 0;
}



.nav-item .nav-link {
    color: black;
}

.dropdown-item:hover {
    text-decoration: none;
    color: #e79839 !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #e79839;
}

/* Hover effect for navbar items */
.navbar-nav .nav-item .nav-link {
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text */
}

    .navbar-nav .nav-item .nav-link:hover {
        background-color: #2d2d2d; /* Background color on hover */
        color: white; /* Text color on hover */
        text-decoration: none;
    }

/* Ensures submenu appears to the right */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        left: 100%;
        top: 0;
        margin-top: -1px;
    }

/* Smooth background effect */
.dropdown-menu {
    transition: 0.3s ease-in-out;
}

    .dropdown-menu .dropdown-item:hover {
        background-color: #f8f9fa; /* Light gray hover effect */
        color: #007bff;
    }

.dropend .dropdown-menu {
    display: none;
}


.downloads-section h4 {
    background-color: #e79839;
    color: white; /* text-white */
    padding-left: 1rem; /* px-3 */
    padding-right: 1rem; /* px-3 */
    padding-top: 0.5rem; /* py-2 */
    padding-bottom: 0.5rem; /* py-2 */
    border-radius: 0.25rem; /* rounded */
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075); /* shadow-sm */
}
/* Hero banner with dark overlay */
.hero-banner {
    background: url('/images/hernando-mission-banner.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    /* Fade-in animation */
    .hero-banner .content {
        position: relative;
        z-index: 2;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1.5s ease forwards;
        animation-delay: 0.3s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Forms */
.forms-intro-card {
    background: #ffffff;
    border: 1px solid #dcdfe3;
}

.forms-intro-subtitle {
    font-size: 1.05rem;
}

.forms-info {
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1.25rem 1.25rem;
    border-radius: 0.75rem;
}

    .forms-info p:last-child {
        margin-bottom: 0;
    }

.forms-intro-card .input-group-text {
    background-color: #f8f9fa;
    border-right: 0;
}

.forms-intro-card .form-control {
    border-left: 0;
}

    .forms-intro-card .form-control:focus {
        border-left: 1px solid #86b7fe;
    }

.forms-intro-card a {
    font-weight: 600;
}

    .forms-intro-card a:focus,
    .forms-intro-card button:focus,
    .forms-intro-card input:focus {
        outline-offset: 2px;
    }

input[type="text"],
input[type="email"],
/*input[type="search"],*/
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 15px;
}

input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
}

    input[type="submit"]:hover {
        background-color: #218838;
    }

/* Accordion */
.accordion-button {
    background-color: #e79839;
    color: black;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1rem;
}

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 15px;
    background-color: #f1f1f1;
    border-top: 1px solid #ccc;
}

.accordion-button:not(.collapsed) {
    background-color: #2d2d2d;
    color: white;
}



/* Section Title */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Quick Links Styling */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-link {
    flex: 1 1 calc(50% - 10px); /* Adjust for responsiveness */
    background: #e39b41;
    color: black;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

    .quick-link i {
        font-size: 1.2rem;
    }

    .quick-link:hover {
        background: #cc882f;
        transform: scale(1.05);
        text-decoration: none;
        color: black;
    }

/* Latest Updates Styling */
.latest-updates {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.update-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

    .update-item:last-child {
        border-bottom: none;
    }

.update-date {
    font-size: 0.9rem;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.update-item a {
    font-size: 1rem;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

    .update-item a:hover {
        /*color: #f8b400;*/
    }


/* *********************************
    **********************
    Carousel overall 
    **********************
    **************************** */


#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

    /* Make every image fill the slide area */
    #heroCarousel .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Optional dark overlay */
.slide-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

    .slide-overlay::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }

/* Caption stays centered consistently */
#heroCarousel .carousel-caption {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80%, 700px);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    color: white;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}


/* Fade-In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -55%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Heading Animation */
#heroCarousel .carousel-caption h2 {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeInText 1s 0.3s ease-in-out forwards;
}

/* Paragraph Animation */
#heroCarousel .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInText 1s 0.6s ease-in-out forwards;
}

/* Button Animation */
#heroCarousel .carousel-caption .btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    background: #e79839;
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    opacity: 0;
    animation: fadeInText 1s 0.9s ease-in-out forwards;
}

    #heroCarousel .carousel-caption .btn:hover {
        background: rgb(242, 245, 248);
        transform: scale(1.05);
        text-decoration: none;
        color: black;
    }

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}


/*  Newsletter Section 
**************************************/
.hcpa-newsletter {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.newsletter-image {
    width: 100%;
    max-width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.btn-download {
    background-color: #1f4fa3;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

    .btn-download:hover {
        background-color: #163d82;
        text-decoration: none;
        color: #ffffff !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }


/* About Appraiser Section */
.about-appraiser {
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for readability */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

    /* Add Background Image Behind Section */
    .about-appraiser::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/images/ShinyOverlay.svg') no-repeat center center;
        background-size: cover;
        opacity: 0.3; /* Light background effect */
        z-index: -1;
        border-radius: 10px;
    }

/* Appraiser Portrait */
.appraiser-portrait {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    /*border: 5px solid #007bff;*/
}

    .appraiser-portrait:hover {
        transform: scale(1.05);
    }

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Quote Styling */
.appraiser-quote {
    font-style: italic;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Read More Button */
.btn-primary {
    background-color: #e79839;
    border: none;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #2d2d2d !important;
        text-decoration: none;
        color: white !important;
    }

/* Social Media Links */
.social-links {
    margin-top: 10px;
}

.social-icon {
    font-size: 1.5rem;
    color: #e79839;
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}

    .social-icon:hover {
        color: #0056b3;
    }


.facebook-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px; /* optional */
}

.facebook-feed {
    display: block;
    width: 100%;
    min-width: 0;
    height: 400px;
    border: none;
}

/* Footer Styling */

.footer-wrapper{
    padding-bottom:0.5rem;
}

.site-footer {
    background: #f8f9fa;
    border-top: 1px solid #e6e6e6;
}

/* Small label above social */
.footer-kicker {
    font-size: .85rem;
    color: #6c757d;
    margin-bottom: .35rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #1877f2;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

    .footer-social:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(0,0,0,.10);
    }

/* Card layout */
.footer-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    text-align: center;
}

.footer-map iframe {
    width: 100%;
    height: 130px; /* key: shorter map */
    border: 0;
    display: block;
}

.footer-card-body {
    padding: 14px 16px 16px;
}

    .footer-card-body h6 {
        font-weight: 700;
        margin-bottom: .35rem;
    }

    .footer-card-body p {
        color: #555;
        font-size: .95rem;
        margin-bottom: .5rem;
    }

/* Links */
.footer-link {
    font-size: .9rem;
    text-decoration: none;
}

    .footer-link:hover {
        text-decoration: underline;
    }

/* Contact strip */
/*  .footer-contact {
        background: #fff;
        border: 1px solid #ededed;
        border-radius: 12px;
        padding: 12px 14px;
    }

        .footer-contact a {
            text-decoration: none;
        }

            .footer-contact a:hover {
                text-decoration: underline;
            } */

/* Subtle shaded contact strip */
.footer-contact {
    background: #f2f5f8; /* subtle blue-gray tint */
    border-top: 1px solid #e4e9ee;
    border-radius: 10px;
    padding-top: 1.5rem;
    padding-bottom: 1.25rem;
}

/* Small logo */
.footer-logo-small {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Brand name */
.footer-brand-name {
    font-weight: 600;
    color: #003e6b;
    font-size: .95rem;
    margin-bottom: .25rem;
}

/* Inline contact */
.footer-contact-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .9rem;
    color: #495057;
}

    .footer-contact-inline i {
        color: #003e6b;
        margin-right: 4px;
    }

    .footer-contact-inline a {
        color: #003e6b;
        text-decoration: none;
        font-weight: 500;
    }

        .footer-contact-inline a:hover {
            text-decoration: underline;
        }

/* Compact social button */
.footer-social-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #d8dee6;
    background: #fff;
    color: #1877f2;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .2s ease;
}

    .footer-social-compact:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 14px rgba(0,0,0,.08);
    }

.footer-container {
    color: #495057;
    font-size: 0.95rem;
    padding: 30px;
    background-color: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 0 0 10px 10px;
    border-top: 2px solid #ddd;
}

    .footer-container h6 {
        font-weight: 600;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: #003e6b;
    }

    .footer-container a {
        color: #003e6b;
        font-weight: 500;
        text-decoration: none;
    }

        .footer-container a:hover {
            text-decoration: underline;
        }

    .footer-container iframe {
        border-radius: 6px;
        max-width: 100%;
    }

    .footer-container .fa-phone-alt,
    .footer-container .fa-envelope {
        margin-right: 6px;
        color: #003e6b;
    }



.avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



@media (max-width: 576px) {
    .h1, .h2, .h3 {
        font-size: 1.5rem;
    }

    .col-md-3, .col-md-6 {
        flex: 100%;
    }
}

/* Mobile adjustments */

/* Only apply hover dropdowns on desktop */

@@media (min-width: 768px) {
    .footer-contact-inline {
        justify-content: flex-start;
    }
}
@media (min-width: 769px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        left: 100%;
        top: 0;
        margin-top: -1px;
    }

    .dropend:hover .dropdown-menu {
        display: block;
    }

    .dropend .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }
}


/* Responsive Design for Smaller Screens */
/* Media Queries for Responsiveness */
@media (max-width: 768px) {

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        flex-direction: column;
        text-align: center;
    }
    .main-content {
        padding: 1rem;
    }
    .footer-container .container {
        padding: 2rem 1rem;
        border-radius: 0;
    }

    .row {
        flex-direction: column;
    }

    .dropend .dropdown-menu {
        position: static; /* Makes it flow normally */
        display: none; /* Hidden by default on mobile */
    }

    .dropend:hover .dropdown-menu {
        display: block; /* Shows on hover for mobile */
    }

    .number-box {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item {
        height: 320px;
        min-height: 320px;
    }

        #heroCarousel .carousel-caption {
            width: 90%;
            padding: 14px;
        }

            #heroCarousel .carousel-caption h2 {
                font-size: 1.35rem;
                margin-bottom: 8px;
            }

            #heroCarousel .carousel-caption p {
                font-size: 0.95rem;
                margin-bottom: 10px;
            }

            #heroCarousel .carousel-caption .btn {
                font-size: 0.95rem;
                padding: 8px 16px;
            }
}

@media (max-width: 576px) {
    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item {
        height: 280px;
        min-height: 280px;
    }

        #heroCarousel .carousel-caption {
            width: 92%;
            padding: 12px;
        }

            #heroCarousel .carousel-caption h2 {
                font-size: 1.1rem;
            }

            #heroCarousel .carousel-caption p {
                font-size: 0.85rem;
                margin-bottom: 8px;
            }

            #heroCarousel .carousel-caption .btn {
                font-size: 0.85rem;
                padding: 7px 14px;
            }
}