@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;900&display=swap');

:root {
    --sub-theme-color: #0a301c;
    --sub-theme-color2: #00652f;
    --sub-base-color: #fff;
    --sub-font-color: #101010;
    --sub-font-color2: #00652f;
    --sub-hover-color: #ffc107;
    --sub-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --sub-shadow-lg: 0 5px 15px rgba(15, 39, 125, 0.15);
    --sub-shadow-md: 0px 20px 30px 0px rgb(1 11 60 / 10%);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
}

body {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    /* font-family: 'Rubik', sans-serif; */
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    overflow-x: hidden;
}

a {
    transition: 0.2s;
    text-decoration: none;
}

a:hover,
a:focus {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

p {
    font-size: 1.15rem;
    line-height: 1.5;
}

.sticky {
    background: var(--sub-base-color) !important;
    box-shadow: var(--sub-shadow);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
    /*padding: 0;*/
}

.navbar-brand img {
    width: 160px;
    transition: width 0.3s;
    transition-timing-function: linear;
}

.sticky img {
    width: 160px;
}

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}

.bg-gray {
    background: #F4F7FC;
}

.bg-theme {
    background: var(--sub-font-color);
}
.bg-theme{
    background: #ebe3ed;
}
.blue-bg-4 {
    background: #2d69f0;
}
.pink-bg {
    background: #dd246e;
}
.purple-bg {
    background: #8007e6;
}
.green-bg {
    background: #0cae74;
}

.devBtn {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    transition: 0.2s;
    background: var(--sub-font-color2);
    color: var(--sub-base-color);
    cursor: pointer;
}

.devBtn:hover,
.devBtn:focus {
    color: #fff;
    background: var(--sub-hover-color);
}

.devBtn2 {
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    color: var(--sub-base-color);
    font-weight: 600;
    background: transparent;
    display: inline-block;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--sub-base-color);
}

.devBtn2:hover {
    color: var(--sub-font-color);
    background: var(--sub-base-color);
    border: 2px solid var(--sub-base-color);
}

.shadow-md {
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1.732px 40px 0px rgb(0 0 0 / 10%);
}

.title {
    position: relative;
    padding-bottom: 0.75rem;
    text-transform: capitalize;
    color: var(--sub-theme-color);
}

.title:before {
    width: 160px;
    border-bottom: 2px solid var(--sub-theme-color);
    position: absolute;
    content: '';
    left: 50%;
    margin-left: -80px;
    bottom: 0;
}

.title:after {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid var(--sub-hover-color);
    position: absolute;
    content: '';
    left: 50%;
    margin-left: -7px;
    bottom: -6px;
    transform: rotate(45deg);
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
}

.swiper-pagination-bullet {
    background: var(--sub-hover-color);
    opacity: 1;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    border: 2px solid var(--sub-theme-color);
    background: transparent;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: var(--sub-font-size-20);
    color: var(--sub-base-color);
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--sub-hover-color);
    padding: 0.5rem 1.38rem;
    border-radius: 2rem;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}


/* ====================== */
/* NAVBAR */
/* ====================================== */
@media all and (min-width: 992px) {

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transition: all .3s ease-in;
        visibility: hidden;
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        /* margin-top: 10px; */
        border: 0;
        padding: 0;
        min-width: 14rem;
        border-radius: 0;
        box-shadow: 0 10px 20px rgba(15, 39, 125, 0.4);
    }

    .navbar .nav-link {
        padding: 10px 12px !important;
        text-decoration: none;
        font-size: 1.05rem;
        /* text-transform: uppercase; */
        font-weight: 500;
        color: var(--sub-font-color2);
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--sub-theme-color2);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -20px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--sub-font-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        text-decoration: none;
        font-size: 1rem;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--sub-base-color);
        background: var(--sub-theme-color2);
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        background-color: var(--bs-dropdown-link-active-bg);
    }
}

/* ========================== */
/* TOP BAR */
/* ========================================== */
.topBar {
    background: var(--sub-theme-color2);
    position: relative;
}

.topBar a {
    color: var(--sub-base-color);
}

/* ========================== */
/* BANNER */
/* ========================================== */
/* .banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    padding: 0;
}

.banner:after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 50%);
} */

