/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

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


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

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


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

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/* .navbar .navbar-brand,
.navbar a.btn {
    height: 65px;
} */

.navbar .navbar-nav .nav-link {
    /* margin-left: 51px; */
    padding: 17px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    /* text-transform: uppercase; */
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ff7513;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/slider-2.jpg) center center no-repeat;
    background-size: cover;
    /* background-position: 0px -397px; */
}

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


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

/* .portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
} */

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


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

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: #ff7513;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

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

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

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

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

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

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

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

.navbar .dropdown-toggle::after {
    color: #000 !important;
}

.navbar .navbar-nav .navbar .navbar-nav .nav-link.active {
    color: #000 !important;
    /* font-family: "Josefin Sans", sans-serif!important; */
    /* font-family: 'Josefin Sans'!important; */
}

.nav-item.nav-link:hover {
    margin-left: 51px;
    padding: 17px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    /* text-transform: uppercase; */
    outline: none;
}

.navbar.custom_nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 11px 0px !important;
}

.navbar-collapse {
    margin-left: 24px;
}

.collapse.navbar-collapse.main-header .navbar-nav a {
    font-family: 'Josefin Sans' !important;
}

.josen__sans {
    font-family: 'Josefin Sans' !important;
}

.poppins_ {
    font-family: 'Poppins';
}

.living_chair_box {
    /* height: 218px !important; */
    width: 100%;
    position: relative;
    padding-bottom: 15%;
    text-align: center;
}

.living_chair_box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.living_para p {
    font-size: 13px;
    color: #000;
    text-align: left;
}

.footer_cus {
    /* background-image: url(../img/wave\ \(1\).png); */
    background-image: url(../img/Group\ 1\ \(22\).png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.footer_cus .foot-logo p {
    font-size: 13.4px;
    color: #fff;
    font-weight: 400;
}

.ftr_social_icon span {
    padding: 5px 9px;
    background-color: #d9d9d9;
    border-radius: 50%;
    margin-right: 10px;
    color: #000;
}

.ftr_social_icon span i {
    font-size: 15px !important;
}

.ftr_social_icon {
    margin-top: 35px;
}

.recliner_sofa_sec {
    background-image: url(../img/MU-11381-PR-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px -267px;
    height: 33rem;
    width: 100%;
    position: relative;
}

.recliner_sofa_sec::after {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000078 !important;
    content: "";
    position: absolute;
}

.recliner_card {
    padding: 10px 12px;
    background-color: #fff;
    display: inline-block;
    border-radius: 13px;
    z-index: 9;
}

.recliner_sofa_col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 72px;
}

.recliner_box {
    height: 250px;
    width: 100%;
}

.recliner_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* .sofa_recliner_test{
position: relative;
}
.sofa_recliner_test .recliner_btn{
    position: absolute;
    height: 12px;
    width: 12px;
    background-color: #000;
} */
.dot {
    height: 18px;
    width: 18px;
    /* background-color: #bbb; */
    border-radius: 50%;
    display: inline-block;
    margin-left: 3px;
}

.sofa_recliner_test h5 {
    font-size: 15px;
    margin-top: 14px;
    margin-bottom: 12px;
    color: #2f2f2f;
}

.nature_sofa_section {
    background-image: url(../img/RS-12710\ PR_1\ \(1\).jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 33rem;
    width: 100%;
    position: relative;
    margin-top: -38px;
    margin-bottom: 30px;
}

.nature_sofa_section::after {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000052;
    content: "";
    position: absolute;
}

/* ------------why-choose--------- */
.why_choose_sec {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
}

.choose_righ_box img {
    border-radius: 6px;
}

.choose_righ_box {
    margin-top: 42px;
}

.why_choose_para {
    font-size: 13px;
    color: #000;
}

.choose_us_icon {
    height: 31px;
    width: 14%;
    display: inline-block;
    position: relative;
    margin-bottom: 11px;
}

.choose_us_icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

p.choose_sub_para {
    font-size: 14px;
    color: #6A6A6A;
}

.choose_circle {
    width: 28px;
    height: 28px;
    background: #d7d7d7;
    border-radius: 50%;
    position: absolute;
    z-index: -9;
    right: -13px;
    top: -2px;
}

.choose_background_dot {
    position: relative;
}

.choose_background_dot img {
    position: absolute;
    z-index: -9;
    top: 0px;
    left: -41px;
}


/* -------testimonial-------------------- */

/* .landing_testimonial .testi-para{
        box-shadow: unset!important;
        padding: 27px 167px !important;
        margin-bottom: unset!important;
      }
      .testi-para .testimonial-img img{
        width: 76px!important;
        height: 76px!important;
      }
      .landing_testimonial .testimonial-img{
            color: #2F2F2F!important;
      }
      .landing_testimonial .testimonial-img h5{
        font-size: 18px;
        font-weight: 300;
    }
    .testi-para{
        color: #000;
        font-size: 18px;
        font-weight: 500;
    }
    .landing_testimonial .owl-next {
        left: 15rem!important;
    }
    .landing_testimonial .owl-prev {
        right: 15rem!important;
    }
    .landing_testimonial.testimonial-carousel::after{
        display: none!important;
    } */

/* ------explore css--------------- */

.explore_dot {
    position: absolute;
    top: -70px;
    left: -31px;
    z-index: -9;
}

.left_explore {
    position: relative;
}

.custom_exp_3 {
    position: absolute;
    bottom: -45px;
    right: 0;
}

.explore_box1 img {
    border-radius: 20px;
}

.explore_box2 img {
    border-radius: 20px;
}

.cus_exp_box3 img {
    border-radius: 20px;
}

.explore_right {
    padding-left: 51px;
}

.explore_right p {
    font-size: 13px;
    color: #000;
    text-align: left;
}

.nav-to-top {
    background-color: #7f7e7e !important;
    color: #fff;
}

.explore_right .dot1 {
    height: 7px;
    width: 9px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #3B5D50;
    margin-bottom: 35px;
}

.explore_right .dot2 {
    height: 7px;
    width: 9px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #3B5D50;
    margin-bottom: 57px;
}

.explore_sub_para .explore_sub_para_1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore_sub_para .explore_sub_para_1 label {
    font-size: 12px;
    font-weight: 600;
}

.explore_sub_para .explore_sub_para_1 p {
    font-family: 'Poppins';
}


/* -------explore css--end------------ */

.shadow-effect {
    background: #fff;
    padding: 26px 133px;
    padding-top: 0px !important;
    border-radius: 4px;
    text-align: center;
    /* border:1px solid #ECECEC; */
    /* box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02); */
}

.testi_header {
    display: flex;
    justify-content: center;
    align-items: center;
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
    color: #000;
    font-family: 'Poppins';
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    /* background: #3190E7; */
    padding: 9px 35px;
    /* border-radius: 12px; */
    text-align: center;
    /* color: #fff; */
    /* box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05); */
}

.testimonial-name p {
    color: #2F2F2F;
    font-size: 16px;
    font-weight: 500;
}

#customers-testimonials .item {
    text-align: center;
    /* padding: 50px; */
    /* margin-bottom:80px; */
    /* opacity: .2; */
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 44px auto 0px;
    border-radius: 50%;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #385D50;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
    border-radius: 50%;
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #385D50;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    border-radius: 50%;
}

#customers-testimonials .owl-nav .owl-prev {
    float: left;
    top: 20%;
    position: absolute;
    left: 10%;
    padding: 7px 17px;
    height: 42px;
    width: 42px;
    display: flex;
    background-color: #2F3032;
    color: #fff !important;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

#customers-testimonials .owl-nav .owl-next {
    float: left;
    top: 20%;
    position: absolute;
    right: 10%;
    padding: 7px 17px;
    height: 42px;
    width: 42px;
    display: flex;
    background-color: #2F3032;
    color: #fff !important;
    border-radius: 50%;
    justify-content: center;
    align-items: center
}

.custom_testi {
    margin-top: 7rem;
}


/* <!-- ---------hero slider--------------------- --> */
.hero_sec .swiper {
    width: 100%;
    height: 100%;
}

.hero_sec .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_sec .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_sec .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero_sec .swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero_sec .mySwiper2 {
    height: 80%;
    width: 100%;
}

.hero_sec .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.hero_sec .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.hero_sec .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.hero_sec .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* <!-- ---------hero slider--------------------- --> */
/* Set the height of the swiper container */
.hero_sec .swiper-container {
    height: 200px;
    /* Set your desired height here */
}

/* Optional: If you want to adjust the slide content height */
.hero_sec .swiper-slide {
    height: 100%;
    /* Adjust as needed */
}

.hero_sec #thumbnail_slider img {
    width: 75px;
    height: 63px;
    border-radius: 8px;
}

