{
    margin: 0px;
    font-family: 'jost';
}

body {
    margin: 0;
}

img {
    max-width: 100%;
}

#property-header .dropdown-menu {
    position: absolute;
    padding: 0.5rem 0 0.5rem 0;
    left: 0rem;
    white-space: nowrap;
    text-align: left;
    padding: 0px 0 0px 0;
    background-color: #0b1f44;
    z-index: 556;
    transition: all .3s linear;
    top: 130%;
    visibility: hidden;
    opacity: 0;
    display: block;
    margin-top: 0;
}



#property-header .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

#property-header .navbar-nav li {
    position: relative;
}

.header-area .sticky-logo-img {
    display: none;
}

.sticky_header .sticky-logo-img {
    display: block;
}

.sticky_header .header-logo-img {
    display: none;
}

#property-header .navbar-nav .nav-item .nav-link::after {
    content: unset;
}

#property-header .navbar-nav .nav-item .nav-link i {
    padding-left: 14px;
}

#property-header .navbar-nav .nav-item .nav-link {
    letter-spacing: 1px;
    display: flex;
    position: relative;
    z-index: 1;
    height: 100%;
    align-items: center;
    transition: 0.4s;
    font-family: 'jost';
    text-transform: capitalize;
    letter-spacing: normal;
}

#property-header .navbar-dark .navbar-nav .nav-link:hover {
    color: #2F3191 !important;
    transition: all .3s linear;
}

/* #property-header .navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #399244 !important;
    transition: all .3s linear;
} */

#property-header .dropdown-item.active,
.dropdown-item:active {
    color: #DEE1E3;
    text-decoration: none;
    background-color: #399244;
}

#property-header .navbar-dark .navbar-nav .nav-link:hover.nav-link::before {
    opacity: 1;
    transition: all .3s linear;
}

#property-header .navbar-dark .navbar-nav .nav-link:hover:after {
    opacity: 1;
    transition: all .3s linear;
}

#property-header .dropdown-item:hover {
    color: #2F3191;
    background-color: transparent;
}

#property-header .dropdown-item {
    color: #DEE1E3;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    font-family: 'jost';
    letter-spacing: 1px;
    transition: 0.3s ease-out;
    padding: 0.6rem 1rem 0.6rem 1rem;
}

#property-header .nav-link.active,
#footer-sec .nav-link.active {
    color: #2F3191 !important;
}

#property-header .nav-link.active.nav-link::before {
    opacity: 1;
    transition: all .3s linear;
}

#property-header .navbar-collapse {
    flex-grow: 0 !important;
}

.bg_load {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: url(/assets/img/front/loading-icon.gif) 50% 50% no-repeat #000;
}

.bg-contact .navbar {
    background-color: #f6cabf !important;
    border-bottom: 0.063rem solid #f6beb1 !important;
}

.header {
    position: absolute;
    z-index: 1;
    width: 100%;
}

/* .navbar-light .navbar-nav .nav-link.active-menu { */
/* color: #fff; */
/* } */

.sticky_header {
    position: fixed !important;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-animation-name: fadeInDown;
    animation-duration: 1s;

}

.header-area.sticky_header {
    background: #fff;
}

.scrollToTop {
    background-image: url(/assets/img/front/apple-scroll-to-top.png);
    width: 46px;
    height: 40px;
    position: fixed;
    right: 82px;
    bottom: 63px;
    background-repeat: no-repeat;
    z-index: 99;
}

.navbar-collapse.collapse.show li.nav-item {
    color: #000;
}

/*----onscroll animation start-----*/
.animation-element.slide-top {
    opacity: 0;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    -moz-transform: translate3d(0px, -60px, 0px);
    -webkit-transform: translate3d(0px, -60px, 0px);
    -o-transform: translate(0px, -60px);
    -ms-transform: translate(0px, -60px);
    transform: translate3d(0px, -60px, 0px);
}

