:root {
    --primary: #303232;
    --light: #8f9090;
    --dark: #181919
}

.fw-medium {
    font-weight: 600 !important
}

.fw-semi-bold {
    font-weight: 700 !important
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out,visibility 0s linear .5s;
    z-index: 99999
}

    #spinner.show {
        transition: opacity .5s ease-out,visibility 0s linear 0s;
        visibility: visible;
        opacity: 1
    }

.btn {
    font-family: 'Nunito',sans-serif;
    font-weight: 600;
    transition: .5s
}

    .btn.btn-primary, .btn.btn-secondary {
        color: #FFF
    }

.btn-square {
    width: 38px;
    height: 38px
}

.btn-sm-square {
    width: 32px;
    height: 32px
}

.btn-lg-square {
    width: 48px;
    height: 48px
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    border-radius: 0
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    outline: none
}

    .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
        color: var(--light)
    }

@media (max-width:991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEE
    }
}

.navbar-light .navbar-brand, .navbar-light a.btn {
    height: 80px
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s
}

@media (min-width:992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1
    }
}

.carousel-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center
}

@media (max-width:768px) {
    .carousel-img {
        height: 400px;
        object-fit: cover
    }
}

.page-header {
    background: linear-gradient(rgb(24 29 56 / .7),rgb(24 29 56 / .7)),url(../img/street4.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.page-header-inner {
    background: rgb(15 23 43 / .7)
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light)
}

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase
}

    .section-title::before {
        position: absolute;
        content: "";
        width: calc(100% + 80px);
        height: 2px;
        top: 4px;
        left: -40px;
        background: var(--primary);
        z-index: -1
    }

    .section-title::after {
        position: absolute;
        content: "";
        width: calc(100% + 120px);
        height: 2px;
        bottom: 5px;
        left: -60px;
        background: var(--primary);
        z-index: -1
    }

    .section-title.text-start::before {
        width: calc(100% + 40px);
        left: 0
    }

    .section-title.text-start::after {
        width: calc(100% + 60px);
        left: 0
    }

.project-carousel {
    display: flex;
    justify-content: center;
    align-items: center
}

    .project-carousel .project-item {
        margin: 0 10px;
        text-align: center
    }

        .project-carousel .project-item img {
            max-width: 100%;
            height: auto;
            width: 400px;
            object-fit: cover;
            transition: transform 0.5s ease
        }

        .project-carousel .project-item:hover img {
            transform: scale(1.1)
        }

    .project-carousel .owl-dots {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .project-carousel .owl-dot {
        position: relative;
        display: inline-block;
        margin: 0 5px;
        width: 15px;
        height: 15px;
        border: 1px solid #CCC;
        background: #FFF;
        border-radius: 50%;
        transition: background 0.5s,border-color 0.5s
    }

        .project-carousel .owl-dot.active {
            background: var(--primary);
            border-color: var(--primary)
        }

    .project-carousel::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(to right,#ffffff 0%,#fff0 100%);
        z-index: 1
    }

    .project-carousel::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(to left,#ffffff 0%,#fff0 100%);
        z-index: 1
    }

@media (min-width:768px) {
    .project-carousel::before, .project-carousel::after {
        width: 200px
    }
}

@media (min-width:992px) {
    .project-carousel::before, .project-carousel::after {
        width: 300px
    }
}

.project-carousel .owl-item .project-carousel, .project-carousel .owl-item.center .project-carousel * {
    transition: .5s
}

.project-carousel.owl-item.center .project-carousel {
    background: var(--primary) !important
}

    .project-carousel .owl-item.center .project-carousel * {
        color: #FFFFFF !important
    }

.footer .btn.btn-social {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 400;
    border: 1px solid #FFF;
    border-radius: 50%;
    transition: .3s
}

    .footer .btn.btn-social:hover {
        color: var(--primary)
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    transition: .3s
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none
    }

.footer .copyright {
    padding: 15px 0;
    font-size: 14px;
    border-top: 1px solid rgb(256 256 256 / .1)
}

    .footer .copyright a {
        color: var(--light)
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgb(255 255 255 / .1)
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none
    }

.footer .qr-gallery img {
    width: 100px;
    border-radius: 5px;
    border: 1px solid #FFF
}

.contact-item {
    display: flex;
    align-items: center
}

    .contact-item i {
        margin-right: 8px
    }

@media (max-width:768px) {
    .footer .btn.btn-link {
        font-size: 12px
    }

    .footer .copyright {
        font-size: 12px
    }

    .footer .btn.btn-social {
        width: 25px;
        height: 25px
    }

    .footer .qr-gallery img {
        width: 80px
    }
}

@media (max-width:576px) {
    .footer .btn.btn-link {
        font-size: 11px
    }

    .footer .copyright {
        font-size: 11px
    }

    .footer .contact-item {
        flex-direction: column;
        align-items: flex-start
    }
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    box-sizing: border-box
}

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        transition: transform 0.3s ease
    }

        .gallery-item img:hover {
            transform: scale(1.05)
        }

@media (max-width:992px) {
    .gallery-item {
        flex: 1 1 calc(50% - 10px)
    }
}

@media (max-width:576px) {
    .gallery-item {
        flex: 1 1 100%
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

@media (max-width:992px) {
    .category img {
        object-fit: cover;
        width: 100%;
        height: auto
    }
}

@media (max-width:768px) {
    .category a {
        flex: 1 1 100%;
        margin-bottom: 15px
    }

    .category img {
        height: 200px;
        object-fit: cover
    }
}

@media (max-width:576px) {
    .row.g-3 .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.service-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease
}

.service-link {
    position: relative;
    display: block;
    overflow: hidden
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgb(255 255 255 / .9);
    text-align: center
}

.service-link:hover .service-image {
    transform: scale(1.05)
}

@media (max-width:768px) {
    .service-image {
        height: 200px
    }
}

@media (max-width:480px) {
    .service-image {
        height: 150px
    }
}
