@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');

:root {
    --body-font: "Roboto", sans-serif;
    --heading-font: "Rowdies", sans-serif;
    --theme-color: #0074d9;
    --theme-color2: #2b4c55;
    --theme-bg-light: #F6F6F6;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-gray: #ECECEC;
    --color-dark: #2C374B;
    --transition: all .5s ease-in-out;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}


*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}


*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}



/*====================
8. Container
======================*/

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1250px;
    }
}



.theme-btn {
    font-size: 15px;
    color: var(--color-white);
    padding: 8px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 20px 0px 20px 0;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn:hover {
    color: var(--color-white);
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
    margin-left: 8px;
    transition: var(--transition);
}



.theme-btn span {
    margin-right: 5px;
}


/*====================
13. Header top css
======================*/

.header-top {
    padding: 4px 0 4px;
    background: #0074d9;
    position: relative;
}

.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: var(--theme-color2);
    clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.header-top-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.header-top-list a {
    color: var(--color-white);
    font-size: 15px;
}

.header-top-list a:hover {
    color: var(--color-white);
}

.header-top-list a i {
    color: var(--color-white);
    margin-right: 5px;
}

.header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-top-right .header-top-list a:hover {
    color: var(--color-dark);
}

.header-top-right .header-top-list i {
    color: var(--color-white);
}

.header-top-social span {
    color: var(--color-white);
    font-size: 15px;
}

.header-top-social a {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    margin-left: 14px;
    transition: var(--transition);
}

.header-top-social a:hover {
    color: var(--color-white);
}

@media all and (max-width: 1199px) {
    .header-top-list ul {
        gap: 10px;
    }

    .header-top-social a {
        width: 34px;
        height: 34px;
        line-height: 37px;
        margin-left: 0;
    }

    .header-top-left {
        margin-right: 5px;
    }
}



.navbar {
    background: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 4;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
}

.navbar.fixed-top {
    position: fixed;
    background: var(--color-white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar-brand {
    margin-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
}

.navbar-brand img {
    width: 140px;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

@media all and (min-width: 992px) {

    .navbar .nav-item .nav-link {
        margin-right: 37px;
        padding: 26px 0 21px 0;
        font-size: 16px;
        font-weight: 600;

        color: var(--color-dark);
        text-transform: capitalize;
    }

    .navbar.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        padding: 0px;
        margin-top: 0;
        left: -15px;
        border-radius: 0px 0px 4px 4px;
        border: none;
        background: var(--theme-color);
        width: 270px;
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-in-out;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 15px;
        padding: 6px 15px;
        font-weight: 500;
        color: var(--color-white);
        position: relative;
        overflow: hidden;
        border-radius: 0px;
        text-transform: capitalize;
        transition: all .3s ease-in-out;
        z-index: 1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        color: var(--color-dark);
    }


    .two-category-menu.nav-item .dropdown-menu .dropdown-item:hover {
        color: var(--color-white);
    }


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

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-left: 45px;
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        border: none;
        padding-right: 0;
        background: transparent;
        transition: var(--transition);
    }

    .nav-right-link:hover {
        color: var(--theme-color);
    }

    .navbar.fixed-top .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.fixed-top .nav-right-link:hover {
        color: var(--theme-color);
    }

    .nav-right .call-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
    }

    .nav-right .call-wrap .icon {
        width: 45px;
        height: 45px;
        line-height: 46px;
        border-radius: 50px;
        background: var(--theme-color);
        color: var(--color-white);
        text-align: center;
        font-size: 18px;
        margin-top: 5px;
    }

    .nav-right .call-wrap .content span {
        color: var(--theme-color);
        font-weight: 500;
    }

    .nav-right .call-wrap .content h6 a {
        color: var(--color-dark);
        font-weight: 800;
    }

    .nav-right .sidebar-btn span {
        display: block;
        width: 24px;
        border-bottom: 3px solid var(--color-dark);
        border-radius: 50px;
        margin-top: 6px;
        margin-left: auto;
        transition: var(--transition);
    }

    .nav-right .sidebar-btn span:first-child {
        width: 10px;
        margin-top: 0;
    }

    .nav-right .sidebar-btn span:nth-child(3) {
        width: 15px;
    }

    /* navbar light */
    .navbar.light .nav-item .nav-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }

    .navbar.light .nav-item .nav-link.active,
    .navbar.light .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar.light .nav-right-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.light .nav-right-link:hover {
        color: var(--theme-color);
    }

    .navbar.light .nav-right .sidebar-btn span {
        border-color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-right .sidebar-btn span {
        border-color: var(--color-dark);
    }
}

@media all and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .nav-right {
        margin-left: 25px;
    }

    .nav-right .sidebar-btn,
    .nav-right .call-wrap {
        display: none;
    }
}