.hero_sec #thumbnail_slider .swiper-slide {
    opacity: 1;
}

.hero_sec .tnumbnail__box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_sec .tnumbnail__box span {
    font-family: 'Josefin Sans' !important;
    font-weight: 400;
    color: #000;
    margin-left: 16px;
    font-size: 16px;
}

.living_chair_box:before {
    content: "";
    background: #F6F6F6;
    position: absolute;
    width: 100%;
    height: 80%;
    z-index: -1;
    bottom: 0;
    padding-bottom: 5%;
    border-radius: 20px;
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.living_chair_box .add_product {
    /* content: "\F4FE";
            font-family: "bootstrap-icons"; */
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2F2F2F;
    box-shadow: 0px 7px 15px -1px #00000066;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff !important;
    line-height: 35px;
    font-size: 28px;
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    cursor: pointer;
}

.living_chair_box:hover:before,
.living_chair_box:hover .add_product {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.navbar-brand .element:focus-visible {
    outline: none;
}




.hero_sec {
    box-shadow: 0px 3px 7px #cbcbcb;
}

.living_room_sec {
    margin-top: 5rem;
    /* box-shadow: 0px 3px 7px #cbcbcb; */
    /* padding-bottom:20px; */
    -webkit-box-shadow: 0 8px 6px -6px #cbcbcb;
    -moz-box-shadow: 0 8px 6px -6px #cbcbcb;
    box-shadow: 0 8px 6px -6px #cbcbcb;
    padding-bottom: 58px;
}

.living_chair_box .product_info h5 {
    font-size: 17px;
}

.living_chair_box .product_info .Price {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.footer_chair_box {
    position: absolute;
    top: -192px;
    right: 122px;
    height: 29rem;
}

.custom___footer {
    position: relative;
    margin-top: 13rem;
}

.footer_chair_box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


/* ---------product page css-------------------------- */
.product-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 56%), rgb(0 0 0 / 56%)), url(../img/RS-12710\ PR_3\ \(2\).png) center center no-repeat;
    background-size: cover;
    height: 355px;
    background-size: cover;
}

.product-page-header p {
    color: #fff;
}

.product-page-header .container {
    text-align: center;
}

.product-sec .prd-card .prd-img-box {
    height: 288px;
    width: 100%;
    border-radius: unset !important;
}

.product-sec .prd-card .prd-img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.prd-card .img-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 24px;
}

.prd-card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 12px;
    margin-top: 40px;
}

.product-page-header h5 {
    font-size: 46px;
    font-weight: 100;
    font-family: 'Josefin Sans' !important;
}

.product-page-header p {
    font-family: 'Poppins' !important;
    padding: 0rem 20rem;
    font-size: 15px;
}

.prd-card .img-detail h5 {
    font-size: 16px;
    margin: 0px !important;
}

.prd-card .color-dot .dot {
    height: 15px;
    width: 15px;
}


/* ---------product page css-------------------------- */
.store-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 27%)), url(../img/Group\ 40.png) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.store-page-header h5 {
    font-size: 46px;
    font-weight: 100;
    font-family: 'Josefin Sans' !important;
}

