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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-family: "Roboto Slab", serif;
    font-family: "Yantramanav", sans-serif;
}

:root {
    --primary__color: #e65b20;
    --white__color: #fff;
    --primary__font: "Yantramanav", sans-serif;
    --heading__font: "Roboto Slab", serif;
    --secondary__font: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

.top__header {
    background: #e65b20;
    color: var(--white__color);
    font-size: 15px;
    font-weight: 400;
}

.header__info--icon i,
.header__func--icon i {
    font-size: 18px;
}

.header__info--icon svg,
.header__func--icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white__color);
}

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

.header__logo a img {
    height: 70px;
}

.nav__menu {
    display: inline-block;
}

.nav__link {
    padding: 28px 20px;
}

.header nav ul li a {
    color: #1c1b21;
    display: block;
}

/* sticky header css */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white__color);
    z-index: 99999;
}

/* dropdown menu css */
.dropdown__container {
    position: relative;
    transition: 0.3s all ease;
}

.dropdown__content {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 260px;
    background: #0b0f14;
    text-align: left;
    transition: all 0.5s ease-out 0s;
    transform: translateY(20px);
    z-index: 999999;
}

.dropdown__container:hover > .dropdown__content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown__content a {
    display: block;
    transition: all 0.3s linear;
    color: white !important;
}

.dropdown__content li {
    padding: 15px 10px 15px 20px !important;
    list-style: none;
    width: 100%;
    display: block;
    border-bottom: 1px solid #1c1b21;
}

.dropdown__content li:last-child {
    border-bottom: 0 !important;
}

.dropdown__content li:hover a {
    color: var(--primary__color) !important;
    margin-left: 10px;
}

.dropdown__content ul li a {
    font-size: 16px;
    color: #585660;
    padding: 0;
}

.mobile__nav {
    display: none;
}

/* breadcrumbe section css */
.breadcrumb__heading h1 {
    font-size: 1.6rem;
}

.breadcrumb {
    background-image: url("../images/breadcrumb.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.breadcrumb::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.breadcrumb__container {
    position: relative;
    z-index: 10000;
    padding: 80px 0px;
}

.breadcrumb__link li {
    border-left: 1px solid white;
    padding-left: 10px;
}

.breadcrumb__link li:first-child {
    border-left: 0;
}

.active__link,
.breadcrumb__link li a:hover {
    color: var(--primary__color) !important;
}

/* swiper css */
.swiper {
    width: 100%;
    height: 100%;
}

/* .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
} */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 81vh;
    object-fit: cover;
}

.slider__container {
    position: relative;
}

.slider__container--img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
}

.slider__container--content {
    position: relative;
    width: 100%;
    height: 81vh;
}

.slider__container--text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
}

.slider__container--content:after {
    content: " ";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -20;
}

.slider__container--text h3 {
    color: var(--primary__color);
    font-family: var(--secondary__font);
    font-size: 27px;
    font-weight: 400;
}

.slider__container--text h2 {
    font-family: var(--heading__font);
    width: 60%;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 1px;
}

.slider__container--button a {
    padding: 10px 30px;
    background-color: var(--primary__color);
    color: var(--white__color);
    font-size: 16px;
    transition: background 0.3s linear;
}

.slider__container--button a:hover {
    background-color: white;
    color: var(--primary__color);
    transition: background 0.3s linear;
}

/* benfit section */
.benefit {
    padding: 80px 0px 100px 0px;
    background-image: url("../images/background.png");
    background-position: center;
    background-repeat: no;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.benefit__footer {
    position: absolute;
    left: 0;
    top: 442px;
}

.benefit__container--icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary__color);
}

.benefit__container--icon {
    background-color: var(--primary__color);
    background-color: var(--primary__color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 80px;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.3s all ease-in;
}

.benefit__container--icon::before {
    content: "";
    background-color: white;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 72px;
    height: 62px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: 0.3s all ease-in;
}

.benefit__container--icon:hover::before {
    background-color: var(--primary__color);
    cursor: pointer;
    transition: 0.3s all ease-in;
}

.benefit__container--icon:hover svg {
    fill: var(--white__color);
    cursor: pointer;
    transition: 0.3s all ease-in;
}

.benefit__container--content h5 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
}