/* navbar mobile menu */
.navbar .mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .navbar-brand img {
        width: 130px;
    }

    .offcanvas-body.mobile-view-back {
        background-color: var(--theme-color);
    }

    .offcanvas {
        z-index: 999999;
    }

    .navbar .offcanvas {
        width: 350px;
    }

    .navbar .offcanvas-header .btn-close {
        background: var(--theme-color2);
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50px;
        color: var(--color-white);
        font-size: 18px;
        box-shadow: none;
        opacity: 1;
    }

    .navbar .offcanvas-brand {
        width: 150px;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-white);
        font-weight: 600;
        margin-right: 0px;
        font-size: 16px;
        padding: 8px 0px;
        transition: var(--transition);
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--color-white);
    }

    .navbar .nav-item .dropdown-menu {
        border-radius: 0px;
        border: none;
        margin: 0px;
        padding: 0px;
        background-color: var(--theme-color2);
    }

    .navbar .nav-item .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler span {
        display: block;
        width: 22px;
        border-bottom: 3px solid var(--color-dark);
        border-radius: 50px;
        margin-top: 5px;
    }

    .navbar-toggler span:first-child {
        margin-top: 0;
    }

    .navbar-toggler span:nth-child(2) {
        width: 15px;
    }

    .navbar .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .navbar .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }

    .navbar .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }

    .nav-right {
        display: none;
    }

    /* navbar light */
    .navbar.light .navbar-toggler span {
        border-color: var(--color-white);
    }

    .navbar.light.fixed-top .navbar-toggler span {
        border-color: var(--color-dark);
    }

    .navbar.light .mobile-menu-right .nav-right-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .mobile-menu-right .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.light .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }
}



/*==============================
15. Navbar multi level dropdown
================================*/

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 8px;
    font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: transparent;
    color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu a:focus {
    background: transparent;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

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

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--color-white);
        padding: 8px 0px 0px 6px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 8px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 3px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--color-white);
    }
}



/*============================
16. Navbar mega menu
==============================*/

@media all and (min-width: 992px) {
    .nav-item.mega-menu {
        position: static;
    }

    .navbar .nav-item.mega-menu .dropdown-menu {
        width: 98.2%;
        left: 12px;
    }

    .navbar .mega-menu .mega-content {
        padding: 12px;
    }

    .navbar .mega-menu .mega-menu-title {
        font-size: 17px;
        margin-bottom: 15px;
        color: var(--color-dark);
    }

    .navbar .mega-menu-img img {
        border-radius: 15px;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
        padding-left: 0;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
        left: 0;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover {
        padding-left: 15px;
    }

    /* mega-menu small */
    .navbar .nav-item.mega-menu.small {
        position: relative;
    }

    .navbar .mega-menu.small .dropdown-menu {
        width: 340px;
        left: 50%;
        transform: translateX(-50%);
    }
}


@media all and (max-width: 991px) {
    .navbar .mega-menu-img {
        display: none;
    }

    .navbar .mega-menu .mega-content h5 {
        margin: 15px 0;
    }
}

.dropdown-item:active {
    background-color: var(--theme-color2);

}

.main {
    margin-top: 0rem;
}


.footer-area {
    background: var(--theme-color2);
    position: relative;
    z-index: 1;
    padding: 30px 0px 30px;
}

.footer-widget {
    position: relative;
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 21px;
    z-index: 1;
}

.footer-widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--color-white);
    border-radius: 50px;

    animation: slide 1.5s infinite ease-in-out;
}

@keyframes slide {
    0% {
        width: 0;
    }

    50% {
        width: 50px;
    }

    100% {
        width: 0;
    }
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .70rem;
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
    position: relative;
    font-size: 15px;

}

.footer-list li a span {
    margin-right: 5px;
    color: var(--color-white);
    transition: var(--transition);
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    gap: 10px;
    color: #F5FAFF;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-contact .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--theme-color);
    border-radius: 50px;
    text-align: center;
}