.store-page-header p {
    font-family: 'Poppins' !important;
    padding: 0rem 20rem;
    font-size: 15px;
}

.store-page-header p {
    color: #fff;
}

.store-page-header .container {
    text-align: center;
}

.store-sec .store__card1 {
    cursor: pointer;
}

.store-sec .store__card1.map_active {
    background-color: #28292b;
    padding: 40px 34px;
    border-radius: 18px;
    transition: all 0.5s ease;
}

.store-sec .store__card1.map_active h5 {
    font-family: 'Josefin Sans' !important;
    font-size: 18px;
    font-weight: 400;
    color: #fff !important;
}

.store-sec .store__card1.map_active p {
    font-size: 13px;
    color: #fff !important;
    margin: 5px 0px;
}

.store-sec .store__card1 {
    border: 1px solid #28292b;
    padding: 40px 34px;
    border-radius: 18px;
}

.store-sec .store__card1 h5 {
    font-family: 'Josefin Sans' !important;
    font-size: 18px;
    font-weight: 400;
    color: #000 !important;
}

.store-sec .store__card1 p {
    font-size: 13px;
    color: #000 !important;
    margin: 5px 0px;
}


/* ------------------- */
.store-sec .store__card3 {
    margin-top: 20px;
    cursor: pointer;
}

.store-sec .store__card3.map_active {
    background-color: #28292b;
    padding: 40px 34px;
    border-radius: 18px;
    transition: all 0.5s ease;
}

.store-sec .store__card3.map_active h5 {
    font-family: 'Josefin Sans' !important;
    font-size: 18px;
    font-weight: 400;
    color: #fff !important;
}

.store-sec .store__card3.map_active p {
    font-size: 13px;
    color: #fff !important;
    margin: 5px 0px;
}

.store-sec .store__card3 {
    border: 1px solid #28292b;
    padding: 40px 34px;
    border-radius: 18px;
}

.store-sec .store__card3 h5 {
    font-family: 'Josefin Sans' !important;
    font-size: 18px;
    font-weight: 400;
    color: #000 !important;
}

.store-sec .store__card3 p {
    font-size: 13px;
    color: #000 !important;
    margin: 5px 0px;
}

/* -------------- */

.store-sec .cus__container_fluid {
    padding: 0px 40px;
}

.store-sec .stores__map iframe {
    width: 100%;
    height: 36rem;
    border-radius: 16px;
}

.store-sec {
    margin-top: 37px;
}

.store-sec .store__card2 {
    margin-top: 19px;
}

/* ----------careers-page-css-------------------------- */

.careers-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 27%)), url(../img/Group\ 19.png) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.careers-page-header h5 {
    font-size: 46px;
    font-weight: 100;
    font-family: 'Josefin Sans' !important;
}

.careers-page-header p {
    font-family: 'Poppins' !important;
    /* padding: 0rem 20rem; */
    padding-right: 34rem;
    font-size: 15px;
}

.careers-page-header p {
    color: #fff;
    margin: 0;
    font-size: 13px;
}

/* .careers-page-header .container{
text-align: center;
} */
.choose_paage h1 {
    text-align: center;
}

.choose_paage p {
    text-align: center;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.choose_paage p {
    margin: 0rem 10rem;
}

.choose_page_detail {
    padding: 4rem 7rem;
}

.careers_form_design {
    background-color: #28292b;
}

.car_form_sbmt {
    border-radius: 8px;
    padding: 10px 43px;
}

.careers_detail_form input {
    border: 2px solid #484849;
    background-color: #28292b;
}

.careers_detail_form textarea {
    border: 2px solid #484849;
    background-color: #28292b;
}

.careers_detail_form button.car_form_sbmt {
    background-color: #151617;
    color: #fff;
    border: 1px solid #28292b;
}

.car_form_container p {
    font-size: 13px;
    padding: 0px;
    margin: 0px;
    color: #fff;
}

.form_head {
    margin-bottom: 0px !important;
    font-size: 40px;
    font-weight: 100 !important;
    margin-top: 21px;
}

.careers_form_design {
    margin-top: 50px;
    padding: 70px 0px;
}

.careers_detail_form {
    margin-top: 30px;
}

/* .careers_detail_form input {
    border-color: 1px solid #484849!important;
    background-color: #28292b;
} */
.careers_detail_form label {
    font-size: 13px;
    color: #fff;
    font-weight: 200;
}

.choose_page_cards {
    padding: 29px 20px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    height: 12rem;
}

.choose_page_cards p {
    font-size: 14px;
    font-family: 'Poppins' !important;
}

.row.car_bottom_card {
    margin-top: 21px;
}

.choose_page_cards h5 {
    font-size: 16px;
    margin-top: 14px;
    font-family: 'Josefin Sans' !important;
}

.choose_head {
    font-family: 'Josefin Sans' !important;
    text-align: center;
    margin-top: 80px;
}

/* -----------brand page css---------------------------- */
.brand-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 27%)), url(../img/Frame\ 6\ \(3\).png) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.brand_fluid {
    padding: 0px 60px;
}

/* position: absolute;
    top: -269px;
    right: -85px;
    height: 473%;
    width: 135%;     */
.brand_header_right {
    position: absolute;
    right: 0;
    top: 66px;
    padding: 0;
}

.sofa_brand {
    background-color: #F2F2F2;
    padding: 8rem 0rem 6rem 0rem;
}

.brand-dtl_1 {
    margin-top: 7rem;
    padding: 0px 18px;
}

.brand-dtl_1 .brand_head {
    font-family: 'Josefin Sans' !important;
    font-size: 34px;
}

.brand_id {
    font-family: 'Josefin Sans' !important;
}