.animation-element.slide-btm {
    opacity: 0;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    -moz-transform: translate3d(0px, 60px, 0px);
    -webkit-transform: translate3d(0px, 60px, 0px);
    -o-transform: translate(0px, 60px);
    -ms-transform: translate(0px, 60px);
    transform: translate3d(0px, 60px, 0px);
}

.animation-element.slide-left {
    opacity: 0;
    transition: all 0.6s linear;
    -moz-transform: translate3d(-50px, 0, 0);
    -webkit-transform: translate3d(-50px, 0, 0);
    -o-transform: translate(-50px, 0);
    -ms-transform: translate(-50px, 0);
    transform: translate3d(-50px, 0, 0);
}

.animation-element.slide-right {
    opacity: 0;
    transition: all 0.6s linear;
    -moz-transform: translate3d(50px, 0, 0);
    -webkit-transform: translate3d(50px, 0, 0);
    -o-transform: translate(50px, 0);
    -ms-transform: translate(50px, 0);
    transform: translate3d(50px, 0, 0);
}

.animation-element.fade-in {
    opacity: 0;
    transition: all 1s linear;
    transition-delay: 0.2s;
}

.animation-element.fade-in.in-view {
    opacity: 1;
}

.animation-element.slide-left.in-view,
.animation-element.slide-top.in-view,
.animation-element.slide-right.in-view,
.animation-element.slide-btm.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

/*----onscroll animation end-----*/

.header-area {
    padding-top: 0px;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'jost';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .9px;
    line-height: 26px;
    text-transform: uppercase;
    color: #030614;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #399244;
}

.navbar-dark .navbar-nav .nav-link:hover {
    /* color: #62CEC5 !important; */
    transition: all .3s linear;
}

.navbar-dark .navbar-nav .nav-link:hover:after {
    opacity: 1;
    transition: all .3s linear;
}

a.nav-link {
    position: relative;
}

.header-button {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 12rem;
    padding: 0.375rem 1.55rem;
    border-radius: 50px;
    background-color: #62CEC5;
}



.container {
    padding-right: 8vw !important;
    padding-left: 8vw !important;
    margin: unset !important;
    max-width: unset;
}

/* .navbar-dark .navbar-nav .nav-link {
    padding: 1rem 1rem;
} */

.navbar {
    padding-top: .8rem;
    padding-bottom: .8rem;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
}

.btn:focus {
    box-shadow: unset;
}

.header-area {
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
    top: 0;
    background: #fff;
}


.scrollToTop {
    background-image: url(/assets/img/front/apple-scroll-to-top.png);
    width: 46px;
    height: 40px;
    position: fixed;
    right: 82px;
    bottom: 56px;
    background-repeat: no-repeat;
    z-index: 99;
}

.btn.btn-primary.border-0:active:focus,
.btn-primary:focus {
    background: #f36a3a !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: unset !important;
}

.sticky_header .top-header {
    display: none;
}

.footer-menu-sec a:hover {
    color: #399244;
}




@media (max-width: 767px) {


    .top-header {
        padding: 0;
        background-color: transparent !important;
    }

    .header-btn .zoop-btn {
        padding: 0rem 0rem !important;
        font-weight: 400 !important;
        color: #000 !important;
    }

    .sticky-social {
        display: none;
    }

    .h-height {
        height: 156px;
    }

    .navbar-dark .navbar-toggler {
        color: unset !important;
        border-color: unset !important;
        box-shadow: unset !important;
    }

    .scrollToTop {
        right: 20px;
    }

    .container {
        padding: 0px 15px !important;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        content: unset;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #000 !important;
    }

    .navbar-nav {
        margin-top: 10px !important;
    }

    .scrollToTop {
        background-image: url(/assets/img/front/apple-scroll-to-top.png);
        width: 46px;
        height: 40px;
        position: fixed;
        right: 27px;
        bottom: 20px;
        background-repeat: no-repeat;
        z-index: 99;
    }

    /*.header-area {*/
    /*    background-color: #000;*/
    /*}*/

    .header-button {
        margin-left: unset !important;
        padding: 8px 20px !important;
    }

    .navbar-dark .navbar-nav .nav-link:after {
        position: unset !important;
    }

    .enquire-content h2 {
        line-height: 45px !important;
        font-size: 30px !important;
    }

    .enquire-content h5 {
        font-size: 22px !important;
    }

    /* .navbar-brand img {
        width: 160px;
    } */
}

