:root {
    --primary-color: #004B72;
    --secondary-color: #D3691B;
}

* {
    font-family: 'Montserrat', sans-serif;
}


a {
    text-decoration: none;
    color: black;
}

.hero-img {
    background-image: url('../resources/origin2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;

}

.hero-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Adjust the last value for transparency (0 to 1) */
    z-index: 1;
    /* Place the overlay above the content */
}

#navmenu {
    max-width: 300px;
}

.container-md {
    position: relative;
    z-index: 2;
}

.navbar {
    background-color: #fff;

}

.nav-link:hover {
    text-decoration: underline var(--secondary-color);
}

.nav-img {
    max-width: 50px;
    max-height: 50px;
}

.btn {
    background-color: var(--primary-color);

}


.btn a {
    color: #fff;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.card-title {
    font-size: 1.5em;
}

.service-map {
    max-width: 640px;
    height: 420px;
}