:root {
    --main-font: "Arimo", sans-serif;
    --second-font: "Arimo", sans-serif;
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
}

.hero-sec {
    position: relative;
    background: url("images/modern-apartment-with-comfortable-sofa-decor-generated-by-ai.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 10vh;
    background: transparent;
    z-index: 2;
    transition: top 0.3s ease;
}

.navbar.sticky {
    top: 0;
    z-index: 999;
    background-color: rgb(10 46 75 / 82%);
    backdrop-filter: blur(10px);
    backface-visibility: visible;
    -webkit-backdrop-filter: blur(10px);
    -webkit-backface-visibility: visible;
    -moz-backdrop-filter: blur(10px);
    -moz-backface-visibility: visible;
}

.nav-form {
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 150px;
    position: relative;
    padding-inline: 1.2em;
    isolation: isolate;
}

.search-bg {
    position: absolute;
    width: 100%;
    inset: 0;
    background: #cfd9e2;
    border-radius: 30px;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.search-wrap {
    width: 100%;
    padding: 0.8em;
    height: 35px;
    padding-inline: var(--inline-padding-of-input);
    display: flex;
    align-items: center;
}

.search {
    position: absolute;
    fill: #2f4e67;
}

.search svg {
    width: 17px;
    display: block;
}


.input {
    width: 100%;
    background: none;
    border: none;
    margin: 0 1.6em;
}

.input:focus {
    outline: none;
}

.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: 100%;
    object-fit: cover;
}

.hero-wrapper {
    width: auto;
    height: 100%;
}

.swiper-content-wrapper {
    display: flex;
    flex-direction: column;
}

.hero-wrapper h1 {
    font-family: var(--main-font);
    color: #fff;
    font-size: 5rem;
    font-weight: 600;
    max-width: 650px;
    width: 100%;
    line-height: 1;
}

.hero-swipper-wrap>h6:first-of-type {
    text-transform: uppercase;
    color: #fff;
    font-family: var(--main-font);
    font-size: 1em;
    font-size: 0.9em;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #003366;
    opacity: .7;
}

.brochure-wrap>a:first-of-type {
    background-color: #e62027;
    color: #fff;
    width: fit-content;
    text-decoration: none;
    padding: 0.5em 3em;
    border-radius: 0.7em;
    font-family: var(--main-font);
    font-size: 0.9em;
}


.outer-circle {
    width: 50px;
    height: 50px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle-circle {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle i {
    color: #e62027;
    font-size: 16px;
}

.brochure-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.brochure-wrap>a:nth-of-type(2) {
    text-decoration: none;
}

.video-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: var(--main-font);
    font-size: 0.9em;

}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next {
    right: 60px;
}

.swiper-button-prev {
    left: 60px;
}

.navbar-brand,
.footer-logo {
    width: 150px;
    height: auto;
}

.hamburger {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* Align items to the right */
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 1em;
}

.hamburger span:first-child {
    width: 15px;
}

.hamburger span:nth-child(2) {
    width: 20px;
}

.hamburger span:nth-child(3) {
    width: 25px;
}

.hamburger span:nth-child(4) {
    width: 25px;
    position: relative;
}

.hamburger span:nth-child(4)::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span.active {
    transform: rotate(45deg);
}

.nav-rigt {
    display: flex;
    align-items: center;
    gap: 5em;
}



.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #0a2e4b;
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar-content {
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
}

.sidebar.open {
    right: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: color 0.3s;
}

.close-btn span {
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 1em;
    display: block;
}

.close-btn .line1 {
    transform: rotate(45deg) translate(-2px, 5px);
}


.close-btn .line3 {
    transform: rotate(-45deg) translate(-2px, -5px);
}


.about-page-sec {
    margin: 0 0 5rem;
}

.footer-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 0 4rem;
}

.footer-box ul li {
    list-style: none;
}

.footer-box ul li a {
    text-decoration: none;

}

.footer-title {
    font-size: 1rem;
    font-family: var(--main-font);
    font-weight: 700;
}

.footer-detail a {
    font-size: 1rem;
    font-family: var(--main-font);
    font-weight: 400;
    color: #000 !important;
}

.newsletter-content {
    max-width: 750px;
    width: 100%;
    border: 3px solid #2c86c2;
    padding: 3rem 7rem;
    text-align: center;
    border-radius: 4rem;
    position: relative;
    top: -90px;
    background: #fff;
    z-index: 2;
}


.newsletter-wrapper {
    display: flex;
    justify-content: center;

}

.newsletter {
    border-radius: 1.7rem;
    border: 1px solid #090979;
    display: flex;
    justify-content: space-between;
    background: #f0f0f0;
    width: 100%;
}

.input {
    font-family: var(--main-font);
    font-size: 1rem;
    color: black;
    margin-right: -10px;
}


.button {
    border: none;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 0%, rgba(0, 212, 255, 1) 100%);
    text-decoration: none;
    padding: 0.7rem 4rem;
    font-size: 1rem;
    color: #fff;
    border-radius: 1rem;
    cursor: pointer;
    margin: 0.4rem;
    text-transform: uppercase;
    font-family: var(--main-font);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-family: var(--main-font);
    font-weight: 600;
    color: #2a60a9;
}