.footer-contact .content {
    flex: 1;
}

.footer-contact .content p {
    font-size: 15px;
}

.footer-contact .content h6 {
    color: var(--color-white);
    margin-bottom: 5px;
    font-size: 16px;
}

.footer-contact .content a {
    color: var(--color-white);
    display: block;
}

.footer-widget__about-text p {
    color: #fff;
    font-size: 15px;
}

.footer-widget__about-text {
    position: relative;
    display: block;
    margin-top: 20px;
}

.footer-widget__about-social-links {
    position: relative;
    display: block;
    margin-top: 27px;
}

.footer-widget__about-social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-widget__about-social-links ul li {
    position: relative;
    display: block;
}

.footer-widget__about-social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50%;
    overflow: hidden;
}

.footer-widget__about-social-links ul li a:hover {
    color: var(--color-white);
    background-color: var(--theme-color2);
}

.footer-widget__about-social-links ul li a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
}

.footer-widget__about-social-links ul li+li {
    margin-left: 10px;
}

.footer-discirption a {
    color: #fff;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 15px;
}

.footer-discirption a:hover {
    color: #fff;

}

.site-footer__bottom {
    position: relative;
    display: block;
    background: var(--theme-color);

}

.copyright {
    position: relative;
    padding: 5px 0px 5px;
    text-align: center;
}

.copyright p {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
}

.copyright p a {
    color: #fff;
}


.bottomQuote-footer {
    background: var(--theme-color);
    display: block;
    padding: 15px 0px;
    width: 100%;
}

.action-palak-Info {
    width: 100%;
    display: flex;
    align-items: center;
}

.Tagline-name {
    color: #fff;
    font-size: 24px;
    max-width: 600px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    padding: 7px 0px;
}

.action-Contact-team {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.action-Contact-team .or {
    margin: 0 10px;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.enquiry-btn-button {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    margin-left: auto;
    transition: all 0.4s;
    background: #333;
    border-radius: 80px;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
    border: 0;
    line-height: 16px;
}

.enquiry-btn-button::after {
    position: absolute;
    content: "";
    height: 40px;
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    transition: all 0.4s;
    background: #444;
    left: 4px;
    top: 3px;
    z-index: -1;
}

.enquiry-btn-button:hover:after {
    width: 94%;
    transition: all 0.4s;
    border-radius: 80px;
}

.enquiry-btn-button:hover {
    color: #fff;
}

.action-Contact-team a {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: var(--color-white);
    font-weight: 500;
    font-size: 17px;
    margin-right: 5px;
}

.action-Contact-team .callUs span {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.about-us-sec-home {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fff;
}

.counter-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 30px 0px 40px;
}

.whychoose_us_content_div_main>h4 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 4px !important;
    line-height: 30px;
}

.whychoose_us_content_div_main>p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
    color: #222;
}

.counter-item:hover {
    background-color: var(--theme-color);
}

.counter-item:hover .icon span {
    background-color: var(--theme-color2);
}

.counter-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.counter-item:hover::after {
    display: none;
}

.counter-item:hover .counter {
    color: var(--color-white);
}

.counter-item:hover .unit {
    color: var(--color-white);
}

.counter-item:hover .title {
    color: var(--color-white);
}

.counter-item:hover .icon span {
    background-color: var(--color-white);
}

.counter-item {
    display: flex;
    gap: 15px;
    position: relative;
    padding: 33px 14px;
    border-radius: 4px;
    overflow: hidden;
    background-color: rgb(43 76 85 / 10%);
    z-index: 1;
}

.counter-item::before {
    content: "";
    width: 61px;
    height: 61px;
    position: absolute;
    bottom: -21px;
    right: -16px;
    border-radius: 50%;
    border: 5px solid #fff;
    transform: scale(1.1);
    transition: 0.3s;
}

.counter-item::after {
    content: "";
    width: 65px;
    height: 65px;
    background-color: var(--theme-color2);
    position: absolute;
    bottom: -21px;
    right: -17px;
    border-radius: 50%;
    transition: 0.3s;
}