.title h3 {
    color: var(--primary__color);
    font-size: 23px;
    font-weight: 400;
    position: relative;
    font-family: var(--secondary__font);
}

.title h3::before {
    content: "";
    background-color: var(--primary__color);
    height: 1px;
    width: 61px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 140px;
    transition: width 1s ease-in-out 0.3s, opacity 0.7s ease-in-out 0.3s;
}

.title h2 {
    font-size: 35px;
    font-weight: 400;
    font-family: var(--heading__font);
}

/* about section css */
.about {
    background-color: #eef0f6;
    padding: 100px 0px 50px 0px;
}

.desc {
    font-size: 16px;
    color: #666;
    text-align: justify;
    font-weight: 400;
    width: 90%;
}

.about__heading.title h3::before {
    left: 100px;
}

.about__service ul li {
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
    color: #1d2746;
    position: relative;
}

.about__service ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -24px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--primary__color);
    border-radius: 50%;
    background-color: #fff;
}

.about__service ul li {
    list-style-type: none;
}

.about__service ul li::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 2px;
    height: 27px;
    background-color: var(--primary__color);
}

.about__service ul li::after:last-child {
    height: 0px;
}

.last::after {
    height: 0px;
}

/* kitchen section starts */
.kitchen {
    padding: 70px 0px 150px 0px;
}

.kitchen__container {
}

.linear__background {
    position: relative;
}

