
/*** Spinner Start ***/
#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;
    }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

    .btn.btn-primary:hover {
        background: var(--bs-dark);
        color: var(--bs-white);
    }

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

    .btn.btn-light:hover {
        color: var(--bs-white);
        background: var(--bs-dark);
    }

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

    .btn.btn-dark:hover {
        color: var(--bs-primary);
        background: var(--bs-light);
    }


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    /*background: linear-gradient(88deg, #0d6b9a 19.26%, #5fa0d7 106.62%);*/
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    color: var(--bs-dark-blue);
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--bs-dark-blue);
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    /*.navbar {
        padding: 20px 0;
    }*/

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    /*.navbar {
        padding: 20px 0;
    }*/

    .navbar .h3 {
        font-size: 1.5rem;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /*background: var(--bs-light);*/
        border-radius: 10px;
    }

        .navbar .navbar-nav .nav-btn {
            width: 100%;
            display: flex;
            margin-left: auto;
        }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 500px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

    .header-carousel .owl-nav .owl-prev:hover,
    .header-carousel .owl-nav .owl-next:hover {
        box-shadow: inset 0 0 100px 0 var(--bs-primary);
        color: var(--bs-white);
    }

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

    .bg-breadcrumb .breadcrumb {
        position: relative;
    }

        .bg-breadcrumb .breadcrumb .breadcrumb-item a {
            color: var(--bs-white);
        }
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

    .feature .feature-item:hover {
        background: var(--bs-primary);
    }

    .feature .feature-item .feature-icon {
        position: relative;
        width: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background: var(--bs-light);
    }

    .feature .feature-item:hover .feature-icon i {
        z-index: 9;
    }

    .feature .feature-item .feature-icon::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background: var(--bs-dark);
        transition: 0.5s;
        z-index: 1;
    }

    .feature .feature-item:hover .feature-icon::after {
        height: 100%;
    }

    .feature .feature-item .feature-icon {
        color: var(--bs-primary);
    }

    .feature .feature-item .feature-icon,
    .feature .feature-item h4,
    .feature .feature-item p {
        transition: 0.5s;
    }

    .feature .feature-item:hover .feature-icon {
        color: var(--bs-white);
    }

    .feature .feature-item:hover h4,
    .feature .feature-item:hover p {
        color: var(--bs-white);
    }

    .feature .feature-item:hover a.btn {
        background: var(--bs-white);
        color: var(--bs-primary);
    }

        .feature .feature-item:hover a.btn:hover {
            background: var(--bs-dark);
            color: var(--bs-white);
        }
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}

    .service .service-item .service-img {
        position: relative;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

        .service .service-item .service-img img {
            transition: 0.5s;
        }

    .service .service-item:hover .service-img img {
        transform: scale(1.1);
    }

    .service .service-item .service-img::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background: rgba(1, 95, 201, .2);
        transition: 0.5s;
        z-index: 1;
    }

    .service .service-item:hover .service-img::after {
        height: 100%;
    }

    .service .service-item .service-img .service-icon {
        position: absolute;
        width: 70px;
        bottom: 0;
        right: 25px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background: var(--bs-light);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 9;
    }

        .service .service-item .service-img .service-icon i {
            color: var(--bs-primary);
            transition: 0.5s;
        }

    .service .service-item:hover .service-img .service-icon i {
        transform: rotateX(360deg);
        color: var(--bs-white);
    }

    .service .service-item:hover .service-img .service-icon {
        bottom: 0;
        color: var(--bs-white);
        background: var(--bs-primary);
    }

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

    .service .service-item .service-content .service-content-inner .h4,
    .service .service-item .service-content .service-content-inner p {
        transition: 0.5s;
    }

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

    .service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
        color: var(--bs-white);
        background: var(--bs-dark);
    }

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

    .faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
        color: var(--bs-primary);
        background: var(--bs-light);
    }
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

    .blog .blog-item:hover {
        box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    }

        .blog .blog-item:hover .blog-content {
            background: var(--bs-white);
        }

    .blog .blog-item .blog-img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        position: relative;
        overflow: hidden;
    }

        .blog .blog-item .blog-img img {
            transition: 0.5s;
        }

    .blog .blog-item:hover .blog-img img {
        transform: scale(1.2);
    }

    .blog .blog-item .blog-img::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background: rgba(1, 95, 201, .2);
        transition: 0.5s;
        z-index: 1;
    }

    .blog .blog-item:hover .blog-img::after {
        height: 100%;
    }

    .blog .blog-item .blog-img .blog-categiry {
        position: absolute;
        bottom: 0;
        right: 0;
        border-top-left-radius: 10px;
        display: inline-flex;
        color: var(--bs-white);
        background: var(--bs-primary);
        z-index: 9;
    }

    .blog .blog-item .blog-content {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background: var(--bs-light);
    }

        .blog .blog-item .blog-content a.btn {
            color: var(--bs-dark);
        }

    .blog .blog-item:hover .blog-content a.btn:hover {
        color: var(--bs-primary);
    }
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    height: 150px;
    width: 150px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .team .team-item .team-img img {
        transition: 0.5s;
    }

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

    .team .team-item .team-title h4 {
        color: var(--bs-white);
    }

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

    .testimonial .owl-nav .owl-prev:hover {
        background: var(--bs-dark);
        color: var(--bs-white);
    }

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

    .testimonial .owl-nav .owl-next:hover {
        background: var(--bs-dark);
        color: var(--bs-white);
    }
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

    .contact .contact-img::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        background: rgba(255, 255, 255, 0.9);
        z-index: 1;
        animation-name: image-efects;
        animation-duration: 10s;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transition: 0.5s
    }

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #7d4f957a !important;
    /*background: linear-gradient(88deg, #0d6b9a 19.26%, #5fa0d7 106.62%);*/
}

    .footer .footer-item {
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }

        .footer .footer-item a {
            line-height: 35px;
            color: var(--bs-white);
            transition: 0.5s;
        }

        .footer .footer-item p {
            color: var(--bs-white);
            line-height: 35px;
        }

        .footer .footer-item a:hover {
            color: var(--bs-warning);
        }

        .footer .footer-item .footer-btn a,
        .footer .footer-item .footer-btn a i {
            transition: 0.5s;
        }

            .footer .footer-item .footer-btn a:hover {
                background: var(--bs-white);
            }

                .footer .footer-item .footer-btn a:hover i {
                    color: var(--bs-primary);
                }


        .footer .footer-item .footer-instagram {
            position: relative;
            overflow: hidden;
        }

            .footer .footer-item .footer-instagram img {
                transition: 0.5s;
            }

            .footer .footer-item .footer-instagram:hover img {
                transform: scale(1.2);
            }

            .footer .footer-item .footer-instagram .footer-search-icon {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.5s;
                opacity: 0;
            }

            .footer .footer-item .footer-instagram:hover .footer-search-icon {
                opacity: 1;
                background: rgba(0, 0, 0, .6);
            }

        .footer .footer-item .footer-btn a {
            background: var(--bs-light);
            color: var(--bs-primary);
        }

            .footer .footer-item .footer-btn a:hover {
                background: var(--bs-primary);
            }

                .footer .footer-item .footer-btn a:hover i {
                    color: var(--bs-white);
                }
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-white);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

