/********** Template CSS **********/
:root {
    --primary: #0c559e;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

body{ color:#1a1a1a !important; }
.text-primary {
    color: #0c559e !important
}

.btn-primary {
    color: #000;
    background-color: #0c559e;
    border-color: #0c559e;
}

.bg-primary {
    background-color: #0c559e !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#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 img{width: 60px;
    position: fixed;}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.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: normal;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 120px;}


.top-b{background: #173c8f;}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 20px 35px;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: all 0.3s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #0c559e;
    background: #fff;
    transition: all 0.3s;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem;
    margin: 0;
    font-size: 1rem;
    color: #777;
    text-align: left;
    list-style: none;
    background-color: #0c559e;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 6px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #ffffff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    position: relative;
}

.dropdown-item.active, .dropdown-item:active {
    color: #1c1c1c;
    text-decoration: none;
    background-color: #ffffff;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 25px;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1);
        overflow-y: scroll;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.carousel-caption > img {
    width: 100% !important;
    max-width: 480px !important;
    height: auto !important;
    position: relative; !important;
    top: 0%;
}

@media (max-width: 768px) {
.carousel-caption > img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    position: absolute !important;
    top: 15%;
}

.carousel-caption h4{ font-size:16px; }
.carousel-caption h5{font-size:14px;}


}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.top-b .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.breadcrumb .text-primary.active{ color:#e7e7e752 !important; }

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    bottom: 12px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    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;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item i{
    color: #e8151c;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
    position: relative;
    top: 0;
}

.service-item:hover {
    margin-top: 0;
    box-shadow: none;
    border: 1px solid #DEE2E6;
    top: -10px;
    background: #0c559e !important;
}

.service-item h4{ font-weight:700; }
.service-item:hover h4, .service-item:hover p{ color:#fff !important; }


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item div a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}
.project-item > a{color:#333;font-weight:700;font-size: 16px;}
.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer{background: url(../img/ftr-bg.jpg) no-repeat center center; background-size: cover;}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--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(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #ffffff;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.slid-btm{margin: -150px 0 0;}
.sld-b{
    background: #173c8f;
    padding: 60px 15px 5px;
    position: relative;
    z-index: 9;
}
.sld-b i{
    font-size: 42px;
    color: #333;
    background: #fff;
    width: 82px;
    height: 82px;
    padding: 20px 0;
    border-radius: 50px 50px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -30px;
}
.sld-b h3{
    font-size: 18px;
    color: #fff;
    padding: 10px 15px;
}
.prd-sec{ background:url(../img/prd-bg.jpg) no-repeat center top; background-size:contain;position: relative;
    z-index: 0; }
.serv-sec{ background:url(../img/bg2.jpg) no-repeat center top fixed; background-size:cover;position: relative;
    z-index: 0; }

    .btn-outline-secondary:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}
.text-justify{text-align: justify;}


/* Contact Form */
.form-b{
    background: #fff;
    box-shadow: 0 0 40px #e7e7e7;
    padding: 50px;
}
.form-b label{color:#333;font-size: 14px;display: none;}
.form-b input, .form-b textarea {
    border: none;
    border: 1px solid #c1c1c1;
    box-shadow:
    none;
    padding: 10px 15px;
    border-radius: 0;
    /* background: #efefef87; */
    font-size: 14px;
}
.form-b ::placeholder{ color:#999999;}
.form-b .dee{
    padding: 10px 15px;
    background: #262626;
    color: #ebebeb;
    font-weight: 600;
    text-transform: uppercase;
    border: none; cursor: pointer;
}


.form-b .form-control:focus {
    color: #495057;
    /* background-color: #fff; */
    border-color: #c1c1c1;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #d4d4d4;
}

.table th, .table td {
    padding: 0.3rem 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 0.8rem;
    color: #181818;
}
.cyc-bg{ background:url(../img/cycle-bg.jpg) no-repeat center center; margin: 0 0 15px; border-radius:10px; }
tr.tb-titl td {
    background: #040f28!important;
    color: #fff !important;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0c559e;
    border-color: #0c559e;
}
.page-link {
    position: relative;
    display: block;
    color: #0c559e;}

/* Whatsapp chat -----------*/
    .eARkMz{display: none !important;}


.pro-cat{ background:#e7e7e7; padding:10px; }
.pro-cat a{
    display: block;
}
.pro-cat a img{
    width: 100%; border: 1px solid #f7f7f7; transition: all 0.3s;
}
.pro-cat a h4{
    font-size: 16px;
    padding: 8px 0px;
    font-weight: 700;
    margin: 0;
}
.pro-cat a h4 i{
    font-size: 12px; margin-left: 8px;
}
.pro-cat a:hover img{ transform:scale(1.05); }
.new-btn{ position:relative; z-index:1021; }
.new-bt {
    background: #e73131;
    padding: 10px 25px !important;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700 !important;
    color: #fff;
}

.new-bt:hover{background: #e7e7e7 !important;}

.new-btn .nav-item .dropdown-menu {
    background-color: #2174c7 !important;}

.navbar-dark .navbar-brand {
    color: #fff;
    font-size: 14px !important;
    font-weight: 800 !important;
}

@media (min-width: 992px){
.ne-prd-btn{ display:none; }
}


/* ------ Multi Menu submenu ----*/
.mlt-menu{background: #0c559e;}
.mlt-menu .dropdown-item i{ font-size:12px; position:absolute; right:15px; top:10px; }


/* ============ desktop view ============ */
@media all and (min-width: 992px) {
    .mlt-menu .dropdown-menu li{ position: relative;  }
    .mlt-menu .nav-item .submenu{ 
        display: none;
        position: absolute;
        left:100%; top:-7px;
    }
    .mlt-menu .nav-item .submenu-left{ 
        right:100%; left:auto;
    }
    .mlt-menu .dropdown-menu > li:hover{background-color: #343434;}
    .mlt-menu .dropdown-menu > li:hover > .submenu{display: block;background: #343434;}
}   
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
  .mlt-menu .dropdown-menu .dropdown-menu{
      margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem; display: block; border: none;
  }
}   
/* ============ small devices .end// ============ */

.nav-link:hover, .nav-link:focus {
    color: #000;
}

/* Getbutton */
.dmopMx {
    display: none !important;
}