.linear__background::after {
    background: linear-gradient(35deg, rgba(0, 0, 0, 0) 17%, #eef0f6 38%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.about__image {
    position: relative;
}

.about__image:before {
    content: "";
    background-color: var(--primary__color);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 70px;
    width: 70px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.about__image:after {
    content: "";
    background-color: var(--primary__color);
    position: absolute;
    bottom: -1px;
    right: -1px;
    height: 70px;
    width: 70px;
    clip-path: polygon(100% 100%, 0% 100%, 100% 0);
}

.about__image {
    border: 3px solid var(--primary__color);
    padding: 10px;
}

.kitchen__heading.title h3::before {
    left: 120px;
}

/* featured product css*/
.featured {
    padding: 70px 0px 0px 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 100;
}

.featured__card {
    padding: 30px 30px 50px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    overflow: hidden;
    transition: 0.3s transform linear;
}

/* .featured__card::after{
  content: url(public/images/featuredcard.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
} */
.featured__card--title h5 {
    color: var(--primary__color);
}

.featured__card--title h5 span {
    color: #9b411a;
}

.featured__card--title p {
    color: #666;
    font-size: 16px;
}

.featured__card--title a {
    color: var(--primary__color);
}

.featured__heading span {
    color: var(--primary__color);
}

.featured__card--title h5 {
    font-size: 30px;
}

.featured__card:hover {
    transform: translateY(20px);
    transition: 0.3s transform linear;
}

/* product range  */
.range {
    padding: 70px 0px 50px 0px;
    position: relative;
    background-image: url("../images/range.png");
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.range__banner img {
    width: 329px;
    height: 400px;
}

.range__banner--title.title h3::before {
    left: 200px;
}

.range__banner--title p {
    color: #666;
    font-size: 16px;
    margin-top: 25px;
    width: 90%;
}

.range__tab--icon svg {
    width: 70px;
    height: 70px;
    fill: #555;
}

.range__tab--name h5 {
    color: #555;
    font-size: 18px;
    margin-top: 10px;
}

.range__tab {
    width: 700px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px 30px;
    position: absolute;
    right: 176px;
    bottom: -181px;
    z-index: 10000;
}

.nav-link.active h5 {
    color: var(--primary__color);
}

.nav-link.active svg {
    fill: var(--primary__color);
}

.nav-link.active {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: white !important;
}

.border-present {
    padding: 20px;
}

.border-present:nth-child(1),
.border-present:nth-child(2),
.border-present:nth-child(3) {
    border-bottom: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
}

.border-present:nth-child(3) {
    border-right: 0px solid #d0d0d0;
}

.border-present:nth-child(4),
.border-present:nth-child(5) {
    border-right: 1px solid #d0d0d0;
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: none !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #fff !important;
}

/* newsletter section css */
.newsletter {
    margin-top: 300px;
    position: relative;
}

.newsletter::after {
    position: absolute;
    left: 0;
    bottom: -100px;
    content: "";
    height: 250px;
    width: 100%;
    background: #eef0f6;
    z-index: -1;
    transform: skewY(-5deg);
}

.newsletter__form form {
    background-color: #fff;
    padding: 10px;
}

.newsletter__form button {
    background-color: var(--primary__color);
    padding: 10px 20px;
    color: white;
    border-radius: 0;
}

.newsletter__form button:hover {
    background-color: #3a3b3f;
    color: white;
}

.newsletter__container {
    width: 80%;
    background-color: var(--primary__color);
    margin: auto;
    padding: 50px 30px;
    border-radius: 5px;
}

.newsletter__title.title h3 {
    color: var(--white__color);
    margin-bottom: 20px;
}

.newsletter__title.title h3::before {
    background-color: var(--white__color);
    left: 160px;
}

/* testimonial section css */
.testimonial {
    background-color: #eef0f6;
    padding: 80px 0px;
}

.testimonial__heading.title h3::before {
    left: 190px;
}

.company__progress--container {
    margin-bottom: 30px;
}

.company__progress--container:last-child {
    margin-bottom: 0px;
}

.companY__progress--icon {
    padding: 20px;
    background-color: var(--white__color);
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-right: 30px;
}

.companY__progress--icon i {
    font-size: 30px;
    color: var(--primary__color);
}

.company__progress--content {
    font-family: var(--heading__font);
    font-size: 18px;
    color: #585660;
    letter-spacing: -0.2px;
}

.company__progress--content span {
    font-family: var(--secondary__font);
    font-size: 30px;
    color: #323137;
    font-weight: 500;
    line-height: 43px;
    letter-spacing: -0.2px;
}

/* testimonial css */
.testimonial__title img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.testimonial .swiper-slide {
    background-color: var(--white__color);
    border-radius: 5px;
}

.testimonial__container {
    padding: 40px 40px 30px 40px;
}

.testimonial__content p {
    text-align: left;
    font-size: 16px;
    color: #555;
}

.testimonial__name h5 {
    color: #1c1b21;
    font-family: var(--heading__font);
}

.testimonial__name span {
    color: #444348;
    font-size: 17px;
    font-family: var(--secondary__font);
}

/* blog section css */
.blogs {
    padding: 80px 0px;
    background-color: #f8f8f8;
}

.blog__image img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.blog__content {
    background-color: #fff;
    padding: 10px 30px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.blog__details {
    color: #555;
}

.blog__content h5 {
    color: #434e6e;
}

.blog__button {
    color: var(--primary__color);
    font-size: 18px;
}

.blog__button i {
    font-size: 18px;
}

.blog__container {
    position: relative;
    transition: 0.3s all linear;
}

.blog__image {
    position: relative;
    transition: 0.3s all linear;
    overflow: hidden;
}

.blog__image--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(90 90 95 / 50%);
    transform: translateY(-200px);
    opacity: 0;
    visibility: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: 0.3s all linear;
}

.blog__image--overlay i {
    font-size: 40px;
    color: var(--white__color);
}

.blog__container:hover .blog__image--overlay {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition: 0.3s all linear;
}

.blog__container:hover .blog__image img {
    transform: scale(1.1);
    transition: 0.3s all linear;
}

/* brand section css */
.brand {
    background-color: #f8f8f8;
    padding: 50px;
    padding-top: 0;
}

.brand__logo {
    position: relative;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.brand__logo img {
    width: 90px;
    height: 40px;
    aspect-ratio: 3/4;
    object-fit: contain;
}

.brand__logo {
    padding: 20px 10px;
}

.swiper-slide {
    background-color: #f8f8f8;
}

/* Custom Select */
/* // Custom Select */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 16px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #222 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #222 transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    padding: 7px 16px;
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 0;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #ebeef0;
    width: calc(100% - 16px);
    top: 100%;
    left: 8px;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/* footer section css */
.footer__container {
    background-color: #3a3b3f;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0px 30px 40px;
    border-top: 3px solid var(--primary__color);
    border-bottom: 3px solid var(--primary__color);
}

.overlay__image {
    position: absolute;
    right: 0;
    top: 0;
    /* z-index: -1; */
}

.footer__logo img {
    width: 100px;
    height: auto;
}

.footer__heading h5 {
    font-family: var(--heading__font);
    color: var(--white__color);
    font-size: 20px;
    position: relative;
}

.footer__heading h5::after {
    position: absolute;
    content: " ";
    top: 36px;
    left: 0;
    background-color: var(--primary__color);
    height: 3px;
    width: 30px;
}

.footer__links ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

.footer__links ul li a {
    text-decoration: none;
    color: #eef0f6;
    font-size: 16px;
    font-weight: 300;
    font-family: var(--secondary__font);
    letter-spacing: 0.5px;
}

.footer__links ul li a:hover {
    color: var(--primary__color);
}

.footer__heading {
    margin-bottom: 40px;
}

footer .container {
    position: relative;
    z-index: 100;
}

.footer__contact ul li i {
    font-size: 20px;
    font-weight: 300;
}

.material-symbols-outlined {
    font-weight: 100 !important;
}

.footer__contact--icon svg {
    fill: var(--primary__color);
}

.footer__credentials {
    background-color: #222;
    padding: 15px 50px;
}

.footer__credentials p,
.footer__credentials p a {
    color: var(--white__color);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
}

/* some global css */
.section__background {
    position: relative;
}

.section__background::after {
    content: url("../images/about/background.png");
    position: absolute;
    top: 0;
}

.section__background::before {
    content: url("../images/about/background2.png");
    position: absolute;
    top: 0;
    right: 0;
}

.section__heading h2 {
    position: relative;
    overflow: hidden;
    min-width: fit-content;
    padding: 0 30px;
}

.separator {
    background-color: #666;
    height: 1.6px;
    width: 42%;
}

/* Login Page */
.login__container {
    background-color: var(--primary__color);
    margin: 3rem 0;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 0;
}

.login__container-title h4 {
    text-align: center;
    padding: 20px 0;
    color: white;
}

.login__container-form .form-label {
    color: white;
}

.login__container-form .form-control {
    background-color: transparent;
    border-top: none;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-width: 2px;
}

.login__container-form input:focus {
    background-color: transparent !important;
}

.login__container-form button {
    background-color: #3a3b3f;
    color: var(--white__color);
    width: 100%;
    border: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.5s background-color ease-in;
}

.login__container-form button:hover {
    background-color: var(--white__color);
    color: #3a3b3f;
}

.login__container-form a {
    color: #3a3b3f;
    text-align: center;
    text-decoration: none;
}

.login__container-form a:hover {
    color: var(--white__color);
}

/* Faq Page */
.faq__panel-container {
    position: sticky;
    top: 120px;
    z-index: 999;
}

.faq__heading {
    display: flex;
    align-items: center;
}

/* Contact Page */
.form__button {
    background-color: var(--primary__color) !important;
    color: var(--white__color) !important;
    padding: 15px !important;
    display: flex;
    align-items: center;
}

.form__button:hover {
    background-color: #3a3b3f !important;
}

.form__button i,
.form__button div:last-child {
    height: 20px;
}

/* Career Page */
.career__item {
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 20px;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    color: #3a3b3f;
    background-color: #eef0f6;
}

.career__item:hover {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.career__item-header {
    display: flex;
    grid-gap: 20px;
    align-items: center;
}

.career__item-title h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.career__item-title a:hover {
    color: var(--primary__color);
}

.career__item-icon {
    height: 21px;
    width: 21px;
}

.career__item-date {
    display: flex;
    grid-gap: 5px;
    align-items: center;
}

.career__item-image img {
    height: 80px;
}

.career__item-body {
    margin-top: 20px;
    padding: 0 20px;
}

.career__item-body ul {
    margin-bottom: 10px;
}

/* Career Details */
.dealer__card {
    background: #eef0f6;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.dealer__card .table > :not(caption) > * > * {
    background-color: transparent;
}

.dealer__card-header {
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 20px 0;
}

.dealer__card-body {
    padding: 40px;
}

.dealer__card-body input,
.dealer__card-body textarea,
.dealer__card-body select {
    border-radius: 0;
}

.dealer__card-body .apply__btn {
    width: max-content;
    color: #fff;
    margin-right: 20px;
    background: #3a3b3f;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    border: 0;
}

.dealer__card-body .apply__btn:hover {
    background-color: var(--primary__color);
}

.dealer__card-body ul li {
    list-style-type: disc !important;
}

.dealer__card-body form .btn:hover {
    background-color: #3a3b3f;
    color: white;
}

@media screen and (max-width: 1000px) {
    .container__header {
        padding: 0;
    }

    .dealer__card-body {
        padding: 20px;
    }
}

/* Catalogue Page */
.catalogue__item {
    height: 100%;
    background-color: #eef0f6;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.catalogue__item-title h3 a:hover {
    color: var(--primary__color);
}

.catalogue__item-title h3 a {
    color: #3a3b3f;
    text-decoration: none;
    display: block;
}

.catalogue__item-image img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.catalogue__item-image a {
    display: block;
}

.catalogue__item-title {
    padding: 0 10px;
    padding-bottom: 20px;
    margin-top: 10px;
}

.catalogue__item-share i {
    font-size: 22px;
    color: #3a3b3f;
}

.catalogue__item-share i:hover {
    color: var(--primary__color);
}

.catalogue__item-share {
    display: flex;
    grid-gap: 10px;
    margin-top: 10px;
}

/* Blog Details */
.blog__detail-image,
.blog__detail-image img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}

.blog__detail-title {
    margin-top: 10px;
}

.blog__detail-title h4 {
    margin-bottom: 0;
}

.blog__body {
    padding: 10px;
}

/* Brand & Heritage */
.brand__item {
    background-color: #eef0f6;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    min-height: 242px;
}

.brand__item-image {
    /*background-color: white;*/
    height: 242px;
    width: 100%;
}

.brand__item-image img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    width: 100%;
}

.brand__item-details a {
    display: inline-block;
    background-color: var(--primary__color);
    color: var(--white__color);
    padding: 8px 20px;
}

.brand__item-details a:hover {
    background-color: #3a3b3f;
}

/* Feature Image */
.feature__item-image img {
    width: 100%;
    border-radius: 5px;
}

/* Kitchen Page */
.kitchen__slider {
    height: calc(100vh - 120px);
}

.kitchen__slider .owl-stage-outer,
.kitchen__slider img {
    height: 100% !important;
}

.kitchen__benifit {
    position: relative;
    padding: 3rem 0;
    /* top: -160px; */
    z-index: 9999;
}

.kitchen__benifit-item {
    text-align: center;
    background-color: #e6e6e6;
    height: 100%;
    padding: 30px;
}

.kitchen__benifit-image,
.kitchen__benifit-image img {
    height: 60px;
    width: 60px;
    margin: auto;
}

.kitchen__benifit-image {
    margin-bottom: 10px;
}

.kitchen__benifit-title h4 {
    color: #3a3b3f;
    font-size: 32px;
    font-weight: 400;
}

.kitchen__benifit-description p {
    font-size: 18px;
}

.layout__container {
    background-color: #e6e6e6;
    padding: 3rem 0;
}

.layout__header {
    text-align: left;
}

.layout__header-title h4 {
    font-size: 52px;
    font-weight: 400;
    text-transform: capitalize;
}

.layout__header-description p {
    font-size: 18px;
    padding-right: 40px;
    margin-bottom: 30px;
}

.layout__body {
    margin-left: calc(10% - 40px);
}

.layout__slider-item {
    background-color: white;
}

.layout__slider-title {
    font-weight: 500;
    font-size: 24px;
}

.layout__slider-image img {
    width: calc(100% - 20px);
    height: 280px;
    object-fit: contain;
}

.layout__slider-content {
    padding: 10px 20px;
    padding-bottom: 30px;
}

/* Material */
.material__container {
    padding: 3rem 0;
}

.material__body {
    margin-right: calc(10% - 40px);
}

.window__slider-image img {
    width: 100%;
}

/* Cabinate */
.cabinate__slider-image img {
    width: 100%;
    height: 463px;
}

/* accessories */
.accessory__item-image img {
    width: 100%;
}

.accessory__item-content {
    padding: 10px 0px;
    padding-bottom: 30px;
    text-align: center;
}

.accessory__item-title {
    font-weight: 400;
    font-size: 24px;
}

/* Appliances */
.appliance__item-image {
    height: 326px;
    padding: 20px;
}

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

/* Kitchen View */
.view__kitchen-image img {
    width: 100%;
}

/* Window Page */
.window__content {
    margin-bottom: 5rem;
}

.window__title {
    margin-top: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.window__title h1 {
    color: #3a3b3f;
}

.window__item {
    background-color: #e6e6e6;
    padding-top: 30px;
}

.window__item-title {
    text-align: center;
}

.window__item-description {
    padding: 0 50px 30px;
    text-align: justify;
    color: #333;
}

.window__item-description p {
    margin-bottom: 10px;
}

.window__item-description a {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    color: var(--primary__color);
    font-weight: 500;
}

.window__item-description a:hover {
    color: #3a3b3f;
}

.window__slider-container {
    padding: 30px;
    background-color: #e6e6e6;
    border-radius: 5px;
    margin-bottom: 60px;
}

.window__slider-title {
    margin-bottom: 30px;
    text-align: center;
}

.window__slider {
    padding: 0px 90px;
}

.window__slider-item {
    background-color: white;
    border-color: #7c7c7c !important;
}

.feature__item {
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.window__slider-subtitle {
    border-color: #7c7c7c !important;
}

.window__slider-icon svg {
    width: 40px;
    height: 40px;
}

.window__slider .owl-nav button.owl-next {
    background: url("./images/next.jpeg") no-repeat !important;
    right: 0;
    background-position: center center !important;
    opacity: 1;
}

.window__slider .owl-nav button.owl-prev {
    background: url("./images/prev.jpeg") no-repeat !important;
    background-position: center center !important;
    opacity: 1;
    left: 0;
}

.window__slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 3px #848484 solid !important;
    border-radius: 50% !important;
    width: 53px;
    height: 53px;
}

.window__slider .owl-prev span,
.window__slider .owl-next span {
    display: none;
}

.owl-carousel .owl-nav button {
    transition: 0.5s;
}

/* Furniture Page */
.furniture__slider,
.furniture__slider-item,
.furniture__slider .owl-stage-outer {
    border-radius: 5px;
}

.furniture__slider-item img {
    width: 100%;
    border-radius: 5px;
}

.furniture__slider-container {
    margin: 3rem 0;
}

.furniture__title h4 {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    text-transform: capitalize;
}

.furniture__category-slider {
    padding: 20px;
}

.furniture__category {
    border: 8px solid #f2f2f2;
    margin-bottom: 3rem;
}

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

.furniture__category-title {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1.8px solid #e8e8e8;
}

.furniture__category-title h4 {
    font-weight: 400;
}

.furniture__category-image img {
    width: auto !important;
    object-fit: contain;
}

.furniture__product {
    margin-bottom: 3rem;
}

.product__item {
    border: 4px solid #f2f2f2;
    padding: 10px;
    display: inline-block;
}

.product__item-image {
    overflow: hidden;
}

.product__item:hover > .product__item-image img {
    transform: scale(1.2);
}

.product__item-image img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.product__item-title {
    border-top: 4px double #eee;
}

.product__item-title h4 {
    font-weight: 400;
    text-align: center;
    padding-top: 16px;
    font-size: 20px;
    color: #3a3b3f;
}

.furniture__brand-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    background-color: #f2f2f2;
}

.furniture__brand-image img {
    width: 100% !important;
    height: 100%;
    object-fit: none;
}

/* Furniture Details */
.furniture__detail-container {
    margin: 3rem 0;
}

.furniture__detail-title h4 {
    margin-bottom: 0;
}

.furniture__detail-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #f2f2f2;
}

.furniture__detail-share ul {
    display: flex;
    list-style: none;
    grid-gap: 20px;
    font-size: 24px;
    margin: 0;
}

.furniture__detail-share ul li a {
    color: #3a3b3f;
}

.furniture__detail-image {
    border: 4px solid #f2f2f2;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.furniture__content {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
}

.furniture__content-btn {
    border: 0;
    background-color: #3a3b3f;
    color: #fff;
    padding: 10px 3rem;
    transition: all 0.3s ease-in;
}

.furniture__content-btn:hover {
    background-color: #e65b20;
}
