@import url('https://fonts.googleapis.com/css2?family=Karla&family=Staatliches&display=swap');

:root {
    --headerbg: #929292;
    --headertext: #ffffffe7;
    --headertexthover: rgba(0, 0, 0, 0.8);
    --footer: #dbdbdb;
}

html {
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Karla', sans-serif;
    background-color: #F9FAF4;
    color: rgba(0, 0, 0, .6);
}

h1,
h2,
h3,
h4 {
    font-family: 'Staatliches', 'Arial', sans-serif;
    letter-spacing: 3px;
}

h2 {
    font-size: x-large;
}

h3 {
    font-size: large;
}

h4 {
    font-size: medium;
}

a {
    text-decoration: none;
}

.container-fluid {
    float: left;
}

/*-------------------- Header ---------------------*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    text-transform: uppercase;
    background-color: var(--headerbg);
    --bs-bg-opacity: 1;
    box-shadow: 5px 5px 5px #88888844;
    z-index: 2;
    display: inline;
}

.navbar-brand {
    font-family: 'Staatliches', 'Arial', sans-serif;
    letter-spacing: 2px;
    padding: 0;
}

.navbar-brand img {
    margin-left: 15px;
}

.logo-black {
    display: none;
    position: absolute;
    left: 12px;
    z-index: 99;
}

.navbar-brand:hover .logo-black {
    display: inline;
}


/* [DEPRECATED] Hawk Solution Logo Text */
/* .navbar-brand .col-md-4 {
    float: right;
    margin-top: 5px;
    width: 150px;
    color: var(--headertext);
    transition: all 0.3s;
} */


@media screen and (max-width:340px) {
    .navbar-brand .col-md-4 {
        font-size: 1rem;
    }

    .navbar-brand img {
        margin-left: auto;
    }
}

@media screen and (max-width:767px) {
    .navbar-brand .col-md-4 {
        width: 120px;
    }
}

.navbar-nav {
    margin-left: auto;
    text-align: right;
}

.navbar-nav li {
    padding: 0px 30px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--headertext);
}

.navbar-dark .navbar-toggler {
    border: none;
    margin-right: 15px;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Menu (Hidden by Default) */
.dropdown-menu {
    background-color: var(--headerbg);
    border: none;
    width: 300px;
}

@media screen and (max-width:375px) {
    .dropdown-menu {
        width: auto;
    }
}


@media screen and (max-width:991px) {
    .dropdown-menu {
        margin-top: 40px !important;
        float: right;
        margin-right: -100px;
    }

    .dropdown-menu li,
    .dropdown-menu li a {
        float: right;
        text-align: right;
    }

}

.dropdown-link {
    color: white;
}

.dropdown-menu li {
    text-align: left;
}

.nav-link.dropdown-link {
    font-weight: 500;
}

/* End Dropdown Menu */

/*---------- Hover Effects ----------*/
nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #aaa;
    font-weight: 800;
    margin: 0 10px;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
    transition: all 0.3s;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.nav-link.hovered {
    color: var(--headertexthover) !important;
}

.navbar-brand .col-md-4:hover,
.col-md-4.hovered {
    color: var(--headertexthover);
    transition: all 0.3s;
}

/* underline */
nav.stroke ul li a,
nav.fill ul li a {
    position: relative;
    float: right;
}

nav.stroke ul li a:after,
nav.fill ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #ffc94b;
    height: 3px;
    border-radius: 5px;
}

nav.stroke ul li a:hover:after {
    width: 100%;
}

/* Dropdown Menu */

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: none;
}


/* End Dropdown Menu */


/*---------- End Hover Effects ----------*/

/* Offset for navigation links (Do not deprecate)*/
.anchor::before {
    content: '';
    display: block;
    height: 75px;
    margin-top: 15px;
    visibility: hidden;
}

/*------------------ Page below navbar------------------*/
.content {
    margin-top: auto;
    margin-bottom: 15px;
}

.content .container-fluid:not(#home) {
    margin-top: -20px;
}

/*------------------ Hero Image/Video------------------*/
.hero {
    margin-top: 17px;
    padding-top: 60px;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero.jpg"); */
    background-color: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

video {
    margin-top: -20px;
    width: 100vw;
    height: 300px;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    filter: brightness(60%);
}

@media screen and (max-width:398px) {
    video {
        height: 400px;
    }
}

#home {
    padding: 5rem;
}

.home-row {
    text-align: center;
    left: 50%;
    color: white;
}

/* -------------------------Project Highlights------------------- */
.gallery {
    margin-bottom: 10px;
}

.gallery p,
.gallery h4 {
    text-align: center;
}

.gallery img {
    transition: all 0.3s;
}

.project-highlights-img:hover {
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
}

.project-highlights {
    display: none;
}

.carousel-indicators {
    z-index:1;
}

.carousel-caption h4 span {
    background-color: rgba(0, 0, 0, 0.363);
    padding: 0 3px 0 5px;
}

@media screen and (min-width:576px) {
    .carousel-mobile {
        display: none;
    }
}

@media screen and (max-width:575px) {
    .gallery-desktop {
        display: none;
    }
    .project-highlights {
        height: 350px;
    }
}

/*------------------ Services and About Us images and captions ------------------*/
.services-btn {
    width: 100%;
    background-color: var(--headerbg);
    transition: all 0.3s;
    border: none;
    border-radius: 2px;
    color: var(--headertext);
    padding: .75rem .75rem 0rem .75rem;
}

.services-btn:hover {
    background-color: #ffc94b;
    transition: all 0.3s;
    color: var(--headertexthover);
}

.services-btn:active {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: all 0.3s;
    color: var(--headertexthover);
    background-color: #dfab32;
}

@media (max-width: 1190px) and (min-width:768px) {
    .services-btn {
        height: 105px;
    }
}

@media (max-width: 768px) {
    .services-btn h2 {
        font-size: large;
    }
}

.services-list {
    display: none;
}

#services .row {
    justify-content: center;
}

/*------------------ About Us ------------------*/
.portraits {
    justify-content: center;
    text-align: center;
}

/*------------------ Contact Us ------------------*/
#contactus h3 {
    float: left;
}

.map {
    margin-bottom: 60px;
}

/*------------------ Footer ------------------*/
.footer {
    background-color: var(--footer);
    position: fixed;
    bottom: 0px;
    width: 100%;
    margin-bottom: -5px;
}

.bi {
    width: 1.5em;
    height: 1.5em;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 2px;
    text-decoration: none;
}

@media screen and (max-width:418px) {
    .footer {
        font-size: 0.7em;
    }
}

svg {
    transition: all 0.3s;
}

svg:hover {
    color: var(--headertexthover);
    transition: all 0.3s;
}

/*------------------ End Footer ------------------*/