* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #006293;
    --light: #f0fbfc;
    --dark: #090609;
}
.bg-primary {
    background-color: #006293 !important;
}
.text-primary {
    color: #006293 !important;
}
b .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 ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
    background-color: #090609 !important;
    border-color: #090609;
}
.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    color: white !important;
    background-color: #006293 !important;
    border-color: #006293 !important;
}

.bg-dark {
    background-color: #006293 !important;
}
.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;
    border-radius: 0px;
}

/*** 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-brand {
    width: 200px !important;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #006293 !important;
}

@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 #eeeeee;
    }
    .navbar .navbar-brand {
        width: 200px !important;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.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: 0.5s;
        opacity: 1;
    }
}
@media (min-width: 320px) {
    .navbar .navbar-brand {
        width: 170px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url(../img/index-img/top-banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

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

.fixed {
    position: relative;
}

.fixed-inner {
    width: 40px;
    /* height: 200px; */
    background-color: transparent;
    position: fixed;
    top: 60%;
    left: 0;
    z-index: 99999;
} /*** Section Title ***/
.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;
}

.section-title.text-primary {
    color: var(--dark) !important;
}

/* Start Portfolio CSS */
.portfolio {
    background: #fdfdfd;
}
.portfolio .single-pf {
    position: relative;
    overflow: hidden !important;
}
.portfolio .single-pf img {
    height: 100%;
    width: 100%;
}
.portfolio .single-pf:hover img {
    transition: 0.5s ease-in-out;

    transform: scale(1.1) !important;
}
.portfolio .single-pf:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #006293;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}
.portfolio .single-pf:hover:before {
    opacity: 0.7;
    visibility: visible;
}
.portfolio .single-pf .btn {
    color: #006293;
    z-index: 3;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 48px;
    width: 150px;
    text-align: center;
    line-height: 48px;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    margin-left: -75px;
    margin-top: -24px;
    border-radius: 4px;
}
.portfolio .single-pf:hover .btn {
    opacity: 1;
    visibility: visible;
}
.portfolio .single-pf .btn:hover {
    color: var(--dark);
}
.portfolio .owl-nav {
    display: none;
}

/* Slider Nav */
.pf-details .image-slider .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}
.pf-details .image-slider .owl-carousel .owl-nav div {
    height: 50px;
    width: 50px;
    line-height: 45px;
    background: #fff;
    color: #006293;
    position: absolute;
    margin: 0;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #0000001a;
}
.card-slider .image-slider .owl-carousel .owl-nav div:hover {
    color: #fff;
    background: #006293;
}
.pf-details .image-slider .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 20px;
    font-size: 40px !important;
}
.pf-details .image-slider .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 20px;
}
.pf-details .image-slider {
    border-radius: 8px 8px 0 0;
}
.pf-details .image-slider img {
    height: 100%;
    width: 100%;
}
.pf-details .date {
    background: #006293;
    display: block;
    padding: 20px;
    text-align: center;
    border-radius: 0;
    border: none;
    margin: 0;
    margin-top: -1px;
}
.pf-details .date ul li {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-right: 60px;
}
.pf-details .date ul li:last-child {
    margin: 0;
}
.pf-details .date ul li span {
    font-weight: 500;
    display: inline-block;
    margin-right: 5px;
}
.pf-details .body-text {
}
.pf-details .body-text h3 {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
}
.pf-details .body-text p {
    margin-top: 20px;
}
.pf-details .body-text .share {
    margin-top: 40px;
}
.pf-details .body-text .share h4 {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
}
.pf-details .body-text .share ul {
    display: inline-block;
    margin-left: 12px;
}
.pf-details .body-text .share ul li {
    display: inline-block;
    margin-right: 10px;
}
.pf-details .body-text .share ul li:last-child {
    margin-right: 0;
}
.pf-details .body-text .share ul li a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #c8c8c8;
    color: #757575;
    display: block;
    border-radius: 50%;
}
.pf-details .body-text .share ul li a:hover {
    color: #fff;
    border-color: transparent;
    background: #006293;
}

/*** Service ***/
.service-item {
    background: var(--light);
    transition: 0.5s;
    min-height: 310px;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}
.service-item .one {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-item :hover .one {
    background-color: var(--light) !important;
    color: var(--primary) !important;
}
.service-item * {
    transition: 0.5s;
}

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

/* End Portfolio CSS */

/*** sub categories List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #ffffff;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
    transition: 0.5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}



/* client  */

.card-slider{
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.877), rgba(0, 0, 0, 0.845)), url(../img/index-img/chemicals-img.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;

}

.card-slider img{
    width: 200px !important;
    filter: grayscale(100);
    transition: 0.5s ease-in-out;
}


.card-slider img:hover{
    /* width: 200px !impor÷tant; */
    filter: grayscale(0) !important;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.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: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