.text-danger {
    color: red !important;
}

.our-Schemes {
    text-align: left;
    color: #333;
    margin-top: 30px;
    background: #fff;
    border: #e4e5e7 1px solid;
    padding: 30px 20px;
}

    .our-Schemes p {
        font-size: 13px;
        line-height: 24px;
    }

    .our-Schemes .img {
        margin: auto;
        border: #fff 6px solid;
        /*top: -9px;*/
        float: left;
        position: relative;
        left: -90px;
    }

    .our-Schemes h2 {
        text-align: left;
        color: #333;
        text-transform: capitalize;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
    }

        .our-Schemes h2:after {
            content: '';
            display: block;
            bottom: 7px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #f6bb19;
            margin-top: 8px;
            text-align: left;
        }

    .our-Schemes .link {
        position: relative;
        bottom: -18px;
    }

    .our-Schemes .normal-btn {
        position: relative;
        float: right;
        padding: 2px 15px;
        margin-top: -15px;
        text-transform: capitalize;
        color: #c4133d !important;
        font-size: 12px;
        border: 1px dashed #6e6e6e !important;
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        border-radius: 20px;
    }

        .our-Schemes .normal-btn .fa {
            padding-right: 5px;
        }

        .our-Schemes .normal-btn:hover {
            background: #c4133d;
            color: #fff !important;
            border-color: #fff !important;
        }

