/**
* ------------------------------------------------------------------------
* Navbar
* ------------------------------------------------------------------------
*/

.custom-navbar {
    border-bottom: 2px solid #00986a;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-nav .nav-link,
.custom-navbar .navbar-brand {
    color: #fff;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus,
.custom-navbar .navbar-brand:hover,
.custom-navbar .navbar-brand:focus {
    color: rgba(255, 255, 255, 0.7);
}

.custom-navbar .navbar-nav .active {
    color: rgb(250, 167, 14) !important;
}

.custom-navbar .nav-item img {
    max-height: 30px;
}

@media (min-width: 992px) {
    .custom-navbar {
        background-color: #fff !important;
    }

    .custom-navbar .navbar-nav .nav-link {
        color: rgba(0, 0, 0, 0.75);
    }

    .custom-navbar .nav-link:hover,
    .custom-navbar .nav-link:focus {
        color: #00986a;
    }

    .custom-navbar .navbar-nav .active {
        color: #fff !important;
        background-color: #00986a !important;
        border-radius: 4px;
    }
}

.custom-navbar .dropdown-menu {
    border-top: 3px solid #00986a;
}

/**
* ------------------------------------------------------------------------
* Image
* ------------------------------------------------------------------------
*/

.img-shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.img-outer {
    background-color: #f5f5f5;
    text-align: center
}

.footer {
    border-top: 1px solid #d6dade;
    background-color: #ebeff3;
}

.copy-right {
    background-color: #fff;
    color: #6a6e72;
    align-items: center;
    font-weight: 600;
}

/**
* ------------------------------------------------------------------------
* Contact page preloader
* ------------------------------------------------------------------------
*/

#contact-preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #ffffff83;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    transition: 0.5s;
}

#contact-preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.gallery-image {
    max-height: 150px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

/**
* ------------------------------------------------------------------------
* Lazy load images
* ------------------------------------------------------------------------
*/

.lazy {
    transition: 500ms ease-in-out;
    opacity: 0;
}

.lazy.loaded {
    opacity: 1;
}