.brand-dtl_1 .para_1 {
    margin-bottom: 0;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_1 .para_2 {
    margin-bottom: 0;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_1 .para_3 {
    margin-top: 30px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_1 .para_4 {
    margin-top: 30px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand_id {
    color: #000;
}

.brand__2_imgbox {
    height: 30rem;
    width: 100%;
}

.brand__2_imgbox img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.brand-dtl_2 {
    text-align: right;
    margin-top: 8rem;
}

.brand-dtl_2 .para_1 {
    margin-bottom: 0px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_2 .para_2 {
    margin-bottom: 0px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_2 .para_3 {
    margin-bottom: 0px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_2 .para_4 {
    margin-bottom: 0px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand_head__2 {
    font-family: 'Josefin Sans' !important;
    font-size: 34px;
}

.barnd__2 {
    margin-top: 2rem;
}

.brand_bottom_container {
    padding: 3rem 10rem;
    background-color: #f2f2f2;
    text-align: center;
    font-family: 'Josefin Sans' !important;
    margin: 70px 1px;
}

.brand_bottom_container h4 {
    font-family: 'Josefin Sans' !important;
    font-size: 21px;
    font-weight: 600;
}

.brand-page-header p {
    padding-right: 46px;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins' !important;
}

/* -------------brand page css-------------------------- */
.video-play-button {
    position: absolute;
    z-index: 999;
    top: 65%;
    left: 19%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #d0d5d8;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #d0d5d8;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #2f3032;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #fa183d;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.brand-dtl_htl {
    margin-top: 3rem;
    padding: 0px 18px;
}

.sofa_brand_htl {
    background-color: #F2F2F2;
    padding: 5rem 0rem;
    margin-top: 2rem;
}

.nav-tabs.loc-glry-tab .nav-link.active,
.nav-tabs.loc-glry-tab .nav-item.show .nav-link {
    border-bottom: 2px solid #000 !important;
    background-color: #ccc;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Josefin Sans' !important;
}

.loc-glry-tab li a.nav-link {
    border: 2px solid #dee2e6 !important;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Josefin Sans' !important;
}

.loc-glry-tab li a.nav-link:hover {
    border-bottom: 2px solid #000 !important;
    background-color: #ccc;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Josefin Sans' !important;
}

.loc-glry-tab .nav-item {
    margin-right: 10px;
    margin-bottom: 4px;
}

.loc-gallery-card {
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 15px;
}

/* .img-click-lightbox{
    height: 100%;
    width: 170%!important;
} */

.contactus-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../img/Frame\ 6\ \(5\).png) center center no-repeat;
    background-size: cover;
    height: 42rem;
    background-size: cover;
    padding-top: 2.1rem;
    /* margin-bottom: 2rem; */
}

.contactus-page-header form {
    padding: 82px 106px;
    background-color: #e5e5e5;
}

.contact_us_form {
    min-width: 616px !important;
    margin-left: 95px;
}

.contct_us_header h5 {
    font-family: 'Josefin Sans' !important;
    margin-bottom: 20px;
}

.contact_us_form .form-floating label {
    font-size: 14px;
    margin-left: 16px;
    color: #5a5454;
}

.contact_us_form button {
    padding: 9px 55px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    font-family: 'Josefin Sans' !important;
    font-size: 16px;
    margin-top: 7px;

}

.lb-container .lb-image {
    object-fit: contain !important;
    width: 100% !important;
    height: 30rem !important;
}

.lb-outerContainer {
    width: 40rem !important;
    height: 30rem !important;
    overflow: hidden;
}

.view_img {
    height: 100%;
    width: 100%;
}

.lb-close {
    position: absolute;
    top: -26px;
    right: 20rem;
}

.lb-data .lb-close {
    opacity: unset !important;
}

.loc-gallery-card .img-box {
    height: 320px;
    width: 100%;
}

.loc-gallery-card .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.brand-dtl_htl .para_1 {
    margin-bottom: 0px;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_htl .para_2 {
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_htl .para_3 {
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #000;
}

.brand-dtl_htl .brand_head {
    font-family: 'Josefin Sans' !important;
    font-size: 34px;
}

.carrier_apply_btn {
    position: absolute;
    top: 7rem;
    right: 7rem;
}

/* .carrier_apply_btn{
    position: absolute;
    top: 7rem;
    right: 7rem;
} */
.carrier_apply_btn_card {
    padding: 29px 30px;
    background-color: #6c6b6bb8 !important;
    border-bottom-right-radius: 34px;
    border-top-right-radius: 34px;
    border-bottom-left-radius: 34px;
}

.carrier_apply_btn_card h4 {
    font-size: 10px;
    font-weight: 300 !important;
    color: #fff;
}

.carrier_apply_btn_card .applybutton {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 15px;
    padding-right: 4px;
    border: 1px solid #262729;
    margin-top: 10px;
    border-radius: 26px;
    background-color: #262729;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.carrier_apply_btn_card .applybutton i {
    padding: 10px 11px;
    background-color: #6C6B6B;
    border-radius: 50%;
    color: #fff;
}

.chose_us_btm {
    margin-top: 78px !important;
}

/* .store__card3{
    
} */
.mycasa_detail_sec3 h5 {
    font-size: 31px;
    font-weight: 300 !important;
    font-family: 'Josefin Sans' !important;
    padding: 34% 4% 2% 2%;
}

.mycasa_detail_sec3 .img-box {
    height: 23rem;
    width: 100%;
}

.mycasa_detail_sec3 .img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* --------home page mobile responsive------------------------------ */

@media (max-width: 767px) {
    .video-play-button span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        top: 10px;
        left: 8px;
        border-left: 12px solid #2f3032;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }

    .logo-box span{
        display: flex !important;
        font-size: 18px !important;
   }


    .video-play-button:after {
        width: 35px;
        height: 35px;
    }

    .thump_slider_conta {
        /* padding: 0px!important; */
        margin: 0px !important;
        padding-bottom: 0px !important;
    }

    .tnumbnail__box span {
        display: none !important;
    }

    #thumbnail_slider img {
        width: 54px;
        height: 63px;
        border-radius: 8px;
    }

    .living_room_sec {
        margin-top: 3rem;
    }

    .video-play-button:before {
        width: 50px;
        height: 50px;
    }

    .living_chair_box {
        padding-bottom: 0px;
    }

    .explore_box1 {
        height: 230px;
        width: 100%;
    }

    .explore_box1 img {
        height: 100%;
        width: auto;
    }

    .explore_box2 {
        position: absolute;
        top: 2px;
        right: 24px;
        height: 100px;
        width: auto;
    }

    .explore_box2 img {
        height: 100%;
        width: auto;
    }

    .explore_right {
        padding-left: 26px;
        margin-top: 3rem;
    }

    .cus_exp_box3 {
        height: 150px;
        width: auto;
        position: absolute;
        top: -169px;
        right: 22px;
    }

    .cus_exp_box3 img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .nature_sofa_section {
        height: 11rem;
    }

    .explore_right .dot1 {
        margin-bottom: 71px;
    }

    .explore_right .dot2 {
        margin-bottom: 94px;
    }

    .explore_collection {
        margin-bottom: 4rem;
    }

    .bottom_login a {
        padding: 9px 34px;
        margin-top: 49px;
        margin-bottom: 19px;
        position: absolute;
        bottom: 118px !important;
        left: 16px !important;
        background: #fff !important;
        border: 1px solid #fff;
        color: #000 !important;
    }

    .hero_sec #thumbnail_slider img {
        width: 56px !important;
        height: 49px !important;
        border-radius: 8px;
    }

    .navbar .navbar-nav .nav-link {
        margin: 0px !important;
    }

    /* -------corium brand detail mobile--------------- */
    .corium_sec2 {
        padding: 0px 11px !important;
    }

    .corium_sec2 .corium_imgbox {
        height: 124px !important;
    }

    .brand_detail_img .img-box {
        height: 21rem !important;
    }

    .branddetail_right .para {
        padding: 0px 12px !important;
    }

    .branddetail_right .branddetail_right_header {
        margin-bottom: 17px;
        margin-top: 24px;
        padding: 0px 7px;
    }

    .corium_detail_section {
        padding: 58px 0px !important;
        margin-top: 2rem !important;
    }

    .brnd_header h1 {
        margin: 0px !important;
        font-size: 28px !important;
    }

    .brnd_header {
        margin-bottom: 1rem !important;
    }

    .branddetail_right .para {
        font-size: 14px !important;
    }

    .corium_sec3 h5 {
        padding: 1% 4% 2% 2% !important;
    }

    .corium_sec3 .img-box {
        height: 17rem !important;
        width: 100%;
    }

    .corium_sec3 h5 {
        font-size: 24px !important;
    }

    .relax_stdio_detail_sec .relax_sec_5 h1 {
        color: #645f5f;
        font-size: 17px !important;
        font-weight: 400;
        line-height: 28px !important;
        letter-spacing: 1px;
        font-family: 'Josefin Sans' !important;
        text-align: center;
        /* padding: 0px 40px; */
        padding: 0px 0px !important;
        margin-bottom: 2rem;
    }

    .stores__map {
        margin-top: 30px;
    }

    /* -------corium brand detail mobile--------------- */


    /* -------htl brand detail mobile--------------- */
    .htl_detail-page-header {
        height: 212px !important;
    }

    .branddetail_right .branddetail_right_header.htl {
        margin-bottom: 18px;
        margin-top: -26px;
    }

    .htl_detail_section2 {
        background-color: #f2f2f2;
        padding: 63px 0px !important;
        margin-top: 0rem !important;
    }

    .container.htl_detail {
        padding: 0px 23px;
    }

    .htl_detail_sec3 h5 {
        font-size: 20px !important;
        font-weight: 300 !important;
        font-family: 'Josefin Sans' !important;
        padding: 2% 4% 2% 2% !important;
    }

    .htl_detail_sec3 .img-box {
        height: 15rem !important;
        width: 100%;
    }

    /* .brand_detail_img .img-box {
            height: 17rem !important;
        } */

    /* -------htl brand detail mobile--------------- */

}

/* ------------tablet view------------------------------ */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 2px !important;
    }

    .container.htl_detail_page_sec1 .brnd_header h1 {
        margin-left: 49px !important;
        margin-bottom: 24px !important;
        margin-top: 50px !important;
    }

    .htl_detail_section2 {
        background-color: #f2f2f2;
        padding: 70px 0px;
        margin-top: 2rem !important;
    }

    .htl_detail_sec3 h5 {
        font-size: 31px;
        font-weight: 300 !important;
        font-family: 'Josefin Sans' !important;
        padding: 3% 4% 2% 2% !important;
    }

    .bottom_login a {
        padding: 9px 34px;
        /* margin-top: 34px; */
        margin-top: 49px;
        margin-bottom: 19px;
        position: absolute;
        bottom: 92px;
        left: 41px !important;
        background: #fff !important;
        border: 1px solid #fff;
        color: #000 !important;
    }

    .contct_us_detail_sec .card {
        background-color: #f2f2f2;
        border: unset;
        padding: 21px 41px;
        border-right: unset !important;
        border-radius: unset;
    }

    .careers_form_design .img-box1 img {
        height: 100% !important;
        width: 295px;
        object-fit: cover;
    }

    .img-box1 {
        height: 547px !important;
    }

    .footer_chair_box {
        position: absolute;
        top: -192px !important;
        right: 62px !important;
        height: 29rem !important;
    }

    .footer_chair_box img {
        height: 80%;
        width: 86%;
    }

    .loc-glry-tab li a.nav-link {
        /* width: 0px!important; */
        width: 109px !important;
    }

    .gallery__tab {
        padding-top: 17px !important;
    }

    .cust-img {
        margin-top: 4rem;
        margin-left: 4rem;
        margin-bottom: 2rem;
        width: 86% !important;
    }

    .store-sec .store__card1.map_active {
        background-color: #28292b;
        padding: 17px 17px !important;
        border-radius: 18px;
        transition: all 0.5s ease;
    }

    .store-sec .store__card3 {
        border: 1px solid #28292b;
        padding: 17px 17px !important;
        border-radius: 18px;
    }

}

/* --------------tablet view---------------------------- */
/* --------home page responsive------------------------------ */


/* ------------------- */
.Video-Right-Frame {
    width: 325px;
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 1;
    z-index: 10000;
    overflow: visible;
    height: 265px;
    transition: all 0.3s
}

.Video-Right-Frame.down {
    overflow: hidden;
    height: 25px
}

.Video-Right-Frame.Video-Popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8)
}

.Video-Frame-In {
    width: 100%;
    float: left
}

.Video-Right-Frame.Video-Popup>.Video-Frame-In {
    width: 54%;
    margin: 50px auto 0;
    position: relative;
    float: none
}

.view-video {
    background-color: #59595b;
    color: #fff;
    padding: 0 7px;
    font-size: 11px;
    cursor: pointer;
    float: right;
    line-height: 25px;
    position: relative;
    display: block;
    margin-right: 5px;
    border: 1px solid #59595b;
    border-bottom: none;
}

.Video-Right-Frame.Video-Popup>.Video-Frame-In .view-video {
    display: none
}

.close-popup-video {
    position: absolute;
    right: -25px;
    top: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background-color: #59595b;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    display: none
}

.Video-Right-Frame.Video-Popup>.Video-Frame-In .close-popup-video {
    display: block
}

.minimise-video {
    width: 25px;
    height: 25px;
    color: #fff;
    background-color: #59595b;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    float: right;
    margin-right: 5px;
    border: 1px solid #59595b;
    border-bottom: none;
}

.Video-Right-Frame.down>.Video-Frame-In .minimise-video,
.Video-Right-Frame.Video-Popup>.Video-Frame-In .minimise-video {
    display: none
}

span.close-video-frame {
    width: 25px;
    height: 25px;
    color: #fff;
    background-color: #59595b;
    font-size: 13px;
    line-height: 23px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    float: right;
    border: 1px solid #59595b;
    border-bottom: none;
}

.Video-Right-Frame.Video-Popup>.Video-Frame-In span.close-video-frame {
    display: none
}

.video-box {
    float: left;
    width: 100%;
    opacity: 1;
    transition: all 0.3s;
    border: 4px solid #c9cdd0;
    height: auto;
    overflow-x: auto;
}



.video-box.down {
    opacity: 0;
    animation-name: hideVideo;
    animation-duration: 0.3s;
    transition: all 0.3s
}

.video-box video {
    background-color: #fff;
    float: left;
    width: 100%
}

.Video-Right-Frame.Video-Popup .video-box iframe {
    min-height: 400px;
}

/* ------------------ */
.domicil_detail-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 15%), rgb(0 0 0 / 23%)), url(../img/Domicil_Banner.jpeg) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.brand_detail_img .img-box {
    height: 35rem;
    width: 100%;
}