.text-banner {
    font-family: "Times New Roman" !important;
    color: #00008B !important;
}

.img-banner {
    /*height:50px;
    width:50px;*/
    flex: auto;
    flex-shrink: initial;
}

@media (min-width: 200px) and (max-width: 768px) {
    .our-Schemes .img {
        display: none;
    }

    /* .img-banner{
        display:none;
    }*/

    .text-banner {
        font-size: calc(1rem + 1vw);
    }

    #navbarCollapse {
        overflow-y: scroll;
        height: 350px;
    }
}

.nav-item .nav-link {
    color: #fff;
}


/*gallery style begin*/
.gallery a {
    color: #fff !important;
}

.gallery {
    text-align: center;
}

    .gallery .portfolio-hover .portfolio-zoom {
        left: 168px;
        top: 125px;
    }

    .gallery .portfolio-hover h6 {
        margin: 30px 0 0;
    }


.btngtag {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
}

    .btngtag:hover {
        background-color: #ddd;
    }

    .btngtag.active {
        background-color: #666;
        color: white;
    }

/* Isotope */
.isotope-item {
    z-index: 2;
    list-style: none;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
    width: 100%;
}

    .isotope .isotope-item {
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        -ms-transition-property: -ms-transform, opacity;
        -o-transition-property: -o-transform, opacity;
        transition-property: transform, opacity;
    }

        .isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
            -webkit-transition-duration: 0s;
            -moz-transition-duration: 0s;
            -ms-transition-duration: 0s;
            -o-transition-duration: 0s;
            transition-duration: 0s;
        }
/* Portfolio filter */
.portfolio-hover, .portfolio-content > i {
    background-color: #e03e25;
}

.portfolio-meta h6 a:hover {
    color: #E03E25;
}

.protfolio-filter {
    text-align: center;
    margin-bottom: 20px;
}

    .protfolio-filter li {
        display: inline-block;
    }

        .protfolio-filter li a {
            display: inline-block;
            margin: 0 20px 30px 0;
            background-color: #FFF;
            border: 1px solid #e9e8e8;
            padding: 4px 10px;
            font-size: 13px;
        }

        .protfolio-filter li:last-child a {
            margin-right: 0;
        }
/* Portfolio filter */
.protfolio-filter1 {
    text-align: center;
    margin-bottom: 20px;
}

    .protfolio-filter1 li {
        display: inline-block;
    }

        .protfolio-filter1 li a {
            display: inline-block;
            margin: 0 20px 30px 0;
            background-color: #FFF;
            border: 1px solid #e9e8e8;
            padding: 4px 10px;
            font-size: 13px;
        }

        .protfolio-filter1 li:last-child a {
            margin-right: 0;
        }