video {
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
}

.bannerContent {
    position: absolute;
    width: 80%;
    max-width: 800px;
    left: 0;
    right: 0;
    margin: auto;
    top: 40%;
    text-align: center;
    z-index: 1;
    color: var(--sub-base-color);
}

.bannerContent h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.bannerContent h2 {
    font-weight: 700;
    font-size: 3.5rem;
}

/* ==================== */
/* About Panel */
/* ===================================== */
.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-one__images {
    width: 100%;
    position: relative;
}

.about-one__images img:nth-child(2) {
    position: absolute;
    top: 105px;
    right: 0;
}

.about-one__images-content {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--sub-base-color);
    background-color: var(--sub-theme-color);
    width: 100%;
    max-width: 225px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 90px;
    text-align: center;
}

.about-one__images-content p {
    margin-bottom: 0;
}

.about ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 1.5rem 0;
}

.about ul li {
    position: relative;
    padding-left: 22px;
    font-weight: 500;
    color: var(--sub-theme-color);
    margin-bottom: 1rem;
    transition: 0.2s;
}

.about ul li:hover {
    transform: translateY(4px);
    cursor: pointer;
    color: var(--sub-theme-color2);
}

.about ul li::before {
    font-family: "bootstrap-icons";
    position: absolute;
    content: '\F517';
    color: var(--sub-hover-color);
    left: 0;
    top: 2px;
    font-size: 0.75rem;
}

.block-title p span {
    position: relative;
    width: 35px;
    height: 10px;
    display: -webkit-flex;
    display: flex;
    margin-right: 10px;
}

.block-title p span:after,
.block-title p span:before {
    content: "";
    height: 3px;
    width: 25px;
    background-color: var(--sub-theme-color2);
    position: absolute;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: lineAnim;
    animation-name: lineAnim;
}

.block-title p span:before {
    top: 0;
    left: 0;
}

.block-title p span:after {
    bottom: 0;
    -webkit-animation-name: lineAnimReverse;
    animation-name: lineAnimReverse;
    right: 0;
}