.counter-item .icon span {
    background-color: var(--color-white);
    height: 65px;
    width: 65px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.counter-item .icon::after {
    content: "";
    height: 75px;
    width: 75px;
    border-radius: 50%;
    background-color: #b4ddda;
    position: absolute;
    top: -5px;
    left: -5px;
}

.counter-item .icon {
    position: relative;
    text-align: center;
    flex-shrink: 0;
}

.counter-item .icon img {
    width: 45px;
}

.counter-item .info {
    display: flex;
    gap: 2px;
}

.counter-item .counter {
    display: block;
    line-height: 1;
    color: #222;
    font-size: 35px;
    font-weight: 900;
}

.counter-item .unit {
    font-size: 35px;
    color: #222;
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}

.counter-item .title {
    color: #222;
    margin-top: 5px;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 8px;
    font-weight: 400;
}

.shift-down {
    transform: translateY(10px);
}


.shift-up {
    transform: translateY(-10px);
}

.choose-area-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #ffffff;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.blog-sec-footer-home {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
    padding: 30px 0px 30px;
}

.blog-item {
    padding: 10px;
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 42.32px 3.68px rgba(102, 102, 102, 0.17);
}

.blog-item-img {
    position: relative;
}

.blog-item-img img {
    border-radius: 10px;
}

.blog-item-info {
    padding: 15px 0 0 0;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 8px;
    text-transform: capitalize;
    font-weight: 500;
}

.blog-item-info p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--color-dark);
}


.about-images {
    width: 100%;
}

.testimonial__img img {
    height: 73px;
    width: 70px !important;
    margin: auto;
}

.blog-item-img img {
    height: 230px;
    width: 100%;
}

.testimonial-area {
    position: relative;
    width: 100%;
    padding: 30px 0px 10px;
}

.sub-title {
    display: block;
    color: #113D48;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    position: relative;
    margin-bottom: -4px;
}

.about-sec-title {
    font-size: 28px;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.about-discirption {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
}

.about-btn-read {
    position: relative;
    margin-top: 10px;
}

.about-item-wrap {
    position: relative;
    margin-top: 17px;
}

.about-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-bottom: 20px;

}

.about-item_img {
    min-width: 62px;
    height: 62px;
    line-height: 62px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme-color);
    transition: all 0.4s ease-in-out;
}

.about-item_img img {
    transition: all 0.4s ease-in-out;
    width: 39px;
    filter: brightness(0) invert(1);
}

.about-item .box-title {
    font-size: 20px;
    line-height: 1.417;
    font-weight: 600;
    color: #000;
    margin-top: -0.32em;
}

.about-item_centent p {
    color: #000;
    font-size: 15px;
    margin-bottom: 0px;
}

.whychoose_us_media_box_div {
    margin-bottom: 15px;
    background-color: rgb(0 116 217 / 80%);
    padding: 14px 10px 14px 10px;
    border-radius: 0px 60px 0px 60px;
    transition: .4s ease-in-out;
}

.whychoose_us_media_box_div>.d-flex>.flex-shrink-0>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0%) invert(1);
}

.why_choose_flex_dt_div>h5 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 4px !important;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-white);
}

.why_choose_flex_dt_div>p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0px !important;
    color: var(--color-white);
}

.product-sec-home {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f0f0f0;
}

.products-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    background: var(--color-white);
    border-radius: 20px 20px 20px 0;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.products-item:hover .product-img img {
    transform: scale(1.2);
}

.product-img {
    border-radius: 15px 15px 15px 0;
    overflow: hidden;
}

.product-img img {
    width: 200px;
    border-radius: 15px 15px 15px 0;
    filter: brightness(90%);
}

.products-content {
    flex: 1;
}

.products-title {
    margin: 5px 0;
    font-size: 22px;
}

.products-content p {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
}



.testimonial__wrapper {
    margin-top: 10px;
    padding-top: 20px;
    margin-bottom: 48px;
    transition: 0.3s;
    position: relative;
    background-color: #f0f0f0;
}