/* Portfolio */
.portfolio-one {
    margin-bottom: 30px;
    -moz-box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.portfolio-head {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.portfolio-img img {
    width: 98%;
    padding: 5px;
    margin: 4px;
    border: 2px solid #E03E25;
    height: auto;
}

.portfolio-hover {
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
}

.portfolio-link, .portfolio-zoom {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    background-color: #171717;
    display: inline-block;
    text-align: center;
    opacity: 0.8;
}

.portfolio-link {
    margin-right: -39px;
    right: 50%;
}

.portfolio-zoom {
    margin-left: -39px;
    left: 50%;
}

.portfolio-content {
    padding: 20px;
}

    .portfolio-content > i {
        float: left;
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 14px;
        text-align: center;
        margin-right: 20px;
    }

.portfolio-meta {
    overflow: hidden;
    height: 100%;
}

    .portfolio-meta h6 {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 18px;
    }

.portfolio-cat a {
    font-size: 12px;
}

.portfolio-one:hover .portfolio-hover {
    left: 0;
    opacity: 0.9;
}

.portfolio-link:hover, .portfolio-zoom:hover {
    opacity: 1;
}
/* Portfolio 4 columns sidebar */
.col-md-9.main-content li.col-md-3 .portfolio-content > i, .col-md-9.main-content div.col-md-3 .portfolio-content > i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
}

.col-md-9.main-content li.col-md-3.portfolio-item-2 .portfolio-meta p, .col-md-9.main-content div.col-md-3.portfolio-item-2 .portfolio-meta p {
    display: none;
}
/* Portfolio 2 columns sidebar */
.col-md-9.main-content li.col-md-6.portfolio-item {
    width: 49.95%;
}
/* Portfolio item 2 */
.portfolio-item-2 .portfolio-meta {
    padding: 20px;
}

    .portfolio-item-2 .portfolio-meta h6 {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 22px;
    }

.portfolio-item-2 .portfolio-link, .portfolio-item-2 .portfolio-zoom {
    bottom: 20px;
    top: initial;
    left: 20px;
    margin: 0;
}

.portfolio-item-2 .portfolio-link {
    left: 64px;
}
/* Portfolio full width */
.portfolio-full-width {
    margin-bottom: 30px;
}

    .portfolio-full-width ul {
        list-style: none;
    }

    .portfolio-full-width li.col-md-3 {
        padding: 0;
        width: 24.95%;
    }

        .portfolio-full-width li.col-md-3 .portfolio-one {
            margin-bottom: 0;
        }
    /* Portfolio 5 columns */
    .portfolio-full-width li.col-5.portfolio-item {
        width: 20%;
    }

    .portfolio-full-width li.col-5 .portfolio-one {
        margin-bottom: 0;
    }
/* Portfolio filter */
.row.isotope {
    padding-right: 0;
    margin-left: 0;
}

.portfolio-all {
    margin-left: -15px;
    margin-right: -14.99px;
}

    .portfolio-all.portfolio-full-width {
        margin-left: 0;
        margin-right: 0;
    }
/* Portfolio no margin */
.portfolio-no-margin {
    margin: 0 0 30px;
}

    .portfolio-no-margin li.portfolio-item, .portfolio-no-margin div.portfolio-item {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

        .portfolio-no-margin li.portfolio-item .portfolio-one, .portfolio-no-margin div.portfolio-item .portfolio-one {
            margin-bottom: 0;
        }

            .portfolio-no-margin li.portfolio-item .portfolio-one .portfolio-head, .portfolio-no-margin div.portfolio-item .portfolio-one .portfolio-head {
                overflow: inherit;
            }

.portfolio-slide.portfolio-no-margin {
    margin-right: 15px;
    margin-left: 15px;
}

    .portfolio-slide.portfolio-no-margin div.portfolio-item {
        margin-bottom: 30px;
    }

.col-md-9.main-content .portfolio-no-margin li.col-md-4.portfolio-item, .portfolio-no-margin div.col-md-4.portfolio-item {
    width: 33.333%;
}
/* Single Portfolio */
.portfolio-description p:last-child {
    margin-bottom: 0;
}

.portfolio-details li {
    font-size: 12px;
    margin-bottom: 5px;
    list-style: none;
}

    .portfolio-details li span {
        font-weight: bold;
        font-size: 13px;
    }

.post-social.portfolio-social {
    float: left;
}

/*gallery style end*/


.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

    .thumbnail > img,
    .thumbnail a > img {
        margin-right: auto;
        margin-left: auto;
    }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #337ab7;
}

.thumbnail .caption {
    padding: 9px;
    color: #333;
}

.bg-primary {
    background-color: #89072e !important;
}

.table th {
    background: #89072e !important;
    color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
    /*.navbar {
        padding: 20px 0;
    }*/

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 200px) and (max-width: 767px) {
    .img-banner {
        width: 80% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .img-banner {
        width: 80% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .img-banner {
        width: 80% !important;
    }
}

@media (min-width: 1200px) {
    .img-banner {
        width: 100% !important;
    }
}

#frmUserLogin {
    background: #F4C11C;
}

.login-logo,
.register-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}

    .login-logo a,
    .register-logo a {
        color: #444;
    }

.login-page,
.register-page {
    background: radial-gradient(maroon, transparent);
}

.login-box,
.register-box {
    width: 485px;
    margin: 7% auto;
}

@media (max-width: 768px) {
    .login-box,
    .register-box {
        width: 90%;
        margin-top: 20px;
    }
}

.login-box-body,
.register-box-body {
    background: #fff;
    padding: 15px;
    border-top: 0;
    color: #666;
}

    .login-box-body .form-control-feedback,
    .register-box-body .form-control-feedback {
        color: #777;
    }

.login-box-msg,
.register-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}