.brand_detail_img .img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* .branddetail_right p.para1{
        font-size: 20px;
        color: #000;
        font-weight: 400;
    } */
.branddetail_right .branddetail_right_header {
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    color: #000;
    font-family: 'Josefin Sans' !important;
}

.branddetail_right .para {
    margin-bottom: 1.6em;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    padding-right: 104px;
}

.branddetail_right .branddetail_right_header {
    margin-bottom: 20px;
    margin-top: 66px;
}

.brnd_header h1 {
    margin-left: 36px;
    color: #000000;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans' !important;
}

.mycasa_detail-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 15%), rgb(0 0 0 / 23%)), url(../img/Domicil_Banner.jpeg) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.brand_detail_img .img-box {
    height: 35rem;
    width: 100%;
}

.brand_detail_img .img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* ---------------product detail page slider styles---------------------------- */
.productdl1 {
    height: 500px;
    width: 100%;
}

.productdl1 img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.produvt_view_swiper .swiper-slide-fully-visible {
    width: auto !important;
}

.productdl {
    margin: 10px 0;
}

.productdl img {
    opacity: 0.5;
}

.productdl .swiper-slide-thumb-active img {
    opacity: 1;
}

.thumb_image {
    width: 102px;
    height: 51px;
    overflow: hidden;
}