.newsletter-content p {
    font-family: var(--main-font);
    font-size: 1.2rem;
    font-weight: 400;
    color: #a5a5a5;
}

.testimonials-sec {
    position: relative;
    background: url("images/testimonial.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.sec-title-head {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 5rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-title-head h6 {
    color: #fff;
    font-size: 1.5rem;
    font-family: var(--main-font);
    font-weight: 400;
    margin: 0 0 2rem;
}

.sec-title-head h2 {
    color: #e62027;
    font-size: 3rem;
    font-family: var(--main-font);
    font-weight: 500;
    max-width: 800px;
    line-height: 1.1;
}

.testimonils-wrapp {
    position: relative;
    z-index: 2;
    padding: 3rem 0 5rem;
}

.slider-for {
    text-align: center;
}

.slider-for p {
    font-size: 0.9rem;
    font-family: var(--main-font);
    color: #dde2e6;
    margin-bottom: 10px;
    max-width: 500px;
    text-align: left;
    margin: auto;
}

.slider-for h4 {
    font-size: 16px;
    color: #555;
}

.slider-nav .avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(1);
    transform: scale(0.8);

}

.slider-nav .slick-slide {
    text-align: center;
}

.slider-nav .slick-current .avatar {
    border: 2px solid #3498db;
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1)
}

.avatar-w {
    padding: 2rem 0 5rem;
}

.testimonils-wrapp {
    max-width: 850px;
    margin: 0 auto;
}

.quote-image {
    width: 250px;
    position: absolute;
    top: -65px;
}

.quote-image-right {
    width: 155px;
    position: absolute;
    right: 65px;
    bottom: 240px;
}

.quote-image img,
.quote-image-right img {
    width: 100%;
}

.slick-list {
    padding: 0 !important;
    margin: 0px 50px !important;
}

.avatar-w h4 {
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--main-font);
    font-weight: 300;
    opacity: 0.5;
}

.slick-current h4 {
    opacity: 1;
}

.contact-wrapper {
    background: #0a2e4b;
    display: flex;

}

/* check */
.contact-wrapper {
    background: #0a2e4b;
    border-radius: 0 0 150px 150px;
    min-height: 500px;
    position: relative;
    margin: 0 0rem 5rem;

}

.newsletter-wrapper-contact {
    position: absolute;
    bottom: 7vh;
    left: 0;
    right: 0;
}

.newsletter-wrapper-contact .newsletter-content {
    top: unset;
}

.slider-nav .avatar:hover,
.avatar-w h4 {
    cursor: pointer;
}


/* check end */


.card-hov:hover {
    cursor: pointer;
}


.Laminate-image-wrap {
    width: 180px;
    height: 300px;
    overflow: hidden;
    background: #001d6b;
    border-radius: 0.5rem;
    -webkit-box-shadow: -35px 35px 0px 2px rgba(10, 46, 75, 1);
    -moz-box-shadow: -35px 35px 0px 2px rgba(10, 46, 75, 1);
    box-shadow: -35px 35px 0px 2px rgba(10, 46, 75, 1);
}

.Laminate-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 0.5rem;
}

