/********** Template CSS **********/




/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
/*.sticky-top {
    top: -100px;
    transition: .5s;
}*/





.navbar .navbar-nav .nav-link {
    margin-right: 14px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: min(1.1vw, 28px);
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        font-size: 18px;
    }
}



@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: collapse;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 75%;
        visibility: visible;
        opacity: 1;
    }

    .navbar .nav-item .dropdown-menu .dropend .dropdown-menu-end {
        top: 120%;
        visibility: collapse;
        display: none;
        opacity: 1;
    }


    .navbar .nav-item .dropdown-menu .dropend:hover .dropdown-menu-end {
        top: -50%;
        right:10px;
        visibility: visible;
        display:revert;
        opacity: 1;
    }
}



@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}




/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: color-mix(in srgb, var(--bs-secondary), transparent 50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    border: 1px solid #FFF;
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
    }

.service .service-item img {
    margin-top: -45px;
    padding-left: 33%;
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 1)) drop-shadow(0px 0px 2px rgba(255, 255, 255, 1));
}

.service .service-item *:not(.modal, .modal *) {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}


.service .service-item:hover i.text-primary {
    color: var(--bs-secondary) !important;
}

.service .service-item:hover a:not(.btn) {
    color: var(--bs-dark) !important;
}

.service .service-item:hover table {
    color: var(--bs-light) !important;
}


.service .service-item:hover a.btn {
    padding-left: 45px !important;
}

.service .table {
    color:white;
}



/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--bs-primary);
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--bs-primary);
        letter-spacing: 1px;
        box-shadow: none;
    }

.copyright {
    background: #222222;
}

    .copyright a {
        color: var(--bs-white);
    }

        .copyright a:hover {
            color: var(--bs-primary);
        }