.thumb_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.produvt_view_swiper .swiper {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.produvt_view_swiper .swiper.swiper-thumbs {
    box-shadow: unset !important;
}

/* ---------------product detail page slider styles---------------------------- */

/* -------------prdct_view_swiper_right--------------------- */
.prdct_view_swiper_right h5 {
    font-family: 'Josefin Sans' !important;
    font-size: 27px;
    margin-top: 21px;
}

.prdct_view_swiper_right .sub_head {
    font-size: 17px;
    color: #4a4646 !important;
    text-align: left;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 1px;
}

.prdct_view_swiper_right .sub_head_1 {
    font-size: 16px;
    color: #918686;
    font-family: 'Poppins';
    line-height: 26px;
}

.product_brder_div {
    margin-top: 20px;
}

.product_brder_div1 {
    padding: 32px 0px;
}

.product_brder_div1 .sub_button {
    padding: 18px 52px;
    border: 1px solid #000;
    margin-left: 10px;
    cursor: pointer;
}

.product_brder_div1 .sub_button a {
    color: #000;
}

.product_detail_page_container .about_prdct h5 {
    font-size: 24px;
    margin-top: 28px;
    font-family: 'Josefin Sans' !important;
}

.product_detail_page_container .about_prdct p {
    padding: 0px 84px;
    text-align: center;
    margin-top: 18px;
    color: #4e4b4b;
    font-family: 'Poppins';
    font-size: 15px;
}

.product_brder_div1 .sub_button:hover {
    background-color: #000;
    transition: .3s;
}

.product_brder_div1 .sub_button:hover a {
    color: #fff !important;
}

.product_detail_page_container .breadcrumb li.active a {
    color: #000 !important;
    font-size: 15px;
}

.product_detail_page_container .breadcrumb-item a {
    color: #878181 !important;
    font-size: 15px;
}

.product_detail_page_container .breadcrumb {
    margin-top: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #878181
}



/* -------------prdct_view_swiper_right--------------------- */

.brand_discvr_btn {
    width: 6.5em;
    height: 2.3em;
    /* margin: 0.5em; */
    margin-top: 33px;
    background: black;
    color: white;
    border: none;
    /* border-radius: 6px; */
    border-radius: 20px 0px 20px 0px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: 'Josefin Sans' !important;
}

.brand_discvr_btn:hover {
    color: black;
    border: 1px solid #000;
}

.brand_discvr_btn:after {
    content: "";
    background: white;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.brand_discvr_btn:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.new_elementor-divider {
    border-top: 1px solid #000;
    margin-top: 5rem;
}

.qutation_sec {
    margin-top: 6rem;
}

.qutation_img {
    height: 34px;
    width: 100%;
}

.qutation_img img {
    height: 100%;
    width: auto;
}

.qutation_sec h4 {
    font-style: italic;
    font-size: 17px;
    margin-top: 27px;
}

.qutation_sec h3 {
    font-size: 19px;
    margin-top: 20px;
    font-weight: 400;
}

.fctry_img_box {
    height: 393px;
    width: 100%;
}

.fctry_img_box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.factry_detail {
    color: #000;
    font-weight: 500;
    font-size: 17px;
    font-family: 'Poppins';
}

.factry_sofa_img {
    height: 417px;
    width: 100%;
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.factry_sofa_img img {
    height: 100%;
    width: 80%;
}

.bottom_login a {
    padding: 9px 34px;
    /* margin-top: 34px; */
    margin-top: 49px;
    margin-bottom: 19px;
    position: absolute;
    bottom: 92px;
    left: 261px;
    /* background:#fff!important; */
    border: 1px solid #fff;
    color: #000 !important;
}

.bottom_login a:hover {
    /* padding: 9px 34px;
            margin-top: 49px;
            margin-bottom: 19px;
            position: absolute;
            bottom: 92px;
            left: 261px;
            border: 1px solid #fff;
            color: #fff!important;
            transition: 0.5s; */
    background: #494949 !important;

}

/* .custom___footer__1{

        } */
/* --------corium_sec2---------------------- */
.corium_sec2 {
    padding: 0px 35px;
}

.corium_detail_section {
    background-color: #f2f2f2;
    padding: 70px 0px;
    margin-top: 7rem;
}

.corium_sec2 h3 {
    font-size: 35px;
    font-weight: 300;
    font-family: 'Josefin Sans' !important;
}

.corium_sec2 p {
    margin: 1.5rem 0rem;
    color: #000 !important;
    font-family: 'Poppins' !important;
    padding: 5px 0px;
}

.corium_sec2 .corium_imgbox {
    height: 500px;
    width: 100%;
}

.corium_sec2 .corium_imgbox img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.corium_detail-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 15%), rgb(0 0 0 / 23%)), url(../img/Corium-Italia_Banner@2x-1536x464.jpeg) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.corium_sec3 h5 {
    font-size: 31px;
    font-weight: 300 !important;
    font-family: 'Josefin Sans' !important;
    padding: 34% 4% 2% 2%;
}

.corium_sec3 .img-box {
    height: 23rem;
    width: 100%;
}

.corium_sec3 .img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.corium_sec3 p {
    color: #000;
    font-size: 17px;
    padding: 8px 14px;
    font-family: 'Poppins' !important;
}

/* -----------corium_sec2------------------- */

/* -----------relax_studio_sec------------------- */
.relax_studio_detail-page-header {
    background: linear-gradient(rgb(0 0 0 / 15%), rgb(0 0 0 / 23%)), url(../img/Relax-Studio_Banner@2x-1536x464.jpg) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.relax_stdio_detail_sec .relax_sec_2 h5 {
    color: #000;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans' !important;
    padding: 18% 4% 2% 2%;
}

.relax_stdio_detail_sec .relax_sec_3 h5 {
    color: #000;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans' !important;
    padding: 34% 4% 2% 0%;
}

.relax_stdio_detail_sec .relax_sec_2 p {
    color: #000;
    font-size: 15px;
    padding: 0px 14px;
    font-family: 'Poppins' !important;
}

.relax_stdio_detail_sec .relax_sec_2 {
    background-color: #f2f2f2;
    padding: 82px 0px;
    margin-top: 4rem;
}

.relax_stdio_detail_sec .relax_sec_1 h1 {
    margin-left: 0px !important;
}

.relax_studio_img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.relax_sec_3 {
    margin-top: 5rem;
}

.relax_sec_3 p {
    color: #000;
    font-size: 15px;
    padding: 0px 14px;
    font-family: 'Poppins' !important;
}

.relax_stdio_detail_sec .relax_sec_3 h5 {
    color: #000;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans' !important;
    padding: 18% 4% 2% 2%;
}

.relax_stdio_detail_sec .relax_sec_4 {
    background-color: #f2f2f2;
    padding: 82px 0px;
    margin-top: 4rem;
}

.relax_stdio_detail_sec .relax_sec_4 h5 {
    color: #000;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans' !important;
}

.relax_stdio_detail_sec .relax_sec_4 p {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins' !important;
}

.relax_studio_img_box .relax_sec_4 img {
    height: 100%;
    width: 100%;
}

.relax_studio_img_box .relax_sec_4 .img-box {
    height: 400px;
    width: 100%;
}

.relax_stdio_detail_sec .relax_sec_5 h1 {
    color: #645f5f;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans' !important;
    text-align: center;
    /* padding: 0px 40px; */
    padding: 0px 206px;
    margin-bottom: 2rem;
}

/* -----------relax_studio_sec------------------- */

/* -----------htl_studio_sec------------------- */
.htl_detail-page-header {
    background: linear-gradient(rgb(0 0 0 / 15%), rgb(0 0 0 / 23%)), url(../img/Products_Banner@2x-1536x464.jpg) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.htl_detail_page_sec1 .brand_detail_img .img-box {
    height: 29rem;
    width: 100%;
}

.brnd_header h1 {
    margin: 0px !important;
}

.htl_detail_section2 {
    background-color: #f2f2f2;
    padding: 70px 0px;
    margin-top: 7rem;
}

.htl_detail_section2 .htl_detail h3 {
    font-size: 35px;
    font-weight: 300;
    font-family: 'Josefin Sans' !important;
}

.htl_detail_section2 .htl_detail p {
    margin: 1.5rem 0rem;
    color: #000 !important;
    font-family: 'Poppins' !important;
    padding: 5px 0px;
}


.htl_detail_sec3 h5 {
    font-size: 31px;
    font-weight: 300 !important;
    font-family: 'Josefin Sans' !important;
    padding: 34% 4% 2% 2%;
}

.htl_detail_sec3 p {
    color: #000;
    font-size: 17px;
    padding: 8px 14px;
    font-family: 'Poppins' !important;
}

.htl_detail_sec3 .img-box {
    height: 23rem;
    width: 100%;
}

.htl_detail_sec3 .img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* -----------htl_studio_sec------------------- */
.product_detail_page_container .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    color: #000;
}

.product_detail_page_container .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    color: #d5cbcb;
}

.product_detail_page_container .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    color: #d5cbcb;
}