.laminate-wraper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.left-side,
.right-side {
    width: fit-content;
}

.right-side p {
    line-height: 1.3;
    max-width: 580px;
    text-align: justify;
    font-family: var(--second-font);
    font-size: 1.2rem;
}

.right-side h2 {
    font-family: var(--main-font);
    font-size: 4rem;
    font-weight: 600;
    color: #0a2e4b;
}

.right-side h2 span {
    color: #e62027;
    text-transform: uppercase;
}

.welcome {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 215px 0;
}

.sec-title-head2 h6 {
    color: #0a2e4b;
}


.about-wrapper {
    background: #0a2e4b;
    border-radius: 0 0 302px 302px;
    padding: 200px 0 100px;
}

.about-right-side h2 {
    font-family: var(--main-font);
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
}

.about-right-side p {
    line-height: 1.3;
    max-width: 600px;
    text-align: justify;
    font-family: var(--second-font);
    font-size: 1.2rem;
    color: #fff;
}

.about-laminate-wraper {
    display: flex;
    gap: 200px;
    padding: 6rem 0;
}

.about-wrapper .Laminate-image-wrap {
    -webkit-box-shadow: -35px 35px 0px 2px rgba(255, 255, 255, 1);
    -moz-box-shadow: -35px 35px 0px 2px rgba(255, 255, 255, 1);
    box-shadow: -35px 35px 0px 2px rgba(255, 255, 255, 1);
}

.about-bottom {
    display: flex;
    justify-content: center;
}

.about-bottom .about-laminate-wraper {
    gap: 150px;
}





.lexa-interior {
    background: url("/images/lexa-interior.webp");
    position: relative;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 700px 700px 0 0;
    overflow: hidden;
}

.lexa-interior-top-two {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.interior-content-wrap h1 {
    color: #fff;
}

.interior-content-wrap p {
    color: #fff;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 1.5rem;
}

.top-row {
    display: flex;
    justify-content: space-evenly;
}

.custom-container {
    position: relative;
    top: 20%;
}

.title-with-icon h2,
.why-lexa-contents h2 {
    font-family: var(--main-font);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.interior-content-wrap p,
.why-lexa-contents p {
    font-family: var(--second-font);
    font-size: 1.3rem;
    color: #fff;
}

.why-lexa-contents {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-lexa-contents h1 {
    font-family: var(--main-font);
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
}

.why-lexa-contents p {
    font-family: var(--second-font);
    font-size: 1.2rem;
    color: #c6c6c6;
    line-height: 1.2;
    text-align: center;
    max-width: 350px;
    text-wrap-style: pretty;
}

.why-lexa-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.why-lexa-row .col-md-4:nth-last-child(-n+2) {
    margin-top: 3rem;
}

.lexa-interior-content {
    padding: 300px 0 150px;
}

.layer2 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #002346;
    opacity: .7;
}

.sec-title-head3 h6,
.sec-title-head3 h2 {
    color: #fff;
}


/* products */

.category-sidebar {
    background-color: #0a2e4b;
    color: white;
    /* padding: 130px 5px; */
    padding: 25px 5px;
    border-radius: 0 3rem 3rem 0rem;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-align: center;
    min-height: 465px;

}

.category-sidebar p {
    transform: rotate(180deg);
    font-size: 24px;
}

.category-slides-wrapper {
    display: flex;
    gap: 5rem;
    position: relative;
    margin-bottom: 3rem;
    flex-direction: column;
}

.card {
    width: 255px;
    min-height: 465px;
    position: relative;
    background: rgb(255, 255, 255);
    padding: 15px 20px 10px 20px;
    border: 2px solid #0a2e4b;
    border-width: 3px 2px;
    border-radius: 2.3rem;
    box-shadow: rgba(0, 0, 0, 0.15) 5.95px 1.95px 5.6px;
}

.card-img {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 2rem;
    /* background-color: #0a2e4b; */
    overflow: hidden;

}

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

.card__span {
    cursor: pointer;
    font-size: 11px;
    position: absolute;
    background-color: white;
    top: 10px;
    left: 10px;
    padding: 3px 7px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-in;
    user-select: none;
}

.card__span:hover {
    transform: translateX(5px);
}

.card-int {
    padding: 30px 0 0 0;
    text-align: left;
}

.card-int-title {
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    color: #d51e24;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.excerpt {
    font-family: var(--second-font);
    font-size: 0.8rem;
    color: #2f4d66;
    line-height: 1.3;
    text-align: justify;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 5em;
}

.card-int-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.7rem;
    font-family: var(--second-font);
    ;
}

.card-int-button:hover {
    cursor: pointer;

}

.card-int-button span:nth-child(1) {
    color: #0a2e4b;
}

.card-int-button span:nth-child(2) {
    color: #d51e24;
    font-size: 2rem;
}


.cards-wrapper {
    padding: 0 10rem 0 0;
    overflow: hidden;
    position: relative;
}

.Swiperproductspage-next {
    right: 65px;
}

.product-card-wrapper-home {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    padding: 2rem 0 6rem;
}

.video-hero:hover {
    cursor: pointer;
}

.productspage-sec {
    margin: 100px 0;
}

.title-with-icon img,
.why-lexa-contents img {
    width: 50px;
}

.mySwiperproductspage {
    position: unset;
}

.product-page-title-sec {
    padding: 200px 0 0;
}

.category-section {
    margin-bottom: 40px;
    display: flex;
}

.nav-rigt {
    position: relative;
}

#search-results {
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ccc;
    margin-top: 10px;
    padding: 10px;
    position: absolute;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    top: 27px;
}