@media(min-width:768px) and (max-width:991px) {
    .navbar-dark .navbar-nav .nav-link::before {
        content: unset;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: .5rem 0rem;
    }

    .navbar-nav {
        margin-top: 10px !important;
    }

    .header-btn .zoop-btn {
        padding: 0rem 0rem;
    }

    .header-btn .zoop-btn {
        font-weight: 400;
        background: transparent !important;
        color: rgba(0, 0, 0, .7) !important;
        font-weight: 400 !important;
    }

    .header-btn .zoop-btn.btn-primary:hover {
        background: transparent !important;
    }

    .scrollToTop {
        background-image: url(/assets/img/front/apple-scroll-to-top.png);
        width: 46px;
        height: 40px;
        position: fixed;
        right: 40px;
        bottom: 20px;
        background-repeat: no-repeat;
        z-index: 99;
    }

    .header-button {
        margin-left: unset !important;
    }
}

@media (max-width: 575px) {
    .scrollToTop {
        background-image: url(/assets/img/front/apple-scroll-to-top.png);
        width: 46px;
        height: 40px;
        position: fixed;
        right: 20px;
        bottom: 20px;
        background-repeat: no-repeat;
        z-index: 99;
    }
}


/* css start  */
.loan-tab-value-wrap a {
    text-decoration: none;
    color: #000;
}
section.testimonial-slider .section-padding {
    padding-bottom: 0;
}
li.pad-left-none img {
    /*padding-left: 0 !important;*/
    width: 60px !important;
}
p {
    font-family: 'roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

.top-header-label li {
    padding-right: 50px;
    list-style: none;
}

.top-header-label a img {
    padding-right: 20px;
}

.top-header-label a {
    text-decoration: none;
    color: #fff;
}

.top-header-label {
    background: #2F3191;
    padding-top: 10px;
}


.search-container input {
    width: 250px;
    max-width: 100%;
}

.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #2F3191;
    color: white;
}

.topnav .search-container {
    float: right;
}

.topnav input[type=text] {
    padding: 6px;
    /* margin-top: 8px; */
    font-size: 17px;
    border: none;
    background: #fff !important;
}

.topnav .search-container button {
    float: right;
    padding: 6px 10px;
    /* margin-top: 8px; */
    /* margin-right: 16px; */
    background: #2F3191;
    font-size: 17px;
    border: none;
    cursor: pointer;
    height: 37.5px;
}

.topnav .search-container button:hover {
    background: #ccc;
}

i.fa.fa-search::before {
    color: #fff;
}

.search-container form {
    border: 1px solid;
    margin-bottom:0;
}
.single-feature-video-box{
    margin-bottom:25px;
}
@media screen and (max-width: 600px) {
    .topnav .search-container {
        float: none;
    }

    /* .topnav a,
    .topnav input[type=text],
    .topnav .search-container button {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 14px;
    } */

    .topnav input[type=text] {
        border: 1px solid #ccc;
    }
}

.head-btm-sec li {
    list-style: none;
    border-left: 1px solid #8b8b8b;
    width:100%;
    display:inline-block;
}

.head-btm-sec ul {
    justify-content: space-between;
}

.head-btm-sec li img {
    padding-right: 10px;
    padding-left: 10px;
	width:70px !important;
	display:inline-block !important;
}
ul.head-left-wrap {
    padding: 0;
}
.banner-bg-img-wrap img {
    height: 800px;
    max-height: 100%;
}

.head-btm-sec {
    border-top: 1px solid #8B8B8B;
    padding: 10px 0 10px;
}

.head-btm-sec ul {
    padding: 0;
    flex-wrap: wrap;
}