.contct_us_detail_sec {
    background-color: #f2f2f2;
    padding: 83px 0px;
}

.contct_us_detail_sec .card {
    background-color: #f2f2f2;
    border: unset;
    padding: 21px 41px;
    border-right: 2px solid #000;
    border-radius: unset;
}

.contct_us_detail_sec .card1 {
    background-color: #f2f2f2;
    border: unset;
    padding: 21px 41px;
    /* border-right: 2px solid #000; */
    border-right: unset !important;
    border-radius: unset;
}

.contct_us_detail_sec .card1 h5 {
    font-family: 'Josefin Sans' !important;
}

.contct_us_detail_sec .card1 p {
    font-family: 'Poppins' !important;
    margin-top: 15px;
}

.contct_us_detail_sec .card p {
    font-family: 'Poppins' !important;
    margin-top: 15px;
}

.contct_us_detail_sec .card h5 {
    font-family: 'Josefin Sans' !important;
}

.contct_us_detail_sec .card i {
    color: #000;
    font-size: 23px;
}

.contct_us_detail_sec .card1 i {
    color: #000;
    font-size: 23px;
}

.brand-page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), #1a2a36), url(../img/RS-12710\ PR_3\ \(2\).png); */
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 27%)), url(../img/Frame\ 6\ \(3\).png) center center no-repeat;
    height: 355px;
    background-size: cover;
}