@-webkit-keyframes lineAnim {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    25% {
        -webkit-transform: translateX(20%);
        transform: translateX(20%)
    }

    50% {
        -webkit-transform: translateX(60%);
        transform: translateX(60%)
    }

    75% {
        -webkit-transform: translateX(20%);
        transform: translateX(20%)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes lineAnim {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    25% {
        -webkit-transform: translateX(20%);
        transform: translateX(20%)
    }

    50% {
        -webkit-transform: translateX(60%);
        transform: translateX(60%)
    }

    75% {
        -webkit-transform: translateX(20%);
        transform: translateX(20%)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes lineAnimReverse {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    25% {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%)
    }

    50% {
        -webkit-transform: translateX(-60%);
        transform: translateX(-60%)
    }

    75% {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes lineAnimReverse {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    25% {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%)
    }

    50% {
        -webkit-transform: translateX(-60%);
        transform: translateX(-60%)
    }

    75% {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}


/* ======================== */
/* Counter Panel */
/* ===================================== */
.counter {
    padding: 50px 0;
    background: var(--sub-theme-color2);
}

.itemCount .img-pt {
    height: 100px;
    border: 2px solid #fff;
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
}

.itemCount .img-pt img {
    height: 60px;
}

.itemCount h1 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.itemCount h6 {
    color: #fff;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* =================== */
/* Product Panel */
/* ======================================= */
.productCatMain{
    position: relative;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}
.productCatMain::-webkit-scrollbar {
    height: 5px;
    border-radius: 2rem;
}
.productCatMain::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.productCatMain::-webkit-scrollbar-thumb {
    background: #888; 
}
.productCatMain::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
.productCatMain ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.productCatMain ul li{
    display: block;
}
.productCatMain ul li a{
    display: block;
    white-space: nowrap;
    padding: 0.5rem 1.25rem;
    font-size: 1.15rem;
    margin: 0 0.5rem 0 0;
    font-weight: 600;
    border-radius: 0.35rem;
    border: 1px solid var(--sub-font-color2);
    color: var(--sub-font-color2);
}
.productCatMain ul li a:hover{
    background: var(--sub-hover-color);
    color: var(--sub-font-color);
}
.product-item {
    position: relative;
    transition: all .5s linear;
    transition: all .5s linear;
    margin-bottom: 1.5rem;
    border: 1px solid #d8dee7;
}
.product-item .content {
    padding: 20px;
    background: #dfe1e9;
    border: 1px solid #ddd;
    color: #0d0c41;
    transition: all .5s linear;
    /* text-align: center; */
}
.product-item .content h3{
    font-size: 1.25rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    justify-content: space-between;
}
.product-item .content h3 a{
    color: var(--sub-font-color2);
    -webkit-line-clamp: 2;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
}
.product-item .content h3 a:hover{
    color: var(--sub-font-color);
}
.product-item .content h3 small{
    color: #2268ac;
}
.product-item .content p{
    font-size: 0.9rem;
    line-height: 1.3;
    border-top: 1px solid #f4efef;
    padding-top: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    min-height: 50px;
}
.product-item:hover img {
    transform: scale(1.04);
    transition: all .8s linear;
}
.box-img {
    overflow: hidden;
    padding: 10px;
    background: #fff;
    position: relative;
    height: 250px;
}
.box-img img {
    transition: all .8s linear;
    position: absolute;
    height: 100%;
    object-fit: contain;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.box-img:hover img {
    transform: scale(1.04);
    transition: all .8s linear
}

.pro-details{
    border-top: 10px solid #32aeb1;
    padding: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.pro-details h1{
    font-size: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.pro-details ul{
    padding-left: 16px;
    list-style: circle;
    margin-top: 7px;
}
.pro-details ul li{
    margin-bottom: 10px;
    color: #0065b3;
}
.pro-details .indicate{
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    list-style: square;
}
.pro-details .indicate li{
    margin-bottom: 7px;
    font-size: 13px;
    color: #565656;
}
.pro-details h6 span{
    color: #10b516;
    font-weight: 600;
    font-size: 20px;
}
.pro-details form{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.pro-details form input{
    width: 150px;
    margin: 0 2px 0 5px;
}
.pro-details ul.pincheck{
    padding: 7px 12px;
    border-radius: 5px;
    margin: 0;
    border:1px dashed #10b516;
    font-size: 13px;
    display: inline-block;
}
/* ========================== */
/* Why Choose Us */
/* ============================================= */
.services__item {
    position: relative;
    padding: 40px 40px;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(3, 24, 128, 0.2);
    -moz-box-shadow: 0px 30px 40px 0px rgba(3, 24, 128, 0.2);
    box-shadow: 0px 30px 40px 0px rgba(3, 24, 128, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .services__item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .services__item {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services__item {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.services__item:hover {
    -webkit-transform: translateY(-5px) translate3d(0, -5px, 0);
    -moz-transform: translateY(-5px) translate3d(0, -5px, 0);
    -ms-transform: translateY(-5px) translate3d(0, -5px, 0);
    transform: translateY(-5px) translate3d(0, -5px, 0);
}

.services__title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 17px;
}

.services__icon {
    margin-bottom: 30px;
}

.services__icon svg {
    width: 80px;
    height: 80px;
}

.services__icon svg path {
    fill: #ffffff;
}

.services__content p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 22px;
    margin-bottom: 0;
}


/* ============================== */
/* Footer Panel */
/* ========================================== */
footer {
    padding: 5rem 0 2rem;
    background: var(--sub-theme-color);
    color: var(--sub-base-color);
}

footer .social a i {
    font-size: 1.5rem;
    margin-right: 0.3rem;
    color: var(--sub-base-color);
}

footer .social a:hover i {
    color: var(--sub-hover-color);
}

footer h3 {
    margin-bottom: 1.5rem;
}

footer .widgetFoot2 {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

footer .widgetFoot2 li {
    margin-bottom: 1rem;
}

footer .widgetFoot2 li a {
    /* text-transform: uppercase; */
    color: var(--sub-base-color);
    font-size: 14px;
}

footer .widgetFoot2 li a i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

footer .widgetFoot2 li a:hover {
    color: var(--sub-hover-color);
}

footer .widgetFoot2 li:last-child {
    margin-bottom: 0;
}

.footer-info-contact {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}

.footer-info-contact i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 25px;
}

.footer-info-contact h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--sub-hover-color);
}

.footer-info-contact span a {
    color: var(--sub-base-color);
    line-height: 1.5rem;
}

.footer-info-contact span a:hover {
    color: var(--sub-hover-color);
}
.whatsapp{
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 999;
    animation: animate 2s linear infinite;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
    border-radius: 100%;
}
.whatsapp img{
    width: 50px;
}
@keyframes animate { 
    0% { 
        transform: scale(1.05); 
    } 
    50% { 
        transform: scale(0.9); 
    } 
    0% { 
        transform: scale(1.05); 
    } 
} 

/* ====================== */
/* page header */
/* ========================================= */
.page-header {
    padding: 150px 0px 100px;
    background: #F4F5F8;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(3, 31, 66, 0.6);
    z-index: -1;
}

.page-header .title-block h1 {
    color: #fff;
    line-height: 50px;
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.page-header .title-block ul li {
    position: relative;
    padding-right: 20px;
    color: #fff;
    display: inline-block;
}

.page-header .title-block ul li {
    position: relative;
    padding-right: 20px;
    color: #fff;
    display: inline-block;
    font-size: 1.15rem;
}

.page-header .title-block ul li:after {
    position: absolute;
    content: "/";
    right: 0px;
    top: 3px;
    bottom: 0px;
    margin: auto 0px;
    font-size: 14px;
    margin-right: 3px;
}

.page-header .title-block ul li:last-child:after {
    display: none;
}

.page-header .title-block ul li a {
    font-weight: 600;
    color: var(--sub-hover-color);
}

/* Business Plan */
.businessPlan .accordion-item {
    background-color: #fff;
    border: 2px solid #2896dc;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(1, 11, 60, 0.15);
    border-radius: 10px;
}

.businessPlan .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.businessPlan .accordion-button {
    overflow-anchor: none;
    align-items: center;
    background-color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 1.1rem;
    padding: 1.25rem;
    padding-right: 4rem;
    color: var(--sub-font-color);
    font-weight: 500;
    position: relative;
    text-align: left;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
    width: 100%;
}

.businessPlan .accordion-button:focus {
    box-shadow: none;
}

.businessPlan .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.businessPlan .accordion-button::after {
    background-image: url(../images/arrow.png);
    position: absolute;
    right: 1rem;
}

.businessPlan .accordion-item:not(:first-of-type) {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.businessPlan .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.businessPlan .accordion-body p {
    line-height: 1.4;
}


/* Gallery */
/* ========================== */
.gallery-wrap {
    position: relative;
    overflow: hidden;
}

.gallery-wrap img {
    width: 100%;
}

.gallery-wrap .hover {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

.gallery-wrap:hover .hover {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.gallery-wrap .hover a {
    background-color: #fab702;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
}



/* Contact */
/* =============================== */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 0;
}

#google_map {
    width: 100%;
    height: 350px;
}

.contact-wrap {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0px 16px 28px 0px rgb(0 0 0 / 15%);
    margin-top: -80px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 100px;
}

.info-box {
    margin-bottom: 2.5rem;
    min-height: 40px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--sub-hover-color);
    border-radius: 0.5rem;
    border: 2px dotted var(--sub-hover-color);
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.info-box h3 {
    font-size: 0.9rem;
    color: var(--bs-primary);
    font-weight: 500;
    margin: 5px 0 10px 70px;
}

.info-box p {
    padding: 0;
    line-height: 22px;
    font-size: 1.5rem;
    margin: 0 0 0 70px;
    font-weight: 700;
}

.info-box p a {
    color: #565656;
}


/* Content Panel */
/* ================================= */

.homepost {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 9px 0px rgba(34,12,43, 0.1);
}
.homepost .post-thumbnail {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.homepost .post-thumbnail img {
    border-radius: 8px;
    transition: .3s;
}
.homepost .post-thumbnail img:hover {
    transform: scale(1.1);
}
.homepost .post-thumbnail2 {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 200px;
}
.homepost .post-thumbnail2 img {
    border-radius: 8px;
    transition: .3s;
}
.homepost .post-thumbnail2 img:hover {
    transform: scale(1.1);
}
.homepost .post-title {
    margin-bottom: 15px;
}
.homepost .post-text{
    text-align: justify;
}
.homepost .post-controls {
    display: flex;
    align-items: center;
    justify-content: end;
}
.homepost .post-text2{
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 4;
}

.post {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 9px 0px rgba(34,12,43, 0.1);
    display: flex;
}
.post .post-thumbnail {
    border-radius: 8px;
    overflow: hidden;
    width: 150px;
}
.post .post-thumbnail img {
    border-radius: 8px;
    transition: .3s;
}
.post .post-thumbnail img:hover {
    transform: scale(1.1);
}
.post .post-text{
    width: calc(100% - 165px);
    margin-left: 15px;
}
.post .post-title {
    margin-bottom: 5px;
}
.post .post-text p{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}
.post .post-controls {
    display: flex;
    align-items: center;
    justify-content: end;
}

/* Category Panel */
/* ============================== */
.categoryBox {
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    background: #C7F2F3;
    padding: 0 1.5rem 1.5rem;
    position: relative;
    border-radius: 10%;
    border: 4px solid #32aeb1;
    display: block;
}
.categoryBox h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #3b5998;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.postDetails {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 9px 0px rgba(34,12,43, 0.1);
}

/* Login Panel */
/* ===================================== */
.logBg{
    background: url(../images/logBg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.loginPanel {
    padding: 40px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    background: var(--sub-base-color);
}

.loginPanel h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--sub-theme-color);
}

.loginPanel .form-control {
    font-size: 1.1rem;
}

.loginPanel .form-select {
    font-size: 1.05rem;
}

.loginPanel .form-control:focus,
.loginPanel .form-select:focus {
    box-shadow: none;
    border-color: var(--sub-hover-color);
}

.loginPanel li {
    margin-bottom: 0.5rem;
    font-size: 15px;
    color: var(--sub-font-color2);
}


address {
    display: block;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

address svg {
    position: absolute;
    left: 0;
}



/* ========================== */
/* cart page */
/* ======================================== */
.inner-card{
	background:#fff;
	border-radius:3px;
	position:relative;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
}
.inner-card-header{
    display: flex;
    align-items: center;
	flex-direction: row;
    flex-wrap: wrap;
	padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(26, 54, 126, 0.125);
	color: rgb(63, 65, 77);
    font-size: 1.2rem;
}
.inner-card-header .card-title{
	display: flex;
    align-items: center;
    white-space: nowrap;
	margin:0;
}
/*.inner-card-header .card-title i{*/
/*	color: var(--sub-font-color2);*/
/*    font-size: 1.4rem;*/
/*}*/
.inner-card-header .nodisplay{
	font-size:1rem;
	color:#888;
}
.inner-card-header .panel-right {
    margin-left: auto;
    white-space: nowrap;
	font-size:1rem;
	color:#888;
}
.inner-card-header .nodisplay select, 
.inner-card-header .card-panel-right input, 
.inner-card-header .card-panel-right button{
	font-size:0.9rem; 
}

.inner-body{
	position:relative;
	padding:20px;
}

.inner-card-body{
	height:400px;
	position:relative;
	padding:0 15px;
	margin:5px 0;
	overflow-y:auto;
}

.inner-card-body::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.inner-card-body::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.inner-card-body::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.inner-card-body::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.inner-card-footer{
	display: flex;
    align-items: center;
    height: 3.5rem;
	padding: 0.75rem 1.25rem;
    border-top: 2px solid rgba(26, 54, 126, 0.125);
}
.inner-card-footer .panel-right {
    margin-left: auto;
    white-space: nowrap;
	font-size:1rem;
	color:#888;
}
.qty{
	padding: 10px 5px;
    background: var(--sub-base-color);
    border: 1px solid #dee2e6;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    min-height: 30px;
    max-width: 100px;
}
.qty .count {
    color: var(--sub-font-color2);
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 2px;
    min-width: 35px;
    text-align: center;
}
.qty .plus {
    cursor: pointer;
    display: inline-block;
    color: #000;
    text-align: center;
    background-clip: padding-box;
    font-size: 10px;
    vertical-align: top;
    border-radius: 50%;
    background: #e9ecef;
    width: 20px;
    height: 20px;
    line-height: 23px;
}
.qty .minus {
    cursor: pointer;
    display: inline-block;
    color: #000;
    text-align: center;
    background-clip: padding-box;
    font-size: 15px;
    line-height: 23px;
    vertical-align: top;
    background: #e9ecef;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.minus:hover{
    background-color: var(--sub-font-color2) !important;
	color:#fff !important;
}
.plus:hover{
    background-color: var(--sub-font-color2) !important;
	color:#fff !important;
}
/*Prevent text selection*/
.qty span{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.qty input{  
    border: 0;
    width: 2%;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty input:disabled{
    background-color:white;
}
.qty .delete{
	margin-left: 16px;
    display: inline-block;
    margin-top: 5px;
    font-size: 17px;	
}
.qty .delete a{
	color:#565656;
}


.checkdetails .form-control, .checkdetails .form-select{
	border-radius: 2px;
    margin-bottom: 10px;
    padding: 10px 20px;
    min-height: 50px;
    border-color: #c6c0c0;
}
.checkdetails label{
	display: block;
}


.pricedetails{
	display:flex;
	flex-direction:column;
	color:#888;
}
.pricedetails p{
	display:flex;
    justify-content: space-between;
	font-size:1rem;
    margin-bottom: 0.5rem;
}
.pricedetails p span{
	color:var(--sub-font-color2);
    font-weight: 600;
}
.pricedetails .form-inline{
	border-bottom:1px solid #ddd;
}
.pricedetails .form-control{
	border-color:transparent;
	font-size:0.9rem;
	padding:8px 0;
}
.pricedetails .form-control:focus,
.pricedetails .form-control:hover,
.pricedetails .form-control:active,
.pricedetails .btn:focus, .pricedetails .btn:hover, .pricedetails .btn:active{
	border-color:transparent;
	box-shadow:none;
}
.pricedetails .btn{
	font-size:0.8rem;
}


/* Blog Panel */
/*=====================================*/
.blogcontent {
    padding: 20px;
    border: 1px solid var(--bs-gray-200);
    position: relative;
    margin-bottom: 1rem;
    background: #fff;
}
.leftSide{
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
}
.leftMenu{
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #eee8f7;
    background: #fff;
}
.leftMenu ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}
.leftMenu ul li{
    position: relative;
    display: block;
    margin-bottom: 0.1rem;
}
.leftMenu ul li:before{
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: var(--sar-font-size-14);
    -webkit-font-smoothing: antialiased;
    position: absolute;
    content: "\f192";
    left: 0.7rem;
    top: 9px;
    color: var(--bs-link-hover-color);
}
.leftMenu ul li a{
    display: block;
    padding: 0.5rem 1rem 0.5rem 2rem;
}
.leftMenu ul li a:hover, .leftMenu ul li.active{
    color: var(--bs-link-hover-color);
    background: var(--bs-gray-200);
}

.otherblog{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f5f5f5;
}
.otherblog:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.otherblog img{
    width: 80px;
    margin-right: 15px;
    border: 1px solid #ddd;
    padding: 0.2rem;
}
.otherblog .othercont{
    width: calc(100% - 95px);
    position: relative;
}
.otherblog .othercont h6{
    margin-bottom: 0.5rem;
}
.otherblog .othercont p{
    color: #101010;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-size: var(--sar-font-size-12);
    max-height: 3rem;
    margin-bottom: 0.2rem;
}



/*==========================================*/
/*RESPONSIVE PANEL*/
/*===================================================*/
@media(max-width:800px){
    section{padding-top: 2.5rem; padding-bottom: 2.5rem;}
    .categoryBox h3{font-size: 16px;}
    .itemCount{margin: 1.5rem 0;}
    .services__item{padding: 20px;}
    .services__icon svg{width: 50px; height: 50px;}
    .loginPanel{padding: 20px;}
    .loginPanel p{font-size: 13px;}
}