.testimonial__icon {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

@media (max-width: 767px) {
    .testimonial__icon {
        bottom: -8%;
    }
}

.testimonial__icon span {
    font-size: 35px;
    color: var(--color-white);
    background-color: var(--theme-color);
    height: 65px;
    width: 65px;
    border-radius: 50%;
    display: inline-block;
    line-height: 65px;
    transition: 0.3s;
}


.testimonial__img {
    display: block;
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    padding: 10px;
}

.testimonial__img img {
    width: 100%;
}

.testimonial__item {
    background-color: var(--it-grey-1);
    padding: 5px 20px 45px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}


.testimonial__title-sm {
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
    margin-bottom: 5px;
}

.testimonial__star {
    padding-bottom: 7px;
}

.testimonial__star i {
    color: #fec42d;
}

.testimonial__text p {
    font-size: 15px;
}

@media (max-width: 767px) {
    .testimonial__icon span {
        font-size: 20px;
        height: 55px;
        width: 55px;
        line-height: 55px;
    }
}

.sidebar_contactus_information_div_main {
    padding: 0px 0px;
    margin-top: 5px;
}

.sidebar_contactus_information_div_main {
    display: none;
}

.sidebar_contactus_information_div_main>h4 {
    color: var(--color-white);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar_media_main_div>.d-flex>.flex-shrink-0>i {
    background-color: var(--color-white);
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    border-radius: 100px;
    color: var(--color-dark);
    font-size: 20px;
}

.sidebar_contactus_content_div>a {
    display: block;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
    line-height: 27px;
}

.sidebar_media_main_div {
    margin-bottom: 18px;
}

.sidebar_contactus_content_div>p {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0px !important;
}

.side_bar_main_div_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_icon_div {
    margin-bottom: 20px !important;
}

.social_icon_div>p {
    margin-bottom: 7px !important;
    color: var(--color-white);
    font-size: 15px;
    text-transform: capitalize;
}

.social_icon_div>a {
    background-color: var(--color-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0px 1px;
    font-size: 14px;
    border-radius: 2px;
    color: var(--color-dark);
}

.mobile_call_enquiry_fixed_main_div {
    position: fixed;
    bottom: 35px;
    right: 15px;
    z-index: 1;
}

.mobile_enquiry_list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.mobile_enquiry_list>a {
    margin-bottom: 5px;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
    display: inline-block;
}

.mobile_enquiry_list>a:nth-child(1) {
    background-color: #28a745;
}


.mobile_enquiry_list>a:nth-child(2) {
    background-color: var(--theme-color);
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(211, 128, 69, 0.4);
    }

    100% {
        box-shadow: 0 0 7px 20px rgba(211, 128, 69, 0);
    }
}


.pulse {
    animation: shadow-pulse 1.5s infinite;
}


@keyframes shadow-pulse2 {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 7px 15px rgba(255, 255, 255, 0);
    }
}

.pulse2 {
    animation: shadow-pulse2 1.5s infinite;
}


.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 52px;
    left: 20px;
    z-index: 9;
}

.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: #dc3545;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: moveUpDown 2s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 8px;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.call_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}



.mobile_whatsapp {
    display: none;
}

.whatsapp_fixed_main_div {
    position: fixed;
    bottom: 45px;
    left: 10px;
    z-index: 1;
}

.mobile_whatsapp_list>a {
    margin-bottom: 5px;
    padding: 7px 10px 7px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    background-color: #02c18d;
}


@keyframes shadow-pulse3 {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 7px 15px rgba(255, 255, 255, 0);
    }
}

.pulse3 {
    animation: shadow-pulse3 1.5s infinite;
}

.modal-enquary-box-modal .modal {
    z-index: 99999999;
    background-color: #ffffff10;
    backdrop-filter: blur(0.7rem);
}


.modal-enquary-box-modal .modal-dialog.modal-md .modal-content {

    border-radius: 6px;
    box-shadow: none;
    background-color: #ffff;
    outline: none;
    border: 3px solid #fff;
}