.nav-link.menu_link_a.menu_active {
    color: #000 !important;
}

/* a.nav-link.menu_link_a.menu_active::after {
    content: "";
    position: absolute;
    top: 35px;
    left: 10px;
    height: 3%;
    width: 65%;
    background-color: #655c5c;
}
a.nav-link.menu_link_a.menu_active {
position: relative;
} */
.button.home_login_btn {
    padding: 0.1em 0.25em;
    width: 13em;
    height: 4.2em;
    background-color: #494949;
    border: 0.08em solid #fff;
    border-radius: 0.3em;
    font-size: 12px;
    cursor: pointer;
}

.button.home_login_btn span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.4em;
    width: 8.25em;
    height: 2.5em;
    background-color: #494949;
    border-radius: 0.2em;
    font-size: 1.5em;
    color: #fff;
    border: 0.08em solid #fff;
    box-shadow: 0 0.4em 0.1em 0.019em #fff;
}

.button.home_login_btn span:hover {
    transition: all 0.5s;
    transform: translate(0, 0.4em);
    box-shadow: 0 0 0 0 #fff;
}

.button.home_login_btn span:not(hover) {
    transition: all 1s;
}




/* Mobile Responsive */

@media screen and (max-width: 997px) {
    .navbar .logo-box {
        display: inline-block !important;
        min-width: auto;
        max-width: 100% !important;
        text-align: center;
    }

   
    #menu {
        height: calc(100vh - 20vh);
        overflow-y: auto;
    }
    
    #navbarNav ul li ul {
        box-shadow: none;
        border: none;
        background: transparent;
        height: auto;
        margin: 0 !important;
        overflow-y: unset !important;
    }

    #navbarNav{
        margin-left: 0 !important;
    }

    /* .middle_header .logo-box span{
        display: none !important;
    } */

    .middle_header{
        display: flex;
        justify-content: space-between;
    }

    .navbar .container-fluid{
        display: inline-block !important;
        width: 100% !important;
    }

    .navbar .logo-box span {
        display: inline-block;
        width: auto;
    }

    /* .full-header {
        height: auto !important;
        justify-content: space-between;
        background: linear-gradient(to bottom, #0f8f13, #0f8f13) !important;
    } */

    .green-split-bar-top {
        position: unset;
    }
    button.navbar-toggler:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
    }

    .desk__view {
        display: none !important;
    }

    .green-split-bar-top{
        position: unset !important;
    }

    .mob__view .top-contact {
        width: 100%;
        margin: 0;
        text-align: center;
        display: inline-block !important;
        color: #fff;
    }

    .mob__view {
        padding: 5px;
    }
}

@media screen and (min-width: 998px) {
    .mob__view {
        display: none !important;
    }
}

#menu li a {
    font-family: 'Kodchasan';
    padding: 10px 8px;
}