li.pad-left-none {
    border: none;
}

section.banner-sec {
    padding-top: 13%;
}

h6.sub-head {
    color: #0F1030;
    font-family: 'Jost';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

h2.sec-head {
    color: #0F1030;
    font-family: 'Jost';
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

a.blue-btn {
    padding: 10px 20px;
    color: #fff;
    background-color: #2F3191;
    text-decoration: none;
}


#home-pages-banner {
    position: relative;
}

.parallax {
    position: absolute;
    width: 100%;
    height: 800px;
    overflow: hidden;
    top: 0;
    left: 0;

    div {
        /*enable 3D rendering*/
        transform: translateZ(0);
        will-change: transform;
    }
}

.layer {
    position: absolute;
    width: 100%;
    height: 800px;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: top center;
}

.source-layer1 {
    background-image: url(/assets/img/front/layer1.webp);
}

.source-layer2 {
    background-image: url(/assets/img/front/layer2.webp);
}

.source-layer3 {
    background-image: url(/assets/img/front/layer3.webp);
}


.single-video-btm-content h4 {
    font-family: 'Jost';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
    color: #0F1030;
}

.single-video-btm-content {
    padding: 20px 0;
    max-width: 98%;
}

.product-category-top-cont {
    text-align: center;
    padding-bottom: 40px;
}

.single-product-category {
    flex-wrap: wrap;
    background: #f3f3f3;
    padding: 40px;
    margin-bottom: 24px;
    align-items: center;
    height: 350px;
    max-height: 100%;
}

.head-btm-sec a {
    text-decoration: none;
    color: #0F1030;
    display: inline-block;
    width: 100%;
}

.single-testimonial {
    padding: 0 10px 0 0;
    height: 270px;
    max-height: 100%;
}

.single-address-box {
    background: #F5F3F3;
    padding: 30px 20px;
    text-align: center;
    height: 380px;
    max-height: 100%;
    transition: all 0.5s ease-in-out;
}

.about-top-left-content {
    width: 80%;
    max-width: 100%;
}

.footer-category-sec li {
    list-style: none;
    padding: 0 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    font-family: 'roboto';
}

.footer-category-sec ul {
    flex-wrap: wrap;
    justify-content: center;
}

.f-category-wrap {
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc;
}

.single-address-box a {
    text-decoration: none;
    color: #0F1030;
}

h3 {
    font-family: 'Jost';
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}

.footer-menu-sec li {
    list-style: none;
    color: #0F1030;
}

.footer-menu-sec li a {
    color: #0f1030;
}

.footer-menu-sec ul {
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu-sec a {
    font-family: 'Roboto';
}

.footer-menu-sec {
    border-bottom: 1px solid #ccc;
}

.section-padding {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}

.owl-item .item {
    transform: translate3d(0, 0, 0);
    /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
    /* // transform: scale(0.9);

  // transition: all .25s ease-in-out;  */
    margin: 50px 0;
    /* OVERWRITE PLUGIN MARGIN */
}

.screenshot_slider .owl-item .item img,
.screenshot_slider .owl-item .item iframe {
    -webkit-transition: 0.3s;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.80);
    -ms-transform: scale(0.80);
    transform: scale(0.80);
}

.screenshot_slider .owl-item.center .item img,
.screenshot_slider .owl-item.center .item iframe {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.screenshot_slider .owl-nav {
    text-align: center;
    /* // margin: 40px 0; */
}

.screenshot_slider .owl-nav button {
    font-size: 24px !important;
    margin: 10px;
    color: #033aff !important;
}

.f-btm-social-media li {
    list-style: none;
    padding-right: 40px;
}

.single-product-cont p {
    padding-bottom: 15px;
}

.single-video-img iframe {
    border-radius: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 250px !important;
    min-width: 1px !important;
    min-height: 1px !important;
}

.header-area.sticky_header .top-header-label {
    display: none;
}

section.inner-page-banner {
    margin-top: 190px;
}
ul.menu-slider-wrap {
    margin-bottom: 0;
}
section.inner-page-banner {
    position: relative;
}

.inner-banner-cont-sec {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
        width: 100%;
    text-align: center;
}
.inner-banner-cont-sec h1{
    font-family: 'Jost';
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}
.inner-banner-cont-sec span {
    font-family: 'Jost';
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    /*width:fit-content;*/
}
h1.sec-head {
    color: #0F1030;
    font-family: 'Jost';
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.single-branch-wrap {
    background: #f5f3f3;
    height: 555px;
}

.single-branch-cont {
    padding: 20px;
}

.single-branch-cont a {
    color: #0F1030;
    text-decoration: none;
}

.appointment-booking-wrap {
    max-width: 80%;
    margin: 0 auto;
}

.submit-btn-top a {
    text-align: center;
    background: #2F3191;
    padding: 10px 40px;
    text-decoration: none;
    color: #fff;
}

.submit-btn-top.col-md-12 {
    text-align: center;
}

.single.user-img-details input,
.single.user-img-details textarea {
    background: #f5f3f3;
    border: none;
    padding: 10px;
}

.single-why-us-box {
    background: #f5f3f3;
    padding: 30px 20px;
    margin-bottom: 25px;
    height: 300px;
    max-height: 100%;
    transition: all 0.5s ease-in-out;
}

.whyus-btm-cont-wrap {
    padding-top: 25px;
}

.ps-rel {
    position: relative;
}

.gallery-cont {
    position: absolute;
    bottom: 10px;
    left: 10%;
    max-width: 90%;
    color: #fff;
}

.loan-tab-value-wrap .ps-rel {
    padding: 0;
}

.loan-tab-values:not(.active) {
    display: none
}

.loan-tab-names-wrap ul {
    list-style: none;
    display: flex;
    justify-content:center;
}

.loan-tab-names-wrap li.active {
    border-bottom: 2px solid #2F3191;
}

.loan-tab-names-wrap li:hover {
    cursor: pointer
}

.loan-tab-names-wrap li {
    margin: 0px 20px;
}

.gallery-cont {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.col-md-3.ps-rel:hover .gallery-cont {
    opacity: 1;
}

.single-recog-cont {
    padding: 40px 0px;
}

.single-recog-cont a {
    background: #2F3191;
    padding: 10px 20px;
    color: #fff !important;
    border-radius: 5px;
}

.single-recog-cont h3 {
    padding-top: 30px;
}

.recog-testimonial-top-cont {
    width: 50%;
}

.col-md-3.ps-rel {
    height: 252px;
    max-height: 100%;
}

.col-md-3.ps-rel img {
    width: 100%;
}

.knowledge-tab-value-wrap .ps-rel {
    padding: 0;
}

.knowledge-tab-values:not(.active) {
    display: none
}

.knowledge-tab-names-wrap ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding:0;
        overflow-x: auto;
        white-space:no-wrap;
}
.knowledge-tab-names-wrap {
    overflow: hidden;
}
.knowledge-tab-names-wrap li.active {
    background-color: #2F3191;
    color: #fff !important;
}

.knowledge-tab-names-wrap li:hover {
    cursor: pointer
}

.knowledge-tab-names-wrap li {
    margin: 0px 20px 0 0;
    padding: 10px 20px;
    background-color: #ccc;
    text-transform: uppercase;
}

section.bath-fitting-top-sec {
    background: #F5F3F3;
}

.bath-top-left-content {
    max-width: 90%;
}

.tagline-btns li {
    list-style: none;
    padding: 10px 20px;
    background: #2F3191;
    margin-right: 20px;
    color: #fff;
    border-radius: 3px;
}

.tagline-btns ul {
    padding: 0;
}

.single-tagline-box img {
    height: 270px;
    max-height: 100%;
}
.video-box-wrap a{
    text-decoration:none;
    color:#000;
}
a.view-btn-wrap {
    text-decoration: none !important;
    color: #000;
}
.knowledge-tab-names-wrap a {
    text-decoration: none;
    color: #000;
}
.single-tagline-box-cont a.view-btn-bg {
    padding: 7px 30px;
    background: #2F3191;
    color: #fff !important;
    text-decoration: none;
}
.tagline-btns a {
    text-decoration: none;
    color: #fff;
}
.single-tagline-box {
    margin-bottom: 40px;
}

.catalogues-img-sec .single-testimonial {
    position: relative;
}

.catalogues-cont {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-60%, 0%);
}

.catalogues-cont a {
    background: #2F3191;
    padding: 10px 20px;
    color: #fff !important;
}

.catalogues-cont {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.single-testimonial-cata:hover .catalogues-cont {
    opacity: 1;
}

.single-testimonial-cata {
    padding-right: 15px;
}

.bath-deatils-tags li {
    list-style: none;
    background: #f5f3f3;
    margin-right: 10px;
    padding: 7px 20px;
    transition:all 0.5s ease-in-out;
}
.bath-deatils-tags li:hover{
    background: #2F3191;
    color:#fff;
}
.bath-deatils-tags ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.bath-fit-details-r-cont a {
    background: #2F3191;
    padding: 10px 25px;
    color: #fff !important;
    text-decoration: none;
}

.bath-deatils-tags {
    padding-top: 30px;
}

section.bath-fitting-details-banner .carousel-indicators {
    position: static;
    padding-top: 20px;
}

.single-tagline-box-cont {
    padding-top: 20px;
}

.tagline-btns {
    padding-bottom: 40px;
}

.f-category-wrap a {
    text-decoration: none;
    color: #0F1030;
}

.bottom-footer-left p {
    text-align: end !important;
}

.banner-img-wrap img {
    width: 100%;
}

.insta-img-sec .single-testimonial {
    height: 100%;
    max-height: 100%;
}

.single-tagline-box img {
    width: 100%;
}

.catalogues-cont a {
    text-decoration: none;
}

.single-tagline-box img {
    width: 100%;
    height:350px;
}
p.height-p {
    height: 110px;
    max-height: 100%;
}
.single-video-img{
    height: 250px;
}
.single-video-img img {
    height: 100%;
    width: 100%;
}
.knowledge-tab-names-wrap a:hover{
    color:#fff;
}

.single-recog-cont p a {
  background: #fff;
  color: #000 !important;
  text-decoration: none;
}

@media screen and (max-width:767px) {
    .inner-banner-cont-sec span {
    font-size: 36px;
}
    .head-btm-sec li {
        width: 100%;
        border: none;
        color: #fff;
    }

    .top-header-label li {
        padding-right: 0;
        width: 50%;
        font-size: small;
    }

    .top-header-label ul {
        padding: 0;
    }

    ul.head-label-right {
        justify-content: flex-start !important;
        display: none !important;
    }

    .header-area.sticky_header {
        background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    /*.head-btm-sec {*/
    /*    display: none;*/
    /*}*/

    ul.head-label-right li {
        width: auto;
    }

    .topnav {
        display: none;
    }

    .feature-video-top-sec {
        flex-wrap: wrap;
    }

    h2.sec-head {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .top-right-content {
        margin: 20px 0;
    }

    .about-top-left-content {
        width: 100%;
    }

    .single-abt-icon {
        padding: 0 10px 0 0;
    }

    section.product-categories-sec {
        padding: 40px 0;
        overflow: hidden;
    }

    .product-category-top-cont {
        padding-bottom: 10px;
    }

    .single-product-category {
        padding: 20px;
        flex-wrap: wrap;
        height: auto;
    }

    .single-product-cont {
        width: 100% !important;
        text-align: center;
    }

    .single-prod-img {
        width: 100% !important;
    }

    .award-img-sec.owl-carousel .owl-nav {
        text-align: center;
    }

    .section-padding {
        padding: 0;
    }

    .loan-tab-names-wrap li {
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .single-why-us-box {
        height: auto;
    }

    section.inner-page-banner {
        padding-top: 112px;
        margin-bottom: 20px;
        margin-top:0;
    }

    .inner-banner-cont-sec {
        width: 100%;
        text-align: center;
        top: 160px;
    }

    .inner-banner-cont-sec h1 {
        font-size: 24px;
    }

    .banner-img-wrap img {
        height: 80px;
    }

    section.why-navilu-sec {
        padding: 40px 0;
    }
    section.featured-video-sec {
        padding: 40px 0 0;
    }
    .footer-logo {
        padding-bottom: 20px;
    }
    .single-address-box {
        height: auto;
        margin-bottom: 20px;
    }
    .recog-testimonial-top-cont {
        width: 100%;
    }
    .knowledge-tab-names-wrap ul {
        /*flex-wrap: wrap;*/
        padding: 0;
        /*justify-content: center;*/
            white-space: nowrap;
                overflow-x: scroll;
    }
    .knowledge-tab-names-wrap {
    overflow: hidden;
}
    .knowledge-tab-names-wrap ul li {
        margin-bottom: 10px;
        width: 200px;
        text-align: center;
        white-space: nowrap;
    }
    .single-branch-wrap {
        margin-bottom: 20px;
            height: 600px;
            max-height:100%;
    }
    .appointment-booking-wrap {
        max-width: 100%;
        padding: 40px 0;
    }
    .award-img-sec button.owl-prev {
        margin-right: 20px;
    }

    .award-img-sec .owl-nav {
        padding-top: 10px;
    }
    .insta-img-sec .owl-nav {
        text-align: center;
        padding-top: 10px;
    }

    .insta-img-sec .owl-nav .owl-prev {
        margin-right: 20px;
    }
    .loan-tab-names-wrap ul {
        padding: 0;
        text-align: center;
    }
    section.recognition-sec {
        overflow: hidden;
    }
    .footer-menu-sec li {
        /*width: 100%;*/
        text-align: left;
    }
    .f-btm-social-media ul {
        justify-content: center;
    }
    section.bath-fitting-top-sec {
        overflow: hidden;
        padding-top: 20px;
        /* margin-top: -40px; */
    }

    .tagline-btns ul {
        flex-wrap: wrap;
        padding: 40px 0 0;
    }

    .tagline-btns ul li {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
        text-align: center;
    }
    .bath-deatils-tags li {
    width: 100%;
    margin-bottom: 10px;
    }
    .bath-deatils-tags h4 {
        padding-bottom: 10px;
    }
}




  .lightbox {
    display:none;
    position:fixed;
    z-index:999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);

    .lightbox-video {
      width:100%;
      padding-bottom:56%;
    }

    iframe {
      position:absolute;
      height:100%;
      width:100%;
      left:0;
      right:0;
    }

    img {
      display:block;
      margin:0 auto;
    }

    .lightbox-close {
      position:absolute;
      display:block;
      top: 10px;
      right: 10px;
      color:#ffffff;
      font-size:26px;
      height: 50px;
      width: 50px;
      background: rgba(255,255,255,0.3);
      border: 3px solid #ffffff;
      border-radius: 50%;
      line-height:50px;
      text-align:center;

      &:hover {
        text-decoration: none;
      }
    }

    .lightbox-container {
      max-width: 1024px;
      margin:100px auto 25px;
    }

  }

.single-gal-img *,.single-gal-img {
    height: 100%;
    display: inline-block;
    width: 100%;
}



.dropbtn {
    background-color: #2F3191;
    color: white;
    padding: 7px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }

  .dropbtn:hover, .dropbtn:focus {
    background-color: #2F3191;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown a:hover {background-color: #ddd;}

  .show {display: block;}

 
.single-address-box:hover,.single-why-us-box:hover {
    transform: translateY(-20px);
}
.single-why-us-box img {
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
.single-branch-wrap img {
    filter: brightness(0.5);
    transition: all 0.5s ease-in-out;
}

.single-branch-wrap:hover img {
    filter: brightness(1);
}

.f-btm-social-media img {
    transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.f-btm-social-media img:hover {
    transition: 0.70s;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
@keyframes animName {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   }

   .about-us-sec {
    overflow: hidden;
}


.lightbox-image {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lightbox-column h2 {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.lightbox-column p {
    max-width: 45%;
    margin: 20px 0;
}
.lightbox-image img {
    width: 50%;
}
.only-popup{
    display:none;
}
ul.menu-slider-wrap .owl-prev {
    position: absolute;
    left: -40px;
     top: 50%;
    transform: translateY(-50%);
}

ul.menu-slider-wrap .owl-next {
    right: -40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.loan-tab-names-wrap a {
    text-decoration: none;
    color: #000;
}
.testimonial-slider .owl-dots {
    display: none;
}
.form-row.thankyou-message {
    padding-top: 20px;
}
.knowledge-tab-names-wrap li.active a {
    color: #fff;
}
.knowledge-tab-wrap.pt-md-2_submenu li a:hover {color:#000;}
.knowledge-tab-wrap.pt-md-2_submenu .knowledge-tab-names-wrap li.active a{
    color:#000 !important;
    border-bottom:1px solid;
    padding-bottom:5px;
}
@media screen and (min-width:768px){
    .single-tagline-box-cont .view-btn-wrap {
    height: 220px;
    max-height:100%;
    display:inline-block;
}
/*    a.view-btn-wrap h4 {*/
/*    height: 60px;*/
/*}*/
    .only-mob{
    display:none;
}
.insta-img-sec .owl-nav {
    display: none;
}
section.mbl-banner {
    display: none;
}
a.pad-left-none {
    display: none;
}
 .single-product-category:hover .single-prod-img img{
    animation: zoom-in-zoom-out 3s ease-out ;
}
.single-product-category:hover .single-prod-img img{
    transition: all 3s;
}


@keyframes zoom-in-zoom-out {
     0% {
        transform: scale(1, 1);
        opacity: 0.8;
    }

    50% {
        transform: scale(0.8, 0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0.8;
    }
}
}
@media (max-width: 767px){
    .knowledge-tab-names-wrap ul{
        justify-content:left;
    }
    .single-product-cont a {
    margin: 20px auto;
    display: block;
    width: fit-content;
}
    .lightbox-desktop-popup {
    display:none;
}
.header-area .navbar-toggler-icon {
    filter: invert(1) !important;
}
 .only-mob{
    display:block;
}
section.instagram-sec {
    padding-top: 40px;
}
.single-gal-img {
    padding: 20px 20px 0;
}
section#home-pages-banner {
    display: none;
}
section.mbl-banner {
    padding-top: 60px;
}
.single-branch-wrap>img {
    width: 100%;
}
ul.menu-slider-wrap .owl-next {
    right: 0;
}

ul.menu-slider-wrap .owl-prev {
    left: 0;
}

.menu-slider-wrap .owl-item {
    text-align: center;
}
.head-btm-sec li img {
    width: 50px !important;
}

ul.menu-slider-wrap {
    margin-bottom: 5px;
}
.top-header-label {
    display: none !important;
}
.loan-tab-names-wrap {
    overflow: hidden;
}
.loan-tab-names-wrap ul{
        overflow-x: scroll;
            justify-content: left;
}
.single-testimonial{
    height:auto;
}
.bath-sink-img-wrap img {
    width: 100%;
}
}

.single-video-img a {
    width: 100%;
    max-width: 100%;
    height:100%;
    max-height:100%;
}



.prod-ins-sec .single-video-img {
    height: auto;
}

.prod-ins-sec .single-video-img iframe {
    max-height: 100% !important;
}

.main-client-img {
    border: 1px solid #e7dfdf;
    padding: 20px;
}
li {
    list-style: none;
}

li a {
    text-decoration: none;
}
/*26-06-2024*/
 section.knowledge-sec.brd-crum li {
    text-transform: capitalize;
}