.product-result {
    margin-bottom: 15px;
}

.product-result a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.product-result p {
    color: #555;
    font-size: 14px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

.custom-animation-float {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}



.product-page-top-sec-wrapper {
    margin: 0 auto;
    padding: 4rem 4rem 0;
    margin-bottom: 5rem;
}

.product-page-top {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 1rem;
}

.pen-title {
    display: block;
    font-size: 3rem;
    font-family: var(--main-font);
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;

}

.product-p-card {
    position: relative;
    color: white;
    justify-self: center;
    transition: all 0.3s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    min-width: 200px;
    min-height: 150px;
}

.product-p-card:hover {
    transform: scale(1.02);
}

.product-p-card .product-p-card-content .bottom h2 {
    font-size: 1.2rem;
    background: #0000007d;
    padding: 0.1rem 0.4rem;
    border-radius: 0.2rem;
}

.product-p-card .top {
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
}

.product-p-card .top .name {
    font-size: 1.8rem;
}

.product-p-card .top .date {
    font-weight: bold;
    opacity: 0.8;
}

.product-p-card .bottom {
    bottom: 10px;
    margin: 1rem 1rem 0;
    position: absolute;
}

.product-p-card .product-p-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: -1;
}

/* .product-p-card .product-p-card-bg .bg-img {
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
} */
.product-p-card .product-p-card-bg .bg-img {
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    width: 100%;
}

.product-p-card .shadow {
    position: absolute;
    width: 90%;
    height: 100%;
    overflow: hidden;
    display: flex;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -15px;
    z-index: -2;
    border-radius: 20px;
    filter: blur(15px);
}

.product-p-card .shadow .shadow-img {
    margin-top: 3rem;
    object-fit: cover;
}

.social-m {
    display: flex;
    gap: 10px;
}

.title-g-p-use {
    text-decoration: none;
}
.no-bg-navbar.sticky {
    background-color: rgb(10 46 75 / 0%);
}
.no-bg-navbar .hamburger span, .no-bg-navbar .search-bg {
    background-color: #0a2e4b;
}
.no-bg-navbar .hamburger span:nth-child(4)::before {
    background-color: #0a2e4b;
}
.no-bg-navbar .search {
    fill: #ffffff;
}
.productModals .modal-content{
    width: auto;
}