.social-auth-links {
    margin: 10px 0;
}

.nav-tabs-custom {
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

    .nav-tabs-custom > .nav-tabs {
        margin: 0;
        border-bottom-color: #f4f4f4;
        border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    }

        .nav-tabs-custom > .nav-tabs > li {
            border-top: 3px solid transparent;
            margin-bottom: -2px;
            margin-right: 5px;
        }

            .nav-tabs-custom > .nav-tabs > li > a {
                color: #444;
                border-radius: 0;
            }

                .nav-tabs-custom > .nav-tabs > li > a.text-muted {
                    color: #999;
                }

                .nav-tabs-custom > .nav-tabs > li > a,
                .nav-tabs-custom > .nav-tabs > li > a:hover {
                    background: transparent;
                    margin: 0;
                }

                    .nav-tabs-custom > .nav-tabs > li > a:hover {
                        color: #999;
                    }

            .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
            .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
            .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
                border-color: transparent;
            }

            .nav-tabs-custom > .nav-tabs > li.active {
                border-top-color: #3c8dbc;
            }

                .nav-tabs-custom > .nav-tabs > li.active > a,
                .nav-tabs-custom > .nav-tabs > li.active:hover > a {
                    background-color: #fff;
                    color: #444;
                }

                .nav-tabs-custom > .nav-tabs > li.active > a {
                    border-top-color: transparent;
                    border-left-color: #f4f4f4;
                    border-right-color: #f4f4f4;
                }

            .nav-tabs-custom > .nav-tabs > li:first-of-type {
                margin-left: 0;
            }

                .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
                    border-left-color: transparent;
                }

        .nav-tabs-custom > .nav-tabs.pull-right {
            float: none !important;
        }

            .nav-tabs-custom > .nav-tabs.pull-right > li {
                float: right;
            }

                .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
                    margin-right: 0;
                }

                    .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
                        border-left-width: 1px;
                    }

                    .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
                        border-left-color: #f4f4f4;
                        border-right-color: transparent;
                    }

        .nav-tabs-custom > .nav-tabs > li.header {
            line-height: 35px;
            padding: 0 10px;
            font-size: 20px;
            color: #444;
        }

            .nav-tabs-custom > .nav-tabs > li.header > .fa,
            .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
            .nav-tabs-custom > .nav-tabs > li.header > .ion {
                margin-right: 5px;
            }

    .nav-tabs-custom > .tab-content {
        background: #fff;
        padding: 10px;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

    .nav-tabs-custom .dropdown.open > a:active,
    .nav-tabs-custom .dropdown.open > a:focus {
        background: transparent;
        color: #999;
    }

    .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
        border-top-color: #3c8dbc;
    }

    .nav-tabs-custom.tab-info > .nav-tabs > li.active {
        border-top-color: #00c0ef;
    }

    .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
        border-top-color: #dd4b39;
    }

    .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
        border-top-color: #f39c12;
    }

    .nav-tabs-custom.tab-success > .nav-tabs > li.active {
        border-top-color: #00a65a;
    }

    .nav-tabs-custom.tab-default > .nav-tabs > li.active {
        border-top-color: #d2d6de;
    }

    .nav-tabs-custom > .nav-tabs > li.active:hover > a, .nav-tabs-custom > .nav-tabs > li.active > a {
        background-color: bisque !important;
    }

.footerpg {
    padding: 25px;
}

.tabbg {
    background-color: bisque !important;
}

.tab-content {
    border: 1px solid rgb(221, 221, 221);
    border-top: 0px;
}

#ulSignIn > li > a {
    padding: 10px 5px;
    display:block;
    position:relative;
}

#frmUserLogin {
    background-image: url('../../images/grb3.jpeg');
    background-size: cover; /* fills entire screen, maintains aspect ratio */
    background-repeat: no-repeat;
    background-position: center; /* keeps focus in the center */
    background-attachment: fixed;
}