.modal-enquary-box-modal .modal {
    z-index: 99999999;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header {
    padding: 8px 15px !important;
    background-color: var(--theme-color);

}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header .modal-title {
    font-size: 21px;
    color: var(--color-white);
    font-weight: 800;
    text-align: center;
    text-transform: capitalize;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .close {
    box-shadow: none;
    position: absolute;
    right: 10px;
    background: var(--color-white);
    opacity: 1;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    line-height: 33px;
    padding: 0;
    font-weight: 600;
    color: #000;
    font-size: 22px;
    border: none;
    top: 7px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-body {
    padding: 5px 15px;
    background-color: var(--color-white);
}

.enquiry_popup_input_div>label {
    font-size: 14px;
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 2px !important;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side input,
textarea {
    border: 1px solid #333 !important;
    outline: none !important;
    background: #fff;
    border-radius: 5px !important;
    height: 38px;
    line-height: 38px;
    margin-bottom: 6px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side input:focus {
    outline: none;
    box-shadow: none;
}

.custom-textarea {
    height: 70px;
}

.popup-btn {
    color: var(--color-white);
    background-color: #1e2939;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.modal-enquary-box-modal .modal-dialog {
    max-width: 700px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-body {
    padding: 5px 15px;
    background-color: var(--theme-color);
}

.form-controlarea {
    font-size: 15px;
    resize: none;
    font-weight: 400;
    color: #000;
    height: 100px;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: none !important;
    padding: 0.375rem 0.75rem;
    border-radius: 5px !important;
    outline: none !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: rgb(51, 51, 51) !important;
    border-image: initial !important;
}

.enquiry-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 18px;
    padding: 6px 0px;
}

.slider_section2.mobile-banner {
    display: none;
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 35px;
    padding-bottom: 35px;
    z-index: 1;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--theme-color2);
    opacity: 0.75;
    z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 34px;
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    display: inline-block;
    padding: 0px 12px;
    z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 6 Pro';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li a {
    color: var(--color-white);
}

.counter-area-about {
    background-color: #f0f0f0;
}

.flot-right-icon {
    transform: rotate(0deg);
    position: absolute;
    right: 15px;
    top: 13px;
    font-weight: 600;
    font-weight: 600;
    border: none;
    font-size: 14px;
    margin-top: 2.5px;
}

.products-page-inner {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
    padding: 30px 0px 30px;
}

.product-content-box-main {
    position: relative;
}

.product-content-box-main h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content-box-main p {
    color: var(--color-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.gallery-sec-page {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.gallery-item {
    position: relative;
    width: 100%;
    border: 1px solid #b4ddda;
    border-radius: 12px;
}

.gallery-img {
    height: 100%;
}

.gallery-img img {
    width: 100%;
    border-radius: 10px;
}

.gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gallery-content::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--theme-color);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.gallery-content:hover::before {
    opacity: 0.9;
    visibility: visible
}

.gallery-link {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    font-size: 50px;
    color: var(--color-white);
}

.gallery-link:hover {
    color: var(--color-white);
}

.gallery-content:hover .gallery-link {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.privacy_section {
    position: relative;
    padding: 30px 0px 30px 0px;
}

.privacy_content_main_div>h2 {
    color: #212121;
    text-transform: capitalize;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 7px !important;
}

.privacy_content_main_div>p {
    font-weight: 400;
    font-size: 15px;
    text-align: justify;
    color: #212121;
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 6px !important;
}

.privacy_content_main_div>ul {
    padding-left: 18px;
}

.privacy_content_main_div>ul>li {
    font-weight: 400;
    font-size: 15px;
    list-style-type: disc !important;
    color: #212121;
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.privacy_content_main_div p .policy-link {
    font-weight: 700;
    text-decoration: underline;
    color: #0049D0;
}

.privacy_content_main_div>h2 {
    color: #000;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>h3 {
    color: #000;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>h4 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}


.sitemap-sec-page {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.contact-us-page-sec {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
    padding: 30px 0px 30px;
}

.location-box-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: var(--theme-color);
    padding: 22px;
    position: relative;
    width: 100%;
    display: block;
    height: 100%;
    border-radius: 8px;
}

.location-title {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}

.contac_pg_map_media_div_m {
    padding-top: 5px;
    padding-bottom: 10px;
}

.media.contact-us-box {
    background-color: #fff;
    padding: 15px 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 6px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contac_pg_map_media_div_m span {
    background-color: var(--theme-color2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    transition: .4s;
    color: white;
    flex-shrink: 0;
}

.contac_pg_map_media_div_m p {
    font-size: 16px;
    line-height: 25px;
    color: #000;
    margin-bottom: 0px;
}

.contac_pg_map_media_div_m a {
    font-size: 16px;
    line-height: 25px;
    display: block;
    color: #000;
    margin-top: 0px;
}

.contact-form-box {
    padding: 20px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 0px;
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.contact-form-box>h3 {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 7px !important;
}

.contact-form-box .input_div_contact {
    margin-bottom: 10px;
}

.contact-form-box .input_div_contact>label {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.form-select {
    border: 1px solid #000;
    font-size: 15px;
}

.form-select:focus {
    box-shadow: none;
    outline: none;

}


.contact-form-box .input_div_contact>input {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    border: 1px solid #333 !important;
    height: 40px;
    background-color: var(--color-white);
}

.contact-form-box .input_div_contact_btn>button {
    color: var(--color-white);
    background-color: var(--theme-color);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.location-sec {
    position: relative;
    width: 100%;
    padding: 10px 0px 20px;
    background-color: #f0f0f0;
}

.site_section {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.sitemap_main_div_list {
    margin-bottom: 20px;
}

.palak_collapse_div>li {
    background-color: var(--lightgray-color);
    margin-bottom: 0px;
    border: 1px solid #E5E4E2;
    padding: 12px 20px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.palak_collapse_div>li>a {
    color: #282761;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-right: 20px;
    font-weight: 500;
}

.palak_collapse_div>li>span {
    cursor: pointer;
    background-color: #fff;
    ;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.collpase_list_ul_div {
    max-height: 280px;
    overflow: auto !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}


.collpase_list_ul_div::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.collpase_list_ul_div::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
}

.collpase_list_ul_div::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.collpase_list_ul_div::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.55);
}

.collpase_list_ul_div>ul {
    padding: 0px 10px !important;
    list-style: none !important;
}

.collpase_list_ul_div>ul>li {
    border-bottom: 1px dashed #ccc;
    padding: 7px 0px 7px 0px;
}


.collpase_list_ul_div>ul>li>a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
}

.palak_collapse_div>li:hover {
    background-color: var(--theme-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.palak_collapse_div>li:hover>a {
    color: #fff;
}

.blog-single-area {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
    padding: 30px 0px 30px;
}

.blog-single-area .blog-thumb-img {
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 1s ease-in-out;
}

.blog-single-area .blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blog-single-area .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-single-area .blog-details h3 {
    font-size: 26px;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-single-area .blog-details h4 {
    font-size: 22px;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-single-area .blog-details ul {
    padding-left: 16px;
}

.blog-single-area .blog-details ul li {
    margin-bottom: 4px;
    font-size: 16px;
    color: var(--color-dark);
    list-style: disc;
}


.blog-single-area .blog-details p {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.blog-single-area .blog-meta-left ul li {
    color: var(--color-dark);
    font-weight: 500;
}

.blog-single-area .blog-meta a {
    color: var(--color-dark);
    font-weight: 500;
}

.blog-single-area .blog-meta i {
    margin-right: 5px;
    color: var(--theme-color);
}

.blog-single-content:hover .blog-thumb-img img {
    transform: scale(1);
}

.blog-thumb-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-single-area .blog-single-content img {
    border-radius: 10px;
}

.blog-sidebar .widget {
    background: #F6F6F6;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 15px;
}

.blog-sidebar .widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 24px;
    color: var(--color-dark);
    font-weight: 500;
}

.blog-sidebar .widget .widget-title::before {
    position: absolute;
    content: '';
    width: 15px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 0;
}

.blog-sidebar .widget .widget-title::after {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 22px;
}

.blog-sidebar .widget .recent-post-item {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-sidebar .widget .recent-post-img img {
    width: 80px;
    border-radius: 5px;
}

.blog-sidebar .widget .recent-post-info {
    flex: 1;
}

.blog-sidebar .widget .recent-post-info h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    font-weight: 500;
}

.blog-sidebar .widget .recent-post-info span i {
    margin-right: 7px;
}

.blog-sidebar .widget .recent-post-info span {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 500;
}

.product-details-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px;
}

.btn_enquiry_div {
    position: absolute;
    right: 0;
    top: 30%;
    transition: .5s ease-in-out;
}

.btn_enquiry_div>a {

    writing-mode: vertical-rl;
    background-color: var(--theme-color);
    padding: 13px 5px 13px 5px;
    writing-mode: sideways-lr;
    color: white;
    text-align: center;
    border-radius: 2px;
    transition: .5s ease-in-out;
}

.btn_enquiry_div>a {
    background-color: var(--theme-color);
    padding: 15px 6px;
    border-radius: 2px;
    color: var(--color-white);
    font-weight: 600;
    transition: .5s ease-in-out;
    font-size: 14px;
    text-align: center;
}


.product-image img {

    border-radius: 8px;
    width: 100%;
}




.product-image {
    width: 100%;
    position: relative;
    transition: .5s ease-in-out;
    overflow: hidden;
    text-align: center;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-image:hover img {
    transform: scale(1.1, 1.1);
    transition: .6s ease-in-out;
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    transition: .5s ease-in-out;
    display: block;
    border-radius: 8px;
    filter: brightness(90%);
}

.products_details_content_main_div>h2 {
    color: var(--color-dark);
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: capitalize;
}

.products_details_content_main_div>p {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-dark);
    margin-bottom: 10px !important;
}

.dt_table_div tr td {
    font-size: 14px;
    text-transform: capitalize;
    padding: 5px 10px;
}




.shop-category {
    position: relative;
    display: block;
    background-color: #f1f5f9;
    border: 1px solid #e5e5e5;
    padding: 35px 30px 35px;
    border-radius: 5px
}

.product__sidebar-title {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
    margin-bottom: 31px;
    padding-left: 27px;
}

.product__sidebar-title::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    background-color: var(--theme-color);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-category ul {
    position: relative;
    display: block;
}

.list-unstyled {
    padding-left: 0;
}

.shop-category ul li {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: #606060;
    margin-bottom: 15px;
}

.shop-category ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 24px;
    font-size: 15px;
    text-transform: capitalize;
    color: #606060;
    font-weight: 500;
    border-radius: 10px;
    background-color: var(--color-white);
    padding: 13px 15px 13px;
    transition: all 0.3s ease;
    z-index: 1;
}

.shop-category ul li:hover a {
    color: var(--theme-color);
}


.shop-category ul li a:hover:after {
    background-color: #adc144;
}

.similar-products-sec-details {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f0f0f0;
}

.similar-product-main-card:hover .similar-product-image img {
    transform: scale(1.2);
}

.similar-product-main-card {
    display: block;
    padding: 10px;
    background: var(--color-white);
    border-radius: 20px 20px 20px 0;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.similar-product-image {
    border-radius: 15px 15px 15px 0;
    overflow: hidden;
}

.similar-product-image img {
    width: 200px;
    border-radius: 15px 15px 15px 0;
}

.products-content.similar-product-content {
    padding-top: 15px;
    position: relative;
}

.similar-products-sec-details {
    display: none;
}

.contact-page-info {
    position: relative;
    display: block;
    padding: 40px 0px 30px;
    z-index: 1;
}

.contact-page-info__single {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--color-white);
    border: 3px solid rgba(0, 74, 148, 0.15);
    padding: 0px 5px 8px;
    margin-bottom: 15px;
    min-height: 220px;
}

.contact-page-info__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 70px;
    background: rgba(0, 74, 148, 0.1);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin: 0 auto 10px;
    z-index: 1;
}

.contact-page-info__single-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: var(--theme-color);
    transition-delay: 0.5s;
    transition: .5s;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-70deg) scale(0.0);
    -ms-transform: perspective(400px) rotateX(-70deg) scale(0.0);
    transform: perspective(400px) rotateX(-70deg) scale(0.0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: -1;
}

.contact-page-info__single:hover .contact-page-info__single-icon:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.contact-page-info__single-icon span {
    position: relative;
    display: block;
    line-height: 0px;
}

.contact-page-info__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-size: 30px;
    line-height: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page-info__single:hover .contact-page-info__single-icon span::before {
    color: var(--color-white);
}

.contact-page-info__single-text {
    position: relative;
    display: block;
}

.contact-page-info__single-text h2 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.contact-page-info__single-text p {
    margin: 0;
    font-size: 16px;
}

.contact-page-info__single-text p a {
    color: var(--color-dark);
}

.contact-page-info__single-text p a:hover {
    color: var(--theme-color);
}

/* Wrapper scroll smooth */
.dt_table_div {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
}

/* Table styles */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 16px;
}




.responsive-table th,
.responsive-table td {
    padding: 4px 15px;
    white-space: nowrap;
}


.responsive-table th[scope="row"] {
    background: #f7f7f7;
    font-weight: 400;
    width: 260px;
    font-size: 14px;
    padding: 4px 15px;
}


.responsive-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.responsive-table td,
.responsive-table th {
    border: 1px solid #e2e2e2;
}


@media (max-width: 576px) {
    .responsive-table {
        font-size: 14px;
    }

    .responsive-table th,
    .responsive-table td {
        padding: 10px 12px;
    }

    .dt_table_div {
        padding-bottom: 4px;
    }
}
.main-menu .main-menu__list li ul li aspan{
    padding-right: 5px;
}