.productModals .modal-dialog-centered {
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .about-right-side h2 {
        font-size: 2rem;
    }

    .about-right-side p {
        font-size: 0.9rem;
    }



    .category-slides-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .category-sidebar {
        background-color: #0a2e4b;
        color: white;
        padding: 1rem 2rem;
        border-radius: 0rem 0rem 3rem 3rem;
        font-size: 24px;
        font-weight: bold;
        writing-mode: unset;
        text-align: center;
        min-height: unset;
    }

    .category-sidebar p {
        transform: unset;
    }

    .Swiperproductspage-next {
        display: none;
    }

    .cards-wrapper {
        padding: 0 1rem 0 0;

    }

    .category-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .pen-title {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .product-page-top-sec-wrapper {
        padding: 0rem 4rem 0;
    }

}


@media (max-width: 768px) {
    .navbar .nav-form {
        display: none;
    }

    .hero-wrapper h1 {
        font-size: 2rem;
        margin: 0 0 3rem 0;
    }

    .hero-swipper-wrap>h6:first-of-type {
        font-size: 0.8rem;
        margin: 0 3rem 2rem 3rem;
        letter-spacing: 2px;
    }
    .top-row {
        margin: 0 0.5rem;
    }
    .brochure-wrap {
        gap: 15px;
        margin: 0 2rem;
    }
    .brochure-wrap>a:first-of-type {
        padding: 0.5em 2em;
    }

    .swiper-button-next {
        right: 5px;
        top: 51%;
    }

    .swiper-button-prev {
        top: 51%;
        left: 5px;
    }

    .slider-nav {
        display: flex;
        justify-content: center;
    }

    .sec-title-head h2 {
        font-size: 1.2rem;
        max-width: 300px;
    }

    .slider-for p {
        text-align: center;
        padding: 0 0.5rem;
    }
    .newsletter-content p {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .slider-nav .avatar {
        width: 60px;
        height: 60px;
    }

    .quote-image {
        width: 150px;
        top: -18px;
        left: -40px;
    }

    .quote-image-right {
        width: 120px;
        right: -35px;
        bottom: 270px;
    }

    .footer-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        margin: 0 0 2rem 2rem;
    }

    .newsletter-content {
        padding: 3rem 2rem;
    }

    .button {
        padding: 0.7rem 1rem;
    }

    .about-laminate-wraper {
        flex-direction: column;
        gap: 50px;
    }

    .about-right-side h2 {
        font-size: 2.5rem;
        text-align: start;
    }

    .about-right-side p {
        font-size: 1rem;
    }

    .about-laminate-wraper {
        padding: 2rem 0;
    }

    .about-bottom .about-laminate-wraper {
        gap: 50px;
        display: flex;
        flex-direction: column-reverse;
    }

    .about-left-side {
        display: flex;
        justify-content: center;
    }

    .about-left-side {
        text-align: center;
    }

    .about-wrapper {
        border-radius: 0 0 120px 120px;
    }

    .laminate-wraper {
        flex-direction: column;
        gap: 30px;
    }

    .Laminate-image-wrap {
        width: 200px;
        height: auto;
    }

    .right-side h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .right-side p {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .welcome {
        padding: 100px 20px;
    }

    .right-side {
        margin: 2rem 0;
    }


    .title-with-icon h2 {
        font-size: 1.6rem;
    }

    .custom-container {
        top: 10%;
    }

    .lexa-interior-content {
        padding: 150px 0 70px;
    }

    .interior-content-wrap p,
    .why-lexa-contents p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .title-with-icon img,
    .why-lexa-contents img {
        width: 50px;
    }

    .lexa-interior {
        border-radius: 150px 150px 0 0;
    }

    .sec-title-head3 h6 {
        font-size: 1.2rem;
    }

    .about-right-side{
        padding: 0 1rem;
    }
    .navbar-brand, .footer-logo {
        width: 120px;
        height: auto;
    }

    .newsletter-wrapper-contact {
        bottom: 7vh;
        padding: 0 1rem;
    }

}


@media (min-width: 481px) and (max-width: 768px) {
    .cards-wrapper {
        padding: 0 1rem 0 0;

    }

    .Swiperproductspage-next {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cards-wrapper {
        padding: 0 9rem 0 0;

    }

    .Swiperproductspage-next {
        right: 25px;
    }
}


@media (min-width: 1025px) and (max-width: 1399px) {
    .cards-wrapper {
        padding: 0 8rem 0 0;

    }
}


@media (min-width: 1400px) {
    .cards-wrapper {
        padding: 0 10rem 0 0;

    }
}
